From b31eaef6d6e7dfa89caac3fc39ea13c67356987d Mon Sep 17 00:00:00 2001 From: Jack Date: Sun, 10 Jul 2016 01:18:13 +0100 Subject: [PATCH] Bot is now basically functional Big tidy up, new question source. --- .gitignore | 4 +- TriviaBot/CSV/LICENSE | 28 - TriviaBot/CSV/LoadDB.cpp | 68 - TriviaBot/CSV/csv.h | 1258 -- TriviaBot/CSV/trivia.csv | 15236 -------------------- TriviaBot/TriviaBot.vcxproj | 63 +- TriviaBot/TriviaBot.vcxproj.filters | 98 +- TriviaBot/bot/APIHelper.cpp | 19 + TriviaBot/bot/APIHelper.hpp | 28 + TriviaBot/bot/ClientConnection.cpp | 120 + TriviaBot/bot/ClientConnection.hpp | 137 +- TriviaBot/bot/GatewayHandler.cpp | 175 + TriviaBot/bot/GatewayHandler.hpp | 76 + TriviaBot/bot/ProtocolHandler.h | 168 - TriviaBot/bot/Source.cpp | 22 - TriviaBot/bot/TriviaBot.cpp | 29 + TriviaBot/bot/TriviaGame.cpp | 346 + TriviaBot/bot/TriviaGame.hpp | 58 + TriviaBot/bot/data_structures/Channel.hpp | 81 + TriviaBot/bot/data_structures/Guild.hpp | 105 + TriviaBot/bot/data_structures/Text.txt | 125 + TriviaBot/bot/data_structures/User.hpp | 65 + TriviaBot/{ => bot}/db/schema.sqlite | 5 +- TriviaBot/bot/http/HTTPHelper.cpp | 69 +- TriviaBot/bot/http/HTTPHelper.hpp | 18 +- TriviaBot/bot/json/json.hpp | 10 +- TriviaBot/data_management/LoadDB.cpp | 87 + TriviaBot/db/trivia.db | Bin 4315136 -> 0 bytes 28 files changed, 1510 insertions(+), 16988 deletions(-) delete mode 100644 TriviaBot/CSV/LICENSE delete mode 100644 TriviaBot/CSV/LoadDB.cpp delete mode 100644 TriviaBot/CSV/csv.h delete mode 100644 TriviaBot/CSV/trivia.csv create mode 100644 TriviaBot/bot/APIHelper.cpp create mode 100644 TriviaBot/bot/APIHelper.hpp create mode 100644 TriviaBot/bot/ClientConnection.cpp create mode 100644 TriviaBot/bot/GatewayHandler.cpp create mode 100644 TriviaBot/bot/GatewayHandler.hpp delete mode 100644 TriviaBot/bot/ProtocolHandler.h delete mode 100644 TriviaBot/bot/Source.cpp create mode 100644 TriviaBot/bot/TriviaGame.cpp create mode 100644 TriviaBot/bot/TriviaGame.hpp create mode 100644 TriviaBot/bot/data_structures/Channel.hpp create mode 100644 TriviaBot/bot/data_structures/Guild.hpp create mode 100644 TriviaBot/bot/data_structures/Text.txt create mode 100644 TriviaBot/bot/data_structures/User.hpp rename TriviaBot/{ => bot}/db/schema.sqlite (77%) create mode 100644 TriviaBot/data_management/LoadDB.cpp delete mode 100644 TriviaBot/db/trivia.db diff --git a/.gitignore b/.gitignore index 9ff8c5f..bd440de 100644 --- a/.gitignore +++ b/.gitignore @@ -245,4 +245,6 @@ ModelManifest.xml .paket/paket.exe # FAKE - F# Make -.fake/ \ No newline at end of file +.fake/ +/TriviaBot/data_management/questions +/TriviaBot/bot/db/trivia.db diff --git a/TriviaBot/CSV/LICENSE b/TriviaBot/CSV/LICENSE deleted file mode 100644 index da603a9..0000000 --- a/TriviaBot/CSV/LICENSE +++ /dev/null @@ -1,28 +0,0 @@ -Copyright (c) 2015, ben-strasser -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are met: - -* Redistributions of source code must retain the above copyright notice, this - list of conditions and the following disclaimer. - -* Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation - and/or other materials provided with the distribution. - -* Neither the name of fast-cpp-csv-parser nor the names of its - contributors may be used to endorse or promote products derived from - this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE -DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE -FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL -DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR -SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, -OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - diff --git a/TriviaBot/CSV/LoadDB.cpp b/TriviaBot/CSV/LoadDB.cpp deleted file mode 100644 index b8445ce..0000000 --- a/TriviaBot/CSV/LoadDB.cpp +++ /dev/null @@ -1,68 +0,0 @@ -#include -#include -#include -#include -#include -#include "csv.h" - -/** -/ Takes the questions stored in the CSV downloaded from https://www.reddit.com/r/trivia/comments/3wzpvt/free_database_of_50000_trivia_questions/ -/ Questions are stored in a weird format, which makes it a lot harder. To make it easier to process them, I replaced any double commas with single commas, -/ and renamed the repeated headers to Category1, Category2, Question1, etc... There was also one question with incorrect escaping which was fixed manually. - -/ Hideous code, but only needs to be run one time. -**/ - -static int callback(void *x, int argc, char **argv, char **azColName) { - int i; - for (i = 0; i, io::double_quote_escape<',', '"'>> in("trivia.csv"); - in.read_header(io::ignore_extra_column, "Category", "Question", "Answer", "Category1", "Question1", "Answer1", "Category2", "Question2", "Answer2"); - std::string c0, q0, a0, c1, q1, a1, c2, q2, a2; - int row = 0; - sqlite3_stmt *insertThreeQuestions; - std::string sql; - while (in.read_row(c0, q0, a0, c1, q1, a1, c2, q2, a2)) { - // Process three at a time because why not? - sql = "INSERT INTO Questions (Category, Question, Answer) VALUES (?1, ?2, ?3), (?4, ?5, ?6), (?7, ?8, ?9);"; - sqlite3_prepare_v2(db, sql.c_str(), -1, &insertThreeQuestions, NULL); - sqlite3_bind_text(insertThreeQuestions, 1, c0.c_str(), -1, ((sqlite3_destructor_type)-1)); - sqlite3_bind_text(insertThreeQuestions, 2, q0.c_str(), -1, ((sqlite3_destructor_type)-1)); - sqlite3_bind_text(insertThreeQuestions, 3, a0.c_str(), -1, ((sqlite3_destructor_type)-1)); - sqlite3_bind_text(insertThreeQuestions, 4, c1.c_str(), -1, ((sqlite3_destructor_type)-1)); - sqlite3_bind_text(insertThreeQuestions, 5, q1.c_str(), -1, ((sqlite3_destructor_type)-1)); - sqlite3_bind_text(insertThreeQuestions, 6, a1.c_str(), -1, ((sqlite3_destructor_type)-1)); - sqlite3_bind_text(insertThreeQuestions, 7, c2.c_str(), -1, ((sqlite3_destructor_type)-1)); - sqlite3_bind_text(insertThreeQuestions, 8, q2.c_str(), -1, ((sqlite3_destructor_type)-1)); - sqlite3_bind_text(insertThreeQuestions, 9, a2.c_str(), -1, ((sqlite3_destructor_type)-1)); - - int result = sqlite3_step(insertThreeQuestions); - std::cout << result << " "; - } - std::cout << std::endl; - - sqlite3_close(db); - - std::getchar(); - return 0; -} \ No newline at end of file diff --git a/TriviaBot/CSV/csv.h b/TriviaBot/CSV/csv.h deleted file mode 100644 index 4d59618..0000000 --- a/TriviaBot/CSV/csv.h +++ /dev/null @@ -1,1258 +0,0 @@ -// Copyright: (2012-2015) Ben Strasser -// License: BSD-3 -// -// All rights reserved. -// -// Redistribution and use in source and binary forms, with or without -// modification, are permitted provided that the following conditions are met: -// -// 1. Redistributions of source code must retain the above copyright notice, -// this list of conditions and the following disclaimer. -// -//2. Redistributions in binary form must reproduce the above copyright notice, -// this list of conditions and the following disclaimer in the documentation -// and/or other materials provided with the distribution. -// -//3. Neither the name of the copyright holder nor the names of its contributors -// may be used to endorse or promote products derived from this software -// without specific prior written permission. -// -// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -// AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -// IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -// ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE -// LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR -// CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF -// SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS -// INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN -// CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -// ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -// POSSIBILITY OF SUCH DAMAGE. - -#ifndef CSV_H -#define CSV_H - -#include -#include -#include -#include -#include -#include -#include -#ifndef CSV_IO_NO_THREAD -#include -#include -#include -#endif -#include -#include -#include -#include - -namespace io{ - //////////////////////////////////////////////////////////////////////////// - // LineReader // - //////////////////////////////////////////////////////////////////////////// - - namespace error{ - struct base : std::exception{ - virtual void format_error_message()const = 0; - - const char*what()const throw(){ - format_error_message(); - return error_message_buffer; - } - - mutable char error_message_buffer[256]; - }; - - const int max_file_name_length = 255; - - struct with_file_name{ - with_file_name(){ - std::memset(file_name, 0, max_file_name_length+1); - } - - void set_file_name(const char*file_name){ - std::strncpy(this->file_name, file_name, max_file_name_length); - this->file_name[max_file_name_length] = '\0'; - } - - char file_name[max_file_name_length+1]; - }; - - struct with_file_line{ - with_file_line(){ - file_line = -1; - } - - void set_file_line(int file_line){ - this->file_line = file_line; - } - - int file_line; - }; - - struct with_errno{ - with_errno(){ - errno_value = 0; - } - - void set_errno(int errno_value){ - this->errno_value = errno_value; - } - - int errno_value; - }; - - struct can_not_open_file : - base, - with_file_name, - with_errno{ - void format_error_message()const{ - if(errno_value != 0) - std::snprintf(error_message_buffer, sizeof(error_message_buffer), - "Can not open file \"%s\" because \"%s\"." - , file_name, std::strerror(errno_value)); - else - std::snprintf(error_message_buffer, sizeof(error_message_buffer), - "Can not open file \"%s\"." - , file_name); - } - }; - - struct line_length_limit_exceeded : - base, - with_file_name, - with_file_line{ - void format_error_message()const{ - std::snprintf(error_message_buffer, sizeof(error_message_buffer), - "Line number %d in file \"%s\" exceeds the maximum length of 2^24-1." - , file_line, file_name); - } - }; - } - - class ByteSourceBase{ - public: - virtual int read(char*buffer, int size)=0; - virtual ~ByteSourceBase(){} - }; - - namespace detail{ - - class OwningStdIOByteSourceBase : public ByteSourceBase{ - public: - explicit OwningStdIOByteSourceBase(FILE*file):file(file){ - // Tell the std library that we want to do the buffering ourself. - std::setvbuf(file, 0, _IONBF, 0); - } - - int read(char*buffer, int size){ - return std::fread(buffer, 1, size, file); - } - - ~OwningStdIOByteSourceBase(){ - std::fclose(file); - } - - private: - FILE*file; - }; - - class NonOwningIStreamByteSource : public ByteSourceBase{ - public: - explicit NonOwningIStreamByteSource(std::istream&in):in(in){} - - int read(char*buffer, int size){ - in.read(buffer, size); - return in.gcount(); - } - - ~NonOwningIStreamByteSource(){} - - private: - std::istream∈ - }; - - class NonOwningStringByteSource : public ByteSourceBase{ - public: - NonOwningStringByteSource(const char*str, long long size):str(str), remaining_byte_count(size){} - - int read(char*buffer, int desired_byte_count){ - int to_copy_byte_count = desired_byte_count; - if(remaining_byte_count < to_copy_byte_count) - to_copy_byte_count = remaining_byte_count; - std::memcpy(buffer, str, to_copy_byte_count); - remaining_byte_count -= to_copy_byte_count; - str += to_copy_byte_count; - return to_copy_byte_count; - } - - ~NonOwningStringByteSource(){} - - private: - const char*str; - long long remaining_byte_count; - }; - - #ifndef CSV_IO_NO_THREAD - class AsynchronousReader{ - public: - void init(std::unique_ptrarg_byte_source){ - std::unique_lockguard(lock); - byte_source = std::move(arg_byte_source); - desired_byte_count = -1; - termination_requested = false; - worker = std::thread( - [&]{ - std::unique_lockguard(lock); - try{ - for(;;){ - read_requested_condition.wait( - guard, - [&]{ - return desired_byte_count != -1 || termination_requested; - } - ); - if(termination_requested) - return; - - read_byte_count = byte_source->read(buffer, desired_byte_count); - desired_byte_count = -1; - if(read_byte_count == 0) - break; - read_finished_condition.notify_one(); - } - }catch(...){ - read_error = std::current_exception(); - } - read_finished_condition.notify_one(); - } - ); - } - - bool is_valid()const{ - return byte_source != 0; - } - - void start_read(char*arg_buffer, int arg_desired_byte_count){ - std::unique_lockguard(lock); - buffer = arg_buffer; - desired_byte_count = arg_desired_byte_count; - read_byte_count = -1; - read_requested_condition.notify_one(); - } - - int finish_read(){ - std::unique_lockguard(lock); - read_finished_condition.wait( - guard, - [&]{ - return read_byte_count != -1 || read_error; - } - ); - if(read_error) - std::rethrow_exception(read_error); - else - return read_byte_count; - } - - ~AsynchronousReader(){ - if(byte_source != 0){ - { - std::unique_lockguard(lock); - termination_requested = true; - } - read_requested_condition.notify_one(); - worker.join(); - } - } - - private: - std::unique_ptrbyte_source; - - std::thread worker; - - bool termination_requested; - std::exception_ptr read_error; - char*buffer; - int desired_byte_count; - int read_byte_count; - - std::mutex lock; - std::condition_variable read_finished_condition; - std::condition_variable read_requested_condition; - }; - #endif - - class SynchronousReader{ - public: - void init(std::unique_ptrarg_byte_source){ - byte_source = std::move(arg_byte_source); - } - - bool is_valid()const{ - return byte_source != 0; - } - - void start_read(char*arg_buffer, int arg_desired_byte_count){ - buffer = arg_buffer; - desired_byte_count = arg_desired_byte_count; - } - - int finish_read(){ - return byte_source->read(buffer, desired_byte_count); - } - private: - std::unique_ptrbyte_source; - char*buffer; - int desired_byte_count; - }; - } - - class LineReader{ - private: - static const int block_len = 1<<24; - #ifdef CSV_IO_NO_THREAD - detail::SynchronousReader reader; - #else - detail::AsynchronousReader reader; - #endif - char*buffer; - int data_begin; - int data_end; - - char file_name[error::max_file_name_length+1]; - unsigned file_line; - - static std::unique_ptr open_file(const char*file_name){ - // We open the file in binary mode as it makes no difference under *nix - // and under Windows we handle \r\n newlines ourself. - FILE*file = std::fopen(file_name, "rb"); - if(file == 0){ - int x = errno; // store errno as soon as possible, doing it after constructor call can fail. - error::can_not_open_file err; - err.set_errno(x); - err.set_file_name(file_name); - throw err; - } - return std::unique_ptr(new detail::OwningStdIOByteSourceBase(file)); - } - - void init(std::unique_ptrbyte_source){ - file_line = 0; - - buffer = new char[3*block_len]; - try{ - data_begin = 0; - data_end = byte_source->read(buffer, 2*block_len); - - // Ignore UTF-8 BOM - if(data_end >= 3 && buffer[0] == '\xEF' && buffer[1] == '\xBB' && buffer[2] == '\xBF') - data_begin = 3; - - if(data_end == 2*block_len){ - reader.init(std::move(byte_source)); - reader.start_read(buffer + 2*block_len, block_len); - } - }catch(...){ - delete[]buffer; - throw; - } - } - - public: - LineReader() = delete; - LineReader(const LineReader&) = delete; - LineReader&operator=(const LineReader&) = delete; - - explicit LineReader(const char*file_name){ - set_file_name(file_name); - init(open_file(file_name)); - } - - explicit LineReader(const std::string&file_name){ - set_file_name(file_name.c_str()); - init(open_file(file_name.c_str())); - } - - LineReader(const char*file_name, std::unique_ptrbyte_source){ - set_file_name(file_name); - init(std::move(byte_source)); - } - - LineReader(const std::string&file_name, std::unique_ptrbyte_source){ - set_file_name(file_name.c_str()); - init(std::move(byte_source)); - } - - LineReader(const char*file_name, const char*data_begin, const char*data_end){ - set_file_name(file_name); - init(std::unique_ptr(new detail::NonOwningStringByteSource(data_begin, data_end-data_begin))); - } - - LineReader(const std::string&file_name, const char*data_begin, const char*data_end){ - set_file_name(file_name.c_str()); - init(std::unique_ptr(new detail::NonOwningStringByteSource(data_begin, data_end-data_begin))); - } - - LineReader(const char*file_name, FILE*file){ - set_file_name(file_name); - init(std::unique_ptr(new detail::OwningStdIOByteSourceBase(file))); - } - - LineReader(const std::string&file_name, FILE*file){ - set_file_name(file_name.c_str()); - init(std::unique_ptr(new detail::OwningStdIOByteSourceBase(file))); - } - - LineReader(const char*file_name, std::istream&in){ - set_file_name(file_name); - init(std::unique_ptr(new detail::NonOwningIStreamByteSource(in))); - } - - LineReader(const std::string&file_name, std::istream&in){ - set_file_name(file_name.c_str()); - init(std::unique_ptr(new detail::NonOwningIStreamByteSource(in))); - } - - void set_file_name(const std::string&file_name){ - set_file_name(file_name.c_str()); - } - - void set_file_name(const char*file_name){ - strncpy(this->file_name, file_name, error::max_file_name_length); - this->file_name[error::max_file_name_length] = '\0'; - } - - const char*get_truncated_file_name()const{ - return file_name; - } - - void set_file_line(unsigned file_line){ - this->file_line = file_line; - } - - unsigned get_file_line()const{ - return file_line; - } - - char*next_line(){ - if(data_begin == data_end) - return 0; - - ++file_line; - - assert(data_begin < data_end); - assert(data_end <= block_len*2); - - if(data_begin >= block_len){ - std::memcpy(buffer, buffer+block_len, block_len); - data_begin -= block_len; - data_end -= block_len; - if(reader.is_valid()) - { - data_end += reader.finish_read(); - std::memcpy(buffer+block_len, buffer+2*block_len, block_len); - reader.start_read(buffer + 2*block_len, block_len); - } - } - - int line_end = data_begin; - while(buffer[line_end] != '\n' && line_end != data_end){ - ++line_end; - } - - if(line_end - data_begin + 1 > block_len){ - error::line_length_limit_exceeded err; - err.set_file_name(file_name); - err.set_file_line(file_line); - throw err; - } - - if(buffer[line_end] == '\n'){ - buffer[line_end] = '\0'; - }else{ - // some files are missing the newline at the end of the - // last line - ++data_end; - buffer[line_end] = '\0'; - } - - // handle windows \r\n-line breaks - if(line_end != data_begin && buffer[line_end-1] == '\r') - buffer[line_end-1] = '\0'; - - char*ret = buffer + data_begin; - data_begin = line_end+1; - return ret; - } - - ~LineReader(){ - delete[] buffer; - } - }; - - - //////////////////////////////////////////////////////////////////////////// - // CSV // - //////////////////////////////////////////////////////////////////////////// - - namespace error{ - const int max_column_name_length = 63; - struct with_column_name{ - with_column_name(){ - std::memset(column_name, 0, max_column_name_length+1); - } - - void set_column_name(const char*column_name){ - std::strncpy(this->column_name, column_name, max_column_name_length); - this->column_name[max_column_name_length] = '\0'; - } - - char column_name[max_column_name_length+1]; - }; - - - const int max_column_content_length = 63; - - struct with_column_content{ - with_column_content(){ - std::memset(column_content, 0, max_column_content_length+1); - } - - void set_column_content(const char*column_content){ - std::strncpy(this->column_content, column_content, max_column_content_length); - this->column_content[max_column_content_length] = '\0'; - } - - char column_content[max_column_content_length+1]; - }; - - - struct extra_column_in_header : - base, - with_file_name, - with_column_name{ - void format_error_message()const{ - std::snprintf(error_message_buffer, sizeof(error_message_buffer), - "Extra column \"%s\" in header of file \"%s\"." - , column_name, file_name); - } - }; - - struct missing_column_in_header : - base, - with_file_name, - with_column_name{ - void format_error_message()const{ - std::snprintf(error_message_buffer, sizeof(error_message_buffer), - "Missing column \"%s\" in header of file \"%s\"." - , column_name, file_name); - } - }; - - struct duplicated_column_in_header : - base, - with_file_name, - with_column_name{ - void format_error_message()const{ - std::snprintf(error_message_buffer, sizeof(error_message_buffer), - "Duplicated column \"%s\" in header of file \"%s\"." - , column_name, file_name); - } - }; - - struct header_missing : - base, - with_file_name{ - void format_error_message()const{ - std::snprintf(error_message_buffer, sizeof(error_message_buffer), - "Header missing in file \"%s\"." - , file_name); - } - }; - - struct too_few_columns : - base, - with_file_name, - with_file_line{ - void format_error_message()const{ - std::snprintf(error_message_buffer, sizeof(error_message_buffer), - "Too few columns in line %d in file \"%s\"." - , file_line, file_name); - } - }; - - struct too_many_columns : - base, - with_file_name, - with_file_line{ - void format_error_message()const{ - std::snprintf(error_message_buffer, sizeof(error_message_buffer), - "Too many columns in line %d in file \"%s\"." - , file_line, file_name); - } - }; - - struct escaped_string_not_closed : - base, - with_file_name, - with_file_line{ - void format_error_message()const{ - std::snprintf(error_message_buffer, sizeof(error_message_buffer), - "Escaped string was not closed in line %d in file \"%s\"." - , file_line, file_name); - } - }; - - struct integer_must_be_positive : - base, - with_file_name, - with_file_line, - with_column_name, - with_column_content{ - void format_error_message()const{ - std::snprintf(error_message_buffer, sizeof(error_message_buffer), - "The integer \"%s\" must be positive or 0 in column \"%s\" in file \"%s\" in line \"%d\"." - , column_content, column_name, file_name, file_line); - } - }; - - struct no_digit : - base, - with_file_name, - with_file_line, - with_column_name, - with_column_content{ - void format_error_message()const{ - std::snprintf(error_message_buffer, sizeof(error_message_buffer), - "The integer \"%s\" contains an invalid digit in column \"%s\" in file \"%s\" in line \"%d\"." - , column_content, column_name, file_name, file_line); - } - }; - - struct integer_overflow : - base, - with_file_name, - with_file_line, - with_column_name, - with_column_content{ - void format_error_message()const{ - std::snprintf(error_message_buffer, sizeof(error_message_buffer), - "The integer \"%s\" overflows in column \"%s\" in file \"%s\" in line \"%d\"." - , column_content, column_name, file_name, file_line); - } - }; - - struct integer_underflow : - base, - with_file_name, - with_file_line, - with_column_name, - with_column_content{ - void format_error_message()const{ - std::snprintf(error_message_buffer, sizeof(error_message_buffer), - "The integer \"%s\" underflows in column \"%s\" in file \"%s\" in line \"%d\"." - , column_content, column_name, file_name, file_line); - } - }; - - struct invalid_single_character : - base, - with_file_name, - with_file_line, - with_column_name, - with_column_content{ - void format_error_message()const{ - std::snprintf(error_message_buffer, sizeof(error_message_buffer), - "The content \"%s\" of column \"%s\" in file \"%s\" in line \"%d\" is not a single character." - , column_content, column_name, file_name, file_line); - } - }; - } - - typedef unsigned ignore_column; - static const ignore_column ignore_no_column = 0; - static const ignore_column ignore_extra_column = 1; - static const ignore_column ignore_missing_column = 2; - - template - struct trim_chars{ - private: - constexpr static bool is_trim_char(char){ - return false; - } - - template - constexpr static bool is_trim_char(char c, char trim_char, OtherTrimChars...other_trim_chars){ - return c == trim_char || is_trim_char(c, other_trim_chars...); - } - - public: - static void trim(char*&str_begin, char*&str_end){ - while(is_trim_char(*str_begin, trim_char_list...) && str_begin != str_end) - ++str_begin; - while(is_trim_char(*(str_end-1), trim_char_list...) && str_begin != str_end) - --str_end; - *str_end = '\0'; - } - }; - - - struct no_comment{ - static bool is_comment(const char*){ - return false; - } - }; - - template - struct single_line_comment{ - private: - constexpr static bool is_comment_start_char(char){ - return false; - } - - template - constexpr static bool is_comment_start_char(char c, char comment_start_char, OtherCommentStartChars...other_comment_start_chars){ - return c == comment_start_char || is_comment_start_char(c, other_comment_start_chars...); - } - - public: - - static bool is_comment(const char*line){ - return is_comment_start_char(*line, comment_start_char_list...); - } - }; - - struct empty_line_comment{ - static bool is_comment(const char*line){ - if(*line == '\0') - return true; - while(*line == ' ' || *line == '\t'){ - ++line; - if(*line == 0) - return true; - } - return false; - } - }; - - template - struct single_and_empty_line_comment{ - static bool is_comment(const char*line){ - return single_line_comment::is_comment(line) || empty_line_comment::is_comment(line); - } - }; - - template - struct no_quote_escape{ - static const char*find_next_column_end(const char*col_begin){ - while(*col_begin != sep && *col_begin != '\0') - ++col_begin; - return col_begin; - } - - static void unescape(char*&, char*&){ - - } - }; - - template - struct double_quote_escape{ - static const char*find_next_column_end(const char*col_begin){ - while(*col_begin != sep && *col_begin != '\0') - if(*col_begin != quote) - ++col_begin; - else{ - do{ - ++col_begin; - while(*col_begin != quote){ - if(*col_begin == '\0') - throw error::escaped_string_not_closed(); - ++col_begin; - } - ++col_begin; - }while(*col_begin == quote); - } - return col_begin; - } - - static void unescape(char*&col_begin, char*&col_end){ - if(col_end - col_begin >= 2){ - if(*col_begin == quote && *(col_end-1) == quote){ - ++col_begin; - --col_end; - char*out = col_begin; - for(char*in = col_begin; in!=col_end; ++in){ - if(*in == quote && *(in+1) == quote){ - ++in; - } - *out = *in; - ++out; - } - col_end = out; - *col_end = '\0'; - } - } - - } - }; - - struct throw_on_overflow{ - template - static void on_overflow(T&){ - throw error::integer_overflow(); - } - - template - static void on_underflow(T&){ - throw error::integer_underflow(); - } - }; - - struct ignore_overflow{ - template - static void on_overflow(T&){} - - template - static void on_underflow(T&){} - }; - - struct set_to_max_on_overflow{ - template - static void on_overflow(T&x){ - x = std::numeric_limits::max(); - } - - template - static void on_underflow(T&x){ - x = std::numeric_limits::min(); - } - }; - - - namespace detail{ - template - void chop_next_column( - char*&line, char*&col_begin, char*&col_end - ){ - assert(line != nullptr); - - col_begin = line; - // the col_begin + (... - col_begin) removes the constness - col_end = col_begin + (quote_policy::find_next_column_end(col_begin) - col_begin); - - if(*col_end == '\0'){ - line = nullptr; - }else{ - *col_end = '\0'; - line = col_end + 1; - } - } - - template - void parse_line( - char*line, - char**sorted_col, - const std::vector&col_order - ){ - for(std::size_t i=0; i(line, col_begin, col_end); - - if(col_order[i] != -1){ - trim_policy::trim(col_begin, col_end); - quote_policy::unescape(col_begin, col_end); - - sorted_col[col_order[i]] = col_begin; - } - } - if(line != nullptr) - throw ::io::error::too_many_columns(); - } - - template - void parse_header_line( - char*line, - std::vector&col_order, - const std::string*col_name, - ignore_column ignore_policy - ){ - col_order.clear(); - - bool found[column_count]; - std::fill(found, found + column_count, false); - while(line){ - char*col_begin,*col_end; - chop_next_column(line, col_begin, col_end); - - trim_policy::trim(col_begin, col_end); - quote_policy::unescape(col_begin, col_end); - - for(unsigned i=0; i - void parse(char*col, char &x){ - if(!*col) - throw error::invalid_single_character(); - x = *col; - ++col; - if(*col) - throw error::invalid_single_character(); - } - - template - void parse(char*col, std::string&x){ - x = col; - } - - template - void parse(char*col, const char*&x){ - x = col; - } - - template - void parse(char*col, char*&x){ - x = col; - } - - template - void parse_unsigned_integer(const char*col, T&x){ - x = 0; - while(*col != '\0'){ - if('0' <= *col && *col <= '9'){ - T y = *col - '0'; - if(x > (std::numeric_limits::max()-y)/10){ - overflow_policy::on_overflow(x); - return; - } - x = 10*x+y; - }else - throw error::no_digit(); - ++col; - } - } - - templatevoid parse(char*col, unsigned char &x) - {parse_unsigned_integer(col, x);} - templatevoid parse(char*col, unsigned short &x) - {parse_unsigned_integer(col, x);} - templatevoid parse(char*col, unsigned int &x) - {parse_unsigned_integer(col, x);} - templatevoid parse(char*col, unsigned long &x) - {parse_unsigned_integer(col, x);} - templatevoid parse(char*col, unsigned long long &x) - {parse_unsigned_integer(col, x);} - - template - void parse_signed_integer(const char*col, T&x){ - if(*col == '-'){ - ++col; - - x = 0; - while(*col != '\0'){ - if('0' <= *col && *col <= '9'){ - T y = *col - '0'; - if(x < (std::numeric_limits::min()+y)/10){ - overflow_policy::on_underflow(x); - return; - } - x = 10*x-y; - }else - throw error::no_digit(); - ++col; - } - return; - }else if(*col == '+') - ++col; - parse_unsigned_integer(col, x); - } - - templatevoid parse(char*col, signed char &x) - {parse_signed_integer(col, x);} - templatevoid parse(char*col, signed short &x) - {parse_signed_integer(col, x);} - templatevoid parse(char*col, signed int &x) - {parse_signed_integer(col, x);} - templatevoid parse(char*col, signed long &x) - {parse_signed_integer(col, x);} - templatevoid parse(char*col, signed long long &x) - {parse_signed_integer(col, x);} - - template - void parse_float(const char*col, T&x){ - bool is_neg = false; - if(*col == '-'){ - is_neg = true; - ++col; - }else if(*col == '+') - ++col; - - x = 0; - while('0' <= *col && *col <= '9'){ - int y = *col - '0'; - x *= 10; - x += y; - ++col; - } - - if(*col == '.'|| *col == ','){ - ++col; - T pos = 1; - while('0' <= *col && *col <= '9'){ - pos /= 10; - int y = *col - '0'; - ++col; - x += y*pos; - } - } - - if(*col == 'e' || *col == 'E'){ - ++col; - int e; - - parse_signed_integer(col, e); - - if(e != 0){ - T base; - if(e < 0){ - base = 0.1; - e = -e; - }else{ - base = 10; - } - - while(e != 1){ - if((e & 1) == 0){ - base = base*base; - e >>= 1; - }else{ - x *= base; - --e; - } - } - x *= base; - } - }else{ - if(*col != '\0') - throw error::no_digit(); - } - - if(is_neg) - x = -x; - } - - template void parse(char*col, float&x) { parse_float(col, x); } - template void parse(char*col, double&x) { parse_float(col, x); } - template void parse(char*col, long double&x) { parse_float(col, x); } - - template - void parse(char*col, T&x){ - // GCC evalutes "false" when reading the template and - // "sizeof(T)!=sizeof(T)" only when instantiating it. This is why - // this strange construct is used. - static_assert(sizeof(T)!=sizeof(T), - "Can not parse this type. Only buildin integrals, floats, char, char*, const char* and std::string are supported"); - } - - } - - template, - class quote_policy = no_quote_escape<','>, - class overflow_policy = throw_on_overflow, - class comment_policy = no_comment - > - class CSVReader{ - private: - LineReader in; - - char*(row[column_count]); - std::string column_names[column_count]; - - std::vectorcol_order; - - template - void set_column_names(std::string s, ColNames...cols){ - column_names[column_count-sizeof...(ColNames)-1] = std::move(s); - set_column_names(std::forward(cols)...); - } - - void set_column_names(){} - - - public: - CSVReader() = delete; - CSVReader(const CSVReader&) = delete; - CSVReader&operator=(const CSVReader&); - - template - explicit CSVReader(Args&&...args):in(std::forward(args)...){ - std::fill(row, row+column_count, nullptr); - col_order.resize(column_count); - for(unsigned i=0; i - void read_header(ignore_column ignore_policy, ColNames...cols){ - static_assert(sizeof...(ColNames)>=column_count, "not enough column names specified"); - static_assert(sizeof...(ColNames)<=column_count, "too many column names specified"); - try{ - set_column_names(std::forward(cols)...); - - char*line; - do{ - line = in.next_line(); - if(!line) - throw error::header_missing(); - }while(comment_policy::is_comment(line)); - - detail::parse_header_line - - (line, col_order, column_names, ignore_policy); - }catch(error::with_file_name&err){ - err.set_file_name(in.get_truncated_file_name()); - throw; - } - } - - template - void set_header(ColNames...cols){ - static_assert(sizeof...(ColNames)>=column_count, - "not enough column names specified"); - static_assert(sizeof...(ColNames)<=column_count, - "too many column names specified"); - set_column_names(std::forward(cols)...); - std::fill(row, row+column_count, nullptr); - col_order.resize(column_count); - for(unsigned i=0; i - void parse_helper(std::size_t r, T&t, ColType&...cols){ - if(row[r]){ - try{ - try{ - ::io::detail::parse(row[r], t); - }catch(error::with_column_content&err){ - err.set_column_content(row[r]); - throw; - } - }catch(error::with_column_name&err){ - err.set_column_name(column_names[r].c_str()); - throw; - } - } - parse_helper(r+1, cols...); - } - - - public: - template - bool read_row(ColType& ...cols){ - static_assert(sizeof...(ColType)>=column_count, - "not enough columns specified"); - static_assert(sizeof...(ColType)<=column_count, - "too many columns specified"); - try{ - try{ - - char*line; - do{ - line = in.next_line(); - if(!line) - return false; - }while(comment_policy::is_comment(line)); - - detail::parse_line - (line, row, col_order); - - parse_helper(0, cols...); - }catch(error::with_file_name&err){ - err.set_file_name(in.get_truncated_file_name()); - throw; - } - }catch(error::with_file_line&err){ - err.set_file_line(in.get_file_line()); - throw; - } - - return true; - } - }; -} -#endif - diff --git a/TriviaBot/CSV/trivia.csv b/TriviaBot/CSV/trivia.csv deleted file mode 100644 index 9cdad44..0000000 --- a/TriviaBot/CSV/trivia.csv +++ /dev/null @@ -1,15236 +0,0 @@ -Category,Question,Answer,Category1,Question1,Answer1,Category2,Question2,Answer2 -General,Juliet 'i melt with you' was which band's signature hit released on their 'after the snow' album in 1982,Modern english,General,The Norse god of light & peace,Balder,Science & Nature,What is the more scientific name for quicksilver?,Mercury -Geography,"""Honolulu"" means _____________",Sheltered harbor,General,What was the first day of the Roman month called,The calends,General,What did Alexander Graham Bell muffle to keep it from interrupting his work,His telephone the telephone telephone -General,How many gallons of fuel does a jumbo jet use during take off?,Four thousand,General,What is the unit of currency in Laos?,Kip,Entertainment,What is a violoncello usually called?,Cello -Sports & Leisure,In the game of cricket which bird name means scoring no runs ,Duck ,General,5:45 pm In military time is how many hours,1745,General,What sequence is this the start of: 1 4 11 20 31 44 61 100,Octal squares -Music,With which singer did Westlife record a version of Against all Odds in 2000?,Mariah Carey,General,In what sport are bacon hamburgers chips prunes spuds terms,Mountain Biking injury / damage,General,"According to the Talmud, who was the first wife of Adam",Lilith - History & Holidays,"In 1951 Howard Hawks Produced The Thing. Who Directed The 1982 remake, Starring Kurt Russell ",John Carpenter ,Entertainment,Who was Barney Rubble's best friend?,Fred Flintstone,Science & Nature,Which Is The Most Sensitive Of The Senses ,Smell  -General,The Paris stock exchange,Bourse,General,Alfred Schneider became famous as who,Lenny Bruce, History & Holidays,What Is The Original Name For Halloween ,Samhain (pron) sow-en  - History & Holidays,What amendment to the u.s. constitution ended prohibition ,The twenty first ,General,Burn to stop the flow of blood,Cauterize,General,What brand name did Galvin Manufacturing give to its line of radios for motorists,Motorola -General,What game of chance was originally called 'Beano',Bingo,Entertainment,"Who did a version of 'One Bourbon, One Scotch, One Beer' on his 1977 debut album?",George Thorogood,General,What does the acronym NIMBY mean,Not in my back yard - History & Holidays,Where Did Napoleon Bonaparte Die In Exile? ,St Helena ,Geography,The United States would fit into the continent of ____________ three and a half times.,Africa,Science & Nature,What do the auricularis muscles move?,Ears -Food & Drink,The eggs of this sturgeon are the preferred form of caviar.,Beluga,General,What links Ada - Lisp - Algol,Program Languages,General,"What kind of dog was ""rin tin tin""",German shepherd -General,What is the motto of the three muskateers,All for one & one for all, Geography,The Ionian and Cyclades are island groups of which country?,Greece,General,"What links Sword, Square, Floral and Barn",Types of Dance -General,What is the flower that stands for: a heart ignorant of love,White rosebud,People & Places,What Was William Bonney Better Known As ,Billy The Kid ,General,"Of which fruit is ""pearmain"" a variety",Apple -General,What nationality was the sculpture Brancusi,Romanian,Geography,What Is The Most Westerly European Capital City ,"Lisbon In Portugal / Reykjavic In Iceland, It's Complex But I Think Iceland Has It You Decide ",General,What tragedy occurred two years to the day after the federal raid on the branch Davidian complex in Waco,Oklahoma city bombing -Toys & Games,"Charles Darrow based his game upon the 1904 ""The Landlord's Game"".",Monopoly,General,Melita in the Bible where Paul was shipwrecked is where today,Malta,Science & Nature," There are about 5,000 species of __________ known. Only about half of them build reefs.",Coral -General,"Who sang ""I Want My MTV"" on the Dire Straits song ""Money For Nothing""?",Sting,General,Remove forcibly or exile to another country,Deport,General,For which film did James Cagney win an oscar,Yankee doodle dandy - History & Holidays,"What country did poinsettias originally come from? (Mexico,Us, Spain ,Brazil) ",Mexico ,General,The seventeen year locust is also know as a _____,Cicada,Entertainment,"Which brand of guitar is played by Jimmy Page, Slash, and Brian May?",Gibson Les Paul -Music,Who Starred As Cole Porter In The 1945 Film Night & Day,Cary Grant,General,The Chinese year cycle starts with 1st to ask Buddha which,Rat,General,"Which group sang the song ""All The Small Things""?",Blink 182 -General,"Before Hitting The Big Time As A Singer & Tv Personality What Was ""Perry Como's "" Profession",A Barber / Hair Dresser,General,Countess Roza Marie Lubienski Is More Commonly Known As Who,Rula Lenska,General,Gymnophobia is the fear of __________.,Naked bodies -Music,What was finally a top ten hit for Ce Ce Peniston on its 1992 Re-Release,Finally,General,"Name the variety of brassica , whose thickened stem, resembling a turnip, is eaten as a vegetable",Kohlrabi,General,"American rocket engineer, born in Worcester, Massachusetts, & educated at Worcester Polytechnic Institute & Clark University",Goddard -General,"Seventeen thousand how many camels carried the 117,000 volumes of abdul kassem ismael's library",400,General,Which is the smallest independent country,Vatican city,General,What is the fear of choking or being smothered known as,Pnigophobia -General,Under Michigan State law who are officially classed mechanics,Dentists,Geography,What is the capital of Croatia? ,Zagreb ,General,What is a group of this animal called: Ant,Colony army -General,"Medieval monks invented this stopper, necessary for champagne",Cork,Entertainment,"This 1974 film started a run of nostalgia culminating in the TV series ""Happy Days"".",American Graffiti,General,Who went to sea with silver buckles at his knees,Bobby shaftoe -General,In the body luteinizing hormone is produced by what gland,Pituitary,Religion & Mythology,To where do Muslims make pilgrimage?,Mecca,General,"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 -Food & Drink,What colour is chablis? ,White ,General,"Who wrote the book ""Darker Than Amber""",John macdonald,General,What sport can you play at Indonesia's Senayan Statium,Badminton -Sports & Leisure,Football: The Denver ____?,Broncos,General,At The Oscars Ceremony In March 2002 Which Film Won The Award For Best Picture,A Beautiful Mind,General,Betsy ross is the only real person to ever have been the head of a ______,Pez dispenser -General,What are the stars in traditional Cornish Star Gazey pie,Pilchards eyes, History & Holidays,Who rode naked through the streets of Coventry,Lady godiva,Science & Nature,What Is The Most Common Blood Group ,O  -General,What is raku,Japanese pottery,Sports & Leisure,Who won the Bahrain Grand Prix at weekend? ,Fernando Alonso ,General,Maclaine how many letters (maximum) can a thoroughbred horse can have in its name,Fourteen -General,Proverbially it was a bold man who first ate what,An Oyster,General,Which Flemish painter produced Adoration of the Kings,Brueghel,General,How many stars are on the paramount film studio logo,22 -Food & Drink,Where is the oldest distillery in the world? ,"The Old Bushmills, Cty Antrim ",General,In what Dickens novel does Alfred Jingle appear,The Pickwick Papers,General,Where would you find Puck Miranda and Ariel,Circling Uranus -General,"What countries days include Fire day, Water day and wood day",Japan Tue Wed Thu,General,What is the Capital of: Cayman Islands,George town,General,Which instrument did George Harrison of the Beatles play?,Lead guitar -General,In golf what would you put in your shag bag,Practice Balls,General,When do diurnal animals sleep,Night time,General,What type of animal is a jennet,Small Spanish horse -General,"Constance Markiewicz, Became The Worlds First Ever What In 1918?",First British Female MP,General,What is a gondola?,Water taxi,General,"What is the nickname for Paterson, New Jersey",Silk city -Sports & Leisure,Which Modern Gymnastics Event Made Its First Appearance At The 2000 Sydney Olympics ,Trampolining ,Music,Whose real name is Annie Mae Bullock,Tina Turner,Geography,"The city of _________ used to be known as Puerto Rico (which means ""rich port"" in Spanish), while the island of Puerto Rico was originally named San Juan.",San juan -General,Burning potassium has what colour flame,Purple,General,Oneirophobia is the fear of,Dreams,General,In 1982 which group declared they were 'hungry like the wolf',Duran duran -General,"Who directed the monochrome (sepia) sequences at the beginning and end of ""the wizard of oz"" (1939)",King vidor,General,"The Lost Island Of ""Naboombu"" Features In Which Disney Movie",Bedknobs & Broomsticks,General,Dactylography is the study and practice of what,Finger printing - History & Holidays,Who Became premier of Cuba in 1959. ,Fidel Castro ,General,Who won the woman's 400 m hurdles in the 1992 olympics,Sally gunnell,General,Who sang 'any way you want me',Elvis presley - History & Holidays,According to the song what did my true love give to me on the fifth day of Christmas ,Five Gold Rings ,General,What fruits are sorted for ripeness by bouncing them,Cranberries,Technology & Video Games,"Nolan Bushnell, creator of the first arcade game, also founded the video arcade chain now known as what? ",Chuck E. Cheese's -General,What is the cap on the fire hydrant called,Bonnet,General,What does a myrmecologist study,Ants,Music,In Which Lake Did Otis Redding's Plane Crash In 1967,Lake Monoma - Geography,What is the capital of Philippines ?,Manila,General,Kuala lumpur is the capital of ______,Malaysia,General,What was named after amerigo vespucci,America -Science & Nature,Who Originated The Uncertainty Principle ,Heisenberg ,General,Allium cepa - one of the lilicaea - world most used food item,Onion,General,Who was beaten at the battle of Actium by Octavian,Mark antony -General,What dodgers and cubs first-baseman dropped baseball to take up actin,Chuck,General,In what movie did Sinatra sing My Kind of Town,Robin and the 7 Hoods,Music,"What Group Consisted Of Marki King, Boon Gould, Mike Lindup, Phil Gould",Level 42 -General,Which usical instrument was invented by Henry Schluter?,Vibraphone,General,In 1984 Challenger astronauts complete 1st in space satellite,Repair, History & Holidays,Who Provided The Voice Of Charlie In The TV Show 'Charlies Angels'' ,John Forsythe  -General,How long is a silver anniversary,25 years,General,"There were three Kings of England in 1066. Harold and William, of course, and who else",Edward the confessor,Music,What Was The Official Single Of Euro 96,We're In This Together (Simply Red) -Music,Johnny Marr Teamed Up With Which Former New Order Member To Form The Band Electronic,Bernard Sumner,General,What is a group of trout,Hover,General,What is athens' old quarter,Plaka -General,Test of metal or ore for ingredients and quality,Assay,General,What is the Capital of: Romania,Bucharest,General,Which musical features the song 'Happy Talk',"South pacific," -General,What is a woolly bear,Caterpillar,General,The word rodent comes from the Latin rodere meaning what,To Gnaw,General,Whats traditionally the first event in a rodeo,Bareback riding -General,What is the name of the telescope that was placed in orbit in the eighties?,Hubble,General,"On 'the lucy show', who played vivian bagley",Vivian vance,Science & Nature,Which Large Feline Of Asia Is Sometimes Called An Ounce ,Snow Leopard  -General,"Where was The Beast, the first mobile robot, developed",Johns hopkins,General,What country had Europe's fastest economic growth rate in 1988,Spain,General,You're eating maggots Michael.,Lost Boys -General,The province of Alberta in Canada has been completely free of rats since what year,1905,General,George Hoy-Booth became famous as who,George Formby,General,What Was Founded In The UK In 1694 Because Of Englands War With France,The Bank Of England -General,Arlanda is the airport which serves which European city,Stockholm,General,"From which Marx Brothers film comes the line 'Either he's dead, or my watch has stopped",A day at the races,Religion & Mythology,Who is the Norse god of poetry ?,Bragi -Music,What Group Did Nick Cave Sing With Before Forming The Bad Seeds,The Birthday Party,General,Caterpillar comes from the old French what's it literally mean,Hairy Cat,Science & Nature,How long does it take for Earth to travel around the Sun?,1 Year -Science & Nature,Sound Navigation Ranging is better known as _________.,Sonar,General,What was the first film directed by robert redford,Ordinary people,General,Who made his name with Jimmy James and the Blue Flames,Jimmy Hendrix -General,What is a group of geese called,Gaggle,General,What song gave a 9 year old US a UK No 1 lots weeks 1972/73,Long haired lover from Liverpool,General,Who was the first choice to play Beverley Hills Cop,Sylvester Stallone -Music,"Which Music Festival Was Attended By Over 400,000 People In 1969",Woodstock,General,Allium Sativum is better known as what,Garlic,General,Of who was atahualpa king,Incas -General,The last Nascar driver to serve jail time for running moonshine was who,Buddy arrington,General,Who was kidnapped in Robert Louis Stevenson's Kidnapped,David Balfour,General,Who did pat sajak play on the soapie 'days of our lives',Kevin hathaway -General,"Which Capital City Is Home To ""Carrasco"" International Airport",Montevideo (Uruguay),General,California Valley and a Chinese cabbage what word means both,Napa,Music,Saul Hudson Is The Real Name Of Which Guitarist,Slash -General,The worlds what museum is at 19 Green belt North York Ontario,Contraceptive,General,What is 'applejack',Fermented cider,Music,How many clubs a day did the girl who came in through the bathroom window work at?,Fifteen -General,What is hippopotomonstrosesquippedaliophobia the fear of?,Long words,General,What short term is given to the leader of the Red Arrows aerobatic display team?,Red 1,Food & Drink,If you were eating aloo in an Indian restaurant what would you be eating? ,Potato  -Toys & Games,"In the game of chess, which piece has the most freedom to move?",Queen,Geography,What are drumlins and eskers formed by,Glacier, History & Holidays,Which Of Courtney Cox's Co Stars From The Scream Films Is Now Her Husband ,David Arquette  -Science & Nature,What Is The Function Of The Thyroid Gland ,To Regulate Growth & The Metabolism ,General,Alain Boublil and Claude-Michel Schonberg wrote which hit musical,Les miserables,General,Tethys is a moon of which planet in the solar system?,Saturn -Music,"Who Claimed That ""Mama Gave Birth To The Soul Children""",Queen Latifah,Art & Literature,How Many Holes Are There On A Traditional Artists Pallette? ,One ,General,What type of adornment is a Postiche,Small Hairpiece -Food & Drink,Singapore banned which popular western foodstuff because of litter implicatons? ,Chewing Guim ,General,TAP is the national airline of which country,Portugal,Mathematics,An angle greater than 90 degrees is said to be _________.,Obtuse -General,Metal framework on a vehicle to protect it in the event of a collision with a large animal,Bull bar,General,How many 'Air Force One'(s) are there?,Two,General,In Delaware by law a newlywed must do what if wife asks,Take her Shopping -General,What is a Bellwether,Leader of flock of sheep,General,Non dairy creamer is _________,Flammable,General,Which playwright wrote Lady Windermere's Fan,Oscar wilde -General,As what is 'South West Township' known in south africa,Soweto,Art & Literature,Who wrote the Belgariad ?,Leigh and David Eddings, History & Holidays,Name The Fabulous Winged Horse Of Greek Mythology? ,Pegasus  -General,What is the most important mineral for strong bones & teeth,Calcium,General,Who did the original thugs worship,The Goddess Kali,Entertainment,What was the first cartoon to feature sound,Steamboat willy - History & Holidays,What asian leader was known as the little brown saint ,Mahatma gandhi ,Music,Which Artists Recorded The Album The Original Soundtrack,10cc, History & Holidays,Which Baltic seaport was the German rocket centre during WWII?,Peenemunde -General,Of who did the u.s postal service print 500 million stamps in 1993,Elvis,General,What word may be used to refer to a group of peacocks,Muster,General,Which 1956 film about the pocket battleship Graf Spec starred John Gregson,Battle of the river plate -General,What is 'bountiful mother' in latin,Alma mater, History & Holidays,What does ALF stand for? ,Alien Life Form ,General,What red fruit is most often eaten in green salads,Tomato -General,What was the name of john lennon and cynthia lennon's son,Sean, History & Holidays,After Much Legal Wrangling Who Became The Controller Of 'The News Of The World'' In 1969 ,Rupert Murdoch ,General,"Who Was Ian Flemming's Top Choice To Play James Bond Before ""Sean Connery"" Eventually Got The Part",Roger Moore -General,Lake Vanern is the largest lake in which country,Sweden,General,In which film did Lee Marvin throw boiling coffee in Gloria Graham's face,The big heat,General,Who sold the most albums on a single day,Elvis 20 million day after death -General,"What is the missing word in english with the letter combination 'uu' vacuum, muumuu, continuum, residuum, duumvir",Duumvirate,General,How long is an elephant pregnant,2 years,Geography,This imaginary line approximately follows the 180 degree meridian through the Pacific Ocean.,International date line - History & Holidays,Who was the ruler of the USSR from 1917-22? ,Vladimir Lenin ,General,What is measured with an ombrometer,Rainfall,General,What does a Puissance event test in showjumping,High Jump wall -General,Isolophobia is the fear of,"Solitude, being alone", History & Holidays,The song White Christmas was first performed in which 1942 film? ,Holiday Inn ,Art & Literature,"Who wrote ""Ender's Game"" ?",Orson Scott Card -Science & Nature,What Did Jesse Reno Invent Using Traditional Conveyor Belt Principles To Pull Folding Steps Up A Slope ,The Escalator ,General,Who wrote the play 'Rosencrantz and Guildenstein' are dead,Tom stoppard,General,What are you doing if you use the egg position,Skiing -General,"Name the wife of King Ahab, who Jehu ordered to be thrown to her death from a window",Jezebel,General,Where did Mathias Rust land his Cessna in 1987,Red Square Moscow,Science & Nature,Who Designed The Mini And The Morris Minor ,Sir Alexander Issigonis  -General,If not Shakespeare what links Juliet Cleopatra Mark Antony,Commit Suicide,General,Baseball: the san diego _______,Padres,General,A Limousine was originally what (From Limousine in France),French shepherds protective cloak -General,Who was the first person to prove that planets move in elliptical orbits,Kepler,Sports & Leisure,Basketball: The Los Angeles _________.,Lakers,Art & Literature,"What did Jeannie C. Riley describe as ""a little Peyton Place""",Harper valley -General,Who was the first black mayor of Chicago?,Harold Washington,General,How many litres of water vapour can be lost in a large tree in an hour by transpiration,Three hundred, Geography,What is the capital of Iraq ?,Baghdad -Sports & Leisure,Who Won The US Open Men's *Tennis * Title in 1990 At The Age Of Just 19? ,Pete Sampras ,General,The study of the manner in which organisms carry on their life processes is ________,Physiology,Sports & Leisure,Who did Lennox Lewis beat to win his first world heavyweight title? ,"Nobody, Riddick Bowe relinquished his title " -General,Which architect designed London's tallest building The Shard?,Renzo Piano,General,What does 360 degrees make,Circle,General,Pteromerhanophobia is the fear of,Flying -General,"Which meteorological phenomena means ""a curl of hair"" in Latin",Cirrus - clouds,General,Name ship sunk by the submarine Conqueror Falklands War,General Belgrano,General,Whats the secret identity of Don Vito Corleone,The godfather -General,Originally a Toss Pot did a lot of what,Drinking - Alcohol,General,Traditionally there are 100 pleats in what item,A Chefs hat,General,Equinophobia is a fear of ______,Horses -General,What country is Men Without Hats originally from?,Canada,Entertainment,From what platform does the 'Chattanooga Choo Choo' leave Pennsylvania station?,29,General,What is the capitol of Fiji,Suva -Music,What group was Ringo with before the Beatles?,Rory Storm and the Hurricanes,Music,Who introduced Paul McCartney to John Lennon?,Ivan Vaughn,General,What canadian island has a capital named charlottetown,Prince edward island -General,"What Did Bruce Willis, Harvey Keitel & Winston Churchill All have to overcome?",Stutters / Stammers,General,A fisherman in the Arral sea had his boat destroyed by what,A Cow - USA air force dumped it,Science & Nature,What is the name for 0.1 Newtons ?,Dyne -General,What 3 ingredients make a sidecar cocktail,Brandy Cointreau Lemon juice,General,Pak man was called Paka in Japan what does paka mean,Eating,Geography,Which Scottish Loch Is The Deepest ,Loch Ness  -General,Anna Maria Louisa Italiano changed her name to what,Anne Bancroft,General,Eunectes Murinus largest of its kind in South America - what,Annoconda,General,What canadian professional snooker player is nicknamed the grinder,Cliff -General,An Aficionado originally followed what sport,Bullfighting,Science & Nature,What is the atomic number of sulphur?,16,Music,Which 60's Star Was Born In Johannesburg And Christened Michael Lubowitz,Manfred Mann -People & Places,Which is the largest of the Canary Islands? ,Tenerife ,General,What species of fish is caught most,Anchovetta - Anchovy,Science & Nature,What Treatment Involves The Precise Use Of Needles ,Acupuncture  - History & Holidays,The land that would eventually be known as oklahoma was part of the what in 1803 ,Louisiana purchase. ,General,What were volitos first demonstrated in Soho London in 1823,Roller Skates,General,The traditional Sweedish drink,Aquavit -General,Which U.S. boxer was known as 'The Manessa Mauler',Jack dempsey,General,In Hitchcock's film The Trouble with Harry - what was the trouble,He was dead,Music,Who Wrote The Messiah,Handel -Music,"Who Had Minor Hits With ""Dogs Of Lust"", ""Slow Emotion Replay"" And ""Dis -Infected"" EP",The The,General,"Music What is the narrow, inland sea, separating the Arabian peninsula, western Asia, from northeastern Africa",Red sea,Sports & Leisure,What Is An Oxer ,A Type Of Jump In Show Jumping -General,What does a Stupprator prefer sexually,Virgins,General,"In Gulliver's Travels, from what did the scientists seek to get sunshine",Cucumbers,General,Kenophobia is a fear of ______,Empty spaces -General,An elephant has 400000 what in its trunk,Muscles,General,William Blake Winston Churchill John Lennon what links,Ordained Druids, History & Holidays,"Then name Santa Claus is derived from which language, is it Dutch, French or Italian ",Dutch  -General,The Zagros mountain range is in which country,Iran,Science & Nature, An extinct species of __________ had a head the size of a Shetland pony's and reached a height of more than ten feet.,Kangaroo,General,Which Very Famous Book Which I'm Sure Many Of You Have Read Was Written & Illustrated By “ Eric Carle ” In 1969 ?,The Hungry Hungry Caterpillar - Geography,What is the highest mountain in the Appalachian range?,Mt. Mitchell,Sports & Leisure,Alex Hurricane Higgins & Jimmy The Whirlwind White But Whats Ronnie O Sullivans Nickname ,Ronnie The Rocket O Sullivan , History & Holidays,Which ship did Charles Darwin captain?,HMS Beagle -General,In South Korea traffic police must report what,Tourists bribes taken,General,Needlework of hooked yarn producing lacy patterned fabric,Crochet,Music,"Who Asked ""What Have You Done For Me Lately"" In 1986",Janet Jackson -General,What does SALT stand for,Strategic arms limitation treaty,Science & Nature,What is a male goose called,Gander,General,Who wrote Candide,Voltaire -General,Which chemical element has the atomic number 4?,Berylium,People & Places,Who Spent A Year In Prison For Sleeping With An Underage Girl ,Graham Rix ,General,Fill in the blank: the ___ Piper,Pied -General,Who had a hit no 5 in US 1971 with Bridge over Troubled Water,Aretha Franklin,General,What is a Fata Morgana,Type of Mirage,Sports & Leisure,Which football team has played at Wembley more times than anyone else? ,Leyton Orient  - History & Holidays,"William the First was crowned on Christmas day, but in what year ",1066 , History & Holidays,Clement C. Moore wrote a very famous Christmas poem What was it called? ,Twas The Night Before Christmas ,Science & Nature,Which Stock Control System Was Introduced In American Supermarkets in 1974 ,Bar Codes  -General,What country covers an entire continent,Australia,General,Who is on a u.s. bill,Benjamin franklin,General,What is the Capital of: Guam,Hagatna agana -Music,In which film did Donna Summer make her debut as an aspiring disco singer?,Thank God It's Friday,General,Which was the first 'james bond' novel,Casino royale,Music,In Which Year Did Sting Release Fields Of Gold,1993 -General,Who was responsible for driving the english out of scotland in 1297,William,General,What is studied in the science of somatology,The Body,General,"Harrison What do the San Joaquin kit fox, Hawaiian hawk and Ocelot have in common",Endangered species -Music,Which duo released albums called Introspective and Very?,Pet Shop Boys,General,What is the last book of the Bible,Revelations,General,What is a group of this animal called: Monkey,Troop -General,What is the front of a saddle called?,Pommel, History & Holidays,In Which Scary Movie Will You Find The Character Martin Brody ,Jaws ,General,What name is given to the group of animals that eat meat,Carnivores -General,Fried Chicken Strawberry Shortcake trad Xmas eve meal where,Japan,General,"Which European country has regions named Limburg, Drente and Brabant",Netherlands,Music,According The Who keeps a ten bob note up his nose?,Mean Mr. Mustard -General,U.S. Captials - Michigan,Lansing,General,What does an animal have if it is a fish,Gills, History & Holidays,John Callcott Horsley designed what first commercial Christmas item in 1843? ,Christmas card  -General,Which epic film was based on a novel by Lew Wallace,Ben hur,Food & Drink,What Eastern Fruit Comes In A Shell ,The Lychee ,Entertainment,Pancho was whose faithful sidekick?,Cisco Kid's -General,What are the young of a rabbit called,Kittens,General,In which film based on a James Jones novel does Deborah Kerr embrace on the beach with Burt Lancaster,From here to eternity,General,"Which company slogan was ""We're No 2 We try harder""",Avis rent a car -Music,"Paul wrote ""Martha My Dear"". Who did he know who was named Martha?",His Dog,General,Officers how many british officers were forced by indian troops into the black hole of calcutta,146,General,Who rejected the 1964 Nobel prize for literature,Jean Paul Sarte -Music,Who filled in for Ringo on the Beatles' 1964 world tour?,Jimmy Nicol,General,STDs are the most costly health problem in the USA what's 2nd,Dog Bites,General,What is the capital of texas,Austin -General,What planet did Alf come from?,Melmac,Music,Which Country Are Bachman Turner Overdrive From,Canada,General,Which country is the largest in Africa,Sudan -General,Who wrote dionne warwick's 'walk on by' and 'say a little prayer',Burt,General,What is the tenth letter of the Greek alphabet,Kappa,General,Who wrote the book The Puppet Masters later a film,Robert Heinlein -General,What is the technical difference between rowing and sculling,Rowing means using a single oar,General,What links Hong Kong Singapore Rio and Utopia,Road Films,General,What is a group of travelling wolves,Route -General,"Outside poland, where is the largest polish population",Chicago,Geography,In which continent would you find the amur river ,Asia ,General,Where would you find or what are guntlines,Rope - groves -General,In The Film Saving Private Ryan What Was Private Ryan's First Name?,James,Music,Length of the longest Beatles track,"Revolution 9,'' from the White Album",Art & Literature,Who wrote the threepenny opera?,Bertolt Brecht -General,"What song won the grammy for ""song of the year"" in 1977",You light up my,General,What part of a horse would you look at to determine its age,Teeth,General,What is the Capital of: Denmark,Copenhagen -Music,Which Band From Manchester Incluides The Former Entertainments Manager From The Hacienda (Nightclub),M People,General,Which Well Known Gangster Lives At “ 36 Cherry Blossom Close ”,Ali G,General,What organization was given the only Nobel Peace Price awarded during World War I,International Red Cross -General,How did George II die,Fell off toilet,General,What is the fear of home surroundings or house known as,Oikophobia,General,What is the flower that stands for: reverie,Flowering gern -General,"Electric, Perse and smalt shades of which colour",Blue,General,Sorrowful song or poem,Elegy,Art & Literature,"Who wrote the novels 'About A Boy'', 'How To Be Good'' and 'High Fidelity''? ",Nick Hornby  -General,Every day in the US people steal $20000 from where,Vending machines,People & Places,Who wrote the book 'The Guns Of Navarone'' ,Alistair McClaine ,Geography,In what country is the jutland peninsula ,Denmark  -General,"Who wrote ""The Picture of Dorian Grey""",Oscar wilde,General,"What country controls access to the North Sea from the rivers Schelde, Meuse and Rhine",Netherlands,General,Who is always the victim the game of Cluedo,Dr. black -General,Indiana jones: who was known to get lost in his own museum,Marcus brody,General,"What was the name of the first ""portable"" computer?",Osbourne,Music,Who Wrote Pink Cadillac For Natalie Cole,Bruce Springsteen -General,"In Which Childrens TV Show Will You Find The Characters Of ""Florrie & Baby Pom""",The Fimbles,Food & Drink,What is the most widely eaten meat in the world? ,Pork ,General,What is the SI unit of pressure or stress,Pascal -General,Mr Chips said goodbye from Brookfield school - What subject,Latin,Science & Nature,The molten material from a volcano is ________?,Lava,General,"Who released 'time, love and tenderness' in 1981",Michael bolton -General,Where is the worlds largest mine,Carletonville South Africa,General,What WasMichael Barymores Occupation Before He Found Fame As A TV Star,Hair Dresser,General,The Walibri tribe central Australia greet each other how,Shaking Penises -General,Florence Nightingale tended the soldiers in which war,Crimean,General,Phineas Barnum opened his circus in what year,1871,General,In Hill Street Blues which character used to bite people,Animal - Mick -General,What is the name of the cord joining a mother & her unborn child,Umbilical cord,General,What is the next-to-next-to-last event,Antepenultimate,General,Who in US was given Hitler's Supreme Order of German Eagle,Henry Ford -General,What Is Joseph Cyril Bamfords Claim To Fame?,The JCB Earth Mover,General,"Which railway tunnel, 20 kilometres long, joining Isselle in Italy with Brig in Switzerland, is cut under Mount Leone in the Alps",Simplon tunnel,Music,Who Sang Gonna Fly Now (Theme From Rocky) In 1977,Bill Conti - Language,"The name for this semi-precious stone comes from the Latin for ""sea water""",Aquamarine,General,What is the flower that stands for: consolation,Red poppy,General,Where Was Britains First Escalator Installed,Harrods -Music,What Name Appears In The Title Of Both A Beatles Hit And A Novel By ThomasHardy?,Jude,Sports & Leisure,Can you name 2 British golfers to win the US Masters in the 1990's? ,Nick Faldo & Ian Woosnam ,General,Why did the USA govt open Lincolns coffin in 1887 and 1901,Check body still there -General,"An atom is comprized of these 3 subatomic particles: electron, neutron, & _____",Proton, History & Holidays,Who succeeded Churchill when he resigned in 1955,Sir anthony eden,Sports & Leisure,Which Two Sports Comprise A Biathlon? (PFE) ,Cross Country Skiing & Rifle Shooting  -Music,Which Group Comprises Of Colin Angus And Mr C,The Shamen,General,Henri Charrier is better known by what nickname,Papillion – The Butterfly,General,What is the most northerly town in Europe,Hammerfest -General,What are the colours of the Olympics rings (in order).?,Blue Yellow Black Green Red,General,For whom was buckingham palace built,John sheffield,General,Idaho Falls Idaho its illegal for over 88 year olds to do what,Ride a motorcycle -General,Who Was The First Woman To Appear Naked On The Front Cover Of The Radio Times,Helen Mirren,Food & Drink,"Booze Name: 1 oz. gin, 1/2 oz. dry vermouth, 1/2 oz. sweet vermouth, 1/2 oz. orange juice",Bronx cocktail,General,There are more the 38000 types of what,Mushrooms -General,What was known as the spice island,Zanzibar,General,Leslie Sebastian Charles is better known as who,Billy Ocean,Music,Silver Convention was a studio-created group. In which country was the studio situated?,Germany -General,In which county is Charnwood Forest,Leicestershire,General,What is the fear of the night known as,Noctiphobia,General,The telephone county code 39 would connect you with _____,Italy -General,What is the name of the Tokyo Stock Market Index,Nikkei,General,"In the monty python parody 'search for the holy grail', what was arthur's trusty servant's name",Patsy,General,"In Greek mythology, who was the first woman on Earth, created by Hephaestus at the request of Zeus",Pandora -General,"In The Pilgrim's Progress, which city of Christian's final destination",Celestial city,General,"The original name for this Pontiac car was the Banshee, for its mythicality.",Firebird,General,The star Aldebran is part of which constellation?,Taurus -Science & Nature,What Do You Get If A Male Donkey Breeds With A Horse? ,A Mule ,General,What would an Irishman do with his shone,Cut Peat,Geography,What is the capital of Bosnia and Hercegovina,Sarajevo -Sports & Leisure,How Many Suits Are There In A Game Of (Mah Jong) ,3 Suits ,General,In Which Country Is The Chernobyl Nuclear Power Plant That Had A Melt Down Causing Widespread Radioactive Fallout,"Ukraine, 1986",Music,Name The Kajagoogoo's Debut Single,Too Shy -Food & Drink,Who released the following album 'Strange brew ' ,Cream ,Art & Literature,Which Of Jane Austens Novels Was Publsihed Posthumously ,Persuasion ,General,In what book did we meet the Eoli and the Morlocks,The Time Machine – HG Wells -General,What is the derivative of sin x,Cos x,Food & Drink,What is the name for the liquid butter used in Indian cooking? ,Ghee , Language,Which is the only english word that contains all the vowels in alphabetical order?,Facetious -General,What name is given to the fraction part of a logarithm number?,Mantissa,General,What U.S. state includes the telephone area code 701,North dakota,General,Who played the role of Miss Hannigan in the film Annie,Carol Burnett -General,Ralph Freeman designed which Australian landmark,Sydney harbour bridge,General,"Which singer/songwriter won a Grammy in 1988 with 'Don't Worry, Be Happy'",Bobby mcferrin,General,What color was Coca Cola originally,Green -Science & Nature,"In Wonderland, Who Took A Watch Out Of His Waistcoat Pocket Only To Discover That He Was Late ",The White Rabbit ,General,Who is the only American president elected unopposed,George Washington,General, Who or what could win a Golden Clio award ,Advertising Film -General,What animals teeth were used as knife blades by the Indians,Beaver,General,Al Alcorn wrote which famous computer program / game,Pong,General,Who was the Celebrity Captain of the Chicago Blackhawks in 1991-92,Jim - History & Holidays,In The Film 'Halloween' For How Many Years Was The Killer Locked Up In An Asylum Before He Escaped ,15 Years ,General,In what country is the Eucumbene Dam,Australia New S Wales, Geography,What is the basic unit of currency for Haiti ?,Gourde -General,Norman Bean became famous as which author,Edgar Rice Burroughs,General,What is the Roman numeral mcdxlii in decimal,1442,Geography,What is the capital of Afghanistan,Kabul -General,In which tv series does fred savage play kevin arnold,The wonder years,Food & Drink,"Which drink made of hot milk curdled with ale, wine, etc. and often flavoured with spices, was formerly used as a cold remedy? ",Posset ,General,What is a group of grouse,Pack -Science & Nature,The valuable blue form of corundum is called:,Sapphire,General,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,Food & Drink,Who released the following 'edible' album 'Chocolate starfish and the hot dog flavoured water' ,Limp Bizkit  -Science & Nature," It takes approximately 69,000 venom extractions from the __________",To fill a 1_pint container. coral snake,General,"Who On TV Drove A Car With The Licence Plate ""CNH 320""",The Dukes Of Hazzard,General,A long cylindrical pillow,Bolster -General,What are people encouraged to kiss under,Mistletoe,General,Haifa is a major seaport in which country,Israel,General,What is the British equivalent of the game known in America as 'Tick-Tack-Toe',Noughts and crosses -General,In Islington in London it’s a £50 fine for sleeping where,The Public Library,General,How many elevators stopped at the bridge on Star Trek,One,General,Who was the cisco kid's faithful sidekick,Pancho -General,If a dish is served pomontier what does it contain,Potatoes,General,"In the film 'star wars', what species is chewbacca",Wookie,Science & Nature,Which moon is the largest satellite in our solar system?,Ganymede -Science & Nature,What Describes A Person With No Skin Pigment ,An Albino ,Science & Nature," Fish travel in schools, whales travel in pods or __________",Gams,General,In America what colour is the Green Card,White -Music,"Which Of These People Is The Shortest ""Jarvis Cocker, Micheal Stipe Or Nicky Wire""",Michael Stipe,Sports & Leisure,With which sport is Chris Evert Lloyd identified?,Tennis,General,Who died three days before groucho marx,Elvis presley -General,Creedence clearwater revival sings 'have you ever ______',Seen the rain,General,What is the name given to a pregnant goldfish?,Twit,General,"What ballerina is known by her peers as ""the body""",Cynthia gregory -General,"In the tv series 'leave it to beaver', what was wally's best friend's name",Eddie haskell,Geography,Which 2 Countries Occupy The Iberian Peninsular ,Spain & Portugal ,General,"Which poem begins ""Oh to be in England now that April's here""",Home thoughts from abroad -Sports & Leisure,"In Boxing Who Suffered Defeats To Tim Witherspoon, Mike Tyson & Lennox Lewis ",Frank Bruno ,Religion & Mythology,"His wife was Penelope and his son, Telemachus. He was exiled from his home on Ithaca for angering the gods?",Odysseus,Geography,Which U.S. city is known as Beantown,Boston - History & Holidays,"In 'Bridget Jones Diary'', Bridget Jones makes a New Years Resolution, to sort out her life, meet a man and keep a diary, but who played Bridget Jones ",Renée Zellweger ,General,Where did the Ghost of Christmas Present take Scrooge first,His clerk's,General,Black and white seabird with small wings,Auk -General,What fashion designers symbol is a swan,Gloria Vanderbilt,Science & Nature,What fish is the fastest?,Sailfish,General,What is the real name of the murderer known either as 'The .44 Calibre Killer' or 'The Son of Sam',David berkowitz -General,In which English town or city would you find The Christmas Steps,Bristol,Music,Which Pioneer Black Singer/Songwriter Dedicated An Oscar To Nelson Mandella,Stevie Wonder,General,What is latke,A potato pancake -Geography,On which river is Rome located,Tiber,General,What is the process of splitting atoms called,Fission,General,Surgical pincers,Forceps -General,96% of American children can recognise - who,Ronald MacDonald,General,What sort of wood was Noah's Ark made from,Gopher wood,General,Which Country Won The Eurovision Song Contest In 2008,Poland -Science & Nature, The female American Oyster lays an average of 500 million eggs per year. Usually only one oyster out of the bunch reaches __________,Maturity,General,What area gets its name from the Greek word for bear,Arctic because great bear over it,General,The via appia went from brindisi to ______,Rome -General,What are the grinding teeth called,Molars,General,Which UK artist painted The Rakes Progress in the 1700s,William Hogarth,Science & Nature,The Lockheed F-117 Nighthawk Was The First Of Which Type Of Aircraft ,Stealth  -Science & Nature,A one-humped camel is called a _________.,Dromedary,General,Who wrote the novel Invisible Man in 1952,Ralph Waldo Emerson,General,Who composed the music for the musical Showboat,Jerome kern -General,In 2001 one active UK warship named after an Englishman who,Sir Winston Churchill,General,Harmatophobia is the fear of what,Sexual Incompetence,Toys & Games,"This is the length, in feet, of a regulation Snooker table",12 -General,What country has the most bookshops per head population,New Zealand,General,What Was The Bon Jovi's First UK Top Ten Hit,You Give Love A Bad Name,General,Damascus is the capital of ______,Syria -Geography,Which U.S. state has the least rainfall,Nevada,General,From what coast do dalmatian originate,Dalmatian coast,General,Who was the Greek equivalent of the Roman god Cupid,Eros -Music,"Who Sang The Smokin Dance Hit ""Feel It"" Including The Featured Artist",Tamperer Feat Maya (Pepper),General,"In transport terms, what is an ACV",Air cushioned vehicle hovercraft, Geography,What is the basic unit of currency for Romania ?,Leu -General, Legal Terms: A supplement to a will.,Codicil,General,One in four Americans has done what,Appeared on TV,General,In which month do russians celebrate the october revolution,May -General,Edward Whymper was the first to do what,Climb Matterhorn,General,Which Greek hero finally tamed Pegasus,Bellerophon,Geography,Which Countries Collectively Are Known As Benelux ,"Belgium, Netherlands, Luuxemborg " -General,"A 1957 title recorded by the Crickets, was a line taken from the classic John Ford Western's 'The Searchers'. What was the title",That'll Be the Day,General,Who founded the Ballets Russe in 1909,Serge diaghilev,General,What name is given to the study of living things in their environment,Ecology -General,Opperman what is the capital of iowa,Des moines,General,This city was the headquarters of the British East India Company until 1708,Bombay,Music,What Was Simply Reds First Ever Top Ten Hit,Holding Back The Years -General,"Saanen, Hongtong & Toggenburg Are All Breeds Of Which Animal",Goats,General,Which ocean can yoU.S.wim in from the Seychelles,Indian,General,Of what continent is cyprus a part,Asia -General,Which 9-fingered pop pianist starred in the film Its all Happening,Russ,Religion & Mythology,"What has no reflection, no shadow, and can't stand the smell of garlic",Vampires,General,Which is the largest of the Society Islands,Tahiti -Sports & Leisure,A Silver Fern Is The Emblem Of Which Nations Rugby Union Team? ,New Zealand ,Geography,Over 75% of the Earth's surface is covered by some form of _____.,Water,General,Which great city replaced its hereditary kings with chief magistrates in 683 bc,Athens -General,What is the Latin word for liquid produced by the Ficus Elastica,Latex,General,Which garment traditionally contains eight sections of material,Kimono,Music,"Who Had ""Self Control"" In 1984",Laura Brannigan -General,What is the fear of parents-in-law known as,Soceraphobia,Geography,Which element makes up 2.6% of the Earth's crust,Magnesium,Science & Nature,Acetic Acid Is More Commonly Known As What? ,Vinegar  -General,Which is the only work by Dukas most people have ever heard of,The sorcerer's apprentice, Geography,"If its 4:00pm in Seattle, Washington what time is it in Portland, Oregon?",4:00pm,Science & Nature,A coral island consisting of a ring of rock enclosing a central lagoon is a(n) ________.,Atoll -Geography,What queen were the virgin islands named for in 1627 ,Elizabeth i ,General,What company introduced the first commercial minicomputer 65,DEC,General,Which of the four Horsemen of Apocalypse is known as Christ,War -General,What did henry shrapnel invent,Exploding shell,General,The French call it Gulf de Gascoine what's its English name,Bay of Biscay,Sports & Leisure,What Is Tthe Mark Behind Which Dart Player Must Stand Called ,The Oche  -General,What's the collective noun for a group of gulls,Colony,General,"Which Award WinningMovie Ended With The Line ""Hey Can I Try On Your Yellow Dress""",Tootise, Geography,Des Moines is the capital of ______?,Iowa -General,The American Society for Prevention of Cruelty to Animals (aspca) was formed in what year,1866,General,Who commanded Bill Jukes Cecco Noodler Skylights Starkey,Captain Hook,General,Where did Clark Kent usually change into his Superman Costume in the Daily Planet building,Store Room -General,In Pac Man eating what was worth 5000 points,Banana,General,What happened to Catherine Eddowes on 30th September 1888,Met Jack the Ripper,General,A large S.American vulture,Condor - History & Holidays,"""What Did My True Love Give To Me On The """"Nineth"""" Day Of Christmas"" ",9 Ladies Dancing ,General,In which television series do the characters Doctor Carter and Doctor Benton appear,E r,General,What is the most common metallic ore in the Earths crust,Aluminium -General,What is the Capital of: Virgin Islands,Charlotte amalie,Music,"Whose Middle Names Are ""Peter George St John De Baptiste De La Salle""",Brian Eno (No Wonder He Changed It),Geography,In which city is the Royal Mile? ,Edinburgh  -General,What does Do Loop do for a living,Computer programmer,Food & Drink,What Is An Egg Plant ,An Aubergine ,General,Who is Anne Catherick in the title of an 1859 novel?,The Woman in White -People & Places,What Did You Associate With Rod Hull ? ,Emu ,Sports & Leisure,In Which Sport Might You Come Across An Albertross ,Golf ,Science & Nature,What is another name for iron oxide ?,Rust -General,"Which famous Englishwoman was born in Florence on 12th May 1820,where her well-to-do parents were temporarily resident",Florence nightingale,General,"Which TV program ""returned control"" to you at its conclusion",Outer limits,Sports & Leisure,Basketball: The Seattle ________.,Supersonics -General,What is the opposite of nocturnal,Diurnal,General,"What race's runners refer to the noisy section along wellesley college as the ""screech tunnel""",The boston marathon, History & Holidays,For what country did Columbus make his historic voyage?,Spain -General,Which Saint is said to have carried his own head for six miles after his death?,St Denis,General,Who was the first British monarch to live in Buckingham Palace,Queen victoria,Science & Nature,On Which Modern Continent Did Tyrannosaurus Live ,North America  -General,Five out of six of the Village people have got what,Moustaches,Art & Literature,"Captain Hook, Tiger Lily, and Tinker Bell are characters in what story?",Peter Pan, History & Holidays,In which 1970's films does Dustin Hoffman play the character 'David Sumner' ? ,Straw Dogs  -General,In Watership Down rabbit language what is a hrududu,A motor car,General,What did pocahontas do to entertain the colonists,Cartwheels,General,Of what mineral is limestone composed of,Calcite -General,Who is Aladdin's father,Mustapha the tailor,General,Which French philosopher and political thinker wrote The Social Contract in 1762,Rousseau,General,What two sports use mallets,Croquet - Polo -General,Which brother sister won Wimbledon mixed doubles in 1980,John Tracy Austin,Food & Drink,What food has a name that means twice cooked? ,Biscuit ,People & Places,Which Movies Star Was Famous For The Phrase 'You Dirty Rat'' ,James Cagney  -General,"What can be a font, architectural style or novel type",Gothic,General,Who painted Les Parapluies in about 1883,Pierre auguste renoir,General,What is the most common Spanish surname,Garcia -Geography,In what country is the waterloo battlefield ,Belgium ,Technology & Video Games,Who is the first gym leader you fight in 'Pokémon' for the Game Boy? ,Brock,General,An 18th century law in Britain banned the poor from having what,Gin - they were too pissed -General,"Which Classic Tv Character Was Played By ""Sorrell Brooke"" Between (1979-1985)",Boss Hog,Music,Which Girl Band Had A Hit With The Song “Really Saying Something”?,Bananarama,General,What 80s show is Frasier a spinoff of?,Cheers! - History & Holidays,In Which Modern Day Country Would You Find The Region Known As Transylvania ,Romania ,General,Cassiterite is the ore what is extracted,Tin,General,Seawood's Folly is better known as what today,Alaska -Music,Who Were The Original Members Of Suede,"Brett Anderson, Bernard Butler, Mat Osman, Simon Gilbert, And Justine Frischmann",General,Where in Australia were British satellites launched in early 70s,Woomera,General,What is the art of tracing designs and making impressions of them,Lithography -General,Who Was Time Magazines Man Of The Year In 1938,Adolf Hitler,General,Stadler and Waldorf were critics who appeared in which TV show,The muppets,General,From where are walloons,Belgium -General,March 21st to April 20th is what Star sign,Aries, Geography,In which country is the Great Victoria Desert?,Australia, History & Holidays,"""What is the origin of The X In """"Xmas""""? "" ",X is the first letter of the word christ in latin  -Geography,Where is the city of Brotherly Love,Philadelphia,General,What is the offspring of a female horse and a male donkey,Mule,Art & Literature,"From which Shakespeare play is this line taken: ""To be or not to be?""",Hamlet -General,1300 to 1500 it was illegal for Englishmen to have 3 what a day,Meals,General,What is tripsophillia,Arousal from massage,General,What color is mary poppin's umbrella,Black - History & Holidays,"In 1959, Berry Gordy Jr. started a small record company called ",Motown ,General,Old lady from pasadena,The little old lady from pasadena a little old lady,General,Saint Andrew is the Patron Saint of Scotland and where else,Russia -General,What Film Won The Oscar For Best Visual Effects Back In 1984,Indiana Jones (Temple Of Doom),Music,"Which Musical Contains The Song, “Oh What A Beautiful Morning”",Oklahoma,General,"After recording 'The Nitty Gritty', who released the rhyming 'Name Game'",Shirley Ellis -General,Racing driver James Hunts nickname was Hunt the what,Shunt,General,Hippopotomonstrosesquippedaliophobia is a fear of ____,Long words,Sports & Leisure,Hockey: The Edmonton __________.,Oilers -General,Where is the kitty hawk,Smithsonian, Geography,"What is the capital of the overseas department and administrative region of France, Réunion?",Saint-Denis,General,And what is the first,The Whirlpool -People & Places,Which British comedian became well known for his broken microphone routine? ,Norman Collier , History & Holidays,Which houses fought the War of the Roses?,Lancaster and York,General,Device for viewing a revolving or oscillating object by making the object appear to be at rest,Stroboscope -General,Calvin and Hobbes artist.,Bill watterson,Sports & Leisure,Approximately how many dimples are in a golf ball?,Between 300 and 500,General,What is the third most popular meal ordered in sit down restaurants in the U.S.,Spaghetti -General,In the US what job has an average IQ of 104,Policeman,General,The study of inland water is known as,Hydrology,Toys & Games,How many folds does a Monopoly board have?,One -Entertainment,"Name the actor who played the leading role in ""The Good, the Bad, and the Ugly"".",Clint Eastwood,General,What country launched its first space rocket January 1961,Italy,Sports & Leisure,In which sport is the Cy Young Trophy awarded?,Baseball -Geography,The tallest building in the Southern Hemisphere is in which city,Melbourne,Music,"Who Had A Hit With ""Kokomo""",The Beach Boys,General,What Type Of Animal Is A Suffolk Punch,A Horse -General,"In ballet, an elongated line; in particular, the horizontal line of an arasbesque with one arm stretched front and the other back.",Allongé, Geography,What is the name of the large natural landmark in northern Australia also known as Uluru?,Ayers Rock,Food & Drink,What Exactly Is Saffron ,Crocus Stamens  -Geography,What is the capital of France,Paris,General,On which racecourse is the Kentucky Derby run,Churchill downs,General,What was the only film starring Mae West and WC Fields,My little chickadee -General,Who wrote the music to West Side Story,Leonard bernstein,General,What did jim henson create,Muppets,Food & Drink,Gin and Collins mix make which type of Cocktail ,Tom Collins  -General,What is the currency of Poland,Zloty,General,What interested a nomologist,Scientific Laws,Music,Who Released An Album Called “White Ladder”?,David Grey -Geography,What Was Sri Lanka Previously Known As ,Ceylon ,Entertainment,He was the voice of draco the dragon in the movie Dragonheart.,Sean Connery,Music,Which Band Were At The Number One Spot In 1998 With “Deeper Underground”?,Jamiroquai -General,Who won an Oscar for the soundtrack to Chariots of Fire,Vangelis,General,What is cerumen?,Earwax,General,"Who is ""the iron lady""",Margaret thatcher -General,"In Greek mythology, where were lotuses eaten",Island of jerba,General,In Tokyo there is a restaurant restricted to who,Dogs,Technology & Video Games,What fuzzy animal does Croc rescue? ,The Gobbos -General,Assen in the Netherlands is most famously associated with which sport?,Motorcycling,General,"Who recorded ""Join Together"" in 1972",The who,General,What is Top Kanal in Poland,Commercial TV station -Music,Which Musical Was Based On H G Wells Novel Kipp's,Half A Sixpence,General,Steptoe and Son' was the model for which amercian sitcom,All in the Family,General,What countries nation anthem is Land of Two Rivers,Iraq - History & Holidays,Which great American inventor died in October 1931? ,Thomas Edison ,General,What was the first movie Disney released through a subsidary company that carried an R rating?,Down and Out In Beverly Hills,Science & Nature,Water containing carbon dioxide under pressure is called ________.,Soda water -General,Who was reportedly the strongest man on earth,Samson,General,Australia was originally created to serve as a British ______ colony.,Penal,General,Who was Chairman of British Coal during the miners strike of the 1980s,Ian mcgregor -General,Which two fruits are an anagram of each other,Lemon and melon, History & Holidays,Who ruled England at the time of Shakespeare?,Elizabeth I,General,"What was the name of the novel by Elmore Leonard on which the film, ""Jackie Brown"" was based",Rum punch -General,In what country would you be rich in Leu,Rumanian currency,General,"Who said ""The great masses of the people will more easily fall victims to a big lie than to a small one.""?",Adolf Hitler,General,On what day of the year does grouse shooting end,December 10th -General,Where did Queen Victoria and Prince Albert get married?,St. James' Palace,General,The star constellation Ara has what English name,The Alter,General,Collective nouns - what's a group of photographers called,A Click -General,What was the first magazine to publish a hologram on it's cover,National Geographic,General,What everyday item was named after St.Pantaleon,Pants,General,The Reknas company - Calcutta worlds biggest exporter what,Human (skeletons) -General,"Popular social dance during the eighteenth century; done in rows or circles, it may have derived from English country dancing.",Contredanse,General,Which poet gave his name to a cape south of Brisbane,Byron,General,In which country is the port of Chittagong,Bangladesh -Toys & Games,Whose 3_dimensional cube became a 70s & 80s craze,Rubiks cube,General,What Is An Alligators Baby Called,A Hatchling,General,Baseball: the atlanta ______,Braves -Geography,In which continent would you find the mackenzie river ,North america ,General,What did Robert Ballard discover in 1985,The Titanic,General,What is the worlds largest food company,Nestle - History & Holidays,Which Olympics did the US boycott? ,1980 ,General,"1n the 1960s, what was the name of the Wolseley version of the Austin Mini",Hornet, Geography,Which element makes up 8.13% of the Earth's crust ?,Aluminium -General,I will please is the Latin translation of what medical treatment,Placebo,General,In computing who are floppy and mootilda,Gateways cows,General,What is the shape of the pasta 'tortlloni' based on,Venus's navel -General,What is 'mother's ruin'?,Gin,General,Soylent Green the band took name from film and book by who,Harry Harrison,General,Which religious order was founded by Saint Bruno,Carthusian -General,The U.S. has never lost a war in which _____ were used,Mules,Music,What Remains David Bowies Best Selling Original Album,Ziggy Stardust,Science & Nature," If frightened or threatened, a mother rabbit may abandon, ignore, or __________",Eat her young -General,Which actor was the first to play Robin Hood on television,Richard greene,General,Like what can a fully ripened cranberry be dribbled?,Basketball, History & Holidays,Who Was Henry VIII's Last Wife? ,Catherine Parr  -General,Name Disney's first film to win an Academy Award,Flowers and Trees,General,In what Hitchcock film did the heroine find shrunken head in bed,Under Capricorn,Sports & Leisure,Hockey: The Chicago _________.,Blackhawks -General,Issur Danielovitch became famous a who,Kirk Douglas,General,If you saw Fringilla Coelebs what bird have you noticed,The Chaffinch,General,Red Connors played by Edgar Buchanan which cowboys partner,Hopalong Cassidy -Entertainment,Who took dictation from Perry Mason?,Della Street,General,What is a group of leopards,Leap,General,"What is the full term for the abbreviation ""zoo"" ?",Zoological garden -Entertainment,Where are Rocket J. Squirel and Bullwinkle Moose from,Frostbite falls,General,Which countries name translates as land of the free,Thailand,General,John Lowe Oct 1984 got £102000 first to do what on TV,Nine dart 501 game -General,What living organism can be 30 times the size of a blue whale,A giant sequoia giant sequoia,General,"Although not named in the new testament, tradition names the two thieves crucified at the same time as Jesus as (alphabetically)",Dismas & gestas,General,From what is the liqueur kirsch made,Cherries -Science & Nature,Graphite dust is formed when what is cut with a laser?,Diamond,General,Who was known as The man in Black,Johnny Cash,General,Which moon was discovered on 22 June 1978,Charon -General,What is the flower that stands for: lasting beauty,Stock,Science & Nature,What is the modern name for Plumbum?,Lead,General,What was the Roman name for Odysseus,Ulysse -General,What is the Capital of: Seychelles,Victoria,General,"Who said ""All the world's art ain't worth a good potato pie""",L S Lowrie,Geography,"What Nationality Was Christian Schonbein, Who Discovered Ozone In 1840 ",German  -Entertainment,Charles Boyer inspired a cartoon skunk. Who?,Pepe le Pew,Technology & Video Games,What was the Earth's first artificial satellite ?,Sputnik 1, Geography,"If you flew due West from Portugal, what is the first continent you would reach?",North America -General,Who is Prime Minister of Australia,John howard,General,Lockiophobia is the fear of,Childbirth,General,This word describes the nazi annihilation of Jews,Holocaust -General,After the Bible what book did Americans rate as their favourite,Sears Roebuck Catalogue,General,What Was Madonna's First UK No.1 Single?,Into The Groove,General,Name the producer of Starsky & Hutch and Beverly Hills 91210,Aaron Sperling -General,A dime is equal to how many cents,Ten,General,In the US what was free before 1863,Mail service,Science & Nature,In Which US National Park Is The Old Faithful Geyser? ,Yellowstone National Park  -Music,Which Guitar Manufacturer Was Responsible For The Stratocaster,Fender,General,Which jethro tull lp cover showed a man leading two horses,Heavy horses,Music,"Who Suggested ""Lets Get Rocked""",Def Leppard -Music,Which Duo Wrote The Song “You'll Never Walk Alone”?,Rogers & Hammerstein,General,What is the eleventh month of the year,November,General,Novercaphobia is the fear of,Step mother -General,What is the capital of New Jersey,Trenton,General,What is the name of an Italian dessert made from egg yolks and Marsala wine,Zabaglione,Geography,In US city houses the headquarters of Coca Cola? ,Atlanta  -General,What is john robertson osbourne's stage name,Ozzy osbourne,Science & Nature,What is the main component of Brass and Bronze?,Copper,General,Where could you spend your Tala - Capital Apia,Samoa -General,"Who was the most notable wife of King Priam of Troy during the Trojan War, having no less than 19 children to him?",Hecuba,General,What was the occupation of most american presidents prior to politics,Lawyer,Music,"In The Beatles Track ""Penny Lane"", what did the Fireman keep in his pocket?",A portrait of the Queen -People & Places,Whose son got lost in the desert during the Paris Daker rally ? ,Mrs Thathchers Son Mark ,Art & Literature,This girl hid from the Nazis in Amsterdam.,Anne frank,General,What is Sean Connery's real first name,Thomas -General,Who plays 'Cat' in Red Dwarf,Danny john-jules,General,Which TV Show Used The Song Known As The Wizard Composed By Paul Hardcastle As It's Theme In The 1980's,Top Of The Pops,General,What links AP AUP CP Reuters,News Agencies -General,What was the leading cause of death in the late 19th century,Tuberculosis, History & Holidays,This is said to be history's greatest military evacuation.,Dunkirk,Food & Drink,What Is Ghee ,Clarified Butter Used In Asian Cooking  -Science & Nature, The most carnivorous of all bears is the __________. Its diet consists almost entirely of seals and fish.,Polar bear,Music,"Which Group Took The Title Of Their 1967 Debut Album ""Piper At The Gates Of Dawn"" From A Chapter In Kenneth Grahams ""The Wind In The Willows""",The Pink Floyd,General,Elwood Edwards voice is heard by AOL users - where,Welcome and You Got Mail -Music,Which Year Did Bryan Adams Refer To In 1985,1969 (Summer Of 69),General,What colour do you get when you mix blue and yellow together?,Green,General,Whose biography is entitled 'the dark side of genius',Alfred hitchcock -General,What is an algonquin,Moose,Music,What Method Of Singing Does The Singer Alternate Between Natural Voice & Falsetto,Yodelling,General,What was mohammed ali's original name,Cassius clay -General,A temple in Sri-Lanka is dedicated to what,Buddha's tooth,Science & Nature,What is the chief constituent of air?,Nitrogen,Music,Name The Band Formed By Ace Frehley After He Left Kiss,Freshleys Comet -Science & Nature,What Is The Study Of Low Temperatures Called ,Cryogenics ,Geography,"___________ was called the ""Gateway to the West"" in the 1800s because it served as a starting place for wagon train departures.",St. louis,General,"European architecture and music,ornate and extravagant",Baroque - History & Holidays,What English city was known to the Romans as Venta Bulgarum?,Winchester,General,What 1969 sex spoof had a different author for every chapter,Naked came the, History & Holidays,April 1889 Saw The Birth Of Which Future Dictator? ,Adolf Hitler  -Science & Nature,What is the symbol for iron in chemistry?,Fe,General,What was the first Carry On film,Carry on Sergeant,General,Who would use a chimere and a rochet,Bishop - parts of dress - Geography,What is the capital of North Carolina?,Raleigh,Science & Nature,Which meteor shower occurs on the 4th May ?,Eta Aquarids,Entertainment,"Which character in ""Forrest Gump"" loved shrimp?",Bubba -Entertainment,What job was Sting before he was a rock star?,Teacher,General,Tete-beche is a familiar term in which hobby,Stamp Collecting,General,Whose memoirs are entitled Long Walk to Freedom,Nelson mandela -General,What is compressed snow also called,Neve,General,Suzy was a star of a 60s TV show what character did she play,Flipper the dolphin,General,Celibate Egyptian priests were forbidden to eat what aphrodisiac,Onions -General,Adolph Hitler had a phobia - what,Claustrophobia,General,John Dick Ann Timmy who is missing from this famous five,Julian,General,"What do the Italian, French and Irish flag have in common",Vertical stripes -General,"In the Bible, who is the Book of Proverbs attributed to",Solomon,General,Which historical character is often referred to as 'The Mad Monk',Rasputin,Entertainment,Who was Dick Dastardly's pet?,Muttley -General,Who kept searching for his long lost salt shaker,Jimmy buffet, History & Holidays,"Who penned the words, 'Hubble, bubble toil and trouble, fire burn and cauldron bubble' ",William Shakespeare ,General,Who had a hit with First Cut is the Deepest in 1977,Rod Stuart -General,Which two teams automatically qualified for the france '98 soccer world cup,France and brazil,General,"Final and decisive action of the Napoleonic Wars, that effectively ended French domination of Europe",Battle of waterloo,General,Which art gallery is the home of Rodin's ' The Kiss' and Picasso's The Three Dancers',Tate modern -General,Where did Thomas Magnum grow up as a kid?,San Diego,Art & Literature,How Is Mrs William Heelis Better Known ,Beatrix Potter ,General,What does a gallophoic englishman fear,France -General, The feeling of having experienced something before is known as _______.,Deja vu,Sports & Leisure,Where were the 1948 Olympics held ?,"London, England",General,What country consumes the most meat per capita 124 lb,Argentina - History & Holidays,What was the leading cause of death in the late 19th century?,Tuberculosis,General,"The Name Of The Capital Of Which Country Means ""Good Air""",Buenos Aries,Geography,The most densely populated state in the United States is _______________,New jersey -General,Who was the first novelist to present a typed manuscript to his publisher,Mark twain,General,Large rich eloborate cake,Gateau,General,Kinshasa is the capital of ______,Zaire -Science & Nature," Despite man's fear and hatred of the wolf, it has not ever been proved that a non_rabid wolf ever attacked a __________",Human,General,From whom did J.F. Kennedy accept his dog Pushinska,Nikita kruschev,General,Credit card on which magnetically encoded information is stored to be read by an electronic device,Swipe card -Science & Nature,What does LPG stands for?,Liquid Petroleum Gas, History & Holidays,Which country traditionally provides Britain with a Christmas tree for Trafalgar Square in London? ,Norway ,General,"If the groundhog sees his shadow on Feb. 2, there will be how many more weeks of bad weather",Six -General,What is the French phrase that means already seen,Déjà vu,General,Wild Australian dog,Dingo,General,Which Is The Only Creature Where The Male Becomes Pregnant?,Sea Horse -General,What school does Harry Potter attend,Hogwarts,General,In Hindu mythology Agni is the god of what,Fire,General,What does sideshow bob of 'the simpsons' and jean valjean of 'les miserables' have in common,Criminal number -General,"Which company, during the 1984 Super Bowl, aired what is considered one of the best commercials in TV history?",Apple,Science & Nature,What Proportion Of People Are Left Handed ,About 5% ,Music,The Police Had Us Wrapped Around Their What,Finger -General,What is unusual about The lake of Monteith in Scotland,Only one the rest are Lochs,General,What does IRS stand for,Internal revenue service,Sports & Leisure,"Green Room, Crystal Cathedral & Walking The Dog are all terms from which sport? ",Surfing  -Food & Drink,Who In The World Of Music Has The Real Name Of Derek Dick ,Fish ,General,Colleen McCullough wrote which best selling book,The Thorn Birds,General,Which companies name translates as abundant fields,Toyota -Music,"""Radio Gaga"" Was A 1984 Hit For Whom",Queen,General,"Who was the first person to reach the South Pole, in 1911",Roald amundsen, History & Holidays,Which Well Known Actor Died On Christmas Day 1977 ,Charlie Chaplin  -General,Musical groups: england dan and _____,John ford coley,Art & Literature,Which Colour Followed Picasso's Blue Period ,Pink ,General,Which country's national flag has a tree depicted on it,Lebanon -General,"The world's smallest mammal is the _______ ___ of Thailand, weighing less than a penny",Bumblebee bat,Science & Nature,Which Lotus Car Came On The Market In 1963 And Featured In The Avengers ,The Elan ,General,Who might wear a wimple,A Nun -General,The treatment of disease by chemical substances which are toxic to the causative micro-organisms is called ____________.,Chemotherapy,General,What does the Easter Triduum refer to ,The last three days before Easter Sunday ,General,Which film is the first of the spaghetti westerns,A fistful of Dollars -Music,Name The Hit Making 3 Tenors,"Jose Carreras, Placido Domingo, Luciano Pavarotti",Music,Which Black American Band Featured On The British Band Aid Single,Kool And The Gang,General,"Which two British cities, along with ancient Rome, were built on seven hills?",Edinburgh and Sheffield -General,What animal is responsible for most deaths in the USA annually,Dogs,General,Who discovered the four largest moons of jupiter,Galileo,General,What U.S. president was the target of two assassination attempts in 17 days,Gerald ford -Geography,Where would you be if you landed smack in the middle of plock ,Poland ,General,What is the fear of the pope known as,Papaphobia,General,What year was Aunt Jemima pancake flour invented,1889 -General,What is the fear of heredity known as,Patroiophobia,General,What is the capital of the Northern Territorry of Australia?,Darwin,General,Who died three days after elvis presley,Groucho marx -General,License Plates: What job does SRREAL have,Artist,General,What is the study of sound,Acoustics,General,What is the young of this animal called: Rooster,Cockerel -Science & Nature,A Phon is a unit of what? ,Loudness ,General,Mageirocophobia is the fear of,Cooking,Science & Nature,Phobos and Deimos are the moons of which planet?,Mars -General,Who was the law for a shire,Reeve,General,Florence was severely flooded in what year,1966,General,In 1823 the British army soldiers were first issued with what,Trousers -General,What lies east of mauritius,Australia,General,What Is The Most Common Species Of Bird In The World,Red Billed Quela (Finch),General,What Shakespearean play features the line 'a plague on both your houses',Romeo & juliet -General,"Cushat, Rock and Stock all types of which creature",Doves, History & Holidays,Who Released The 70's Album Entitled Selling England by the Pound ,Genesis ,Entertainment,The key of A major has ___ sharps.,Three - Geography,What is the capital of Liberia ?,Monrovia,Food & Drink,"Boston butt, jowl, and picnic ham are parts of a ______.",Pig,General,Who recorded the song 'the humpty dance',Digital underground -General,In which war was the charge of the Light Brigade,Crimean,General,What colour tranquillisers work best,Yellow,General,How did John Belushi die?,Drug and Alcohol overdose -General,Sir Eyre Massey Shaw hold what Olympic record from 1900,Oldest gold yachting he was 70,General,What tough guy actor has a real first name of Walter,Bruce Willis,General,Queen Mary II died at age 32 what killed her,Smallpox - History & Holidays,Where In Egypt Is The Tomb Of Tutankhamen ,"Valley Of The Kings, Luxor ",General,"What's the international radio code word for the letter ""A""",Alpha,General,In which TV program did Sergeant Bosco appear,A Team -General,Your suffering from circadian dysrhythmia what have you got,Jet Lag,General,Which Bond films theme tune was sung by Duran Duran,A view to a kill,General,What type of celestial body is andromeda,Galaxy -General,The word for soda in Japanese when translated means what,Poisoned Water,General,Pienaar what gender is a snail,Hermaphrodite,Entertainment,From where was Ricky in 'I Love Lucy'?,Cuba -General,Who did patrick macnee portray in the spy drama the avengers,Jonathan steed,General,Venustraphobia is the fear of ______,Beautiful women,General,If in law someone is convicted of A.B.H. for what does the 'A' stand,Actual -Music,"In Which Year Did ""Wooden Heart"" & ""Surrender"" Reach No.1 For Elvis",1961,Science & Nature,What Does FORTRAN Stand For ,Formula Translation ,Science & Nature,Sound travels fastest through which state of matter?,Solid - History & Holidays,*What were the 'character' names of the 3 lead women of Charlie's Angels? (PFE)* ,"Sabrina, Kelly, Jill ",General,In what Australian state would you find Katherine,Northern territory,General,"In what Bible book is ""The love of money is the root of all evil""",Timothy 6:10 -General,About which game has most books been written,Chess,Music,"Which 1970's Disco Pop Band Ended Their Chart Career In 1981 With ""We Kill The World, Don't Kill The World)""",Boney M,General,Who was given a honorary Oscar in 1985 after 50 years acting,James Stewart -Music,For Whom Did David Byrne Produce An Album Called Mesopotamia In 1981,B52's,General,How to you turn a woman into a cuckquean,Shag her husband female cuckold,General,What countries name translates as lion mountains,Sierra Leone -Sports & Leisure,Which snooker player ended Stephen Hendry's five-year unbeaten run at The Crucible? ,Ken Doherty ,General,The Egyptian god Horus had the head of what creature,Falcon,Science & Nature, A male pig is a boar. A female pig is a sow. A baby pig is a __________,Piglet -General,"This delightfully soft topping, care of your local bovine",Cheese,General,Johnny Rotten describe sex as five minutes of what,Squelching,General,Sport control amateur level Federation International de Quilleurs,Ten Pin Bowling -General,15% of American males are what - so are bulls,Colour Blind, Geography,Name the sea between Korea and China.,The Yellow Sea,General,What is the fear of cold known as,Psychrophobia -Sports & Leisure,In Which Athletics Event Are Competitors Known As Either 'Spinners Or Shifters'' ,Shot Putt ,General,"Caciocavallo, herkimer, mysost, & trappist are all varieties of what",Cheese,General,What year did the lights go out,1965 -Entertainment,Who hosted the 1997 Grammy Awards?,Ellen Degeneres,Music,"Leslie Gore's Single ""Judy's Turn To Cry "" Was The Sequel To Which Top Ten Hit In 1963",It's My Party, History & Holidays,Sir Henry Morgan was a famous 17th century___? ,Buccaneer  -Art & Literature,Which Shakespearean Character Has The Most Lines ,Hamlet ,General,Who did Sidney say would play her in Sream 2?,Tori Spelling,General,What country introduced the secret ballot for government 1856,Australia - Victoria 27 =- 8 - 1856 -General,Which American author wrote Moby Dick,Herman melville,General,What European country is threatened by over 100 active volcanoes,Iceland,General,Who was Time Magazines first man of the year (1927),Charles Lindbergh -General,An external agent that alters foetal development is called a,Teratogen,Music,Who Replaced Guitarist Mick Taylor In The Stones Line Up,Ronnie Wood, History & Holidays,What is the name of the Russian Czar's daughter who might-or might not-have survived the Russian revolution?,Anastasia -General,"Who said 'ask not what your country can do for you, but what you can do for your country'",John f kennedy,General,What does the pancreas produce,Insulin,General,What is a group of finches,Charm -General,What is a boats speed measured in,Knots,Music,Chris Stein Was A Member Of Which Band,Blondie,General,Jerry Yang and David Filo created what,Yahoo -General,On a chemical what does a skull and cross-bone mean ?,Toxic,General,What is celebrated on 14 July in France,Bastille day,General,What is the young of this animal called: Owl,Owlet -General,Who patrols gotham city,Batman and robin,General,"Who was, ""first in war, first in peace & first in the hearts of his countrymen""",George washington,General,What's the worlds longest rail journey made no train change,Moscow Peking -Entertainment,"Who portrayed Han Solo in ""Star Wars""?",Harrison Ford,General,In Washington its illegal to buy what on Sunday,A Mattress,General,Over where does the uvula dangle,Tongue -Sports & Leisure,Where were the 1988 Olympics held ?,"Seoul, South Korea",General,Hindu religion Batavia is an incarnation of Vishnu in what form,A Fish,General,"What surname do Bobby, John and Teddy have in common",Kennedy -General,What do like charges do,Repel,Science & Nature,What Is Unusual About The Pitcher Plant? ,Its Carnivorous ,Sports & Leisure,How Many Consecutive Wimbledon's Men's Singles Titles Did Bjorn Borg Win? ,5  -General,What is the fear of microbes known as,Microbiophobia,General,In which London thoroughfare is the famous Hamley's Toy Shop,Regent street,General,What does anti pasta literally mean,Before the meal -General,The Atlanta Hawks basketball team have retired 23 which used to belong to _____,Lou hudson,Music,"What Year Was Madonna's ""Like A Virgin"" Released",1984,General,"In Arthurian legend, who was the Lily Maid of Astolat",Elaine - History & Holidays,In What Year Did The Vietnam War Begin ,1954 ,General,Which role was played by Tim McInerny on TV's 'Blackadder IV',Captain darling,Entertainment,"When not a Birdman, what does Ray Randall do for a living?",Police officer -General,What is the capital of the dominican republic,Santo domingo,Music,Belinda Kurczesky Is The Real Name Of Which Singer,Belinda Carlisle,General,In Greek mythology who was the first woman,Pandora -General,Psychologists says men who do what during sex are insecure,Keep socks on,Science & Nature," A pig is a hog _ but a hog is not a pig. ""Hog"" is a generic name for all swine. Per hog_raising terminology, a pig is a baby hog less than __________",10 weeks old,Sports & Leisure,"Which football team was nicknamed the ""Orange Crush""?",Denver Broncos -General,Who had a hit in 1986 with 'Don't Leave Me This Way',The communards,General,Where was the worlds first water clock invented,Peking,General,In Sesame street name the detective who often said egad,Sherlock Hemlock -General,Whose symphony number seven is called the Leningrad,Shostakovich,General,In a French restaurant what's plate de jure translate as,Dish of the Day,General,What does a priest distribute with an aspergillum,Holy water -Music,"Who Recorded The Albums ""Cuts Both Ways"", & ""Into The Light""",Gloria Estefan,General,Bondi Grape Blueberry Lime Tangerine Strawberry colours what,Apple Imac,General,"Only One Planet In Our Solar System Spins Clockwise, Which One?",Venus -General,"What does ""el pueblo de nuestra senora la reina de los angeles del rio porciuncula"" (los angeles' original name!) Translate into",The village of our lady the queen of the angels of the porciuncula river,Technology & Video Games,What do you need to collect 100 of to get an extra life in Super Mario Bros.? ,Coins,Music,"Who Are We ""Tracey Thorn & Benn Watt""",Everything But The Girl -Entertainment,What was John Wayne's real name?,Marion Morrison, History & Holidays,Who Wrote A Famous Diary Between 1660 & 1669? ,Samuel Pepys ,General,Actually caused by layers of hot air refracting sunlight,Mirage -General,The Mariners Compass or Pyxis is what,Constellation,General,What did D H Laurence do with his horse Aaron when it died,Had the skin made a Duffel Bag,General,"What was South Crofty in Cornwall, closed in 1998",Tin mine -Food & Drink,What do you get when you add fresh fruit to red wine ,Sangria ,General,Who was the Greek goddess of retribution,Nemesis,General,Which English Football Club Are Known As The Quakers,Darlington -General,What Country is consistently The Worlds Biggest Beer Consumer,Czech Republic,General,What is the lightest known substance,Hydrogen, History & Holidays,"Greased Lightnin was taken from the film Grease, but who had chart success with it? ",John Travolta  -General,Hathor was the Egyptian goddess of what,The Sky,Music,"According To The Beatles Who helped them to get married in ""The Ballad of John and Yoko""?",Peter Brown,General,What was first man made object to exceed sound barrier,Tip of a whip -Religion & Mythology,Who is the greek equivalent of the roman god Mars ?,Ares,General,RC Cola were the first company to do what,Sell cola in cans,General,Which Michael Jackson song could have referred to a tennis star,Billie jean -General,Pat Reid wrote which book - filmed and TV often,The Colditz Story, History & Holidays,Who Directed The 1968 Classic Horror Movie 'Rosemary's Baby'' ,Roman Polanski ,General,In which country is the port of Stravangar,Norway -General,Which chemical element is named after die Latin word for 'red',Rubidium,General,What is the world's largest weekly newspaper for stamp collectors,Linn's stamp news,Science & Nature,Who Was The Chief Of Aeronautical Research & Development At The British Aircraft Corporation 1945 To 1971 Having Previously Designed The Wellington Bomber Of World War 2 ,Barnes Wallis  -Music,"""Dancing With Tears In My Eyes"" Was A 1984 Hit For Which Group?",Ultravox,Sports & Leisure,Which Sport Was Featured In The Movie 'When We Were Kings ,Boxing ,General,Who was the first president whose mother was eligible to vote for him,Franklin delano roosevelt -Music,Who Took A Eurovision Song Contest Entry To No.2 In 1969 And What Was It,Lulu / Boom Bang A Bang,General,L is the roman numeral for what number,Fifty,General,An african-american dance in which couples strut and compete with high kicks and fast steps.,Cakewalk -General,In Eureka Nevada its illegal for moustached men to do what,Kiss Women,General,"Who recorded the album ""the smoker you drink, the player you get""",Joe walsh,Science & Nature," It is estimated that a single toad may catch and eat as many as 10,000 insects in the course of a __________",Summer -Sports & Leisure,Which Country Hosted The Olympic Games In 2004? ,Greece (Athens) ,General,Flexible disc for storage of computer data,Floppy disk,Science & Nature," 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 -General,What animal is the mascot of the US Naval Academy,Goat,General,Name the first war submarine invented by David Bushnell it sank,Turtle,General,In Delaware it is illegal to pawn what,Wooden Leg - History & Holidays,Who Wtote The Book 'How The Grinch Stole Christmas' ,Dr Seuss ,General,What is the alternative name of the foodstuff called sea asparagus,Samphire,General,From Here to Eternity gets its name from a poem by who,Tennyson -General,Sabotage is French - What did the saboteurs use,Shoes - sabot means shoe,Music,"Chicago Found It ""Hard To Say I Love You"" Or ""Hard To Say im Sorry""",Hard To Say Im Sorry,General,The milk of what creature will not curdle,Camel -General,What is the flower that stands for: sweet and secret love,Honey flower,Music,Wet Wet Wet Come From Which Scottish Town,"Clydebank, Near Glasgow",General,"What linked Armenia, Georgia, Latvia and Moldavia",USSR -General,On which U. S. river is the Grand Coulee Dam,Columbia,General,Who was Spandau Prison's last inmate,Rudolf hess,Music,In Which Us City Was Motown Records Founded,Detroit -General,In music what is meant by pianissimo,Very softly,General,Who is called the 'texas tornado' by her fans,Tanya tucker,Science & Nature,Units of frequency?,Hertz -General,The Largest Muslim Population In The World Is Found In Which Country,Indonesia,General,Which Australian city stands on the Port Jackson Inlet,Sydney,General,In Bradshaws you would find information about what,Railways -General,In Russia by law the homeless must be where after 10pm,At Home,General,The statue of Eros in Piccadilly Circus commemorates which Victorian reformer,Earl of shaftsbury anthony ashley cooper,General,Women do it 4 times to a mans once - what,Shoplift -General,"""Mr. Mojo Risin"" is an anagram for___",Jim Morrison.,Art & Literature,"What did Jeannie C. Riley describe as ""a little Peyton Place""?",Harper Valley,General,Mungo Scott travelled the River Niger in what year,1795 - Geography,What is the only country in the world whose name starts with 'O'?,Oman,General,What did Snoop Dogg change his name to in 2012?,Snoop Lion,General,Who won the Oscar for Best Director for the film The French Connection in 1971,William friedkin -General,What did Aristotle claim as the most delicate of table meats,Camel,General,Which cities public transport lost property office is the busiest,Tokyo,General,What is the flower that stands for: sharpness,Barberry -General,First feature film US TV Heart of New York what was subject,Washing machine inventors,Science & Nature,What is the technical name for an animal's pouch?,Marsupium,General,What two '80's dance movies did Cynthia Rhodes have a major role in?,Dirty Dancing and Flashdance -Science & Nature,What word is used for a male ass? (Other than that the word used for that #*§^*&%@! ex-boyfriend.),Jack,General,Name the national rugby team of Argentina,Pumas,General,Who fiddled while rome burned,Nero -General,Golden books in how many films did grace kelly appear,Eleven,General,John Garfield and Lana Turner starred in the film 'The Postman Always Rings Twice' what year was it released,1945,General,Which entire novel is set in June 16th 1904,Ulysses -General,Which day is the first day of Holy Week in the Christian calendar,Palm sunday,General,"What Spanish islands are Gomera, Hierro & Lanzarote a part of",Canary islands canary,General,"Who Said During Their One & Only Oscar Acceptance Speech ""I Think They Gave It To Me Because Im The Oldest""",Jessica Tandy -General,The transverse entrance hall of a church.,Narthex, Geography,What mountain range separates Europe from Asia?,Ural,General,Amahl and the Night Visitors was the first opera written for what,Television -General,How did Jamie Sommers become bionic?,From a parachute accident.,General,The green variety of beryl is called ________,Emerald,General,"Which credit card company has the slogan ""don't leave home without it""",American express -Science & Nature,When does the human uterus expand 500 times its normal size?,During pregnancy,General,Paludism is an old name for which disease,Malaria,General,What is a Tragopan,A Himalayan Pheasant -Entertainment,Who sang 'That's Alright Mama'?,Elvis Presley,Music,Which Pennsylvania DJ Helped Launch Rock By Hosting Live Shows At The New York Paramount In The 1950's,Alan Freed,General,"Duvali, Dushira and Holi are religious days in which religion",Hindu - History & Holidays,Who had a hit with the smooth and soulful You To Me Are Everything ? ,The Real Thing ,General,To what Scandinavian country would you have to travel to watch the football team Malmo play at home,Sweden,General,We know who wrote Little Women but who wrote Little Men,Lousia May Alcott -General,What is the largest item on any menu in the world,Roast camel, History & Holidays,What did Julius Caesar cross to signal a revolt against the senate?,Rubikon, History & Holidays,What Model Of Children's Bicycle Had A Gear Shift On The Frame ,The Chopper  -General,Which famous battle took place on July 1st to 3rd 1863,Gettysburg,General,What translates and executes your program,An interpreter, Geography,What is the basic unit of currency for Gambia ?,Dalasi -General,-isms: The social and philosophic creedo of Irish playwright George Bernard Shaw is called:,Shavianism,Technology & Video Games,What was the first home console system released by Sega? ,Sega Master System,General,"Country in East Asia, the world's third largest country by area (after Russia and Canada) and the largest by population",China -General,Rustic or awkward person,Bumpkin, History & Holidays,Which new country was formed in 1971 at the end of the Pakistan / India conflict? ,Bangladesh ,Geography,In which city is the Wailing Wall,Jerusalem -General,In which trade are composing frames and sticks used,Printing,Music,"Who Had Hits With Parodies Of Sh Boom , Rock Island Line, & Heartbreak Hotel",Stan Freeberg,General,What was the most commonly occurring name on the internet,Bill Clinton -General,What is an erythrocyte,Red blood cell, History & Holidays,"Germany's WW I allies were Austria-Hungary, Bulgaria, and ________.",Turkey,General,"Which sportsman, who died in 1999, was nicknamed the Yankee Clipper",Joe di maggio -General,What do the letters 'SAM' mean in SAM missiles?,Surface To Air, History & Holidays,What is the Roman numeral for fifty,L,General,What did a clue originally mean,Ball of Thread -General,"Which artist, born in Russia in 1887, painted Self Portrait With Seven Fingers, Birthday and Bouquet With Flying Lovers",Marc chagall,General,"A carbohydrate consists of carbon, hydrogen, and which other element",Oxygen,General,In the Simpsons name Ned Flanders wife,Maude -General,What is the leaf of a fern called,Frond,General,The city of winnipeg manitoba's by-pass is known as _____,Duff's ditch,Music,Who was the first girl group to top the UK singles chart?,The Supremes -General,What was founded in the UK 1694 because of war with France,Bank of England,General,Who said Old age isn’t so bad - considering the alternative,Maurice Chevalier,Food & Drink,Which Chef Created The 'Peach Melba' In Honour Of An Australian Opera Singer ,Auguste Escoffier  -General,What large red flower is the floral emblem of New South Wales,Waratah,General,What measure is used for the purity or fineness of gold,Carat, History & Holidays,"*What 70s blockbuster included the music, 'Cantina Band' by Mecco?* ",Star Wars  -General,Where does the word COP come from,Constable on Patrol,General,What very rude nickname was given to suede shoes with rubber soles in the 1950s,Brothel creepers,General,A foot-long ruler is __ inches long.,12 -Science & Nature,What Do The Initials E.E.G Stand For ,Electroencephalograph ,General,What Is The Most Successful Comedy Movie Franchise Of All Time,Police Academy,General,What sport uses barrier stalls,Horse racing -General,What 1970's film came from a pink floyd tune,The wall,General,A belief that government and law should be abolished,Anarchism,General,Malden Serkiovitch famous as which actor,Karl Malden -General,Who wrote 'weird harold and fat albert',Bill cosby,General,Mariner Chinese: What do you call a Chinese sailing ship,Junk,Entertainment,What is Elton John's real name?,Reginald Dwight -General,Somebody who rings bells,Campanologist,Art & Literature,This magazine chronicled the Man of Bronze and the Fabulous Five.,Doc savage,General,The University of Houston once elected what rock star as homecoming queen,Alice cooper -Science & Nature,"What does the ""lithosphere"" refer to?",The earth's crust,General,The Chinese pictogram for trouble also means what,Two women under same roof,Music,Who Was The First To Sing On The 1984 Band Aid Single,Paul Young -General,Which is the most Northerly African country through which the Greenwich meridian passes,Algeria,General,What was the first country to approve aid drug azt,Britain,General,Who was the first woman in space,Valentina tereshkova -General,Karl Landsteiner won a Nobel prize in 1930 for which medical discovery,Blood groups,General,What are a swallowtail and a burgee,Flags,General,H2S04 is the chemical formula for which compound,Sulphuric acid -General,What Crime Has A Person Committed If They Have Been Convicted Of Regicide?,They Have Killed The King,General,What is a group of this animal called: Swine,Sounder drift,General,Old times mid eastern women swallowed what as contraceptive,Foam from camels mouth -General,What type of acid is used in car batteries,Sulphuric,General,"What sport was involved in the movie ""kansas city bomber""",Roller derby,Science & Nature,What name is given to a chemical reaction which takes in heat ?,Endothermic -General,Who was the last King of Troy?,Priam,General,What is an ethnologue,Catalogue of languages,General,"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 -General,The study of the composition of substances and the changes that they undergo is _________.,Chemistry,General,Household items such as television sets and audio equipment are know as,Brown goods,General,What gun does James Bond traditionally use,A Walther PPK -Music,"When The Motels Took The ""L"" Out Of Lover It Was What",Over,General,"What links Buddy Holly, Lyndon Johnston, Janice Joplin",State of Texas,General,Which Bruce made the cover of Time in 1975,Jaws - Bruce was the shark - History & Holidays,The Gold Coast gained its independence from Great Britain in 1957 and renamed itself as what ,Ghana ,General,The belief that no God exists,Atheism,General,Which well-known author wrote the James Bond novel Colonel Sun under the pseudonym Robert Markham,Kingsley amis -General,How Many Hearts Does The Common Earthworm Have?,10,Sports & Leisure,What sport would you helicopter to the Bugaboos for,Skiing,General,What was the city symbol of Pompeii ,A Winged Penis -Sports & Leisure,In which Gymnastics discipline would a man do the scissors? ,Pommel Horse ,General,What was the first James Bond film,Dr No,General,What do the scottish call hockey,Shinny - History & Holidays,Which Football Team Became The First To Win The European Cup Winners Cup In 1963 ,Tottenham (Spurs) ,General,What does GDP stand for ?,Gross Domestic Product,General,Who fired the first shots in the 1970 film MASH,The Football game Timekeeper -General,What brand of cheese celebrated its 60th birthday in 1988,Velveeta,General,Who wrote Travels with a Donkey on his honeymoon,Robert Louis Stevenson,General,What song do elvis presley and ub40 have in common,Can't help falling in -Toys & Games,How many tiles does a player play to score a bingo in Scrabble,7,General,Storm Warning the only film in which this Actress killed who,Doris Day,Entertainment,What was Citizen Kane's first name?,Charles -General,Pathophobia is the fear of,Disease,General,What is the fear of friday the 13th known as,Paraskavedekatriaphobia,General,What is the correct name for a dandelion seed ball,A Clock -Entertainment,What song by Don McLean talks about the day Buddy Holly died?,American Pie,General,"A 1976 hit single for Cockney Rebel was titled ""make me _____""",Smile,General,Lusitania was the Roman name of what modern country,Portugal -General,Which Novelist Sometimes Writes Under The Pseudonym Richard Bachman?,Stephen King,General,What term is applied to rocks changed by heat and pressure,Metamorphic,Music,Who is the Youngest Beatle?,George Harrison -General,What was the name of Punky Brewster's dog?,Brandon,General,"Either of the contibuters to the 4-note Hindol ""Taril ha juj Girlja Shankur""",Marathe,General,"Countries of the world:western Asia, the capital is Tehran",Iran -General,"In Greek mythology, what did the cyclops forge for zeus",Thunderbolts,General,What U.S. state is free of houseflies,Alaska,General,A sea with many islands,Archipelago -General,Collective nouns - A gang of what,Elks,Sports & Leisure,Who Was The First Asian Snooker Player To Be Ranked In The World's Top 10? ,James Wattana ,General, An artist supports his canvas on a(n) _________.,Easel -General,In what sport would you perform an Adolf,Trampolining forward 3.5 twists,General,"During which war did the battles of The Modder River, Majuba and Magersfontein take place",The boer war,Music,"Name The Band ""Eight Wonder's"" Lead Singer A) Tiffany, B) Patsy Kensit, C) Debbie Gibson",Patsy Kensit -Science & Nature,Name Tin Tin's Canine Companion ,Snowy ,Food & Drink,"Natural vanilla flavoring comes from this plant, What Is It ",Orchid ,General,What planet's orbit does Pluto's intersect,Neptune -General,Where does the famous 'running of the bulls' take place,Pamplona,Science & Nature,Light rays consist of small packets of energy called _____,Photons,General,Winston Churchill had a dog - what type,Miniature Poodle -General,What 80's Pro-Wrestler was turned into a G.I. Joe character?,Sgt. Slaughter,General,"What sport has 'screwballs', 'bunt' and 'flies'",Baseball,General,On which national flag is there an eagle and a snake,Mexico -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,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",General,Baseball: the baltimore ______,Orioles -General,Who starred as 'ouboet' in the first tv series of 'orkney snork nie',Frank,General,Pierre Augustine Caron de Baumarchais play what Opera based on it,Barber of Seville,Art & Literature,"The book ""Wamyouruijoshou"" was the first to use what word ?",Kite -General,What does a Belly Man do for a living,A Piano Tuner,General,Who was the first United States Secretary of State,Thomas jefferson,General,What is Canada's oldest city founded in 1608,Quebec -General,Middle Ages having what creatures in the house was good luck,Ants,General,What is the name given to the salted roe of a sturgeon,Caviar,General,Which ovine expression is used for a disreputable member of a family or group,Black sheep -Food & Drink,Which type of restaurant popularized the use of conveyor belts? ,Sushi Restaurants ,General,What New England state is the fitting site for the town of Teaticket,Massachusetts,Music,Who was the first Beatle to have a solo No 1 hit?,George Harrison -General,Who were the co-leaders of rock pile,Edmunds and lowe edmunds and lowe,General,Levi Stubbs Renaldo Benson Abdul Fakir Laurence Payton Who,The Four Tops,General,What is a Kerry Blue,Dog type of Terrier -General,Knismolagnia is sexual arousal from what,Tickling,People & Places,Which Pop Stars Called Themselves sharon & Phyllis ,Elton John & Rod Stewart ,General,What is the flower that stands for: comforting,Scarlet geranium -General,"In which film is the line, 'I could have been a contender'",On the waterfront,Music,Which Successful Glam Career Was Eneded In A 1977 Car Crash,Marc Bolan,General,George Armstrong Custer was court martialed in 1867 for what,Hit a fellow officer -General,What word beginning with M is the unit measurement for the brightness of stars,Magnitude,Science & Nature,What do the initials nasa of the us government agency for space flight represent ,National aeronautics and space administration ,General,Capital cities: Denmark,Copenhagen -General,Michelle and Julia are songs by which group,The beatles,General,In sport what would a person do with a quoit,Throw it,General,"Acronym for 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 -Art & Literature,Who killed Macbeth?,Macduff,General,Who is maureen o'sullivan's daughter,Mia farrow, History & Holidays,What did 'My True Love'' give to me on the eight day of Christmas ,Eight Maids-a-milking  -General,What is the fear of nudity known as,Nudophobia,General,What was the first music CD burned in America,Springsteen's Born in the USA,General,What's the highest navigable lake in the world,Lake titicaca titicaca -General,Which African country had its capital transferred to Abuja,Nigeria,Music,"Which Film Featured The R Kelly Song ""I Believe I Can Fly""",Space Jam,Music,"Who designed the ""banana cover"" of the Velvet Underground's debut album?",Andy Warhol -General,Does 'verbatim' mean 'in the same words' or 'opposite',In the same words,General,Which snake kills the most humans,King cobra,General,"Which dictator preferred 50,000 rifles to 50,000 votes",Benito Mussolini - History & Holidays,How do you write 69 in Roman numerals?,LXIX, History & Holidays,As what was winchester known by the Romans?,Venta Bulgarum,General,Which US TV show was the top rated in the 1988 89 season,Roseanne -General,Beside the long winding river is the translation of which US state,Connecticut,General,What Type Of Fruit Is Known As A Warwickshire Drooper,A Plum,General,Which writer rode Devon Loch in the 1956 Grand National,Dick Francis -General,"What actor was stung in ""the sting""",Robert shaw,General,Scotia What would you call the act of making a mark on a body by burning,Branding,General,What do Rastafarians generally refer to God as,Jah - History & Holidays,In which country was the Rosetta Stone found,Egypt,General,Which city is the location for the 1998 Commonwealth Games,Kula lumpur,General,What colour do you get when you mix blue and red together?,Purple -Science & Nature,What is an emasculated stallion called?,Gelding,Music,Under What Name Did Vince Clark And Alison Moyet Record?,Yazoo,General,From which sport does the phrase' to win hands down' come,Horse racing -General,In which Dickens novel would you find the characters Jonh Jarndyce and Mrs Jellyby,Bleak house,Music,"Number of music artists who have covered ''Yesterday""","2,961",General,What cat is unable to draw its claws into its paws,Cheetah -Science & Nature,Infantile Paralysis is commonly known as ________.,Polio,General,Who wrote The Hunchback of Notre Dame,Victor Hugo, History & Holidays,The _____ universe was replaced by the Copernican universe.,Ptolemic -Science & Nature,What is another name for the prairie wolf?,Coyote,General,The bones of a _____ weigh less than it's feathers,A pigeon,General,Where could you spend your Gourde,Haiti -General,"On Which Island Which Is Also A Country Will You Find ""Adams Peak""",Sri Lanka,General,What year did the Bolsheviks overthrow the Russian government,1917,Entertainment,"What was the original name of ""Little Rascals""?",Our Gang -Music,What band did James Brown tour and record with in the 1950's?,The Famous Flames,Food & Drink,Sorbitol dulcitol and xylitol are forms of what?) ,Sugars (artificial sweeteners) ,General,56% of men cannot tell you the colour of what in their house,Vacuum Cleaner -Sports & Leisure,Who Was The First Professional Footballer To Be Knighted ,Sir Stanley Matthews ,General,To what did touching the ark of the covenant lead,Death,General,What space shuttle did Discovery replace,Challenger -General,Which is the only Shakespeare play with the name of an English town in the title,The merry wives of windsor,Sports & Leisure,Baseball: The Toronto _________.,Bluejays, History & Holidays,King Richard the ________?,Lionhearted -General,In Britain what are Sing Tao and Weng Wei Po,Chinese Newspapers,Food & Drink,From what country does Sangria originate? ,Spain ,General,Rapa Nui is better known as what,Easter Island -General,Colonel Tom Parker Elvis's manager had what earlier act,Dancing Chickens – on hot plate,Science & Nature,What Is Herpes Zoster More Commonly Known As ,Shingles ,General,Which US states constitution was the first to prohibit slavery,Vermont -General,What writer lived at hilltop near Hawkshead now museum to her,Beartrix Potter,General,What is the fear of insanity known as,Maniaphobia,General,Who was W.C. Field's co-star in the film 'My Little Chickadee',Mae west - History & Holidays,What Was The Contribution Of Actress Mercedes McCambridge To Linda Blairs Performance In The Excorcist ,Provided The Devils Voice ,General,What is a curragh,Boat,General,"Who would use a Jigger, Buzz, Flagging iron, Round shaver, Adze",Cooper – making barrels -General,What color is the tip of a Canada lynx's tail,Black,Sports & Leisure,The person who carries the golfer's clubs is called a(n) ________.,Caddie,General,Notional environment in which electronic communication occurs,Cyberspace -General,La Celestina was the first one in Spain the first what,Theatre play,General,What do the letters in SAM missiles refer to,Surface_to_air missile,General,"Which Rock Band Took Their Name From The Latin For ""Beyond These Things""",Procol Harem -General,What was the first mickey mouse cartoon,Plane crazy,General,"What did Portuguese explorers christen O Rio Mar, ""The River Sea"", in the 16th century",The amazon river amazon river,General,What would a German do with a Gravenstein,Eat it - a yellow apple -General,"What modern word comes from the Arab ""hashishi"" ?",Assassin,General,Two things grew on the little nut tree. A silver nutmeg & what else,Golden pear,General,"A tall, tapering, four-sided stone shaft with a pyramidal top.",Obelisk -General,Hoffman who wrote about a british agent named george smiley,John le carr,Entertainment,What album holds the world record for copies sold?,Thriller,General,"Which singer was portrayed by Kevin Spacey in the film ""Beyond the Sea""?",Bobby Darin -General,What is the main food of the oyster catcher,Mussels,General,Caligari is the capital of what island,Sardinia, History & Holidays,How many people were killed in the battle of Lexington?,Eight -General,Bob Fitzsimmons world boxing champion had what middle name,Prometheus,General,Who was 'the elephant man',John merrick,General,Melissophobia is the fear of,Bees -General,Oil seed rape belongs to which plant family,Mustard,Entertainment,What character did Tex Avery first create upon arriving at MGM?,Screwball Squirrel,General,Marlon Brando starred in 'Last Tango in Paris' which actress was he tangoing with,Maria schneider -General,What first occurred at California Disneyland in March 1981,Murder,General,Of what modern mammal is the Mastodon an early relative,Elephant,Geography,The land area of the country of __________ is slightly smaller than Alabama.,Greece -General,"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,General,A philomath has a love of what,Learning,Science & Nature,Where Might You Find The Metatarsals ,In The Foot  -Sports & Leisure,What Colour Caps Do The Australian Cricket Team Wear ,Green ,Science & Nature,"If a robin's egg is put in vinegar for thirty days, what colour does it become?",Yellow,General,On what are the worlds smallest paintings painted,Pin Heads -General,What is the latin word for 'a junction of three roads',Trivia,General,In which Cathedral is Jane Austen buried,Winchester,Music,Which Buddy Holly song was covered by The Rolling Stones,Not Fade Away -General,49% of Americans go out to dinner on what day,Their Birthday,General,Who was Margret Thatcher?,Prime Minister of Great Britan,Music,"Hello, Hey Now & Wonderwall Are Tracks Of Which Best Selling Album",Whats The Story Morning Glory -Sports & Leisure,Who Rode Shergar To Victory In The Epsom Derby? ,Walter Swinburn ,General,What country consumes the most fish per capita,Japan,Entertainment,"He was the villain in ""Star Wars"".",Darth Vader -General,Whose normal heartbeat is 242 per minute,Mr Spock in Star Trek,General,Instead of what does the royal family use rose petals,Confetti,Art & Literature,"Who wrote the epic poems, the Iliad and the Odyssey?",Homer -Art & Literature,What Was The Name Of Charles Dickens Last Novel Unfinished At His Death ,The Mystery Of Edwin Drood ,General,What is the largest volcano on mars,Olympus mons,Sports & Leisure,Football: The Denver _________.,Broncos -General,What are The Chiuhauhan Nubian and Alaskan,Deserts,General,Which red-haird slide guitar player won a grammy in 1989 for her album 'nick of time',Bonnie raitt,General,A sadhu is a holy man in which country,India -General,What's the seventh sign of the Zodiac,Libra, History & Holidays,Who Was The First Christian Emperor Of Rome ,Constantine The Great ,Music,What video can Angelo of Fishbone be seen in with the Mighty Mighty Bosstones?,Simmer down -General,New Zealand's Rugby team is know as the __________________.,All Blacks,General,Who was the last incan king of peru,Atahualpa,Entertainment,What is Cape Town's major choir called?,Philharmonic choir -Sports & Leisure,At which sport was Fred Perry crowned world champion in 1929? ,Table Tennis ,General,The Red Rose City has what more common name in Jordan,Petra,General,Who assassinated john lennon,Mark david chapman -Art & Literature,"Who is associated with the address 221B Baker Street, London ?",Sherlock Holmes,General,In what Australian state would you find Inverell,New south wales nsw,Music,Which Song By The Palindromic Pop Group Abba Had a Palindromic Title?,SOS -Sports & Leisure,In Which Scandanavian Country Is Gambling Illegal ,Sweden ,General,Destructive insect related to the grasshopper,Locust, History & Holidays,She was the greatest trick shot artist of all time.,Annie Oakley -General,Which country is the largest producer of cheese,America,General,Who was ronald reagan's first wife,Jane wyman,General,"Firefly, Longhorn, Harlequin and Tortoise types of what",Beetles -Geography,Which state is the Evergreen State,Washington,General,What is the name for a branch of a river?,Tributary, Geography,What is capital of Lithuania?,Vilnius -Science & Nature,What name is given to animals which eat both plants and meat ?,Omnivore,General,"If you were to fly due West from New York, what would be the next country you would fly over",Japan,General,What was the name of the bartender on The Love Boat?,Isaac Washington -General,What is the most redesigned appliance in the world,Telephone Handset,Music,"Name the Kiss member whose solo album featured Cher, Bob Seger, Donna Summer, Helen Reddy and Janis Ian?",Gene Simmons,General,What did boxer Cassius Clay change his name to,Muhammed ali -Music,"Where was ""Can't Buy Me Love"" recorded?","Paris, France",General,An integer that is greater than 1 & is divisible only by itself & 1 is known as a(n) _______,Prime number,General,What Was Invented By The American Company Texas Instruments In 1958?,The Silicone Chip -General,"What's the sky king's home, near the town of grover, called?",Flying crown ranch, History & Holidays,Who was the last British Viceroy of India? ,Lord Louis Mountbatten ,General,"How much memory did the early pc, the sinclair zx80 have",One kilobyte -Science & Nature,Which Continent Is The Natural Habitat Of The Ostrich ,Africa ,General,In a MORI pole what does MORI stand for,Market opinion research international,General,Coprastastaphobia is the fear of what,Constipation -General,"What craft toy involved cutting plastic figures, coloring them in, and then baking them in the oven?",Shrinky Dinks,Science & Nature, 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,General,Since 1980 Willeston School Near Nantshich Cheshire Has Staged The World Championships At Which Sport,Worm Charming -General,Deepest from what language is the word mummy derived,Persian,General,U.S. captials Arkansas,Little rock,General,Earth's outer layer of surface soil or crust is called the _____________.,Lithosphere -General,When was buckingham palace built,1703,General,72% of what country is covered by forest,Finland,General,Where is the world's largest computer manufacturing plant,Japan -General,Which is the only body cell with no nucleus,Red blood cell,General,Who wrote the book 'Jaws',Peter benchley, History & Holidays,What is the title of the 1992 Belgian film about a film crew following and documenting the exploits of a serial killer? ,Man bites dog  -General,"Who Was The First And Original Host Of ITV's ""World Of Sport""",Eamon Andrews,General,What is Snoopy's mothers name,Missy,Sports & Leisure,During A Hockey Bully Off How Many Times Must Sticks Touch ,3 Times  -General,An onomastician studies what,Names,General,What does an optician make,Spectacles,Entertainment,What was the original name of Paul McCartney's fictional church cleaner 'Eleanor Rigby'?,Miss Daisy Hawkins -General,Hey! what was the name of this song released by 'the romantics' in february 1980,What i like about you,Sports & Leisure,"What vehicles are involved in the ""Tour de France""",Bicycles, Geography,What is the capital of Democratic Republic of the Congo?,Kinshasa -Music,Which Band Performed The Theme To The Secret Diary Of Adrian Mole Aged 13 & 3 Quarters,Ian Dury & The Blockheads,General,What did archers at the ancient Olympics use as targets,Tethered Doves, History & Holidays,Where were the Hanging Gardens?,Babylon -General,Penis comes from the Latin meaning what,Tail,General,Name the first chocolate bar created by Forest Mars in 1923,Milky Way,General,Who was the first woman scientist to be awarded a Nobel prize,Madame curie -General,What is the colour of mourning in Turkey,Violet,General,What is a group of wolves,Pack,General,When was the English and Scottish parliament united,1707 -General,What special talent did Molly Ringwald have in The Breakfast Club?,She could apply lipstick with her breasts,General,Where Will You Find The Spirit Of Ecstasy?,On A Rolls Royce,Music,What Is The Common Term For A Slow Dance In Triple Time,A Waltz -General,Amatripsis is what sexual practice,Female masturbation rubbing labia,General,Collective nouns - A Congregation of what,Plovers,General,"Which photographer, in 1976, told us that we'd take great snaps if we used an Olympus",David bailey -General,Name the Shakespeare character son of the witch Sycorax,Caliban in The Tempest,General,What does Intel stand for,Integrated Electronics,General,Japan's equivalent to the dollar is the ______?,Yen -General,What is a calm ocean region near the equator called?,Doldrums,General,Who was goyathlay,Geronimo,General,What kind of creature is a 'dunnock',Bird -Music,Susanne & Joanne Catherall Sang With Which Band,The Human League,General,What countries flag red circle on green background,Singapore,General,Quidnunc means an eager gossip but in Latin literally means,What Now -Geography,"Created By German Scientists In 1876, What Was The First Artificial Favouring ",Vanilla Essence ,General,Whose debut album was Definitely Maybe,Oasis,Music,"Who Guessed ""That's Why They Call It The Blues""",Elton John - History & Holidays,What's the oldest college in the u.s. ,Harvard ,Technology & Video Games,What member of the original StarFox team betrays the group to join StarWolf? ,Pigma Dengar,General,On television what was Flipper,Dolphin - History & Holidays,Where in the UK would you go to celebrate 'Uphelia'' shortly after Christmas ,Shetland Isles ,General,Who is the Roman equivalent of the Greek god Dionysus,Bacchus,General,Excluding cars what the most commonly used 4 wheel devices,Supermarket Trolleys -General,What is the young of this animal called: Antelope,Calf, Geography,What is the basic unit of currency for Italy ?,Lira,General,What colours are on a pollution free beach flag,Blue - gold stars -General,The via appia went from rome to ______,Brindisi,General,Where were the first European coffee houses opened,Vienna,Technology & Video Games,"Who pilots the Gundam ""Epyon"" in the game 'Gundam Wing: Endless Duel'? ",Miliardo Peacecraft -General,Who qualified for pole position in the 1984 brazilian grand prix,Elio de,General,What is the most popular street name in the US?,Park Street,General,What was the hang out of the 90210 gang?,The peach pit -General,The distance around the outside of a circle is its ____________.,Circumference,General,Diana ross sings 'everytime you touch me i become a hero'. what is the song title,When you tell me that you love me,General,Whose motto is 'Be prepared'?,Boy Scouts - History & Holidays,"""What Is The Name Of The Toy That Arnold Schwarzenegger Desperately Tries To Get For His Son For Christmas In the Film """"Jingle All The Way""""?"" ",Turbo Man ,Science & Nature,What Is The Name For 1 Followed By 100 Noughts ,A Googol ,General,"In Far East Asian Cuisine What Is ""Hashi"" More Commonly Known As",Chopsticks -General,If you landed at Lindberg airport where are you,San Diego,General,What is the state bird of Nevada,Mountain bluebird,General,What game show had Dr Joyce Brothers as a panelist from 1978 to 1980,Gong - Geography,Which Central American country extends furthest north?,Belize,General,What is the original literal meaning of the word bride,To cook (ancient tutonic),General,Mojo is a Filipino what,Alcoholic fruit punch -General,What replaced English as the official language of Kenya in 1974,Swahili,General,What is the correct name for a two handed timber saw,Whipsaw,Science & Nature,What Bird Uses A Stone To Smash Open Its Prey? ,The Thrush  - History & Holidays,On what date did America become an independant nation?,"July 4th, 1776",Music,What Kind Of Turks Did Rod Stewart Sing About,Young Turks,General,Who landed on Timor Island after being cast adrift,Captain Bligh -General,What is the flower that stands for: steadfast piety,Wild geranium,General,Condition of persistent mental and emotional stress occuring after injury or severe shock,Post-traumatic stress disorder,Music,What Was Tom Jones First Ever UK No.1 Single?,It's Not Unusual -General,"On One Day at a Time,what were the two daughter's names?",Barbara and Julie,General,Japanese rice wine,Sake,General,What is the only state with an official state ship and hero,Connecticut -Science & Nature,What Animal Can Change Its Colour? ,A Chameleon ,General,St Sithney is the Patron Saint of what,Mad Dogs,General,In mythology who rode an eight legged horse called Sleipner,Odin -General,In the nursery rhyme what is Fridays child,Loving and Giving,General,What was made illegal in England in 1439,Kissing,Science & Nature, The average life expectancy of a leopard in captivity is __________,12 years -General,What key is to the right of T on a keyboard?,Y,General,In which country would you find the holiday destination of Sousse,Tunisia,General,What is the Capital of: Kazakhstan,Astana -General,What is the main food of walruses ,Clams, History & Holidays,What Was The Most Common Present Girls Above The Age Of 16 Have Asked For in 2008 ,A Boob Job ,Religion & Mythology,"The Greek goddess of fertility, also known as a protectress of witches.",Hecate -General,In A 2007 Poll What Music Video Was Voted The Best Video Of All Time,Peter Gabriel / Sledgehammer,General,More people are killed by donkeys every year than are killed in ______,Plane,General,Which ballet position is named after the French for bent,Plie -Art & Literature,What is the fourth book in the Harry Potter series ,The Goblet Of Fire ,General,What is the most popular beverage in north america,Milk,General,What is the medical term for cancer of the blood,Leukemia -Art & Literature,For What Is Dame Margott Fonteyn Famous ,Ballet Dancing ,General,In Greek mythology who was the father of Iphigenia & Electra,Agamemnon,General,Where were the 1960 summer Olympics held?,"Rome, Italy" -General,In which Chinese city is the Terracotta Army,Xian,General,What mountains are located on the border of Tennessee & North Carolina,Smoky mountains,Art & Literature,Who wrote 'The Birds'?,Daphne du Maurier -Entertainment,Who played George Costanza on 'Seinfeld'?,Jason Alexander,General,Which of Santa's reindeer comes first alphabetically,Comet,General,Songwriter Bernie Taupin wrote for which well known musician,Elton john -People & Places,Which FootbaIl Bad Boy Was Accused Of Violent Assault Against Tv Presenter Ulrika Jonsson ,Stan Collymore ,General,Geniophobia is the fear of what,Chins,General,O'Shey Jackson became better known as who,Ice Cube -General,Capitol city - Cathedrale Notra-Dame - statue Marron Inconnu,Port au Prince Haiti,Music,Who wrote the Opera 'The Magic Flute'?,Mozart,Music,"In What Year Did MTV First Hit The Airwaves A) 1979, B) 1980, C) 1981, D) 1982",1981 - History & Holidays,Alphabetically Which Is The Last Of Santa's Reindeers? ,Vixen ,General,What UK football team nick The Glaziers play at Selhurst Park,Crystal Palace,General,What are a Jalpa Jarama Shamal and Merak,Italian Sports Cars -General,The American Triple Crown - Belmont st Kentucky Derby and?,Preakness Stakes,General,"When using a telephone, you must wait for a ____ tone before starting your call.",Dial,General,What are the Roman numerals for 505,DV - Geography,What country is directly north of the continental United States?,Canada,General,Who laughed when the cow jumped over the moon,Little dog,General,For what olympic team did andre agassi's father box,Iranian olympic team -General,Happy Days was a spin off from what US TV show,Love American Style,General,"In the film Trading Places, who played the part of the prostitute",Jamie lee curtis,General,"The measurement by which parts of a building are related to one another, for example, the diameter of a column. ",Module -General,Who was called The Man of Destiny,Napoleon Bonaparte,General,Britain's first space rocket was launched in 1964. What was it called,Blue streak,General,"What are the two highest consecutive numbers that can be multiplied together to give a number less than 1,000",31 & 32 -General,Which thick custard-like food is made when fresh milk is artificially curdled by bacteria,Yoghurt,General,In which state is Michael Jackson's Never Land Ranch?,California,General,Stanley Kubricks Full Metal Jacket was filmed in what Location,London's Dockland -General,What is the only bird that can fly backwards,Hummingbird,General,With whom is Ludwig Ritter Von Kochel best associated,Mozart - catalogued K numbers,General,In what game might you collect a pung of East Winds,Mahjongg -General,What is a group of toads,Knot,Music,"Who Gave Us A ""Beatnik Fly"" And A ""Rocking Goose""",Johnny & The Hurricanes,Art & Literature,"Who Wrote The Novel Jaws, That Was Later Turned Into A Blockbuster Movie By Steven Spielburg ",Peter Benchley  -General,The Blue Ridge Mountains lie in Virginia and which other state,Georgia,Food & Drink,What Is the Main Ingredient Of The Liquor Mead ,Honey ,General,What is the fear of hell known as,Stygiophobia -Sports & Leisure,What Do The Initials TT Stand For In Regard With The Isle Of Man Motorcyle Race? ,Tourist Trophy ,General,What is the state bird of Wisconsin,The Robin,Entertainment,To gradually decrease in volume.,Decrescendo -General,"Who said ""In my free time I do differential and integral calculus""",Karl Marx,General,What is john wayne's real name,Marion morrison,General,In which country is the Lazio region,Italy -General,Ouranophobia is a fear of ______,Heaven,General,What flower produces pink and white flowers in alkaline soil,Hydrangea,General,"Scientific study of old age, emphasizing the social and behavioral aspects of aging",Gerontology -General,As what is sulphur also known,Brimstone,General,What's the term for a configuration of stars,Constellation,General,What was the first food consumed on the moon in Apollo 11,Turkey -General,Who was the male lead character in Gershwins musical that featured the song Summertime,Porgy,General,"What Broadway show went through 2,488 pounds of yak hair between 1982 & 1995",Cats,Sports & Leisure,Baseball: The Texas ______?,Rangers -General,What does barley become when prepared for brewing,Malt,General,Old Joe was the name of what on where,Camel on Camel Cigarettes,Art & Literature,What is the second best-selling book of all time ?,Quotations from the Works of Chairman Mao Tse-Tung -General,What minty confection is a boys name - in reverse,Trebor mints - Robert,General,To which country do the Galapagos Islands belong,Ecuador,General,Which two metals are alloyed to make pewter,Tin and Lead -General,What is a cpu,Central processing unit,Music,Which Pioneer Punk Band Signed To EMI's United Artists Label On The Day Elvis Presley Died,The Buzzcocks,General,Dr Ludwig L Zamenhof invented what 1887 Poland,Esperanto -Sports & Leisure,Tony Drago is a snooker professional from which country? ,Malta ,General,What is the most common surname among the Hmong people of Laos,Vang,General,What song's words were changed and then published in 1935 as 'happy birthday to you',Good morning to you -General,The use of astronomical phenomena to predict earthly & human events is called,Astrology,General,33% of American women lie about what,Their Weight,General,The Lombard League was a mediavel coalition of cities in which European country,Italy -General,Name the female British climber while killed trying to climb K2 in 1995,Alison hargreaves,General,Who worked for dr zorba,Ben casey,General,Who wore laceless shoes and was said to regard undone shoelaces as unlucky,Anthony perkins -General,The amount of what substance in granite determines its color,Feldspar, History & Holidays,Which French king was known as the Sun King ?,Louis XIV,Food & Drink,How would you say 'house wine' in 'German' ,Hauswein  -Music,"Who Had A Hit In 1993 With ""She Don't Let Nobody""",Chaka Demus & Pliers,General,What organization did Benjamin Chavis take over as head in 1993,Naacp,General,Who sent her taped conversations with Monika Lewinsky to Kenneth Starr,Linda tripp -General,Who released the No.1 hit single 'Barbie Girl' in October 1997,Aqua,General,"The Anglo Nubian, Toggenburg and Murcian are breeds of which animal",Goat,Food & Drink,Which famous French chef invented the Peach Melba in 1893? ,Auguste Escoffier  -Music,With Which Band Is Raul Malo The Lead Singer,The Mavericks,General,What are the rhea and cassowary both types of,Flightless birds,General,In which country would you find Lake Disappointment,Australia -General,12 is the atomic number of which metal,Magnesium,General,What is the fear of lakes known as,Limnophobia,General,Oneirology is a study and interpretation of what,Dreams -General,What does a zoologist study,Animals,Entertainment,Who played the president of the U.S in 'Air Force One'?,Harrison Ford,General,What food was sent to England in WW2 as part of lease lend,Spam -General,What does a linguist study,Languages,General,Which is the only living bird with two toes on each foot,Ostrich,General,Where are chinese gooseberries from,New zealand -General,"What rock makes the cheapest, softest form of sandpaper",Flint,General,The Louvre Museum - Palace - but what was it first,Fort,Art & Literature,Which Character Is The Most Famous Creation Of James Matthew Barrie? ,Peter Pan  -General,"In Greek mythology, for who did the cyclops forge thunderbolts",Zeus,General,Peter pan rescued what indian princess from the claws of captain hook,Princess tiger lily tiger lily,Sports & Leisure,Who Has One The Most Mens Singles Tennis Titles ,Pete Sampras  -General,Hans Lippershey made the worlds first practical what,Microscope,General,"Basking, nurse and whale are all types of which animal",Shark,General,What language is most widely spoken in Iran,Persian -Music,Who Is Known As Lady Soul,Aretha Franklin,Science & Nature,What is the formal name for when a substance breaks down on heating ?,Thermal Decomposition,General,What is the most widely used seasoning,Salt -General,Which department uses 65% of all paper bought by US gov,Defence department,Sports & Leisure,Which Avid Everton Fan Won His Only Snooker World Title In 1991? ,John Parrott ,Science & Nature,"What bird is an excellent swimmer, but can't fly",Penguin -General,What is the flower that stands for: betrayal,Judas tere,General,What nationality was the last person executed by guillotine,Tunisian,General,National capitals: Honduras,Tegucigalpa -Sports & Leisure,What Events Are Involved In A Biathlon ,Cross Country Skiing & Shooting ,General,Which eighties musician got sued by a music related company for using their name as part of his pseudonym?,Thomas Dolby,General,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 -General,What is the flower that stands for: avarice,Scarlet auricula,General,Gail Borden invented what food item,Condensed Milk, Geography,What is the capital of Senegal ?,Dakar -Geography,____________ possesses more proven oil reserves than any country outside the Middle East.,Venezuela,General,Woolworth's - the 5 /10 cent store started in which us state 1979, Pennsylvania,General,Eonism is what sexual practice,Cross Dressing -Music,"Who Won An Oscar For His Portrayal Of Broadway Legend George M Cohan In ""Yankee Doodle Dandy""",James Cagney,Science & Nature,To which order of mammals does the beaver belong? ,Rodents ,General,What are the initials for deoxyribonucleic acid,Dna -General,Name the only major Greek God whose Roman counterpart has the same name,Apollo,General,In what language did St Paul write his epistles,Greek, History & Holidays,Who was the last to sit on the peacock throne ,Shah mohammed reza pahlavi  -Music,Ebony & Ivory Was A Hit For Which Famous Duo,Paul McCartney & Stevie Wonder,General,License Plates: What does POVALT sell for a living,Sports equipment,General,Brontophobia is the fear of _______.,Thunder -General,Where can you buy a cup of coffee with cruzeiros,Brazil,General,"Which Actor Played The Role Of Rocker Jerry Lee Lewis In The 1989 Biopic Of His Life Entitled ""Kissing Cousins""",Dennis Quaid,General,Hari-Kari is vulgar name Seppuku - what's it literally mean,Belly Splitting -General,Alfred Jingle appears in which Dickens novel,The Pickwick Papers,General,Who had poachers castrated,Richard the lionheart,General,If You Suffered From Megamalagaphobia What Would You Be Very Concerned About Loosing,An Erection - Geography,What is the largest island in the Indian Ocean?,Madagascar,General,What are the first three words of the bible,In the beginning,General,What 1995 movie was initially banned in malasyia because pigs are offensive to muslims,Babe -General,A pound of armadillo meat contains how many calories,780 calories,General,What was the world's principal Christian city before it fell to the Ottoman Turks in 1453,Constantinople,General,Who is the greek counterpart of hercules,Heracles -Science & Nature, A wolf's odor detecting ability is __________ times greater than man's.,100,Geography,What island is known as the Spice Island,Zanzibar,General,"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 -General,On what sea is the crimea,Black sea,General,By who was gerald ford almost assassinated,Squeaky fromme,Music,Who Got Booed Off The Stage At The Bob Dylan 30th Anniversary Concert In Madison Square Garden In 1992,Sinead O Connor -General,Whose boat Bluebird was recently raised from Coniston water,Donald Campbell, History & Holidays,Where was Nelson mandela in prison?,Robben Island,General,What date is the 'Ides' of March?,March 15th -General,Lee Where were the Toltecs from,Mexico,General,Josip Broz became famous as who,Marshal Tito,General,What famous racehorse is the grandfather of sea biscuit,Man of war -Music,What note is written in the space above the bottom line of the treble clef?,F,General,Which fungal plant disease particularly affects brassicas,Club root,General,In which national park is the mauna loa volcano located,Hawaii volcanoes -General,What myth is the rhinocerous thought to have inspired,Unicorn,Music,Name A Flock Of Seagulls Top Ten US Hit,I Ran (So Far Away),General,Grande and Chico are versions of what Spanish activity,Flamenco dancing -Music,What Was The First Top 10 Hit For The Temptations Reaching No.3 In 1969,I'm Gonna Make You Love Me,General,Hell hath no fury like ______,A woman scorned,General,What Patsy Cline song put LeAnn Rimes in the limelight,Blue -Music,"From Which Country Did The Dance, The Quadrille, Originate",France,Entertainment,"What was the name of Luke's strange little advisor in ""The Empire Strikes Back""?",Yoda,General,Where is the cordon bleU.S.chool of cooking,Paris -Geography,"If its 4:00pm in Seattle Washington, what time is it in Portland Oregon",4,General,What is the official language of Liberia,English,General,Apis Mnevis Onuphis 3 names for the sacred what of Egypt,Bull -General,Lockjaw is another name for which disease,Tetanus,General,Who got his 100-meter dash gold medal stripped away due to to steroid use in the 1988 Olympics,Ben Johnson,Music,"Who Had A Uk No.1 In January 1975 With The Track ""January""",Pilot -Science & Nature,What two colors is a magpie ,Black and white ,General,Who wrote 'cruel shoes',Steve martin,Music,"Who Had A One Hit Wonder With ""Uptown Top Ranking""",Althia And Donna -General,What is Moscow's famed opera house,The bolshoi bolshoi,Technology & Video Games,Who invented Tetris? ,Alexey Pazhitnov,General,Adjustable fabric roof of a car,Drophead -General,The pound cake got its name from the pound of ______ it contained,Butter,General,"Who composed the musical ""Annie Get Your Gun""",Irving berlin,General,"In the tv series 'seinfeld', who does michael richards play",Kramer -General,The town of Beersheba is in which country,Israel,Sports & Leisure,What Nationality Is Tennis Player Michael Chang? ,American , History & Holidays,Who were the first people to be elected into the Aviation Hall Of Fame?,The Wright Brothers - Geography,What country borders Libya on the East?,Egypt,Science & Nature,What Colour Is The Beak Of A Mature Mute Swan ,Orange ,General,Jim Bakus supplied the voice of which cartoon character,Mr Magoo -General,In what Australian state would you find Port Pirie,South australia,General,Who did Rocky Marciano defeat to first take the title in 1952,Walcott,General,______ is the brand name of Morphine once marketed by Bayer,Heroin -General,What sporting event first took place in 1903,Tour de france,Music,"Who Had A Hit With ""A Baby Named Sue"" In 1969",Johnny Cash,General,What note is placed on the centre line of a treble clef,B -General,By US government figures people have tried 28000 ways of what,Losing Weight,General,Eidology is the search for what,Existence of Ghosts,General,How long is a swimming race that covers sixteen lengths of an olympic pool,800 metres -Music,"Who Is The Lead Singer Of The Band ""The Police""",Sting,General,What did the shire's reeve become when the concept was brought to the u.s,Sheriff,General,Band to keep up stockings,Garter -General,Who holds the nhl record for the most goals scored during a regular season,Wayne gretzky,General,What cartoon character was born April 1st 1980,Bart Simpson,General,What's the highest mountain in Africa?,Kilimanjaro -General,What type of number has no factors other than 1 and itself,Prime,General,What Australian Prime Minister drowned near Melbourne,Harold Holt 17 12/1/1967,Food & Drink,"What are bigoli, farfalle, rigati and pansotti? ",Pasta Shapes  -Geography,In which state is stone mountain ,Georgia ,General,Who managed to win Atlanta by dropping three golden apples,Hippomenes,Food & Drink,What spirit is added to brandy to make a sidecar?,Cointreau or Triple Sec -General,Agrippa poisoned her husband/uncle who was he,Claudius,Science & Nature," With few exceptions, birds do not sing while on the ground. They sing during flight or while sitting on an object off the __________",Ground,General,Which actor wrote the book The Outlaw Trail,Robert Redford -Music,What Was The Beat's Second Chart Success Achieving No.9 In Feb 1980,"Hands Off, She's Mine",Entertainment,Actor: _______ Borgnine.,Ernest,General,Margaret Hookham changed her name famed as who,Dame Margot Fonteyn -General,In what country could you spend a tugrik,Mongolia,General,An average American eats 28 what in their lifetime,Pigs,General,Which opera/musical is set in Catfish Row,Porgy & bess -Geography,"What island group contains jersey, guernsey, sark and herm ",The channel islands ,Music,Which band had a 1994 number one with “Cotton Eye Joe”,Rednex,General,What was the first doctor film made in 1954,Doctor in the House -General,"Why, in 1969, did the French flag appear on some British postage stamps",To commemorate concorde's maiden flight,General,St patrick the patron saint ______,Ireland,General,"What major does david bowie's ""space oddity"" refer to",Major tom -General,How was Australias most infamous bush ranger,Ned kelly,General,"Whose films include 'giant','written on the wind' and 'a farewell to arms'",Rock hudson,General,What was the name of Murphy Brown's news program?,FYI -Science & Nature," When young, the hoatzin, a crested, olive_colored South American bird, has claws on its __________",Wings,General,What is opened somewhere every 4 seconds,Can of Spam,General,What actor heartthrob was born Michael Shalboub in 1932,Omar sharif -General,A spice from which root is used to give food a yellow colour,Turmeric,General,Fire bellied Spadefoot and Midwife are all types of what,Toads,General,Who first appeared in All Star Comics in 1941,Wonder Woman -General,Legal Terms: A supplement to a will.,Codicil,General,What does the 'catchfly' plant feed on,Moths,General,"From where does the expression ""thin as a rail"" originate",Bird -General,Who is the only musician in history to bring out two albums to reach number one in one year?,DMX,General,What brought Frosty the Snowman to life,An old silk hat,Science & Nature,What is a young goose called,Gosling -General,What country in distance is furthest from New Zealand,Spain,General,Names for numbers: 1 followed by 42 zeroes =,Tredecillion,General,In which city was Bob Hope born,London (Eltham) -General,"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,General,"Who (boxer) appeared in 1962 in the film ""Requiem for Heavyweight""",Muhammad ali,General,Anubis was the egyptian god of the ______,Dead -Entertainment,"What was the name of the restaurant the TV series ""Happy Days""?",Arnolds,General,Russian country cottage,Dacha,General,Mount Mitchell is the highest peak in which mountain range,Appalachians -General,What was the pre-war German name for the Baltic city which is now Russian and called Kaliningrad,Konigsberg,General,What does the body release that dilates small blood vessels and so causes a person to blush,Peptides,General,Where are a whales nipples,On its back -General,What is sometimes known as Goober Grease,Peanut Butter,Geography,The only river that flows both north and south of the equator is the _____________. It crosses the equator twice.,Congo,Music,Which heavy-metal guitarist provided the soundtrack to the film Death Wish II?,Jimmy Paige -General,On which river is Warsaw to be found,Vistula wisla,General,What is the former name of Botswana,Bechuanaland,Sports & Leisure,Which Black American Athlete Burst Hitlers Aryan Party Bubble In 1936 By Winning 4 Gold's ,Jesse Owens  -General,What animal always gives birth to same sex twins,Armadillo,General,Practice of driving recklessly in a stolen car,Hotting,General,"Agency of the United States government, generally responsible for administering federal policy for Native Americans and Inuits (Eskimos)",Bureau of indian affairs - History & Holidays,Dr. Christian Barnard performed the world's first ever what in South Africa in 1967. ,Heart Transplant ,Music,What Where The Christian Names Of The Everly Brothers?,Don & Phil,General,What animal stands for the longest period,African Elephant over 50 years -General,"Who sang the Song ""Gangsta's Paradise""?",Coolio,General,Where is bond street,London,Toys & Games,"In which sport or game are the terms: 'pin', 'fork', and 'skewer' used",Chess -Geography,"Can you give me the capital of the following three countries: Syria, Morocco and Libya? ","Damascus, Rabat, Tripoli ",General,What sport was called Harpastum by the ancient Greeks,Football,General,What is Papins Digester - Invented Denis Papin 1679,Pressure Cooker -Music,Pete Burns From Dead Or Alive Was Spun Around Like A What,Record,Geography,Which country uses a Lek as a unit of currency? ,Albania ,General,Which country has the most emigrants,Mexico -General,The temperature at what dew forms is called the,Dew point,General,For what song did country and western singer marty robbins win a grammy,El,General,What was the first complete symphony to be recorded,Beethoven's fifth -General,How many children did Adam and Eve have together,Three,General,How many spokes does an umbrella have,Eight, History & Holidays,Who Released The 70's Album Entitled Broken English ,Marianne Faithfull  -General,In the USA domestic violence peaks on what day of the year,Superbowl Sunday, Geography,What state borders Alabama to the north?,Tennessee,General,Who sailed to the new world in 'the mayflower',Pilgrims -Sports & Leisure,How many balls are on a pool table at the start of a game? ,16 ,Science & Nature,How Many Teeth Does A Healthy Adult Human Have ,32 ,General,Loose thick usually cotton trousers worn for sports or leisurewear,Sweatpants -General,What is the eighth month of the year,August,General,In what tv series did henry winkler play arthur fonzarelli,Happy days,General,A magnum of champagne is how many litres,1.5 -Science & Nature,Which two metals make up brass? ,Copper and Zinc ,Music,Where Was Lola A Showgirl,Coca Cabana,General,"What was the name of Wagner's last Opera, first performed in 1882",Parsifal -Science & Nature,What Is Another Name For The Wildebeest? ,A Gnu ,General,The Savannah was the worlds first commercial what,Atomic powered ship,General,A position on the tip of the toes.,Point -Science & Nature,This protein makes the blood red in color.,Hemoglobin,General,Who was the female Prime Minister of England throughout the eighties?,Marget Thatcher,General,What is it against the law to kill in Pacific Grove California,Butterflies – local ordinance 352 -General,"Who stars in the movie ""Tomb Raider""?",Angelina Jolie,General,What is the troposphere lower than,Stratosphere, Geography,What is the capital of Monaco ?,Monaco -General,Who wrote Fahrenheit 451,Ray bradbury,General,A sheep duck and rooster were worlds the first what,Passengers in hot air balloon,General,Before Becoming An Actor What Was Bob Hoskins Profession When He Worked In The Circus,A Fire Eater -General,A flat round soft creamy French cheese,Brie,General,Al Capone's business card identified him as a what,Furniture dealer,General,"On international automobile license plates, what country is represented by the letter E",Spain -Food & Drink,Who released the following 'edible' album 'Pretzel logic' ,Steely Dan ,General,The name of which language means off the coast in Arabic,Swahili, History & Holidays,Who met in Yalta in 1945 (in alphabetical order)?,Churchill Roosevelt Stalin -General,What is the most southerly County of Ireland,Cork,Entertainment,Who was the Hulk's first friend?,Rick Jones,General,Odin owned Geri and Freki what were they,Wolves -General,A chronic disease of the liver,Cirrhosis,Music,Whose Autobiography Was Entitled Moonwalk,Michael Jackson,General,Olfactophobia is the fear of,Smells -General,"In Shakespeare's 'Merchant of Venice', with whom does Portia fall in love",Bassanio,General,Who (not Peter Sellers) played Inspector Clouseau in 1968,Alan Arkin,Food & Drink,"Which drink, which has been illegal but is being imported once again, is made from the leaves of the wormwood plant? ",Absinthe  -Music,"With Just ""Paul McCartney"" On The Label As Artist Name His First No.1 In 1984",Pipes Of Peace, History & Holidays,"Which Christmas song contains the line 'Oh, the weather outside is frightful, but the fire is so delightful'' ","Let it Snow, Let it Snow, Let it Snow ",General,Whose quartet provided the musical accompaniment to the Goon Show,Ray ellington -General,"The Graf Zeppelin completed a 19,500 mile trip in what year",1929,General,What is a group of plovers,Congregation,General,What is the boiling point of water on the fahrenheit scale,212 -General,The state tree of Arizona is really a legume - name it,Palo Alto,General,Which is the worlds busiest metro system,Moscow,General,In 'the shining' what was the child's imaginary friend's name (the one who told him things that were going to happen),Tony -General,The locals call it Misi what do we call this country,Egypt,General,Who was the only unidentified person awarded the Victoria Cross,US unknown soldier,General,Who played the 'universal soldier',Jean claude van damme -Sports & Leisure,Which Football Team Play Their Home Games At Stamford Bridge ,Chelsea ,General,What is the name given to the young of 'dragonflies' and 'damselflies',Nymphs,General,What animal is found on the flag of Sri Lanka,Lion - History & Holidays,Godzilla first made his mark so to say in 1954. What do the Japanese call Godzilla ? ,Gojira ,Music,"Who Sang Vocal On Sub Sub's Hit ""Aint No Love, Aint No Use""",Melanie Williams,General,What were H47 and L12 that collided causing deaths in 1920s,Submarines -General,Which Singer Of A Very Famous 90's One Hit Wonder Has The Real Name “ Robert Van Winkle ”,Vanilla Ice,General,Between what ages is a brandy or port described as VSOP,20 to 25 years,General,"What is the more popular name for the flower, Calendula",Marigold -General,The FIS governs what sport,International Ski Federation,General,How many children did noah have,Three,General,The first steam engine arrived in america in this year,1753 -General,"""Fruit smack flavored syrup"" was the original name of",Kool aid,General,"What legendary us magazine publisher was born in tengchow, china",Henry luce,General,How many books are in the old testament of the holy Bible,39 -General,Texans consume 40% of farm grown what in the USA,Catfish,General,In Latin mala means bad it's also a favourite Roman food what,Apple,General,Five u.s states border which ocean,Pacific ocean -General,Vivaldi's concertos Opus 8 Numbers 1-4 better known as what,The four Seasons, History & Holidays,What are male witches called ,Warlocks ,General,In which city would you find The Blue Mosque,Istanbul -General,How Did Louis Washkansky Of South Africa Make History In 1967,1st Heart Transplant Recipient,General,"According to Enrico Caruso, ""It is a good fruit. You eat, you drink, and you wash your face"". What fruit was he talking about",Watermelon,General,"Relating to food, what are 'loquats'",Fruit -General,"When someone is clumsy or awkward, especially with their hands, they are often said to be ""all ___."" These",Thumbs,Sports & Leisure,"Which NFL team's defensive unit was nicknamed ""The Purple People Eaters""",The minnesota vikings,General,Who won the Oscar for Best Director for the film The Deer Hunter in 1978,Michael cimino -Science & Nature," 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 __________",10000,General,Which U.S. biologist has published collections of essays entitled Bully for Brontosaurus and Dinosaur in a Haystack,Stephen jay gould,General,George Bush removed what from the White House menus,Broccoli -Science & Nature,"What links flamsteed halley, bradley and bliss ",Astronomy ,General,"Nuclear membrane, cytoplasm, & nucleus are parts of a ______",Cell,General,"What animal, other than humans, can get leprosy",Armadillos -General,To which part of the body does the adjective 'renal' refer,Kidney,Music,Where Was Lionel Richie Dancing According To His 1986 Hit?,On The Ceiling,General,When was julius caesar murdered,Ides of march -General,Which annual sporting event between 2 teams started in 1829,The University Boat Race,General,"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,General,"What country did the king in ""The King and I"" rule",Siam -General,Archbishop Makarios of Cyprus was exiled in 1956 to where,The Seychelles,General,Whose autobiography is called Where's the Rest of Me,Ronald reagan,General,When was the first toothbrush with bristles invented,1498 -General,-isms: Indifference to pleasure of pain; Greek philosophical system following the teachings of Zeno?,Stoicism,General,The Riksdag is the parliament of which country,Sweden,Technology & Video Games,What does FTP stand for?,File Transfer Protocol -General,"Which Danish philosopher, wrote The Concept of Dread and later had his views used as the basis for existentialism",Soren kierkegaard,General,What's unusual about Ernest Vincent Wrights 50000 word novel,No letter E, History & Holidays,Who played the title role in The Abominable Dr Phibes ,Vincent Price  -General,The Kung San people live in what area of Africa,Kalahari Desert in Botswana, History & Holidays,Amityville House On The Hill' was sung by who in 1986 ,Lovebug Starski ,General,What name is given to those days which have equal hours of daylight and darkness ?,Equinox -General,What is the flower that stands for: delay,Eupatorium,Music,"Who Produced The Album ""A Christmas Gift To You"" Featuring Seasonal Favourites Sung By His Labels Star Acts",Phil Spector,General,Which strait separates Tierra del Fuego from mainland South America,Magellan's strait -General,"Who composed the opera ""A Village Romeo and Juliet""",Frederick delius,Religion & Mythology,In Norse mythology who was Odin's blood-brother?,Loki,General,Besides Play Away Brian Cant Was The Narrator Of What Classic Tv Programme,Camberwick Green Or Trumpton - History & Holidays,"What Connects Kenny, Everett, Annie Lennox, And Sir Isaac Newton ",Born On Xmas Day ,General,A wading bird with long upturned bill,Avocet,General,"The Merry Man and his Maid', is the alternate title for which Gilbert and Sullivan operetta",Yeoman of the guard -Science & Nature,How many tentacles does a squid have,Ten,Mathematics,A line drawn from an angle of a triangle to the mid_point of the opposite side is a(n) _______.,Median,Sports & Leisure,Which football team are nicknamed the Swans ,Swansea  -General,William Herschel astronomer was a musician what instrument,Organ,Music,Four Letter Word Was A Hit 1988 But Who Sang It,Kim Wilde,Art & Literature,What publication was subtitled The What's New Magazine?,Popular Science -General,What got its name from a bridgeport pie company's name and light-weight pie tins,Frisbees,General,What did the Oshkosh steamer win,First automobile race,General,"What Beatles album spent the longest time atop the charts, at 15 weeks",Sgt. -General,Which character is the narrator of Melville's Moby Dick,Ishmael,General,"By what name, is the entertainment business, is Victoria Adams better known",Posh spice,General,"The first mass production began in 1808, what was the product",Wooden pulley blocks - Geography,Into which bay does the Golden Gate Strait lead?,San Francisco Bay,General,A triangle with two equal sides is called __________,Isosceles,Sports & Leisure,What Is Awarded To A British Champion In Boxing ,A Lonsdale Belt  -People & Places,Who Was The First man To Set Foot On The Moon ? ,Neil Armstrong ,General,What name was given to the period during the French Revolution when 1400 of Robespierre's opponents were executed,Reign of terror,Music, Which group had a number 1 in 1966 with 'Keep on Running'?,The Spencer Davis Group -General,"What lake is the world's largest, having an area of almost 394,000sq km",Caspian sea,General,In the Dr Dolittle stories what type of creature was Gub-Gub,Pig,General,Who was the female lead in The Shootist,Lauren Bacall -General,What was Kevin Bacon's first big hit,Footloose,General,What Would You Be Suffering From If You Had The Medical Condition Kyphosis?,Hunchback,Music,"Which American Songwriter Co Wrote Abba's ""Ring Ring""",Neil Sedaka -General,For who was the play 'peter pan' exclusively written,Children,General,Why did Ghengis Khans soldier ride female horses,To drink their milk,General,Who wrote m°a°s°h,Richard hooker -Food & Drink,"Italian dish consiting of olives, anchovies, salami, celery, and appetizers.",Antipasto, History & Holidays,Which 1976 film starring John Travolta is about a persecuted schoolgirl with psychokinetic powers? ,Carrie ,General,Which detective was played by Robert Stack on TV and by Kevin Costner in a film,Eliott ness -General,Bond: What is Goldfinger's first name,Auric,General,The lowest country in the world is?,The Netherlands, History & Holidays,"Often Played At Halloween, Which Song Was A Hit Gor Bobby Boris Picket & The Crypt Kickers ",Monster Mash  -General,Fulton John Short - Later John Fulton first US to do what,Qualify as Matador,General,Who was the author of 'Of Mice and Men',John Steinbeck,Sports & Leisure,In Which Year Did Synchronised Swimming Make It's Debut At The Olympics ,1984  -Science & Nature,The Sun is how much more dense than water?,1.41 times,General,"Agricultural and industrial region in the state of New South Wales, Australia, about 160 km (about 100 mi) north of Sydney.",Hunter valley,General,What chess piece is usually valued as 5 points,Rook -General,"Who sang the song ""Cry"" which was the first video on Mtv to use morphing technology through the entire video?",Godley and Creme,Music,Who Produced USA For In Aid Of Famine Relief In 1985,Quincy Jones,Science & Nature,The force perpendicular to the surface of an object which counters the gravitational force?,Normal Force -General,How many medals did the USSR win at the 1984 Olympics,None,Toys & Games,What bowling term means three straight strikes?,Turkey,General,Who was the 1990 wimbledon women's singles runner up,Zena garrison - History & Holidays,The second line of which carol is '… When they are both full grown'' ,The Holly & The Ivy ,Music,"Who Had A Minor Hit With ""Lonely Man Theme"" In 1960",Cliff Adams,General,Member of a fraternity for mutual help with secret rituals,Freemason -Entertainment,Who played Charlie in Charlies Angels?,John Forsythe,General,"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,General,Politicophobia is the fear of,Politicians -General,To which family does the coffee plant belong,Madder, Geography,In which state is Mount McKinley?,Alaska,Food & Drink,How is steak cooked if cooked blue? ,Very Rare  -General,Who designed the first Iron ship the Great Britain in 1845,I. Kingdom Brunel,Geography,Which Bridge That Opened In 1988 Connected Japans 4 Main Islands By High Speed Rail For The First Time ,The Seto Ohashi Bridge ,Food & Drink,Cocktails: Vodka and Kahlua make a ___________.,Black russian -General,"Who won an oscar for her role in ""gone with the wind""",Vivien leigh,General,Of what do earthworms have five,Hearts,General,"Link Aurora Texas, Spitsbergen Norway and Ubatuba Brazil",UFO crash sites -General,Who played Lofty in Eastenders,Tom watt,General,"Modern ballroom dance, of Argentinian origin",Tango,General,What is the nickname for Kentucky,Bluegrass state -Music,How Are Craig And Charlie Reid Better Known?,The Proclaimers,General,"Who wrote the fantasies ""Popcorn"" and ""This Other Eden""",Ben elton,General,Who kissed the girls and made them cry,Georgie porgie -Music,Bandleader James Last Started Out Playing Which Instrument,Double Bass,Technology & Video Games,What alternate dimension does Link find himself in in Majora's Mask? ,Termina,General,Who is first of the 7 dwarfs alphabetically,Bashful -People & Places,What is the singer Meat Loafs Real Name ,Marvin Lee Aday ,General,What unusual flavour did the Jell-O company try in 1942,Cola,General,What fraction of an iceberg shows above water,One ninth -General,Life Love Cows French translation of which film,City Slickers,Music,"Which Group Had A Hit With ""Mmmm Mmmm Mmmm Mmmm""",The Crash Test Dummies,General,U.S. captials Maryland,Annapolis -General,What does breaking the sound barrier cause,A Sonic Boom,General,What is the fear of poverty known as,Peniaphobia,General,What is the main ingredient of sauce Lyonnaise,Onions -Religion & Mythology,"What was the town that ancient Greeks believed to be the centre of the world, and was the home of a famous oracle?",Delphi,Music,Who was the lead singer of Big Brother and the holding Company?,Janis Joplin,Science & Nature,What name is given to the point where a river starts ?,Source -General,Which small republic makes up Yugoslavia with Serbia,Montenegro,Sports & Leisure,In what sport is the Heisman trophy awarded?,American football,Science & Nature,What fruit is considered to be the most nutritious ,Avocado  -Science & Nature,What Is The Largest Key On A Standard Computer Keyboard ,The Space Bar ,General,Pitches with what is charcoal and saltpetre mixed to make gunpowder,Sulphur,General,"In horse racing, what is the maximum age of a filly",Four years -General,What Event Occurs At Walthamstow Stadium?,Greyhound Racing,General,Which word is used to describe a fin on a fish's abdomen?,Ventral,General,What u.s state has no telephones in 12% of its households,Mississippi -Music,Which Letter Of The Alphabet Do The Sound Holes On Violins Resemble,The Letter 'S',Science & Nature, The average giraffe's __________ is two or three times that of a healthy man.,Blood pressure,General,What did the ancient Greeks call the fear of woods and forests,Panic from god Pan -General,In Norway what is a brisling,A Sprat,Geography,Which Is The Largest State In America ,Alaska ,General,Stranger in what prehistoric kingdom does 'alley oop' live,Moo -Music,"In the world of music, what job did Simon Fuller get sacked from in 1997?",Manager of the Spice Girls,Science & Nature,"In 1851, The Largest Building The World Had Ever Seen Was Erected In London What Was It? ",Crystal Palace ,General,What US state has the Worlds Champion Chili Cookoff every year?,Texas -General,What does a hyperphiliac suffer from,Great desire for sex,General,What was James Deans middle name,Byron,Music,Which Rock Superstar Once Appeared In Front Of An Audience Of 53 People,Bob Dylan -General,In what modified vegetable did Cinderalla travel to the ball in?,Pumpkin,General,What was another city that the usfl Boston Breakers eventually played in,New orleans,General,"Copernicus what is new, last or gibbous",Moon -General,"Which Classic TV Show Had A Theme une Entitled ""Quiz Wizard""",Blockbusters,General,What is the Capital of: Korea North,P'yongyang,General,Mastigothymia is sexual arousal from what,Flagellation whipping -General,Which is the longest river - not river system - in the U.S.A.,The missouri,General,Which painter spent last 4 years of his life on the run for murder,Carravagio for murder in Rome,General,Nadsat was a made up language in what book and film,A Clockwork Orange -Food & Drink,Food That Is Permitted To Be Eaten Under Jewish Dietary Laws Is Known As What ,Kosher ,Sports & Leisure,Where were the 1912 Olympics held ?,"Stockholm, Sweden",Sports & Leisure,Who Won The BBC Sports Personality Of The Year Award In 1971 ,Princess Anne  -General,In 1861 Dows Ginger Ale was the first to be what,Sold in a Bottle,Geography,"_________ is the largest country in Africa. It has a population greater than 28,100,000.",Sudan,Music,What Did Sting Suggest You Do If You Love Somebody,Set Them Free -General,"Which US state holds the record for most snowfall in a day, recorded February 7, 1916?",Alaska,Geography,What US state is completely surrounded by the Pacific Ocean,Hawaii,General,Who painted 'the night watch',Rembrandt -General,Russia has one but the US has at least six - what,Places called Moscow,General,Whic country developed the first jet fighter?,Germany,Art & Literature,From which Shakespeare play is this line taken: To be or not to,Hamlet -General,What U.S. state includes the telephone area code 505,New mexico,Science & Nature,Which Breed Of Cat Has Blue Eyes? ,Siamese ,Geography,"If the ___________ River were stretched across the United States, it would run just about from New York to Los Angeles.",Nile -General,In Scotland what was the tawse,Teachers Strap or belt,General, What is a figure with eight equal sides called,Octagon,General,"Even though they broke up 25 years ago, which group still sells more records each year than the rolling stones",Beatles -Music,Which French Superstars Originated My Way,Claude Francois,General,What is Muckle Flugga,Rock and Lighthouse on Uist,General,Who was the FBI's 1st 'most wanted' criminal,John dillinger -General,What number is at 12 o'clock on a dartboard,20,Art & Literature,Name The Famous Greek Writer Of Fables ,Aesop ,General,What word do Alaskan sled drivers shout to move their teams,Hike not Mush - Geography,Which city is known as Motown?,Detroit,General,"Which Football Club Started Out Life As ""Dial Square FC""",Arsenal,Sports & Leisure,Baseball: The Philadelphia ______?,Phillies -General,What is a Chorizo,Spicy Sausage,Sports & Leisure,How Many Players Are There In A Baseball Team? ,Nine ,Sports & Leisure,What Sport Has 4 Letters And Begins With A 'T''? ,Golf!!!!  -General,Who recorded the album Beggars Banquet,Rolling stones,General,What in medical terms does the abbreviation A & E represent,Accident & emergency,Music,Which Singer Did The Family Stone Back,Sly -General,"John Gore, Edward Saunders pioneered what org in Australia",Salvation Army,General,Which planet in our solar system orbits closest to the sun,Mercury, Geography,What state was the home to Mayberry?,North Carolina -General,Catch 22 had what original name - publisher changed it,Catch 18,General,Natalie Horler Is The Lead Singer Of Which Very Pupular Modern Day Band,Cascada,General,In which month of 1940 did the Battle of Britain begin,June - Geography,What is the basic unit of currency for Uzbekistan ?,Sum,Entertainment,How many semitones are there in an octave?,12,Entertainment,Who was the first James Bond?,Sean Connery -Science & Nature,"Which Fish, Previously Thought To Be Extinct Was Rediscovered In 1939? ",The Coelacanth ,General,"Who was ""bonnie prince charles""",Charles edward stuart,General,What 1949 book was a bestseller 35 years later,1984 -General,"In Germany, where would you be if you were in a ""Krankenhaus""",Hospital,Art & Literature,In 2007 Who Topped the Best Sellers Non Fiction List With Born To Be Riled? ,Jeremy Clarkson ,General,What is the first sign of the Zodiac,Aries -General,What was created in Canada in 1923 for first time criminals,A Spanking Machine,General,Which group was formed in 1972 by Don Henley and Glen Fry,The eagles,General,Where On The Human Body Would You Find The Filtrum,The Ridge above The Top Lip -General,In which Mediterranean Sea are the Cyclades islands,The aegean,Science & Nature,What polish astronomer demonstrated in 1512 that the sun is the center of the solar system ,Nicolas copernicus ,Science & Nature," Since white tigers have pigmented stripes and blue eyes, they are not __________",Albinos -General,What colour toothbrush do most people have,Blue,General,In what Australian state would you find Wagga Wagga,New south wales nsw,General,Jill Oppenheimer changed her name to become famous as who,Jill St John – Tiffany Case in Bond film -General,Which fictional park is the home of Yogi Bear,Jellystone,Music,"Who Kept The Discos Humming In 1977 With Their UK Debut ""Boogie Nights""",Heatwave,Music,Who Was Starry Eyed In 1960,Michael Holiday -General,The first American advertisement for tobacco was published in what year,1789,General,"Major in greek mythology, who was visited by zeus in the form of a swan, and became the mother of helen and pollux",Leda,General,Which comic strip hero shares his name with a town in Turkey,Batman -General,Papaphobia is the fear of,The pope,Music,Arthur Christopher Benson Wrote The Words To Which Patriotic Song,Land Of Hope And Glory,General,If you graduate with a degree in music what colour tassel wear,Pink -General,How many US states border an ocean?,23,General,What is a redwood tree,Giant sequoia,General,"What was the master's nickname for caine in ""kung fu""",Grasshopper -General,The Amazon river dolphins are what colour,Pink,General,"The song ""One O'clock Jump"" is particularly associated with whose big band",Count basie,General,What huge firm did Thomas Watson found in 1924,International business machines -General,What is the Islamic equal to the red cross,Red Crescent,General,What sport has Crumb Gatherers Followers Rovers and Wings,Aussie Rules Football,Science & Nature, The average capacity of a pelican's __________ is 12 quarts.,Pouch -General,What is a group of this animal called: Sparrow,Host,General,What new domestic device was launched by Hoover in 1963,Steam Iron,Sports & Leisure,Which City Is Set To Host The 2008 Summer Olympics? ,Beijing  -General,William Tell was the best crossbow archer and what else,Boatman,Sports & Leisure,"Which Is Older, The New York Or The London Marathon ",New York ,General,What two biblical cities did god destroy with fire and brimstone,Sodom and -Sports & Leisure,Loftus Road is the home of which football club? ,Queens Park Rangers ,General,New Jersey has a museum with 5400 exhibits of what,Spoons,General,"According to Benjamin Disraeli, what is the third, & worst kind of lie",Statistics -General,Palmolive promised to help women keep what,Schoolgirl complexion,Entertainment,Composer of the Brandenburg Concerti: J.S. ____,Bach,General,Alpine plant with white bracts,Edelweiss -Sports & Leisure,The Solheim Cup Is The Womans Equivalent Of Whhich Famous Sporting Cup ? ,The Ryder Cup ,General,"What was the profession of J.B.Dunlop, inventor of the pneumatic tyre",Vet,General,Which singer died an unhappy man when his father shot him in 1984,Marvin gaye -Music,What did The Band The Clash Rock,The Casbah,Geography,The United States is made up of __ states.,50,General,What is the Capital of: Zimbabwe,Harare -General,How many ring are there on the olympic flag,Five, Geography,Which island country lies to the East of Mauritius?,Australia,General,What was Jimmy Hoffas middle name,Riddle -General,How long is the le mans endurance motor race,24 four hours,General,Which film star used to be a circus acrobat,Burt Lancaster,General,Bamako is the capital of ______,Mali -General,On which fictional street does 'Freddy Kruger' live out a nightmare,Elm street,General,What American building has double - needed toilets -segregated,Pentagon,General,The song 'Why Do Fools Fall in Love was a hit in which year,1956 -Food & Drink,Which contains more caffeine - coffee beans or tea leaves? ,Tea Leaves ,Mathematics,What is x to the power of zero equal to?,One,Entertainment,"Name the band - songs include ""Monday Monday, California Dreamin'""?",The Mamas and the Papas -General,What does a depilatory remove,Hair,General,Scurvy is a lack of which vitamin,Vitamin c,General,"Who is the mother of Huey, Duey and Louie",Dumbella Duck -General,Leaflike part of a fern or palm,Frond,Sports & Leisure,Who has made more test match appearances for England than any other cricketer? ,Graham Gooch ,General,"Who or what was ""strong to the finish""",Popeye - cos he eats his spinach -Music,"Who Recorded The Early 1990's Indie Classic ""Sheffield Sex City""",Pulp,General,"In the original story, of what were cinderella's slippers actually made",Fur,General,In UK whose private house has its own court and 11 prison cells,Lord Mayor London Mansion House -General,On which Caribbean island are the Blue Mountains,Jamaica,Music,According To The Lyrics Of The B52's Song Love Shack What Was Their Chrysler As Big As,A Whale, History & Holidays,"Which Directors Films Include, Shivers , Videodrome & The Fly ",David Cronenberg  -General,Name Alice's pet cat,Dinah,General,"Which author wrote the four best-selling crime novels known as ""The LA Quartet""",James ellroy,General,Which railway station features at the end of the Hitchcok film 'The Lady Vanishes'?,Victoria Station -Food & Drink,"What drink is a mixture of brandy, egg yolks & vanilla? ",Advocaat ,General,"American cooking expert, author, & television personality",Julia child,General,Who gave the UN the land in NY to build their HQ,John D Rockerfeller -General,Who was the first woman to fly the Atlantic alone ?,Amelia Earhart,General,What does the reference book Crockfords list,Church of England clergy,General,A comet for the Greek Kometes literally means what,Long Haired -General,John Augustus Larson invented what in 1921,Lie detector,General,What is a group of this animal called: Buffalo,Herd,General,Dublin is the capital of _____,Ireland -Sports & Leisure,"How is the chess term ""shah mat"" better known ?",Checkmate, History & Holidays,"Which of these women NEVER married Frank Sinatra? A= Mia Farrow, B= Ava Gardner, C= Lana Turner ",C = Lana Turner ,General,With what country was catherine the great associated,Russia -Science & Nature,What body function is improved if you sleep on your right side?,Digestion,General,What was the subject of the first book printed in England,Chess,General,"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 -General,"What Mojave Desert city has a name meaning ""the meadows"" in spanish",Las vegas,General,The Salk vaccine is used against what disease,Polio,People & Places,Who Was The First Woman To Fly Solo Accross The Atlantic ? ,Amelia Earheart  -Food & Drink,How Are The TV Chefs 'Simon King & David Myers'' More Commonly Known ,The Hairy Bikers ,General,The boss is also known as ___________,Bruce springsteen,General,What is the main ingredient in an omelet,Egg -General,What nutrient is required by the body in order to build up muscles,Protein,General,In what Australian state would you find Wollongong,New south wales nsw,General,How many basic positions of the feet are there in ballet,Five -General,What is a Texas Ruby Red,Grapefruit,General,In Hartford Connecticut it is illegal to educate what,Your dog,General,"Who raised money for cancer research with there ""journey for lives"" run across Canada",Steve fonyo - History & Holidays,What notorious event occurred on the 24th October 1929? ,The Wall Street Crash or (Black Thursday) ,General,Which highwayman rode the horse Black Bess,Dick Turpin,General,What was Abelard's punishment for his romance with Heloise,He was castrated -General,"What cereal carries the slogan, ""a bowl a day keeps the bullies away""",Apple,Sports & Leisure,Who was disqualified after failing a drugs test at the 1988 Olympic Games In Seoul ,Ben Johnson ,General,What is a cathedra,Bishops throne or chair -General,Where are you if you land at Norman Manley airport,Kingston Jamaica,General,J G Galle discovered it in 1846 - discovered what,The planet Neptune,General,Who began his career as one of the Tennessee Two,Johnny Cash -General,Durbarry is cream of a vegetable soup - what one,Cauliflower,Sports & Leisure,Rhona Martin Was Captain Of Which British Olympic Gold Medal Winning Team In 2002? ,Curling ,General,How is the 15th March also known ?,Ides of March -General,"Which word follows Juliet, Kilo and Lima",Mike, History & Holidays,"In the 17th century, if you were given Christmas Clap off someone, what have they given you? ",A Kiss Under The Misletoe ,Religion & Mythology,What are the first three words of The Bible?,In the beginning -General,What is a gondola,Water taxi,General,"Which Explorers Last Words Were ""I Have Not Told Half"" Of What I Saw",Marco Polo,General,Which Russian composer wrote the opera 'Mozart and Salieri' in 1897,Rimsky-korsakov -General,Which science fiction writer developed a series of ethics for robots known as the Laws of Robotics,Isaac asimov,General,Which actor's autobiography is entitled Dear Me,Peter ustinov,General,Who is known as The father of Poetry,Homer -General,What year was Neptune discovered,1846, Geography,What is the capital of Morocco ?,Rabat,General,"Whose campaign warned, ""a vote for & erson is a vote for Reagan""",Jimmy carter -General,In what Hitchcock film did Shirley MacLaine debut in 1956,The trouble with Harry,Science & Nature,Which Scottish engineer was the first to use horsepower? ,James Watt ,General,Rodney Dangerfield left what career to return to show business,Paint salesman - Geography,Name the capital of Brazil.,Brasilia,General,In Costa Rica and El Salvador you spend what,Colons,General,Which Album Cover Features A Car With The Registration Plate LMW 281F?,Abbey Road -General,What who caught the grinch in the act of stealing the christmas tree,Cindy-lou who cindy lou who,General,With what are toads often confused,Frogs,General,What does a geophage enjoy,Eating earth - History & Holidays,"Whose epitaph reads, free at last, free at last, thank god almighty, i'm free at last ",Martin luther king jr. ,General,Two out of 3 adults in the USA suffer from what,Piles,General,In Shakespeare what is Richard III title before he becomes king,Duke of Gloucester -General,"In 'star trek', what is data's rank",Lieutenant commander,General,Israel occupied the golan heights. whose territory was it?,Syria,Science & Nature,Which Gentle Creature Did Walt Disney Create In 1942 ,"Bambi, The Fawn " -Music,"""He's In Town"" Was A Hit In 1964 For Which British Group",Rockin Berries, Geography,What Scandinavian capital begins and ends with the same letter?,Oslo, Geography,What is the capital of Micronesia ?,Palikir -General,Which word describing chaos first appeared in Milton's Paradise Lost,Pandemonium,Music,Who Took Porcelain Into The UK Top 10 In 2000,Moby,Food & Drink,How Did Spaghetti Alla Puttanesca Get Its Name ,Neopolitan For Prostitute (Hot & Spicy)  -General,Which soul singer was Sittin on the Dock of the Bay,Otis Redding,Science & Nature,Name the smallest breed of dog.,Chihuahua,General,"House of renee what song won the grammy for ""song of the year"" in 1977",You light up my life -General,Who patented the safety razor in 1895,King gillette,General,What type of drink is arabica,Coffee,Music,Who Played The Part Of Bongo Herbert In A Classic 1959 Movie,Cliff Richard -Sports & Leisure,Which Team Has Won The County Cricket Championships The Most Often? ,Yorkshire ,General,A woven fabric with raised pattern,Brocade, History & Holidays,Which Egyptian president ordered the seizure of the Suez Canal in 1956? ,President Nassar  -Art & Literature,"A realistic style of painting in which everyday life forms the subject matter, as distinguished from religious or historical painting. ",Genre painting,Geography,What u.s. state has the largest indian population ,Oklahoma ,General,What is measured in Scroville Units,Heat of Chillies -General,What was the first country to recognise the US as independent,Morocco,Music,Who was the first female DJ on Radio 1?,Anne Nightingale,Science & Nature," Mice, whales, elephants, giraffes, and humans all have seven neck __________",Vertebra -General,Who invented the electrical bass,Leo fender,Food & Drink,What is a segment of garlic called? ,Clove ,General,On which major river are The Owen Falls dam,Nile -General,Who was 'too sexy for his shirt',Right said fred,People & Places,Which British Prime Minister was also the longest serving MP at almost 62 years? ,Winston Churchill ,General,What does a Caligynephobe fear,Beautiful Women -General,What are a group of magpies called,A tittering,General,Myosotis is the Latin name for what blue flower,Forget me Not,General,What's an angle subtended by the diameter of an object called,Angular - History & Holidays,In What Year Was Band Aids 'Do They Know Its Christmas' The UK Christmas No.1 Single ,1984 ,Music,Which Female Star Reached The UK Number 1 Spot 29 Years After Having Her First Hit,Lulu,General,Who is the ghost that walks,Phantom -General,Who invented the Polaroid camera,Edwin land,General,What is 1 days and 2 hours in hours,26,General,In what sport is The Lugano Trophy awarded every 2 years,Men's National Team Walking -General,Ethel who is the spokesperson for the exercise tapes 'tae bo',Billy blanks,General,Where is the wailing wall,Jerusalem,General,An instrument on a car to measure the distance travelled is called a(n) _________,Odometer - Geography,What is the basic unit of currency for Solomon Islands ?,Dollar,Music,CC Deville Was A Member Of Which Band,Poison,General,The Slave of Duty is alternate title what G&S operetta,Pirates of Penzance -General,Tree with a thin peeling bark the twigs also used for flogging,Birch, History & Holidays,In which 1970's films does Dustin Hoffman play the character 'Louis Dega' ? ,Papillon ,General,Which TV detective kept his gun in a biscuit jar,Jim Rockford -Food & Drink,"Creme de Cacao, cream, and brandy make up which type of cocktail ",Brandy Alexander ,People & Places,Which 'S' is the most populated city in the world? ,Shanghai ,General,What city's baseball stadium is known as the coliseum,Oakland -Science & Nature,What animal is depicted on the logo of Toys R Us? ,Giraffe ,General,What is a group of this animal called: Donkey,Herd pace,Science & Nature,"Peat, lignite and bituminous are types of _________.",Coal -General,How many bits was the intel 4004 chip,4 bits,General,Disc of light shown round the head of a sacred person,Halo,General,"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 -General,Who married Thelma Catherine Patricia Ryan,Richard nixon,Geography,Which is the only city in Cornwall? ,Truro , History & Holidays,With Which Horror Film Would You Associate The Character Of Leatherface ,Texas Chainsaw Massacre  -General,In WW2 the Germans launched operation Bernhard - what,Counterfeit British notes,General,Megalophobia is the fear of,Large things,General,"In ""The Golden Child,"" what object does the Child animate to amuse his captor?",A Coke can -General,What takes place in Happy Valley Hong Kong,Horse racing,General,Which Female Won The Oscar For 'Best Actress' The Year Lady Diana Died,Helen Hunt, History & Holidays,Who Was The 2nd Wife Of Henry Viii ,Anne Boleyn  -General,"What is the name of Mr. Rochester's house in ""Jane Eyre""",Thornfield hall,General,Which actress was the Connecticut state golf champ at age 16,Katherine Hepburn,Science & Nature,What Is The Main Use Of Silver ,Photographic Film  -General,"What is a characteristic of a ""nimbus"" cloud",Rain,General,How did Bunito Mussolini ward off the evil eye,Touch his testicles,General,Kimberlite contains what precious item,Diamonds -Food & Drink,What Dessert Consists Of Ice Cream Covered In Meringue And Baked In The Oven ,Baked Alaska ,General,"In ballroom dance, a characteristic figure that remains constant.",Basic movement,General,When was nelson mandela released from prison,1990 -General,Pluto Greek god of the underworld - what was Plutus god of,Wealth,General,This ugly creature has patches of red on his rear end,Mandrill,General,Why did Ancient Egyptians shave their eyebrows,Mourning death cat -General,Which Salford brewer gave his name to the S.I. unit of energy,Joule,General,The average human body contains enough ____ to kill all fleas on an average dog,Sulfur,Food & Drink,"What is the minimum age for a three star brandy - is it three, five or ten years? ",5 Years  -Music,Which Lucky Man Spent Seven Weeks In The charts With Olivia And Sixteen With Sarah,Cliff Richard (Olivia Newton John) & (Sarah Brightman),Science & Nature, The cat was the symbol of liberty in ancient __________,Rome,Sports & Leisure,Which Football Team Has Won The European Cup The Most Times ,Real Madrid (6 Times)  -Geography,Which Is The Smallest State In The Usa ,Rhode Island ,General,Vientiane is the capital of ______,Laos,Music,Which group had a number one UK chart hit with the same song in 1975 and 1999?,Queen (Bohemian Rhapsody) -People & Places,Who Sued For Libel After Being Described As Boring ,William Roache (Ken Barlow) ,General,What is the fear of standing or walking known as,Stasibasiphobia, History & Holidays,"Name The Event Involving The Anarchist, Peter The Painter? ",The Siege Of Sydney Street  -General,What did Trevor Baylis invent,Clockwork Radio,Science & Nature,What Is The More Common Name For Sodium Chloride ,Salt ,General,Where was miss piggy's birthplace,Hog springs -General,"To send transatlantic telegraph messages, 3,000 miles of cable were laid under the Atlantic in what year",1886,General,What is the seventh month of the year,July,General,When did man first set foot on the moon,1969 -General,A novel by Keith Waterhouse,Billy liar,Science & Nature," 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,General,The football huddle originated at what university,Gallaudet -General,What is a female cat called?,Queen,Religion & Mythology,According to popular belief brides walk to the what in the church? (not the aisle),The nave of the church,General,What sausage gets it's name from the Italian for Onion,Chipolata -General,Which nfl's defensive unit was named 'the purple people eaters',Minnesota,General,What was the name of Dagwood Bumstead and Blondies dog,Daisy, History & Holidays,How Many Pilgrims Were Aboard The Mayflower ,120  -General,How many feet are there in a nautical mile,6080, Geography,In what country is The Blue Lagoon?,Iceland,General,What is the preferred reading material for the 66% of americans who admit to reading in the bathroom,Reader's digest -General,What is the full moon nearest the autumnal equinox,Harvest moon,General,What does an accordion have that a concertina doesn't,Keyboard,Music,What Rolling Stones album originally had a 3-D cover in 1967?,Their Satanic Majesties Request -General,One of this groups greatest albums was 'slippery when wet' released in 1986,Bon jovi,General,Lemniscate is the correct name for what symbol,Infinity,General,The term Sesquibicentennial represents how many years ?,250 -General,To which gentleman's club did Phineas Fogg belong,The Reform,Science & Nature,What is the yellow variety of quartz?,Citrine,Mathematics,The square root of 1 is?,1 -General,Approximately how many inches are in a meter,39,General,In cooking where does 'angelica' come from,Plant root,Science & Nature,What protein makes blood red?,Haemoglobin -General,"Suspension of tiny particles of one substance, called the dispersed phase, in another phase, called the dispersion medium",Colloid,General,What is a Tallith,Fringed prayer shawl Jewish,General,Who invented the first chocolate candy,Conrad j van houten -General,What is the flower that stands for: sensitiveness,Mimosa,General,In 1906 the John Gable Entertainer was the first what,Juke Box,Science & Nature, More __________ are raised in California than in any other state in the United States.,Turkeys -General,Sandra Wes of Texas died in 1977 was buried in what,Her blue Ferrari,General,Who won the 1966 f1 championship,Jack brabham,General,In RKO movies what does RKO stand for,Radio Keith Orphium -Science & Nature,What italian astronomer wrote the starry messenger ,Galileo ,General,What author wrote about Adrian Mole,Sue Townsend,General,Who Penned The Auto Biography “ Under No Illusion ” ?,Paul Daniels -General,I'll Never Fall In Love Again' came from which musical,Promises promises,General,Cyesolagnia is a fetish about what,Pregnant women,General,Ranidaphobia is the fear of what?,Frogs -General,Handel's Largo comes from which opera,Xerxes,General,Where could you find a rundle,Ladder - it’s a rung,General,What Is Carol Hersee's Claim To Fame,Test Card Girl -General,"Who Sang Backing Vocals On The Dire Straits Hit ""Money For Nothing""",Sting,General,What are lop cheong,Chinese Sausages,General,Which famous dance of the 1920's took its name from a city In the Southern United States,The charleston -General,What major law was violated in the movie Smokey and the Bandit?,Smuggling beer,General,What does a sphygmomanometer measure,Blood pressure,General,Which film won the best story Oscar in 1958,The Defiant Ones -General,What is the name of the reverend who appears in the cartoon series 'The Simpsons'?,Timothy Lovejoy,General,What band sold the most number of records in the 1970's,Led Zepplin,General,How many blades does a kayak paddle have,Two -General,Actor Arnold Schwarzenegger bought the first Hummer manufactured for civilian use when,1992,General,"Who, in Greek mythology, was condemned to eternally roll a stone uphill, where it continually rolled back down again",Sisyphus,General,In Dads Army What Was The Occupation Of Private Frazier,An Undertaker -Music,Which Trio Released The Album Crazy Sexy Cool,TLC,General,What was the #8 movie (1988) to the end of 1988 with 109 million dollars gross,Indiana jones and the temple of doom, History & Holidays,The four Sundays before Christmas are known by what name ,Advent (Sundays)  -General,What was first used as a medical treatment in 2700 bc by Chinese emperor Shen Nung,Acupuncture,General,Which apollo space mission put the first men on the moon,Apollo 11,General,"Who said ""Pennies do not come from heaven, they have to be earned here on Earth""?",Margaret Thatcher -General,Alfred Wallace coined which phrase - Wrongly given to Darwin,Survival of the Fittest,Geography,Before Brasilia What Was The Capital Of Brazil ,Rio De Janeiro ,General,What sunken ship did U.S. and French scientists discover in 1985,Titanic -General,"Transom, poop and keel are all parts of a what",Boat,Music,On Which Beatles Song Did George Harrison First Play A Sitar,Norwegian (This Bird Has Flown),General,American Paul Theroux wrote novels and about what else,Travel -General,"In The United States Of America How Is ""Feb 2nd"" More Commonly Known",Groundhog Day,General,"Name the lead singer and principal songwriter of the American group ""The Doors""",Jim morrison,General,What is cher's maiden name,Sarkassian -General,What is a two-humped dromedary,Camel,General,Which substance may be added in the preparation of jams to make them set,Pectin, Geography,What is the basic unit of currency for Madagascar ?,Franc -General,The Best or Nothing is the motto of what company,Mercedes-Bentz,General,Who turned down the Bogart role in Casablanca,Ronald Reagan,General,Name one person to be awarded the Victoria Cross twice,Noel chev asse arthur martin leake charles hazitt upham -General,What was the first magazine to publish a hologram on its cover,National Geographic,General,The longest one-syllable word in the English language is?,Screeched,General,The Yellow Kid by Richard Felton Outcault in 1896 first what,Comic Strip – New York World -General,The comma bacillus causes what disease,Cholera,General,"In an average lifetime, the average american is counted in 7 ___",Censuses,General,Why a camel haired brushes (made from squirrel) called camel,Invented by Mr Camel -General,How many spectral colors are in a rainbow,27,General,Eureka - is the state motto of what state,California,General,What do you call a large linear molecule that is formed from many simple molecules,Polymer -General,50% of the US annual rainfall falls in what month,April,Music,Which Group Originally Recorded The Original Of “Light My Fire”?,The Doors,General,A town is not a city until it has a _________,Cathedral -General,What were the dolls in the novel 'valley of the dolls',Pills,Geography,In what country is the source of the Blue Nile,Ethiopia,General,Mr Chips said goodbye - from which fictional school,Brookfield - History & Holidays,Who was UK Labour cabinet minister and social reformer Frank Pakenham better known as? ,Lord Longford (7th Earl of Longford) ,Music,Who Went To No.1 In The Album Charts In 2008 With Their Album Accelerate,REM,General,In Japan a trainee geisha must leave what uncovered,Upper lip unpainted -General,Who were the first people to measure the year,Babylonians,Food & Drink,Umbles can be made into a pie and gave rise to the expression 'to eat (h)umble pie'. What are umbles? ,Edible entrails ,Music,"""Good Feeling"", ""Naked"" And ""Weird"" Preceeded A Number Six Hit For Which Group",Reef -General,What type of metal is used in the filament of an electric light bulb,Tungsten,Food & Drink,Which English king not only had to deal with the bloody Vikings but with a barrage of burnt bannocks? ,King Alfred ,General,Tina Turner Sang The Theme Tune To The James Bond Movie “ Golden Eye” But Who Actually Wrote It ?,U2 -General,Michael O Brien Became Britains First Ever What On April 20th 1974 (Many Have Followed In His Footsteps),Streaker,General,Which Countries Currency Is Called The Rufiya?,The Maldives,General,"According to Noel Coward, who 'go out in the mid-day sun'",Mad dogs and englishmen -General,Smith most common English surname what's the Japanese,Suzuki,General,"What name is given to the sedimentary rock that has changed after being subjected to heat and pressure, for example, Marble",Metamorphic, History & Holidays,In which year was the Rosetta stone written ?,196 BC -General,Temperature when condensation occurs is called the,Dew point,Food & Drink,What is Laver Bread made from? ,Seaweed ,General,An aromatic herb often used with tomatoes,Basil -General,"Botvinnik, Petrosian and Tal have all been World Champions of what",Chess,General,Sindonology is a debate concerning the origins of what,Turin Shroud,Geography,What is the capital of Cape Verde,Praia - Geography,Libreville is the capital of ______?,Gabon,Music,Rusty Egan & Steve Strange Worked As DJ's At A Legendary Club What Was It Called,Blitz,General,If you suffered from scripturience what are you compelled to do,Write things down -General,Term for animals in the class including the scorpions and spiders,Arachnid,General,What do x and y chromosomes combine in making,Males men,General,What does an insect do when it moults,Sheds its skin - History & Holidays,Who was known as 'the peanut president'?,Jimmy Carter,General,In scrabble what two letters are worth ten points,QZ,Sports & Leisure,"Who was known as the ""Sultan of Swat""?",Babe Ruth -Geography,In which South American country is the Atacama desert? ,Chile , History & Holidays,Where was the 1962 world's fair held ,Seattle , History & Holidays,Which Aerosmith song was re-made by Run D.M.C.? ,Walk this way  -General,"Where in the body would you find the malleus, incus and stapes",Inner ear,Music,Land Of Hope & Glory Comes From Whose Pomp & Circumstance Marches,Sir Edward Elgar,General,"Agency of the Executive Office of the President of the United States, created in 1947, together with the National Security Council.",Central intelligence agency -General,What is the next-to-last event,Penultimate,General,What famous occurrence happened at Ujiji in 1871,Stanley found livingstone, History & Holidays,"In Halloween, Michael Meyers wore a Halloween mask of what famous character ",Captain Kirk mask  -Sports & Leisure,What is the last event in a decathlon ? ,1500 Metres ,General,Who sings 'you've got a friend',Carole king,General,"What book did a Mississippi man try to sue in 1994, claiming it was based on ""oppressive hearsay""",The bible bible -General,What do pigments give to your hair & skin,Colour,General,Dried fish eaten as a relish with curry,Bombay duck,General,"In mIRC, what colour does control-K + 4 give?",Red -Sports & Leisure,Which English club was formed in 1887 as Ardwick FC? ,Manchester United ,General,Who does Adrian Mole lust after,Pandora,General,Beethoven's sixth symphony is known as what,The Pastoral - Geography,What is the basic unit of currency for Kiribati ?,Dollar,General,"Minnelli who wrote ""moby dick""",Herman melville, History & Holidays,Who designed Regent's Park in London in 1811? ,John Nash  -General,Which film won the best makeup Oscar in 1992,Bram Stokers Dracula,General,The popular ski resort of Aspen is in which U.S. state,Colorado,General,For $150 you can become a licensed what in Texas,Dead animal hunter -General,"In an average lifetime, the average american sees 345 movies in ___",Theaters,Science & Nature,Slate is formed by the metamorphosis of _________.,Shale,Science & Nature,What type of frog is the smallest frog?,Gold frog -Sports & Leisure,The German Athlete Jurgen Hingsen was always runner-up to which British Athlete in major competitions? ,Daley Thompson ,General,What is an extra lane on an uphill stretch of motorway provided for slow-moving vehicles called,Crawler lane,General,Which of the four Horsemen of the Apocalypse rode a red horse,Slaughter -General,What is the fear of things to the left or left-handed known as,Sinistrophobia,Geography,"Australia's highest mountain is named for Thaddeus ________________, the Polish general who fought in the American Revolution.",Kosciusko,General,Which sea does the river Rhone flow into,Mediterranean -General,What are Munroes,Mountains in Scotland,Science & Nature,How many beams of light are used to record a holograph?,Two,General,Who was the founder of the basotho nation,Moshoeshoe -General,Marbella is a resort on which Spainsh coast,Costa del sol,Music,According To The Beatles How many holes does it take to fill the Albert Hall?,4000,General,Be prepared is the boy scout motto what's the girl guides motto,Be prepared -General,Who controlled the government of china before mao tse tung,Chiang kai-chek,General,In The TV Show Dangermouse What Was Dangermouse's Sidekick Penfolds First Name,Ernest,General,What warning often appeared over dangerous stunts on that's incredible,Do -Geography,In What Year Did Captain Cook Reach New Zealand ,1769 ,General,"What city are you in if yoU.S.troll in the piazza san marco & visit torcello, burano & murano",Venice,General,"Early in his career, which rolling stones guitarist played with rod stewart and 'the faces'",Ron wood -Food & Drink,What 'R'' Is The Name Given To A Picked Herring ,Rolemop ,General,Who is the only man to have been both chief justice and president of the US?,William Taft,General,Who were originally The Sons of Daniel Boone,The Boy Scouts of America -General,Angelo Scicilano better know as who,Charles Atlas,Music,Who recorded 'Shadows of the Night' in 1982?,Pat Benatar,General,James L Herlihy wrote what novel - Oscar winning film,Midnight Cowboy -General,What fish is known as poor mans lobster,Monk Fish,Music,Cotton Eye Joe Was A Hit In 1994 Who Sang It,Rednex,General,In which city was Alexander Graham Bell born in 1847,Edinburgh -Geography,In what city are the famous tivoli gardens ,Copenhagen ,General,"According to Mattel, her manufacturer, what is Barbie's last name",Roberts,Food & Drink,Which dessert was created in honour of a famous ballet dancer? ,Pavlova  -General,"Which Wimbledon Tennis Champion Had A Role In The John Wayne Film ""The Horse Soldiers""",Althea Gibson,General,To whom was Marie Antoinette married,Louis xvi,General,Produced By Film Maker Arthur Melbourne Cooper In 1897 What Was The Product In Britains First Film Advertisement,Birds Custard Powder -General,How far does the cruise liner 'queen elizabeth ii' move for each gallon of diesel it burns,Six inches,Food & Drink,In The Year 2001 Which Popular Food Dish Was Declared As Britain's Favorite ,Chicken Tikka Masala ,Music,What Was The Only Top 10 Single For Thin Lizzy In The 80's,Killer On The Loose -General,Which saint founded a monastery at Iona in the sixth century,Saint columba, Geography,What is the capital of Slovakia ?,Bratislava,General,Which poet wrote 'Howl'?,Allen Ginsberg -Music,"Who Recorded The Album ""Who Made Who""",ACDC,General,What ocean fills nearly a complete hemisphere of the earth's surface,Pacific pacific ocean,Sports & Leisure,Which football team plays at Pride Park ? ,Derby county  -General,Hukusai and Hiroshige were famous Japanese what,Artists,General,Who was the second Soviet cosmonaut to successfully orbit the Earth,Titov,General,How Is The Fictitious Law Enforcement Character “ Archibald Barclay Willoby ” Better Known,PC 49 -General,What is the fear of being tickled by feathers known as,Pteronophobia,Sports & Leisure,"Which Sport Includes Events Called The Halfpipe, The Slopestyle And The Bordercross ",Snowboardring ,General,In Yorkshire in 1872 what took 3 days to pass by,Swarm of Ladybirds -Food & Drink,What is the most common pub name in Great Britain? ,The Red Lion ,General,What is the largest museum,Louvre,Entertainment,Girlfriend of Lex Luther II,Supergirl - History & Holidays,What toy was released in 1957 creating an instant craze among children? ,The Hula Hoop ,Sports & Leisure,At Which Ground Do Scotland Play Their Home International Rugby Union Matches ,Murrayfield ,General,What group sang about a Suicide Blonde,INXS -General,What is the Capital of: Samoa,Apia,General,If you have cherophobia what are you afraid of,Joy - happiness,General,"In the James Bond film Dr No, what was the name of the character played by Ursula Andress",Honey ryder - Geography,Tirana is the capital of ______?,Albania,General,A device used to change the voltage of alternating currents is a __________.,Transformer,Art & Literature,"Which Gallery Has Exhibitions In London & St Ives, Cornwall ",The Tate Gallery  -General,The angel of independence in Mexico City was built by who,Salvador rivas mercado,Science & Nature,The branch of medicine dealing with curing by operative procedures is ________.,Surgery,General,"What country has the largest school, with an enrollment of about 25,000?",Philippines -Geography,What Is The 2nd Official Language Spoken In Germany ,Turkish ,General,What Ancient Invention Was Commercialized And Sold By The “Wham-O” Corporation in 1957 Selling Over 20 Million Of Them In Just 6 Months,Hula Hoop,General,A type of musical instrument turned by hand,Hurdy-gurdy -General,"In the 'james bond' books, to who is miss moneypenny secretary",M, History & Holidays,Who Was The Last British Monarch Born Abroad? ,King George II ,General,Who was al gore's freshman roommate at harvard,Tommy lee jones -Science & Nature," 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,General,"""retro"" is latin for what",Backward, Geography,What is the circle of the earth at 0 degrees latitude called?,Equator -General,Which fictional land was used to describe John F Kennedy's term as president,Camelot,General,Name the last province to become part of canada,Newfoundland,Toys & Games,You inserted sticks into round blocks to build abstractions with these.,Tinker toys -General,Where are the deepest mines,South africa,Geography,In which country is sapporo ,Japan ,General,Heterophobia is a fear of ______,Opposite sex -General,Which is the only u.s state capital without a mcdonald's,"Montpelier, vermont",General,What sexual practice does a mazophallate enjoy,Tit Wank,General,A person who deliberately sets fire to property,Arsonist -General,What is the name of the Danish parliament,The folketing,Art & Literature,Who wrote the vampire series that featured Lestat as the main character?,Anne Rice,General,What is the minimum IQ score for the genius category?,140 -Music,"About Whose Sister Is John Lennons Song ""Dear Prudence""",Mia Farrow's,Science & Nature,What Is The Largest Species Of Penguin ,Emperer ,General,What is the architectural term for ornamental stonework representing a scroll of paper,Cartouche -General,What is the main ingredient in Borsch,Beetroot,General,The Boys from Syracuse is based on what Shakespeare play,The comedy of errors,General,From what country does the dish skordalia come,Greece -General,What does jefferson davis' headstone say,"At rest, an american soldier and",General,What are officers of 46 u.s federal agencies authorised to carry,Firearms,Entertainment,Who married Shania Twain?,"Robert ""Mutt"" Lange" -General,Who was the first woman to sail single-handed around the world,Naomi james,Music,"Who Had A No.1 Hit In 1984 With ""The Reflex""",Duran Duran,General,Which character first appeared in the book Call for the Dead,George Smiley by John LeCarre -Science & Nature,Our galaxy is commonly known as the ________.,Milky Way,General,What was the Mark Twain in WW2,A Bombsight,General,What English poet always carried a supply of poison in case he had the urge to die,Shelley -General,What is the capitol of Chechnya,Grozny,Music,What color was Lucy's sky?,Marmalade,Music,"Who Had A Hit In 1993 With ""Stairway To Heaven""",Rolf Harris -General,Teenage riot' and 'silver rocket' are two cuts off which alternative rock group's 1988 'daydream nation' album,Sonic Youth,General,BCG is a vaccination for which disease,Tuberculosis,General,What car was used in 'back to the future',De lorean -General,Rabbit 32 - Cat 62 - Ferret 42 - Squirrel 44 - Hedgehog 40 what,Gestation days,Entertainment,What TV series from 1970-1974 starred Susan Dey?,Partridge Family,Art & Literature,Which Artists Name Literally Means (Little Barrel) ,Botticelli  -General,"Who In The World Of Music And Born 1984 Has The Real Name ""Victoria Christina Hesketh""",Little Boots,General,What nationality was the composer Delius,British,General,Whats a sudden & violent burning called,Deflagration -Music,"Which Stones Hit Was Reputedly Based On Martha Reeves & The Vandellas ""Dancing In The Street""",I Can't Get No Satisfaction,General,"In 1981, film was introduced to replace glass in making ______",Photographic,General,In the 1944 film National Velvet name Elizabeth Taylor's horse,Pie - History & Holidays,In What Year Was The Chinese Republic Established ,1911 ,General,What was the name of Hitlers mountain retreat,Berchtesgaden,General,What is the most popular meal ordered in sit down restaurants in the us,Fried chicken -General,What country celebrates its National Day on 17th May?,Norway,Science & Nature," 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,General,What is the capital of costa rica,San jose -Geography,Which City Is The Worlds Most Densely Populated ,Macau ,Music,Morten Harket Was The Lead Singer With Which 80's Band,Aha,Music,What Was The Beatles Second Movie,Help -General,Who announced his retirement from football after nine seasons in the NFL on the set of The Dirty Dozen in London,Jim Brown,General,What is the fear of being contaminated with germs known as,Misophobia,General,What surname links the singers Jim and Van,Morrison -General,"Which film director's films include ""Raging Bull"" and ""Goodfellas""",Martin scorsese,Entertainment,"Who sings ""Imitation Of Life""?",R.E.M.,General,Progress through Pain was whose motto,Arnold Swartzenager -General,What is the old english word for 'sneeze',Fneasan,General,What is the Capital of: Benin,Porto-novo,General,Liquid food of oatmeal boiled in milk or water,Gruel -Music,Name Dan Hartman's first hit?,Instant Replay,Music,In The World Of Music How Are “SAW” More Commonly Known,"Stock, Aitken, Waterman",General,What is the Capital of: Brunei,Bandar seri begawan -General,What is the Capital of: Cameroon,Yaounde, History & Holidays,"If you were born on Christmas Day, what would your star sign be? ",Capricorn ,Music,"Terence Trent D'Arby Had A hit With ""Dance Little Baby"" Or ""Dance Little Sister""",Dance Little Sister -General,"In the traditional song, what did the children dance around ""on a cold and frosty morning""",The mulberry bush,General,What are salopettes,Snow proof Dungaree trousers,General,"Klu Klux Clam, Uncle Ant Disgruntled goat characters from?",Itchy & Scratchy in The Simpsons -General,"What is made up of the duodenum, jejenum and ileum",Small intestine, Geography,Austin is the capital of ______?,Texas,General,"When the Titanic left Southampton in April 1912, what was its first port of call",Cherbourg -General,Which detective dies in The Final Problem,Sherlock Holmes,General,In the acronym SHAPE for what does the letter S stand,Supreme,General,What dead african leader was originally known as Ras Taffari,Haile selassie -Food & Drink,"This drink is made from espresso coffee, steamed milk and chocolate.",Mocha,General,"Until 1796, which state in the U.S. was known as Franklin",Tennessee,General,What was the first model Rolls Royce called?,Silver ghost -General,What was the screen name of the lead character in The Untouchables,Elliot,General,"Wolves, Curlews, Bulls and Ravens the first groups of what",Boy Scouts,Music,Who Had A Live Album From 1962 Released In 1977 Against Their Wishes,The Beatles -Food & Drink,Which Type Of Prepared Bread Is Named After An Opera Singer? ,Melba Toast ,General,Names - Baker Cook obvious what did Cordwainer do,Shoemaker,Science & Nature," A male kangaroo is called a boomer, and a female is called a __________",Flyer -General,Bobby locke was the first south african golfer to win which open,British,General,To which country do the Coral Sea Islands belong,Australia,Geography,What is the capital of Japan,Tokyo - History & Holidays,Who Was Declared Dead On New Years Day 1953 At The Age Of 29? ,Hank Williams ,General,The name of which fabric comes from the Persian word for spun,Taffeta,Sports & Leisure,What Colour Is The Right Hand Corner Square On A Chess Board ,White  -Geography,Which country would come first in an alphabetical list of countries,Afghanistan,General,What Became The Uk's First Registered Trademark In 1875,Bass Red Triangle,General,What is mixed with tin to produce bronze,Copper -Science & Nature,Which Aviation Company Produces The DC Series Of Aircraft ,McDonnel Douglas ,General,"In June 19&3, SvetLana Savatskaya was the first wornan to do what",Walk in space,Geography,In which state is mount mckinley ,Alaska  -General,What does 'aandw' of root beer fame mean,Allen and wright,General,Of what is '9' the billionth digit,Pi,General,William Le Baron Jenny is credited with inventing what in the US,Skyscraper -General,In the Northern hemisphere its Jan 1st South Aug 1st what is,Racehorse official birthdays,General,Ambigu was an early form of what card game,Poker,Science & Nature,What is brine ?,Salt water -General,Which 1954 film won eight Oscars,On the Waterfront,General,What is the sum of 67 + 67 + 67 + 67 + 67,365,Art & Literature,"Who wrote ""The Rime of the Ancient Mariner?""",Samuel Taylor Coleridge - History & Holidays,In which country do they pound rice into a glutinous form using a huge hammer? ,Japan ,General,In which cop show did Petrie and Isbecki appear,Cagney and Lacey,General,What fluid ran through the Greek Gods instead of blood,Ichor -General,What capital city translates as Capital City in the native tongue,Seoul - South Korea, Geography,What is the name of the mountain chain separating most of Spain from France?,Pyrenees,General,On a UK ordinance survey map what is shown by a red flag,Motor Racing Circuit -General,The Gorbals is a district of which city,Glasgow,Art & Literature,The Term (Impressionism) Was First Used Abusively About Which Artist ,Claude Monet , Language,"What three letter word means the same as ""to ingest""?",Eat -General,"Sweet or fermented juice of apples, used as a beverage and for making vinegar",Cider,General,How many colours are there in the rainbow,Seven,General,Ninkasi was the ancient Egyptian goddess of what,Beer -General,Who wrote mIRC?,Khaled Mardam-Bey,General,96% of all what are purchased by women,Candles, Geography,What is the capital of Madagascar?,Antananarivo -General,"Who recorded ""Barbara Ann"" in 1961",Regents, Geography,Near what river is the Temple of Karnak?,Nile, Geography,"What is South America's highest peak in the Andes, Argentina?",Aconcagua -General,Which Singer Become A Father For The 7 th Time Aged 55 In the Year 2007,Stevie Wonder,General,"Which Star Of A Popular TV Sitcom Released A Fitness Video Called ""Lets Dance"" In 1996",Richard Wilson,General,Who had a hit in 1974 with 'when will i see you again',Three degrees -Music,Name Two Frank Ifields No.1's,"I Remember You, Lovesick Blues, Wayward Wind, Confessin",General,"What describes ""noon good""",Good afternoon,Religion & Mythology,Who is the greek equivalent of the roman god Vulcan,Hephaistos -General,Which English actor won his first Oscar for a role in 'Arthur' at the age of 77,Sir john gielgud,General,What actress played the female cop on hill street blues,Betty thomas,Music,With What Song Did Brotherhood Of Man Win The Eurovision Song Contest In 1976?,Save Your Kisses For Me -General,Which real person took name meaning Man of Steel,Joseph Stalin,General,Which city has the longest metro system,London,Music,"How Many Songs Did Elvis Presley Record With The Word ""Blue"" In The Title",19 -Science & Nature,What is the common name for the sternum?,Breastbone,General,1994 what's the most registered dog by American Kennel Club,Labrador retriever,General,What Were Introduced For The First Time In 1961 By New Scotland Yard?,Photofits / Identikits -General,What has accumulated in the muscles in someone suffering from emphysema,Air,General,In cookery what does ricotta literally mean,Twice cooked,General,"What links the names Botvinik, Tal, Karpov, Fischer",Chess World Champs -General,The average American does it 1811 times in their life - what,Eat at MacDonald's,Geography,In Which Country Is Guallatiri (The Worlds Largest Volcano) ,Chile ,General,Which is the most Northerly African country,Tunisia -Sports & Leisure,What piece of sporting equipment has a maximum length of 42 inches and a maximum thickness of 1 & 1/2 inches? ,A Baseball Bat ,General,"In which country is the seaport of Trabzon, or Trebizond",Turkey,Music,Who replaced 'Bernie Leadon' of 'The Eagles' in 1975?,Joe Walsh -Geography,"Which Mountain Range Lies In The North Of Spain , West Of The Pyrenees ",The Cantabrian Mountains ,Geography,What is the capital of Iran,Tehran,General,What's still legal in Paraguay if the participants are blood doners,Duelling -Art & Literature,On what book was 'Three Days Of The Condor' based?,Six Days Of The Condor,General,What was first opened in 1922 by national department stores in saint louis,Shopping mall,Music,Who Wrote The Theme tune For The bond Movie Live And Let Die,Paul Mc-Cartney -General,If you went on the road to Mandalay what country are you in,Miramar or Burma,General,What is the literal translation of 'Passat' as in the Volkswagen car model?,Trade Wind,General,What do the plants laburnum and broom have in common,Yellow flowers -General,Letterman who did david letterman pay four cartons of marlboro to be on his show,Miss,General,Which author created Svengali,Georges du maurier,General,According to J K Rowling what are muggles,Ordinary people no magic -Science & Nature,What has superseded Newtonian mechanics of the atomic scale ?,Quantum mechanics,General,What's the Australian slang name female man trainee sheep farm,Jillaroo,Technology & Video Games,"In Adventure, which castles require the bridge to explore fully? ",Black and White Castles -General,What is the correct name for a baby mink,Kit or Kitten,Art & Literature,What Dr Seuss character steals Christmas?,Grinch,Music,Which British King Reputedly Wrote Greensleeves,Henry Viii - History & Holidays,Of which Cambodian party was Pol Pot the leader?,Khmer Rouge,General,What type of animal was selected to test the first electric toothbrush,The dog dog,General,Who was beheaded by Henry VIII after writing Utopia,Thomas More -General,What does UFC stand for?,Ultimate fighting championships,Science & Nature,What would a Conchologist be intrested in?,Shells,General,Of which fruit is 'Red Gauntlet' a variety,Strawberry -General,The Campbell-Stokes recorder measures what with a glass ball,Sunshine,General,Which characters were invented in 1957 in Belgium,The Smurfs,General,First used in Salt Lake 1980s what was a jarvik,Artificial heart -Science & Nature,What Is An Otoscope Used To Look At ,The Ear ,General,Just before their planned comeback tour michael hutchence of which band was found dead of an apparent suicide,Inxs,General,What toy was first launched as The Magic Screen,Etch - A - Sketch -General,What lies between Stockholm and Riga,Baltic sea,General,Nicky Chinn Mike Chapman wrote Suzi Quatro No 1 UK song,Can the Can 1973,General,"Which jazz pianist composed the jungle music ""Black and Tan Fantasy"" with Bubber Miley, and recorded it with his band in 1927",Duke ellington -Food & Drink,What can you do after eating a garlic doused Indian meal in order to prevent your breath smelling of garlic the day after? ,Drink a Lassie (yoghurt drink) to coat your throat ,General,Corie Ten Boom was the first licensed female what in Holland,Watchmaker,General,"What Arab capital has a name that means ""God's gift""",Baghdad -General,"Small, active, carnivorous freshwater fish, found in the islands of the southern caribbean sea & in northern south america",Guppy,General,What is the first name of the son of Patsy Kensit and Liam Gallagher,Lennon,General,International car registration letters what country is ZA,South Africa -General,What was given to children to rid them of threadworm,Salt enema,General,What is the most common mammal in the UK,Brown Rat,General,Who was born at Daisy Hill Puppy Farm,Snoopy – Peanuts -General,What New Zealand native was the first man to climb Mt. Everest?,Sir Edmund Hillary,General,"Joan Collins was how old when she posed semi-nude for ""Playboy"" in 1983?",50,General,"A banana is not a fruit, but a ______",Herb -General,What are great waves resulting from earthquakes,Tsunami waves,Geography,Which American State Has The Highest Population ,California ,General,Where's the 19th hole on a golf course,Clubhouse -Science & Nature,What is an emasculated stallion called,Gelding,General,"Which Very Popular Cartoon Character Actually Has The First Name ""Mimi""",Road Runner, History & Holidays,Chrissie Hynde was in which early eighties group? ,The Pretenders  -Sports & Leisure,In Which Athletics Even Might You Use A Fosbury Flop ,High Jump ,General,Who was the only person to ever play in the Super Bowl and World Series?,Deion Sanders,General,Who wrote Madame Bovary,Gustave flaubert -Geography,Which Is The Largest Ocean ,The Pacific Ocean ,General,A waterproof over shoe,Galosh,General,Where On The Human Body Would You Find The Septum,The Gap Between The Nostrils -General,"Best known for 'dancin' in the streets', martha and the vandella's also hit the charts with the song about which man",Jimmy mack,Entertainment,Secret Identities: Bruce Wayne,Batman,General,In The Books Mr Silly Was Light Brown & Had Yellow Shoes What Colour Was His Hat,Orange -General,The Sejm are the legislative body in which country,Poland,Music,Which Suffolk town was the birthplace of Benjamin Britten?,Lowestoft,General,Painting in water colour on fresh plaster,Fresco -General,What is liquor distilled from the fermented mash of cereal grains and containing about 40 to 50 percent ethyl alcohol by volume,Whiskey,General,Vectis' Is The Roman Name For What Part Of The British Isles,Isle Of Wight,General,The study of animal and plant tissues?,Histology -General,Who won an academy award for best supporting actress in the film 'the english patient',Juliet binoche, Geography,What is the capital of Mexico ?,Mexico City,General,A device used to change the voltage of alternating currents is a ______,Transformer -General,Robert Record in the mid 16th century invented what sign,Equals =,General,Thinker who sang the 1963 hit 'it's my party',Lesley gore,General,"In Great Expectations, what was the occupation of Joe Gargery",Blacksmith -General,What did the Ayatollah Khomeni ban in 1979,Music on radio,People & Places,Who was the first snooker player to be a subject of this is your life on the 14 th January 1978? ,Ray Reardon ,General,The religious text Mishna comes from which religion,Judaism -Sports & Leisure,In Which Blood Sport Are Banderillas Used ,Bull Fighting ,General,As what is East Pakistan now known,Bangladesh,General,What Bond thing did Roger Moore not do in 7 films,Drink Martinis - and smoke -General,What was the first stop of the mayflower when it reached the new world,Cape,General,The pleistocene epoch of geologic time is more commonly known as,Last ice,Music,Which Two Impresarios Mixed The 1997 Ministry Of Sound Compilation Album,Pete Tong / Boy George -Entertainment,Who sang 'Beat It'?,Michael Jackson,General,What is the most frequently accessed article World Encyclopaedia,Snake Information,Entertainment,"Who recorded the 1957 hit ""Tammy""?",Debby Reynolds -General,A person who starts fires maliciously is a(n) _________.,Arsonist,Music,Richey Edwards Who Is Missing Presumed Dead Played In Which Band,Marseilles,General,In what country was Greenpeace founded in 1971,Canada -Science & Nature,"Which is a small flightless bird, also New Zealand's national symbol?",Kiwi,General,What is a Tsunami,Tidal wave,General,In which city is the horse race the Palio run,Sienna -Geography,Florida is not the southernmost state in the United States. ___________ is farther south.,Hawaii,Entertainment,He played Superman in the 1978 movie version.,Christopher Reeve,General,Who directed the film Lawrence of Arabia,David lean -General,The koala eats the leaves from this tree,Eucalyptus,General,What crime did Theresa Vaughn commit 62 times in 5 years,Bigamy - Tried 1922,Geography,Which Theory Is Used To Explain Continental Drift ,Plate Tectonics  -General,"In the cartoon Jem and the Holograms,what was the name of Jems computer.",Cinergy,General,Who invented the ball point pen?,Laszlo and Georg Biro, Geography,Nicosia is the capital of ______?,Cyprus -Art & Literature,"From the Hebrew word for 'prophet'. A group of French painters active in the 1890s who worked in a subjective, sometimes mystical style, stressing flat areas of color and pattern. ",Nabis,General,Hemeroticism is what,Sexual fantasy, History & Holidays,According to the lyrics of the song Mr Who? Was asked to turn on his magic beam ,Mr Sandman  -General,Douglas Engelbart invented what - we all use it,Mouse,General,Which sport is played by L.A. Lakers,Basketball,Geography,"The first letter of every continent's name is the same as the last: AmericA, AntarcticA, EuropE, AsiA, ______________, AfricA.",Australia -Sports & Leisure,Which Famous Athletics World Record Stood Between 1968 & 1991 ,Bob Beamans Long Jump ,General,In Riverside Cal its illegal to kiss unless both wipe lips with what,Rose Water,General,"At Disneyland Paris, the park's famous __________ is known as Le Château de la Belle au Bois Dormant. ",Sleeping beauty castle -Science & Nature, Baby mink are born blind and remain sightless for a __________,Month,General,What do 12% of mississippi households lack,Telephones, History & Holidays,"Who was Ulysses' son, who grew to manhood in his absence?",Telemachus -General,What Muslims practise shirling as a religious act,Dervishes,General,What type of clothing article is a Belcher,Neckerchief,Music,Which Brothers Reached No.5 In 1961 With Warpaint,The Brook Brothers -Entertainment,Who invented the synthesiser ?,Bob Moog,Music,Which 1994 Album Bore The Name And Naked Picture Of The Artist,Seal,Science & Nature,What is measured by a Geiger counter,Radioactivity - History & Holidays,Which Revolutionary Icon Was Killed On 9th October 1967 ,Che Guevara ,General,What was invented by Henry D Perky 1893 Denver Colorado,Shredded Wheat,General,According to the traditional rhyme what's the fate of Wed. child,Full of Woe -Geography,Constructed In 1333 Which Is The Oldest Wooden Bridge In Europe ,The Kapellbrucke In Lucerne Switzerland ,General,Sheena Easton sang the title song for which 'James Bond' film,For your eyes only,Music,Which Us State Is Mentioned In The Lyrics To The Tony Christie Song Amarillo,Texas -General,How do you tell a male chromosome from a female chromosome,Pull down their genes,Music,Who designed Madonna's conical basque for her 1990 Blonde Ambition tour?,Jean Paul Gautier,Science & Nature,Sodium barcarbonate is better known as ________.,Baking soda -General,What year was Robert the bruce crowned King of Scotland,1306,General,Who sang 'islands in the stream' with kenny rogers,Dolly parton,General,Name every actress who played an 'angel' on Charlie's Angels,"Farrah Fawcett,Kate Jackson,Jaclyn Smith,Cheryl Ladd,Shelley hack,Tanya Roberts" -General,Washington police officers get a half hour class in how to what,Sit Down,General,For the city 'summer of 69' was a hit for which canuck in 1984,Bryan adams,People & Places,Who Was The First Player To Be Sent Off In An FA Cup Final ,Moran  -General,"Who recorded the album ""the cry of love"" in 1970",Jimi hendrix,General,Beasley how much does park place cost in monopoly,Four hundred fifty dollars,Science & Nature,Walrus tusks are made of ________.,Ivory -General,What is the most common name in italy?,Mario Rossi,General,American Football - where do the Lions play at home,Detroit,General,What is the capital of the state of Oklahoma,Oklahoma city -General,What year was the intel pentium processor introduced,1993,General,Nixon what hans christian andersen fairy tale character is immortalized in a famous statue in copenhagen's harbor,The little mermaid,General,Gesture of celebration in which two people slap each others palms with their arms outstretched over their heads,High-five -Music,How Is Rock Star Vincent Furnier Better Known?,Alice Cooper,General,In what country did tulips originate,Persia,General,Who was john the baptist's mother,Elizabeth -General,Diverse group of either single-celled or multicellular organisms that obtain food by direct absorption of nutrients,Fungi,Food & Drink,What alcoholic drink is distilled from pears? ,Perry ,General,99% of American households have at least one what,TV -General,Which animal uses white ear spots as identification marks,Tiger,Science & Nature, The Hirudo leech lays its babies within a cocoon; the Amazon leech carries its babies on its __________ _ sometimes as many as 300.,Stomach,Science & Nature,"Knife, Clown, and Pencil are types of __________.",Fish -Science & Nature,Francis Crick was the most famous of the discoverers of what? ,DNA ,General,What film won the best visual effects Oscar in 1985,Cocoon,Music,"Which Song Urged You To ""Push Pineapple , Shake The Tree""",Agadoo -General,Elvis Presley said big what on a woman turned him off,Feet,General,"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,General,When did Henry Ford build his first car,1896 - History & Holidays,Which Actor Of The Silent Era Was Known As 'The Man Of A Thousand Faces' ,Lon Chaney ,General,What instrument did Glen Miller play,Trombone,General,Who gave millions of dollars to britain in 1930,Edward s harkness -General,What is the Capital of: Turkmenistan,Ashgabat,General,What US film was based on Thomas Dixons The Clansman,Birth of a Nation,General,In the comic strip Garfield what is the teddy bear’s name,Pooky -General,George Fox founded which religious group,Quakers, Geography,"What U.S. state is known as The Land of 10,000 Lakes?",Minnesota,Geography,On what island is the Blue Grotto,Capri -General,What is Wales' national dish called?,Cawl,Music,"""Word Up"" Was A 1986 Hit For Which Band",Cameo,General,"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 -General,Where were Panama hats first made,Peru,General,Disney: The original name of Goofy was ___________ ,Dippy dawg,General,What is the Capital of: MacaU.S.AR,Macau -General,Sweet opaque jelly of flavoured cornflour and milk,Blancmange,Music,Which Beatle was against hiring Allan Klein as business manager in 1969?,Paul, Geography,What is the capital of Kenya ?,Nairobi -Science & Nature,Where Was The First Successful Steam Engine Installed ,Dudley East Midlands 1712 ,General,What food dishes name translates as pepper water,Mulligatawny – from India, History & Holidays,"Who said ""Veni, vidi, vici"" (I came, I saw, I conquered)",Julius caesar -Music,Which British Female Singer Recorded An Album In Memphis With Jerry Wexler Producing,Dusty Springfield,General,What is the currency of guatemala,Quetzal, Geography,What is the basic unit of currency for Gabon ?,Franc -Science & Nature,In what organ of the body is insulin produced?,Pancreas,General,What type of sword was excalibur,Long sword,General,Which shipping area covers the North coast of Ireland,Malin -Tech & Video Games,"Who said ""All life begins and ends with Nu___at least this is my belief for now___""? ",Nu,Music,"Which song and artists sang this during the 1970’s “ A year has passed since I wrote my note, but I should have known this right from the start, only hope can keep me together, love can mend your life, but love can break your heart”?",Police / Message In A Bottle,Sports & Leisure,Which sport takes place in a circle 4.55m in diameter? ,Sumo Wrestling  - History & Holidays,What Was The Name Of The Son Of Cleopatra & Julius Caesar ,Caesarion ,General,Who sang arthur's theme (best that you can do),Christopher cross,General,What is the birthstone for January,Garnet -General,The practice of women taking more than one husband is called?,Polyandry,General,"What is the name of the heroine in the cartoon ""Beauty and the Beast""",Belle,General,Collective nouns - what are a group of apes called,Shrewdness -General,Where did doughnuts originate,Holland,Music,With Which Rock Band Did Slash Play Guitar?,Guns N Roses,Sports & Leisure,With what sport is Chris Boardman associated?,Cycling -Science & Nature, The __________ has green bones.,Garfish, History & Holidays,"Also known as the 'Isle of Apples', Christ and Joseph of Aramathea travelled here in ancient times.",Avalon, History & Holidays,"""In the movie """"It's A Wonderful Life"""" how do you know that a new angel has received his wings? (""""a cock crows, there is a lightening flash, a bell rings, a trumpet sounds"""") "" ",A Bell Rings  -General,The Tilia is the Latin name for what type of tree,Lime,General,What is the highest peak in Australia,Mount kosciusko,General,What is the stage name of George Alan O'Dowd,Boy george -General,What is the main flavour of aioli,Garlic,Music,Name Black Sabbath's debut hit?,Paranoid,General,In which town or city is the national Museum for Photography,Bradford -General,"Bruce Willis, Arnold Schwarzenegger and Sylvester Stallone own which London restaurant",Planet hollywood,General,"Before Becoming A Famous Poet ""Pam Ayres"" Used To Be Part Of Which Famous Organisation?",Mi5,Food & Drink,From what animal do we get venison ,Deer  - Geography,Budapest is the capital of ______?,Hungary,Music,On Which Record Label Did James Have A String Of Hits In The 90's,Fontana,General,What was Didus Ineptus better known as,The Dodo -Entertainment,What was Don Rickles' nickname?,Mr. Warmth,Entertainment,"Who appeared in 'St. Elmo's Fire', 'The Scarlett Letter' and 'Striptease'?",Demi Moore,General,Any of the drugs used to reduce nervous tension or induce sleep,Sedative -General,A normal human body has 46 what,Chromosomes,General,What do humans get from the Cassava,Tapioca,General,Who was Time magazine man of the year 1952,Queen Elizabeth II -General,Which English Monarch Had The Shortest Reign,Edward 5th,General,El cid was the name of what college's mascot goat,Annapolis naval academy,General,In 1867 Lucian B Smith invented what restraint,Barbed Wire -General,"Nelis, Seckel, Forelle and Bosc all varieties of what",Pears,Geography,Where Is The Mathematical Bridge ,Oxford ,General,Who won six consecutive Wimbledon titles in the 1980s,Martina Navratilova -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,General,What animal is in the hassen in hassenpfeffer,Hare or Rabbit,General,In which game would you use the royal fork,Chess knight threaten king queen -Science & Nature,Dogs bark. What do donkeys do,Bray,General,What was the longest running primetime TV drama 20 seasons,Gunsmoke,Food & Drink,Natural vanilla flavoring comes from this plant.,Orchid -General,George Harrison lost a plagiarism suit for which of his songs,My sweet lord,General,Which Sci-Fi Sitcom star like to eat cats?,Alf,Music,"His First Chart Entry, Which Record Did Tom Jones Take To No.1 In 1965",It's Not Unusual -General,Lack of what makes albinos,Pigment,Sports & Leisure,Which footballer was England`s first black player? ,Viv Anderson , History & Holidays,Which Long Running Sci Fi Program Was First Aired In November 1963 ,Dr Who  -Science & Nature,Circuits can be wired in series or in _________.,Parallel,Entertainment,What type of plant does Broom Hilda sell,Venus flytrap,Science & Nature,Of what is 98% of the weight of water made?,Oxygen -General,Who did zola budd trip in the 1984 los angeles olympics,Mary decker,General,"Apart from Gottfried Leibniz, which famous scientist developed the many techniques of calculus in mathematics",Isaac newton,General,"Who was the ferrymen of the dead in Greek Mythology, famously immortalised in the name of a moon of the former planet Pluto?",Charon -General,If you landed at Shannon airport where are you,Limerick,General,In what constellation would you find the 'Horesehead' nebula,Orion,Music,What female rock star did Mike Wallace of '60 Minutes' interview in 1969?,Janis Joplin -General,Which of tea leaves or coffee beans have more caffeine,Tea leaves,General,What is the capital of south vietnam,Saigon, History & Holidays,For Which Crime Was 'Thomas McMahon'' Jailed For Life In October 1979 ,Mountbatten's Murder  -General,What have over 80% of boxers suffered,Brain damage,Science & Nature,What Is The Common Name For The Plant Chlorophytum? ,Spider Plant ,General,"In American universities, what is a second-year student called",Sophomore - History & Holidays,Which TV Character Owns A Talking Cat Called Salem ,Sabrina Teenage Witch ,General,The word vinegar come from French meaning what,Sour Wine,General,What is the fear of rooms known as,Koinoniphobia -Music,What Kind Of triangle Did New Order Have,Bizarre Love Triangle,Science & Nature,In dyeing what is the name given to the substance used for fixing the color ,Catalyst ,General,Which Saint is associated with an eagle in religious art,Saint John -General,What is the longest continuous footpath in the world,Appalachian trail,General,__isms: Exalting one's country above all others.,Nationalism,Science & Nature,"Which Birds Were Kept On The Capitol And, Allegedly, Saved Rome From Attack By The Gauls ",The Geese  -General,Who was the Greek and Roman god of the wind?,Aeolus,General,Charles S Stratton became famous as who,General Tom Thumb with Barnum,General,In sport what stands four feet by six feet,An Ice Hockey Net -General,Who was the first person to break the sound barrier,Chuck yager, History & Holidays,What company made the first color arcade game? ,Atari ,General,What three numbers divide into nine evenly,"1,3,9" -General,BB King gave his guitar what nickname,Lucile,Music,What Is Doris Day's Real Name,Doris Von Kappelhoff,Entertainment,Who directed the film 'The Birds' from Daphne du Maurier?,Alfred Hitchcock -General,What is the french word for 'mistake',Faux pas,General,Lil'folkes was the original name of what comic strip,Peanuts,General,What is the largest moon in our solar system,Ganymede of Jupiter -Geography,This re_opened in 1975 after being closed for 8 years.,Suez canal,Music,Where Does Singer Chris De Burgh Come From,Argentina,General,What 1968-69 tv series did joan blondell star in,Here come the brides -Science & Nature,How Many Faces Has The Solid A Dodecahedron ,12 ,General,What word in English has the most definitions,Set,General,What Country Was The First To Have A Woman Prime Minster?,Sri Lanka -General,For what is ethylene glycol used in automobiles,Anti-freeze,General,What is strange about the Golden Queen holly,It is male Golden King is female,General,What countries leader does not have an official residence,Cuba - History & Holidays,Which member of the Beatles got his first drum kit on Christmas Day 1957 ,Ringo Starr ,General,If you suffer from Tinea Pedis what have you got,Athletes foot,Music,Who were the first Scottish group to have 3 No.1 hits?,Wet Wet Wet -Music,Name Led Zeppelins Drummer Who Died Of An Alcohol Related Incident In 1980,John Bonham,General,What do the French call la manche,The english channel,General,Which country music legend was known as 'the drifting cowboy',Hank williams -General,What is the flower that stands for: promptness,Ten-week stock, History & Holidays,"Which Country Hosted The Summer Olympic Games In 1952 A= Germany, B=Finland, C=France ",B= Finland ,General,"Count Almaviva, a character in Rossini's The Barber of Seville , also appears in which opera by Mozart",The marriage of figaro - History & Holidays,Which U.S. President was the first to have a Christmas tree in the White House? ,Franklin Pierce (1853-1857) ,Sports & Leisure,How Many Players Are In A Basketball Team? ,Five ,General,What kind of tradesman uses a 'plunger',A plumber -Entertainment,"Besides the Stones, which group had the longest touring career until the founder's death in 1995?",The Grateful Dead,Geography,In which state is appomattax ,Virginia , History & Holidays,"In Holland, Santa traditionally doesn't actually deliver the presents who does, is it, Rudolph, Santa's servant Black Peter, A goat named Ukko or Thirteen Elves ",His servant Black Peter  -General,Winston Churchill married in 1908. What was his wife's Christian name,Clementine,General,Who won best actor oscar for gandhi,Ben kingsley,Science & Nature,The largest single organ of the human body is the ________.,Skin -General,What is the town locale in the tv serial search for tomorrow,Henderson,Science & Nature,"The study of the size, composition and distribution of the human population.",Demography,Music,What Instrumental Piece Did Bruce Johnson Take Us Down In 1977,Pipeline -Tech & Video Games,"In the 'Extreme Battle' mini-game in 'Resident Evil 2', what characters are selectable? ","Claire, Leon, Ada, and Chris",Geography,In which ocean or sea are the Seychelles,Indian,General,What is taught at the Californian Academy of Tauromaquia,Bullfighting -General,How many days are there in a leap year,366,General,What were the names of noah's children,Shem ham and japheth,General,What are Trawsfynnydd (Trous-fun-uth) and Wylfa (Wilva) in Wales,Nuclear power stations -General,How many segments for the number 8 on a digital clock,Seven,General,Where would you find your shank,Sole of foot, History & Holidays,Who Placed His Cloak On A Puddle For Elizabeth I? ,Sir Walter Raleigh  -Music,What Was The First No.1 For The Hollies,I'm Alive,Music,"Who Had A Hit With ""I Can't Go For That (No Can Do)""",Hall & Oats,General,What country's people were taxed for using salt in the 17th century,France - History & Holidays,Name The 8 Reindeer From 'The Night Before Christmas' Poem ,"Blitzen, Comet, Cupid, Dancer, Dasher, Donner, Prancer, Vixen ",Science & Nature, There are 690 known species of __________,Bats,General,Which sea area lies between Plymouth and Wight,Portland -General,Which Famous Pop Star Made An On Screen Appearance Alongside Mr.T In The A Team,Boy George,Geography,What Nationality Was The First Person To Sail Round Northern Canada Through The Bering Strait ,Norwegian Roald Amundsen ,General,"A story by Hans Anderson ""The..",Ugly duckling -General,In golf what name is given to the No 3 wood,Spoon,General,Who Was The Last Female Winner Of Wimbledon In The 20th Century (1999),Lindsey Davenport,General,Name woman set up free birth control clinic in Holloway in 1920,Marie Stopes -General,London and which UK city are joined by the Grand Union canal,Birmingham,General,What is a Havana Brown,A Small Rabbit,General,What represent the body and blood of Christ in the service of Holy Communion,Bread and wine -General,Why did Mehmet Ali Agca become famous in 1981,Shooting pope jean paul ll,Entertainment,Who was the Hulk's first friend,Rick jones,General,Which emperor made his horse a senator,Caligula -General,Marduk was the creator of the world to what ancient people,Babylonians,General,In Arizona you can have no more than two what in a house,Dildos - any more and it’s a brothel,General,What is the Soviet Unions highest military honor,Order of lenin -General,Casey Kasem was the original voice of what cartoon character,Shaggy on Scooby Doo,General,Where was Ice Cream invented,China,Art & Literature,Who Wrote (Brave New World) ,Aldous Huxley  -Tech & Video Games,Which body part is found in Bodley Mansion in 'Castlevania II: Simon's Quest'? ,An eye,Religion & Mythology,"In Greek mythology, what was Minos the king of?",Crete,Music,In Which Popular Song Did The Singers Girlfriend Have “Hair Of Gold & Lips Like Cherries”,Green Green Grass Of Home -General,What is the US equivalent of the UK Anglican church,Episcopalian,General,Whose backing group was called 'The Blockheads',Ian drury,General,Treatment of disease by various approaches,Therapy -General,What is a mexican avocado dip,Guacamole,General,Which animal pronks,Springbok,General,Who was the first Englishman to die in an aircrash,Charles Rolls -General,Who created james bond,Ian fleming,General,"Who wrote ""The Analects""",Confucius,General,Between who was the shortest war in history,Zanzibar and england -General,Who sang 'foolish games',Jewel, History & Holidays,What year was NASA founded? ,1958 ,Music,Which Family Group Recorded The Album “In Blue” In 2000?,The Corrs -General,What egyptian object is also known as 'the key to the nile',Ankh,Music,Which Leo Sayer Song Won A Grammy For Best Rhythm & Blues Song In 1977,You Make Me Feel like Dancing,General,If someone from Australia is Australian what is someone from New Zealand,New zealand -Science & Nature,What is the meaning of the name of the constellation Sagitta ?,Arrow,General,Starting highest write the Roman Numerals in descending order,MDCLXVI or 1966,General,What is the state capital of Texas,Austin -General,"Who wrote ""The Outcast of the Islands""",Joseph conrad,General,"In pottery, what is crackle",Tiny cracks in the glaze,Science & Nature,This ancient attempt to transmute base metals into gold was called ________.,Alchemy -General,Where is the novel 'Anne of Green Gables' set?,Avonlea,General,Military operations above the surface of the earth,Air warfare,General,In 1987 the Jockey Club disqualified a horse that had eaten what,Mars Bar -General,What colours are on the belgian flag,"Yellow, black and red",General,Where could you spend a Dram - Capital Yerevan,Armenia,Music,Which American group enjoyed a worldwide hit in 1976 with the song “If You Leave Me Now”,Chicago -Geography,What is the capital of Suriname,Paramaribo,General,"264,000 bottles of what were recalled after 7 people died",Tylenol, History & Holidays,"What did Marie Curie die of on 4th July, 1934?",Radiation poisoning -Science & Nature, It would require an average of 18 __________ to weigh in at 1 ounce.,Hummingbirds,General,A fetus acquires fingerprints at what age,3 months,General,Black and Blue play Red and Yellow at what game,Croquet - History & Holidays,Who assassinated John Lennon?,Mark David Chapman,General,What show featured Nell Carter as a larger than life housekeeper?,Gimme a Break,General,The name of the little people in Frank Baum's the Wonderful Wizard of Oz,Munchkins -Music,Who Had A 90's Hit With The Song Mona,Craig McLachlan,General,Who wrote the play All My Sons in 1947,Arthur miller,General,"What is the least dense substance in the world, at 0.08988 g/cc",Hydrogen gas -General,What is a group of this animal called: Bear,Sleuth sloth,Science & Nature, Almost half the pigs in the world are kept by farmers in __________,China,General,What is the Capital of: Guernsey,Saint peter port -Tech & Video Games,"In the game Joust, what animal was your mount? ",An Ostritch,Food & Drink,"What name is given to the Japanese dish in which fish, shellfish, or vegetables are fried in batter? ",Tempura ,General,What was eddie murphy's character name in 'beverley hills cop',Axel foley -General,Animals that once existed but don't exist now are said to be _______.,Extinct,General,"How does Alice kill Freddy Krueger in ""Nightmare on Elm Street 4""?",With a mirror,Science & Nature,"Which Came Of Better In A Fight, Tyrannosaurus Rex, Iguanadon ",Neither They Missed Eachother By About 42 Million Years  -General,What are Waist Overalls,Jeans - Levi Struss,General,"What famous singer played the title role in ""the great caruso""?",Mario lanza,General,Jean-Christopher Denner invented what musical instrument,Clarinet -General,What's the term for a bet before cards are dealt,Ante, History & Holidays,How many spirits appeared to Ebenezer Scrooge in Charles Dickens' A Christmas Carol? ,"4, Jacob MarleyPast Present Future ",General,"Complete this quote: ""I feel the need___ the need for___""",Speed -General,Joe Louis became World Champion in which year,1937, Geography,In which city is Red Square?,Moscow, History & Holidays,Where Did The Mayflower Set Sail From In 1620 ,Southampton  -General,What dr seuss character steals christmas,Grinch,General,"What does ""the absent minded professor"" teach",Chemistry,Science & Nature,What Type Of Fuel Is Usually Used In Jet Aircraft Engines ,Paraffin  -Sports & Leisure,Which Sport Do The Miami Dolphins Play? ,American Football ,General,Name one of the three branches of the Methodist Church that merged in 1932 to form the current Church.,Wesleyan primitive united,General,"Who said, ich bin ein Berliner",John f kennedy -Music,"Whose 1999 Debut Solo Album Was Entitled ""Schizophonic""",Geri Halliwell, History & Holidays,"Originating from a story about an Irish blacksmith, you ran into the Devil in a pub, what name is given to a pumpkin if it has a face carved into it and is illuminated by a candle ",Jack O' Lantern ,General,What does COD stand for,Cash on delivery -General,What is the name of Moses and Aaron's sister,Miriam,Geography,Which US state capital is known as the (mile high city) because of its elevation above sea level? ,Denver ,General,In which country was the Caesar Salad invented,Mexico -General,What Are You Frightened Of If you are Alektorophobic?,Chickens,General,In Call of the Wild by Jack London what was the dogs name,Buck,General,Nichole Dunsdon was the last what in October 1992,Miss Canada -General,What Italian habit did Thomas Coyrat introduce to England 1608,Eating with forks,General,People eaters what tools are used to crewel,Needles,General,What is the monetary unit of Ecuador,Sucre -General,Crashes what was the first ship to reach the titanic after it sank,Carpathia,Art & Literature,Which Famous Book Contains The Line 'Mr & Mrs Dursley of number 4 Privet Drive were proud to say that they were perfectly normal' ,Harry Potter And The Philosophers Stone ,Music,Which Girl Did John Fred And The Playboy Band Try To Hide Behind Spectacles,Judy In Disguise With Glasses -General,What is the official state food of Texas,Chilli,General,In 1935 Charlton C McGee invented what in the USA,Parking Meter,General,Hard heavy black tropical wood,Ebony -General,Khrushchev what was the sequel to 'going my way',The bells of st mary's,General,What colour were ETs eyes,Blue,Science & Nature,Who Invented The Telephone ,Alexander Graham Bell  -General,Where in the USA is Yale university,Connecticut,General,Who betrayed jesus to the romans,Judas iscariot,General,Where is the largest volcano in our solar system,Mars -General,"What are described by the terms rep, challis & foulard",Neckties,General,Where is the fictional television station bdrx located,Bedrock,General,What's the only mammal that can't jump,Elephant -General,What actor played seven roles in no way to treat a lady,Rod steiger,General,What Football Team Plays It's Home Games At The Ibrox Stadium?,Glasgow Rangers,General,In what book does Humpty Dumpty first appear,Through the looking Glass -Science & Nature,"What nationality was Robert Bunsen, of Bunsen Burner Fame? ",German , History & Holidays,"Which actor, an archdeacon in the TV series all gas & gaiters died in January 1979? ",Robertson Hare ,Geography,What Was Iran formerly Known As ,Persia  -General,The Rimac river runs through what city,Lima Peru,Music,Which Pair Had The Best Selling Album In Both 1970 And 1971,Simon & Garfunkel,People & Places,Who Was The Director General Of The BBC In 1995 ,Lord Reith  -General,What is the slowest moving land mammal,Sloth,General,What is the fear of neglecting duty known as,Paralipophobia,General,"To determine the percentage of alcohol in a bottle of liquor, by how much is proof divided",Two -General,On average what weight nine pounds,Cremated Ashes,Geography,The roadrunner is the official bird of _____________,New mexico,General,What sport's been the subject of the most American movies,Boxing -General,What is used to lift fingerprints from difficult surfaces,Super glue,General,"First preached by arius in the 4th centruy, what term is used for the belief that jesus is not the equal of god",Arianism,General,"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 -Science & Nature,Which Country Containes The Worlds Biggest Oil Refinery ,Venezuela ,General,What is the motto of the SAS?,Who Dares Wins,General,The pica pica is what common bird,Magpie -General,Tanzania Was Formely A Colony Of Which Country,Germany,General,Basketball: the Denver ______,Nuggets, History & Holidays,Who Was The Very First Presenter Of The UK National Lottery Draw ,Noel Edmonds  -Music,What Was The Beatles First Hit Single,Love Me Do,General,The Two Ronnies first appeared together in which TV series,The frost report,General,Who invented the wristwatch,Louis cartier -General,1990s slang for very short cutoff jeans.,Daisy dukes,General,The thickness of silk is measured in what,Denier,General,What is the fear of computers known as,Logizomechanophobia -Art & Literature,Who wrote Great Expectations?,Charles Dickens,Music,In Which Year Was John Lennon Shot & Killed In New York City,1980,General,Which Pop Star Became An Honorary Member Of Exeter City Football Club In 2002,Michael Jackson - History & Holidays,How Long Was The Hundred Years War? ,116 Years ,Music,"Which group's debut album, Always & Forever , shadowed their name?",Eternal,Sports & Leisure,Which country was judo developed in?,Japan -General,What is the only country with one train station,Singapore,General,Who became' Chief Executive' of Pakistan in October 1999,General pervaiz musharraf,Food & Drink,"Toasted Bread, Covered With A Mixture Of Cheese, Pale Ale, And Mustard Is Often Referred To As what ",Welsh Rarebit  -General,Name the twins on the Thundercats.,Wily Kit and Wily Kat,Toys & Games,What number is at 12 o'clock on a dartboard?,20,General,In what club are all the members liars,Ananias club -General,In which river did the Pied Piper drown the rats of Hamelin,Weser,Geography,What Canadian city is at the west end of Lake Ontario,Hamilton,General,Who was the oldest heavyweight boxing champion,George forman -General,Which actor was dubbed the muscles from Brussels,Jean Claude Van Dam,Music,"How In The World Of Music Is ""Dino Crocetti"" More Commonly Known",Dean Martin,General,How many episodes were there in the original star trek series,75 -General,What product was originally manufactured by communications giant Nokia?,Paper,General,In Kansas its illegal to eat cherry pie with what,Ice Cream,General,Who invented the egg mcmuffin,Ed peterson -General,What is the line frequency of the american power supply,60hz,General, An anemometer measures _________.,Wind velocity,General,Ictheologists study what,Fish -General,The Charles Bridge and St Vitus' Cathedral are in which European city,Prague,General,"In the 1960s, which company made a version of the Austin Mini, called the Elf",Riley,General,Which country invented French fried potatoes,Belgium -Science & Nature,What is a group of larks called?,Exaltation,General,Which athlete withdrew from the Sydney Olympics claiming she had been confronted by a stranger in her hotel room,Marie-jose perec,General,What was Louis 14th born with two of - that amazed everyone,Teeth -General,"Carl Djerassi, Pioneered, Invented and Patented Which Everyday Product?",The Contraceptive Pill,General,What do you call an exaggerated fear of sleep,Hypnophobia,Sports & Leisure,In Which Sport Do Competitors Soop The Ice And Throw Stones At Houses ,Curling  -Geography,Which Palace was the principal home of the Monarchy prior to 1837 when Buckingham Palace became the Monarchs address ,St James Palace ,General,Phonophobia is the fear of,Noises voices,General,Name Ronald Reagan's first wife.,Wyman -General,In 1995 the average US public school had 75 what,Computers installed,General,What city exists on every continent,Rome,General,Americans consume how many tons of aspirin per day,Forty two 42 -General,Who wrote about Willie Wonka and the Chocolate Factory,Roald Dahl,General,Where did John Lenon marry Yoko Ono (place name),"Gibraltar - Flew from Paris - back", History & Holidays,"""Which Christmas poem does this line belong to? """"With peace on earth, good-will to men!"""" (""""Christmas Bells"""", """"The 3 Kings"""", """"A Christmas Carol"""", """"Nativity"""" "" ",Christmas Bells  -Music,Irene T Escalera Is The Real Name Of Which Singer,Irene Cara,General,What is a baby rooster,Cockerel,General,What country celebrates its National Day on 2nd June?,Italy -General,Tennis what links Coke Rolex Slazenger Robinson's Barley water,Only adverts Wimbledon Centre,General,On a piano the left pedal is the soft what's the right called,Sustaining,Geography,"The planner of the city of __________________ was French architect Pierre L'Enfant. In 1791, it was known as Federal City.",Washington d.c -General,What's the main ingredient in glass,Sand,General,"What name was given to a small gaiter, worn over the instep",Spat,General,Wayne rogers plays this character in house calls,Charlie michaels -General,Who directed the film 'ordinary people',Robert redford,General,"According to Roy Orbison, he's 'Saving nickels and dimes and looking forward to happier times on ______'",Blue Bayou,Sports & Leisure,Which Type Of Wood Are Cricket Bats Usually Made From ,Willow  -General,What type of creature was an Archelon,A Turtle,General,Which group had their first U.K. number one tilt ill 1974 with Down Down,Status quo,Music,Which Musical Did Meat Loaf Appear In As An American Hero In 1969,Hair (As Grant) -General,From whom did the u.s buy the virgin islands,Denmark,General,What did the ancient Greeks use instead of soap,Olive Oil,General,What is the fear of noises or voices known as,Phonophobia -People & Places,Whose Daughter Married Thin Lizzys Phil Lynott ,Leslie Crowther ,Music,Who Was Driving Home For Christmas In 1988,Chris Rea,Geography,Name the longest river in Nigeria,Niger -General,"According to Elton John, what were we hoppin' and boppin' to",Crocodile Rock,Science & Nature,What 2 planets do not have moons?,Mercury and Venus,General,"This bar first appeared in oats'n honey, cinammon, and coconut flavors.",Granola -Science & Nature,Who Opened The First Cinema In Paris In 1895 ,The Lumiere Brothers ,General,Which 2015 animated film is about the workings and emotions of a child's mind after she is forced to move to San Francisco from the mid-west?,Inside Out,General,Who created british master spy george smiley,John le carre -General,Albert De Salvo was better known as who,The Boston Strangler,General,Who coined the word 'bourgeoise',Karl marx,General,On which day of the week is the Moslem Sabbath,Friday -General,In which film did Kevin Costner make his directorial debut,Dances with wolves,Music,Knocking On Heavens Door Was A Hit In 1992 Who Sang It,Guns & Roses,Geography,What Is Rhodesia Now Called ,Zimbabwe  -Music,"The Cover Version ""Sea Of Love"" Was A Hit For The Honey Drippers Or The honey Eaters",The Honey Drippers,General,By what other name is the island of Lindisfarne known,Holy island,General,"In 1909, who was the first man to reach the North Pole",Commander robert peary -General,"What, on an Italian menu, is 'zuppa inglese'",Trifle,Sports & Leisure,Which Wood Are Cricket Bats Usually Made From? ,Willow ,General,What mercy doctor called for death row inmates to donate their organs in 1993,Jack kevorkian -General,Who or what killed Al Capone,Syphilis,General,When was crystal palace destroyed,1936,General,Which Italian born U.S. physicist won the 1938 Nobel Prize for Physics for his work on radioactive elements,Enrico fermi -General,In Korea which animal is the symbol of long life,The deer,General,"Who once famously said ""Paint me warts and all""?",Oliver Cromwell,Sports & Leisure,Who fell behind Roger Maris in 1961 for the homerun record?,Mickey Mantle -Music,What was Brian's brother's name?,Clive,General,What is the fear of dust known as,Koniophobia,Science & Nature,What Disease Is Caused By The Inhalation Of Coal Dust ,Pneumoconiosis  -General,In Greek mythology Cronos and Rhea were the parents of who,Zeus,General,Sienna law forbids women of what name from prostitution,Maria,General,IBM is Big Blue Coca Cola Big Red who is Big Black,United Parcel Service UPS -General,What sort of drink is barbancourt,Rum,General,What state did sam mccloud come from,New mexico,Music,What Was The Only Top 10 hit For Rita Coolidge,We're All Alone -General,In England what can you not hang out of your window,A Bed,General,What in US are Ambassador Ben Franklin George Washington,Suspension Bridges,General,Meteorophobia is the fear of,Meteors -General,"What surgical operation was done 115,000 times in us in 1986",Silicone breast,General,"On the fahrenheit scale, how many degrees are there between freezing point and boiling point",180,General,Wilhelm Steinitz was the world's first what in 1886,Chess Champion -General,Who was the only pope born in England,Adrian iv,General,Through which volcano did Jules Verne's explorers leave the centre of the Earth,Stromboli,General,Cultured pearls were first grown in which country,Japan -General,What is the name of Doctor Claws pet in Inspector Gadget,Madcat,General,"In what sport are Triffus, Miller and Rudolf moves",Trampolining,Food & Drink,Indian deep fried triangular pasty ,Samosas  -Sports & Leisure,From Which Country Do The Soccer Team Anderlecht Hail ,Belgium ,Music,What Type Of Instruments Do Associate With Stradivarious,Violins,General,In Which English County Was The 1970's book & Movie Set,Hampshire -General,What is South Carolinas official state dance,The Shag,General,Small hole for passing cord through,Eyelet,General,Plantalgia is pain where,Soles of feet -General,Mount Teide is the highest mountain in which country,Spain it's on Tenerife,General,"Any important face of a building, usually the principal front with the main entrance.",Facade,Music,Which composer was baptised with the forenames Johannes Chrysostamus Wolfgangus Theophilyus?,Mozart -Music,"Which Product Was Advertised Using The Clash's ""Should I Stay Or Should I Go"" Making The Record A UK Number Hit In 1991",Levi's,General,Which novel by H G Wells describes the invasion of Earth by martians,The war of the worlds,General,To which instrument does an orchestra normally tune,Oboe -Geography,What is the capital of Slovakia,Bratislava,General,What Is The Only Creature To Contain An Odd Number Of Whiskers,The Catfish,Art & Literature,"From which Shakespeare play is this line taken: ""Double, double ___ """,Macbeth -Geography,What Is The Most Westerly Capital City In Mainland Europe ,Lisbon (Portugal) ,General,Cape Verde is a former colony of which country,Portugal,General,In Queensland Australia pubs must still have what,Hitching rail for horses -Music,Which Country Singer Guested With The KLF On Their Single Justified & Ancient,Tammy Wynette,General,What in the 19th century were 'Cape Triangles'?,Postage Stamps,Geography,"On March 27, 1964, North America's strongest recorded earthquake, with a moment magnitude of 9.2, rocked central ______________",Alaska -General,Who invented the kinetoscope,Thomas edison,General,"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,General,In 1990 there were 15000 accidents involving what,Vacuum cleaner -General,Kr is the chemical symbol for which element,Krypton,General,What are rain boots called,Galoshes, Geography,What body of water borders Saudi Arabia to the east?,Persian Gulf -General,The name Hilary comes from Latin meaning what,Cheerfulness,General,In 1897 who were the first baseball team introduce a ladies day,Washington Senators,General,Onomatophobia is the fear of,Hearing a certain word - Geography,What is the capital of Gambia ?,Banjul,Music,"Who Had A Hit In 1993 With ""I Have Nothing""",Whitney Houston,Sports & Leisure,On A Netball Players Bib What Do The Letters G.A. Stand For? ,Goal Attack  - Geography,Into what sea does the Elbe River flow?,North Sea,General,The Man Who Would be King was released in what year,1975,General,In Miami it is illegal for men to be seen in public wearing what,Any strapless gown -General,What city is Sugarloaf Mountain located in,Rio de janeiro,General,The malleus and the incus are two of the three auditory ossicles. Which is the third,Stapes,General,"In an average lifetime, the average american eats 84,775 _____",Crackers -General,What book was made into the first feature length British cartoon,Animal Farm in 1954,General,Ncaa: what team lost the men's basketball championship in 1985,Georgetown,General,Who was the first actress to endorse a product commercially,Lilly Langtree -General,Who is the famous giantkiller?,Jack,Food & Drink,Marsala is a type of this.,Sweet wine,General,What make of car is a 'Thunderbird'?,Ford -General,Copper gets its name from which Mediterranean country,Cyprus where it was first found,General,In the 1920s Dr Ida Rolf developed Rolfing as what alt therapy,Deep Massage,General,With which country did Britain break off diplomatic relations in April 1984,Libya -General,What does a Geophage do,Eats earth, History & Holidays,Which group had a UK No.1 in 1981 with The Song 'Ghost Town' ,The Specials ,General,Which International Singing Star Failed The Audition For Opportunity Knocks?,Engelbert Humperdink -Music,Name The One Colour Group And Their Best Selling One Colour Album From 1998,Simply Red / Blue, History & Holidays,Originally native to Mexico what is traditionally known as the Christmas flower ,The Poinsettia ,Geography,Of Which Country Is Nicosia The Capital ,Cyprus  -General,Planet 24 Is A Production Company Founded By Which Singer,Bob Geldof,Art & Literature,Which Character Invariably Misused English Words ,Mrs Malaprop ,General,How many sides does a snowflake have,Six -General,Candlestick maker,Butcher baker candlestick maker,Food & Drink,What name is given to the deep south stew or soup thickened with Okra? ,Gumbo ,General,The dybbuk is a creature in which peoples mythology,Jewish migrating soul enters body -General,Approximately how deep are the deepest mines? (in km),Four,General,The Napstar logo shows headphones on what,A cat,General,"At 30 miles long, in which North American city would you find Figueroa Street",Los angeles -General,In which country did Turkeys originate,USA,General,According to the ad At Benneton the smallest garment is a what,Condom,General,What dirty building did heracles clean by diverting a river,Augean stables -General,Which of King Arthur's knights survived his last battle,Sir Bedavere,General,What is the art of writing decoratively called,Calligraphy,General,The average person spends 12 years of their life doing what,Watching TV -General,Rex Stout created what corpulent orchid loving private eye,Nero Wolfe,General,Which organization was awarded the Nobel Peace Prize during WWll,The red cross,General,What is he the chemical symbol for,Helium -General,What is the fear of getting wrinkles known as,Rhytiphobia,Entertainment,Who played the murder victim in the original version of 'Psycho'?,Janet Leigh,Sports & Leisure,Who Won Nine Formula One Grand Prix Races In 2000 ,Michael Schumacher  -General,"Which American devised a noise reduction system, now in general use, for tape-recorders etc",Ray dolby,General,Which town stands at the mouth of the Great Ouse,Kings lynn,General,What is the fear of symmetry known as,Symmetrophobia -People & Places,Whom Did Neil Kinnock Succeed As Leader Of The Labour Party? ,Michael Foot ,General,What purple flower is the emblem of Scotland,The thistle thistle, History & Holidays,In what year did Lord Lucan leap into obscurity ,1974  -General,Who found the long lost explorer david livingston,Henry stanley,General,Peladophobia is the fear of,Bald people,General,Who were David Soul and Paul Michael Glaser better known as,Starsky and hutch -General,U.S. captials Louisiana,Baton rouge,General,If not a bird magician or a spitfire engine What is a Merlin,Artificial vagina,Geography,Which country hosted the 1982 World Cup of soccer,Spain -Science & Nature, The average __________ weighs 14 pounds.,Fox, Geography,What is the basic unit of currency for United Kingdom ?,Pound,General,Which vegetable is referred to as 'eggplant' in the U.S.A.,Aubergine -General,In Star Trek the Ferengi 10th rule of Acquisition what is eternal,Greed,General,Who opened for the Monkees on their 1968 American Tour,Jimi hendrix,Music,Name the thrash metal kings headed by guitarist Dave Mustaine?,Megadeath -General,What is the fear of the figure 8 known as,Octophobia,Sports & Leisure,In Which Sport Might You Play For The Sheffield Shield ,Australian Cricket ,General,How many feet are there in one fathom,Six -General,Scandinavian aquavit is flavoured with what,Cumin or Caraway,General,In which city is the Eiffel Tower,Paris,General,Real names Susan Alexandria Stage name from Great Gatsby,Sigourney Weaver - History & Holidays,"""What Was The Name Of The Character That Henry Travers Plays In The Movie """"It's A Wonderful Life"""""" ",Clarence Oddbody ,Religion & Mythology,What is a person who has made a pilgimage to Mecca?,Hajji,Music,Which Star Did Barbara Bach Marry In 1981,Ringo Starr -Food & Drink,"In 1999, which American retail giant announced that it was buying the Asda food retail chain? ",Wal-Mart ,Music,"""Livin La Vida Loca"" Was A 1999 No.1 For Which Singer",Ricky Martin,General,Elizabeth I had anthrophobia what was she afraid of,Roses -General,South Africa's Robben Island takes its name from which creatures,Seals,General,What did William Young invent in 1800,Different shoes left right,General,What year was the last woman hung in England,1955 -General, What does an ornithologist study,Birds,General,Which Country Has The Worlds Oldest Flag?,Wales,General,"A letter might end with SWAK, which is an acronym for",Sealed with a kiss -General,"In Knight Rider,what does K.I.T.T.'s name stand for?",Knight Industries Two Thousand,General,"Which gland, situated at the base of the skull regulates growth and metabolism",Pituitary gland,General,"Chronic transmissible disease, due to bacilius leprae, is better known as _____",Leprosy -Music,Which 3 ReMixed Sister Sledge Tracks Were Released In 1993,"We Are Family, Lost In Music, Thinking Of You",Music,"According To The Beatles Who has ""hair of floating sky""?",Julia,General,Nobody puts baby in the corner.,Dirty Dancing -General,In Which Country Was The Singer Mika Born,Lebanon,General,What is the national flower of Japan,Chrysanthemum,General,In Lawrence Kansas its illegal to carry what in your hat,Bees -Entertainment,Who killed Kenny?,They,General,What is the national religion of Scotland,Presbyterianism,General,Who is William H. Bonney,Billy the kid -General,Pinigerophobia is the fear of,Smothering,General,What is another name for the card game 'blackjack',21,Technology & Video Games,What game takes place on the fantastic island of Koholint? ,Link's Awakening -General,When are new states admitted to the u.s,"Noon, july 4th",Geography,What is the capital of Ethiopia,Addis ababa,General,What do you do to see phosphenes,Shut eyes flashing lights seen -General,In ancient China what meat was reserved for the Emperor,Pork,Music,"In Which Year did The Beatles Release ""Get Back"" Was It 1967, 1968,1969",1969,General,What is 'chowder' a type of,Thick soup -General,What line on a map connects places of equal rainfall,Isohyat,General,Who won the Wimbledon in 1972/73,Billie jean king,General,What speed did Marty have to reach in order to activate the flux capacitor?,88 miles an hour -General,What does elly may call her pets in the beverly hillbillies,Critters,General,What is pure china clay,Kaolin,Entertainment,For which film did Art Carney win best actor Oscar in 1974?,Harry and Tonto -General,What is the Capital of: Guadeloupe,Basse-terre, Geography,What is the capital of Gabon?,Libreville,General,"Name beginning with ""A"" meaning ""Little Father""",Attila -Science & Nature,How many pockets has a snooker table ,Six ,General,Which British airport has the identification code EMA,East midlands, Geography,What is the capital of Burkina Faso ?,Ouagadougou -Entertainment,"In 1987, who released her second album 'Solitude Standing'?",Suzanne Vega,General,"Who was known as the ""prince of light""",Thomas edison,General,What is jamaica's nickname,Regaa boyz -General,Who did Imran Khan marry in 1995,Jemima goldsmith,General,What is known as the Lost Continent ?,Atlantis,General,In which country is the volcano Cotopaxi,Ecuador - Geography,What country borders Egypt to the South?,Sudan,General,In Star Trek who would go to Sha Ka Ree,Vulcans it’s heaven,Music,Which Band Members Wanted To Be A 3 Minute Hero,The Selector -Science & Nature,What venomous serpent is known as the gentlemen among snakes ,The rattlesnake ,Sports & Leisure,Trent Bridge Cricket Ground Is In Which English City? ,Nottingham ,General,Bowl of red is the Aztec translation of which food item,Chilli -Music,The Brotherhood Of Man Recorded The Best Selling Single Of 1975 Can You Name It,Save All Your Kisses For Me, History & Holidays,Who was the first ghost appear to scrooge in the dickens classic a Christmas carol? ,Marleys Ghost ,General,What cocktail is made from brandy and white creme de menthe,Stinger -General,What percent of the world's water is potable (drinkable),1%,General,Why did Handel compose The Messiah,For Cash,Sports & Leisure,Hockey: The Los Angeles ________.,Kings -Music,Which Fraudulent Duo Told The Girl It Was True But Must Have Missed Her When They Were Found Out,Milli Vanilli,General,What is a group of sharks,Shiver,Music,"Which Duo Asked ""Are You Sure"" In 1961",The Allisons -General,Bristlemouths are the worlds most common what,Fish,General,How did Scrooge McDuck earn his first dime,Shining shoes,Music,Who Is The Lead Singer With The British Band The Verve,Richard Ashcroft -General,A story of ones own life,Autobiography,General,Which animals fur is used to make a musquash coat,Musk rat,General,Who first appeared in the Star Trek episode Space Seed,Khan -General,Hannibal had only one what,Eye after Rome attack,General,"Of what country did Napoleon make his brother, Jerome, king",Westphalia,General,"The small intestine is made up of the duodenum, the ileum and the ______",Jejenum -General,What nationality was the architect Le Corbusier,Swiss,General,From which element is pitchblende derived,Uranium,General,What holiday is celebrated on july 14th in French Polynesia,Bastille day -General,What nationality is Prince Phillip,Greek,Sports & Leisure,Who was the first NHL player to score 50 goals in one season,Maurice richard,General,What sort of stone floats on water,Pumice -General,In 1973 Pioneer 11 launched. First spacecraft to flyby,Saturn,Geography,Which Country In The World Is The Second Most Populous ,India ,Science & Nature," Gray __________ migrate 12,000 miles each year, farther than any other mammal.",Whales -General,What does NATO stand for ?,North Atlantic Treaty Organization,Sports & Leisure,In the world of Tennis how did Gunther Parche gain notoriety in 1993? ,Stabbed Monica Seles ,Music,"A Product Of The 80's Who Had A Hit In 1994 With ""Tell Me When""",The Human League -Art & Literature,"A termed coined by British art critic Roger Fry to refer to a group of nine-teenth century painters, who were dissatisfied with the limitations of impressionism. It has since been used to refer to various reactions against impressionism, such as fauvism and expressionism.",Postimpressionism,General,On what show would you find Gary Gnu?,The Great Space Coaster,Sports & Leisure,Which Sports Star Was Known as The Preston Plumber? ,Tom Finney  -General,Nashville is the capital of ______,Tennessee,People & Places,"What is the nickname of Jamew Gardner, friend of footballer Paul Gascoigne? ",Five Bellies ,General,Felix Hoffman discovered the worlds first synthetic drug 1897?,Aspirin -General,In the song where was the 'House of the Rising Sun' located,New orleans,General,200 years ago all white people knew what were deadly poison,Tomatoes,General,What country consumes the most coke per capita,Iceland -General,Who said Politics is the art of the possible 11 Aug 1867,Otto Von Bismarck,General,Tropical shrub used for making hair dye,Henna,General,What company produces Olympia beer,Miller in USA -Music,Which Single Brought Together The Eurythmics & Aretha Franklin In 1985,Sisters Are Doin It For Themselves,General,"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,General,Glassy mineral the red kind is used as a gem,Garnet -General,What do French speakers call the German town that Germans call Aachen,Aix-la-chapelle,General,What is the flower that stands for: bashfulness,Peony,Sports & Leisure,Who Was The First Footballer To Receive A Knighthood? ,Sir Stanley Matthews  - History & Holidays,Who Played The Title Role In The 1960 Hammer Production The Curse Of The Werewolf ,Oliver Reed ,General,Who had three breasts,Anne boleyn,General,Which popular cartoon strip has never included an adult,Peanuts -General,What is the name of the island that separates the two waterfalls at Niagara,Goat island,General,Pogonophobia is the fear of,Beards,General,Who invented the most common projection for world maps?,Gerardus Mercator -General,What's the opposite of the orient,The occident,General,With what branch of medicine is mesmer associated,Hypnotism,Sports & Leisure,What Nationality Was The Formula 1 Driver Ayrton Senna Who Was Tragically Killed In 1994 ,Brazilian  -Music,"This Group Had Their greatest Hit Between ""Texas Cowboys"" And Rollercoaster Name It",Swamp Thing / The Grid,General,Show How many tines are in a standard dinner fork,Four,General,In which Irish county is the Blarney Stone,Cork -General,What does WD stand for in WD 40 Water,Displacer,General,Port (left) was called what before Admiralty named it port in 1844,Larboard,Food & Drink,Who released the following album 'Bitches brew' ,Miles Davis  -Religion & Mythology,Poseidon was the Greek god of the ______?,Sea,General,Which 1977 film won seven Oscars but none for acting,Star Wars,General,In France who are nicknamed the Kepis blancs,Foreign Legion - History & Holidays,Who Is The Youngest Member Of The Rolling Stones ,Keith Richards ,General,What's a more proper name for artificial or false teeth,Dentures, Geography,Which is the largest lake in South America?,Lake Maracaibo -General,"During which conflict were the battles of Blore Heath, Wakefield, Northampton and Mortimer's Cross",Wars of the roses,General,"Which 2nd Division Football Club Play Their Home Games At ""Dean Court""",Bournemouth,Science & Nature,"What Is The Name Of The Wild Pig Of Of Central & South America That Has 3 Species Called Collared, White Lipped & Chaco ",Peccary  -General,What type of bird is a 'Khaki Campbell',Duck,General,Name the character played by Frank Sinatra in films such as Lady in Cement,Tony rome,General,Who patented the coin operated telephone patented,William gray -General,Dish served A la Crecy is garnished with what,Carrots,Geography,"What country covers more than 194,000 square miles of the iberain peninsula ",Spain , Geography,Where is the world's biggest prison camp?,Siberia - History & Holidays,What region is the world's largest exporter of Christmas trees? ,Nova Scotia ,Entertainment,Which was the first 'Indiana Jones' film?,Raiders Of The Lost Ark,General,"Literature: In HG Wells ""The Time Machine,"" two races of the future are the child-like Eloi, and the subterranean monsters called the ___. ?",Morlocks -Music,Who Sang Backing Vocals On U2's Pride,Chrissie Hynde,General,In The Simpson's what was the name of the Barbie type doll,Malibu Stacey,General,"Who Was The First Ever Sports Person To Be Interviewed On ""This Is Your Life""",Sir Stanley Matthews -General,What do you call the underground systems in both Paris & Newcastle,Metro,General,What is the skullcap worn by the men of Nigeria called,Fez,Religion & Mythology,He was the first King of the Hebrews.,Saul -General,What caused fjords,Glaciers,General,Merging the words 'melt' and 'weld' created which word,Meld,General,French word meaning growth is applied to top quality wines,Cru - History & Holidays,"Formed in 1955, with which island was the organisation known by the acronym EOKA associated? ",Cyprus ,General,O'Henry created which western character in a short story,The Cisco Kid,General,"What has no reflection, no shadow, & can't stand the smell of garlic",Vampire - Geography,What is the capital of Kansas?,Topeka,Science & Nature,Which Metal Can Be Beaten Into The Thinnest Film ,Gold ,General,What does a meteorologist study,The weather -General,What animal has the most taste buds over 27000,Catfish,General,What body part gets bigger as the day progresses,Feet 5 to 10%,Music,What Was The Name Of The Music Venue Where The Beatles Were Discovered,The Cavern Club -Sports & Leisure,Alan Shearer was the first player to score 200 Premiership goals. Who was the second? ,Andy Cole ,General,Flux which english physicist worked on thermodynamics and has a unit of energy named for him,James prescott joule,General,Gothenburg is the chief seaport of which country,Sweden -General,"Squid, octopus and cuttlefish are all types of what",Cephalopods,General,Which is the highest capital city in Europe,Madrid,Sports & Leisure,"Which Dart's commentator is known for his hyperbole such as (Alexander The Great was 33 when he conquered the known world, Bristow is 27)? ",Sid Waddell  -General,Baseballer Joe Schlabotnik's greatest fan,Charlie brown,General,What Is The Name Of The Murder Victim In The Board Game Cluedo,Dr Black,General,What kind of cowboy was John Voight in 1969,Midnight cowboy -General,Who was the owner of the soda fountain on sesame street,Mr hooper,Geography,On Whose Real Life Exploits Is James Clavells Novel Shogun Based ,Will Adams An Elizabethan Adventurer ,General,Which is the largest (in area) of the Australian States and Territories,Western australia -General,What Searchers hit was written by Sony Bono,Needles and Pins,Entertainment,Name Donald Duck's girlfriend,Daisy,General,Which two countries form what used to be called patagonia,Chile and -General,Who played 'johnny mnemonic',Keanu reeves,General,What parts of the rhubarb plant are poisonous,Leaves,General,In Astrology Aquarians are ruled by what planet,Uranus -General,"What is the dish of chopped avocado with onions, tomatoes, chilli and seasoning called",Guacamole,Music,"""Girlfriend"" Was A Hit In 1988 For Whom",Pebbles,General,The port of Oran is the second city of which North African country,Algeria -General,What were the names of the 3 mascots at the Sydney Olympic Games?,"Ollie, Millie & Syd", History & Holidays,In Which City Was John F Kennedy Assassinated? ,Dallas ,General,Jack What is the world's deepest lake,Lake Baikal -General,"In Greek mythology, to where did zeus abduct europa",Crete,Geography,Which river contains the most fresh water,Amazon,Science & Nature," The spiny cheek, starsnout poacher, and monkeyface prickleback are all names of __________",Fish -General,Edward Teach became famous as who,Blackbeard the Pirate,Sports & Leisure,How Long In Miles Is A Marathon ,26 , History & Holidays,In Which Year Was Mr Blobby A Christmas Number One In The Uk ,1993  -Music,Which Label Did Blondie Record Under For Their String Of Late 70's & Early 80's Hits,Chrysalis,General,"States who wrote ""three lives""",Gertrude stein,General,Dario Fo won the Nobel Prize for Literature in which year,1997 - History & Holidays,Which Famous Artist Was Shot And Wounded By Valeria Solanis In 1968 ,Andy Warhol ,Religion & Mythology,What is the last word in the New Testament?,Amen,People & Places,What Is The Most Common British Surname ,Smith  -General,"Who won an Oscar for his role in the film 'The Fugitive""",Tommy lee jones,People & Places,Which Former Presenter Of Grandstand Became A Cocaine Addict ,Frank Bough ,General,Which company made the Cross Your Heart bra,Playtex -Science & Nature, 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,General,Who's loretta lynn's singing sister,Crystal gayle,General,Who had a hit with November Rain,Guns n Roses -General,Whose daughter became the wealthiest three year old in 1988?,Christina onassis,General,Malabo is the capital of ______,Equatorial guinea,Art & Literature,"A style, c. 1520-1600, that arose in reaction to the harmony and proportion of the High Renaissance. It featured elongated, contorted poses, crowded canvases, and harsh lighting and coloring.",Mannerism -General,In what Australian state would you find Parkes,New south wales nsw,Music,To Which All Saint Did Robbie Williams Become Engaged In 1998,Nicole Appleton, Geography,In which country would you find Angkor Wat?,Cambodia -General,What was the name of the first 'talking movie',The jazz singer,General,Which species of fir is named after the plant collector. who sent its seeds back to Britain in 1827,Douglas fir,Toys & Games,"Word derived from ""shah mat"", from the arabic for ""the king is dead""",Checkmate -Entertainment,Singer Paula ______?,Abdul, Geography,The Auckland Islands belong to which country?,New Zealand,General,Who sang 'jet airliner',Steve miller -General,This branch of physics deals with the general laws governing the motion of material objects,Mechanics,General,Presley elvis presley appeared on how many stamps in 1993,500 million,General,"A horizontal projection, such as a balcony or beam, supported at one end only.",Cantilever -General,"""Its all Greek to me"" comes from what Shakespeare play",Julius Caesar,General,What country joins Central America to South America,Panama,General,Which traditional japanese sport takes place in a circular ring,Sumo -General,Jefferson city is the capital of ______,Missouri,Music,With Which Band Is Shirley manson The Lead Singer With,Garbage,Music,"Which band finished 7th with the song `Mary Ann` for the UK in the 1979 Eurovision song contest, before later going on to have a massive party hit in the UK several years later?",Black Lace -General,What did Tommy Kirk shoot because of hydrophobia,Old yeller,General,What is a xerophobic afraid of,Deserts,Music,"Who Had A Hit With ""We Didn't Start The Fire""",Billy Joel -Geography,"Miami, Florida, is the most southerly major city in the continental United States, sitting about two degrees north of the ____________________",Tropic of cancer,Food & Drink,What is the name of the apple based liqueur from Normandy? ,Calvados ,Food & Drink,What is the smell given off by wine called? ,The Boquet  - Geography,Which mainland Latin American country is in neither South America nor Central America?,Mexico,Music,Who Recorded Telstar In 1962,The Tornados,General,Scarlet O'Hara had what original first name,Patsy -Art & Literature,"Who Co-Wrote (Yeoman Of The Guard), (Lolanthe And The Mikado) ",Gilbert & Sullivan ,General,The seven-branched candlestick called the Menorah is the official state emblem and appears on the president's flag of which country,Israel,General,What is the Capital of: Belarus,Minsk -Sports & Leisure,How Many Lanes Does An Olympic Standard Swimming Pool Have ,Eight ,General,What love song featured elton john and kiki dee,Don't go breaking my heart,General,"What is the name for a legal document, used in court, in which a person swears that certain facts are true",Affadavit -General,In 2000 what word was written on Sydney bridge in fireworks,Eternity,General,Which planet is fourth closest to the Sun,Mars,General,The Russians used what to cure piles,Potato suppositories -General,Which city is built on 118 islands,Venice,General,What is a dried plum called?,Prune,Music,"Which Artist Has Spent The Most Time In The UK Charts Clocking Up Over 1,100 Weeks",Elvis Presley -General,Who painted 'The 3rd of May' (1808),Francisco de goya,General,What is the only New England state without a seacoast,Vermont, History & Holidays,Name the 2 of the 3 flags placed by Hillary in the summit of Everest in 1953? ,"British, Nepal and the UN " -General,"Venus, Aphrodite and Hathor are all goddesses of what",Love,General,"Who said ""Sometimes too much drink is barely enough""",Mark Twain,General,Whose song did the Beatles sing on first TV appearance 1962,Roy Orbison Dream Baby -General,What is the name of Fred Flintstones paperboy,Arnold,General,What year did sir richard whittington die,1423,General,To which dog was a statue erected in Edinburgh,Greyfriers Bobby -Music,Which Group Spawned A Teenage Army Of Tartan Scarf Waving Fans,The Bay City Rollers,General,What was the name of Matt Dillon's band in Singles?,Citizen Dick,Science & Nature,Which is the worlds tallest grass ,Bamboo  -General,What is a tightrope walker,Funambulist,General,What was unusual - beauty contest judge Percy Moorby 1985,He was Blind,General,How long is an eon,One billion years -General,BONANZA: What clothing did Little Joe usually wear,Green jacket and grey,General,Starts with F ends with K if you cant get one you use your hand,Fork,General,What simple kitchen utensil is used to get lumps out of flour,Sieve - History & Holidays,Which French Ruler Was Finally Defeated In 1815 ,Napoleon ,General,What does the mighty Thor throw at his enemies,Hammer,Entertainment,"In a 1976 release, who wanted to 'fly like an eagle'?",Steve Miller Band - History & Holidays,Who Released The 70's Album Entitled Trans-Europe Express ,Kraftwerk ,General,What ancient middle east kingdom spread to it's greatest extent under king ashurnasirpal in 663 bc,Assyria,General,The white marks intersecting each five yard line are called ________,Hashmarks -General,What games name literally means To Grope Frantically,Scrabble,General,In what sport is the danger flag yellow,Motor racing,General,Who rode a horse called Phantom,Zorro -Music,"Faithless, Absolute & Hypnotize Were 80's Hits For Which Group",Scritti Politti,General,What is the flower that stands for: deception,White cherry,General,Barbra Streisand starred in the sequel to Funny Girl what was it called,Funny lady -Art & Literature,"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,General,In WW2 what was the German codename for invasion of Russia,Barberossa,General,What Was The First & Obviously The Oldest State In The USA,Delaware -General,Who was the minstrel that found Richard I imprisoned,Blondel (De Nesle),General,"Which group sang the Song ""Last Resort""?",Papa Roach,General,Which film star is the real life husband of Goldie Hawn,Kurt russell -Food & Drink,What is the minimum age for scotch whisky before it can be sold in the uk? ,3 Years ,Science & Nature, A young pigeon that has not yet flown is a __________,Squab, History & Holidays,Who sang the song 'Cry' which was the first video on Mtv to use morphing technology through the entire video? ,Godley and Creme  -Art & Literature,"Which Author Wrote The Sound & The Fury, The Wild Palms, And As I Lay Dying ",William Faulkner ,Entertainment,Secret Identities: Jimmy Olson,Elastic lad,General,Who was world champion in boxing from 1952-1962,Archie moore -Science & Nature,Name The American Who Patented A Burglar Proof Lock Described As Magic & Infallible ,Linus Yale ,Music,"His Recording Of ""I'll Never Get Out Of This World Alive"" Charted Just A Few Days Before His Death In January 1953 Name The Country Star",Hank Williams,General,What does a blue flag white cross mean in motor racing,Give way or be disqualified -General,What country celebrates its National Day on 14th July?,France,General,Optophobia is the fear of,Opening one's eyes,General,Who married actress nancy davis,Ronald reagan -General,Which singer is known as the 'Empress of the Blues'?,Bessie Smith,General,"What's a hockey team's ""blue line corps""",Defensemen,Science & Nature, About 24 newborn opossums can fit in a teaspoon. They are about .07 ounce at __________,Birth -General,"In ballet, a lowering of the body by bending the knee.",Fondu, History & Holidays,Sputnik 2 Was Launched Into Space In 1957 What Was The Name Of The Dog That Was On Board ,Laika ,General,Who was known in Germany as Der Bingle,Bing Crosby -General,What is the 'bole' of a tree,Trunk,Geography,In Which Country Is Mount Etna ,Sicily ,Science & Nature,What does a sphygmomanometer measure?,Blood pressure -Music,Who introduced Paul to John?,Ivan Vaughn,General,All members of'which religion bear the surname Singh,Sikhism,General,"In the first part of 'hard to kill', what did steven seagal use to kill the mobster",Credit card -Food & Drink,Which Ancient Central American Civilisation Were Drinking Chocolate Milk As Long Ago As 600 BC ,Mayans , Geography,What is the world's widest river?,Amazon,General,Pulque is a beer based on what,Cactus -General,What is William Hague's middle name,Jefferson, History & Holidays,What time would you watch 'Late Night With David Letterman' on NBC? ,12:30-1:30 ,General,Neopharmaphobia is the fear of,New drugs -General,The angel shark has what other name,The monkfish,General,Hearts bells leaves and acorns card suits which country,Germany,Music,Who Was Shakin All Over At The Start Of The 60's,Johnny Kidd And The Pirates -General,What is the only dog to have a barb on each individual hair follicle,Dalmatian, History & Holidays,"""What is the connection between """"Comet"""", """"Cupid"""" and """"Vixen""""?"" ",All Names Of Santa's Reindeers ,Science & Nature,Approximately how many pounds of salt is in every gallon of seawater?,One quarter -General,St Appolonia Patron Saint of what,Toothache,General,What is the common name of Eucalyptus microtheca,Coolabah tree (waltzing mathilda),General,"In 'the wizard of oz', what was dorothy's dog's name",Toto -General,40% of MacDonald's profits come from selling what,Happy Meals,General,What major city is close to the middle of the Iberian Peninsula,Madrid,General,"Cocktails: creme de cacao, cream, and brandy make a(n) __________",Brandy -General,Who sailed to the Antarctic in the ship Discovery,Scott amundsen,General,Bill Medly was part of what group,The Righteous Brothers,General,Which city is served by ringway airport,Manchester -Sports & Leisure,"In pro football a ""sudden death"" period lasts how many minutes long?",Fifteen,General,If an Australian called you a Gumsucker what would he mean,You were from Victoria state,General,What does the dominican republic have on its flag,Bible -Geography,What is the capital of Poland,Warsaw,Sports & Leisure,What Is The Highest Possible Out Shot In A Game Of Darts ,170 (t20 t20 Bull) ,General,What is the full name of E. Coli,Escherichia coli -Sports & Leisure,What Are Goldie & Isis ,Reserve Boats For The Boat Race,Science & Nature,A one_humped camel is called a _________.,Dromedary,General,Frankfurt stands on what river,Main -General,Who composed the music for the opera The Tales of Hoffman,Jacques Offenbach,Music,What is meant by the musical instruction largo?,"Slow, dignified in style",General,In France in what kind of meat does a Charcuterie specialise,Pork -General,In which Welsh town is the Royal Mint,Llantrisant, History & Holidays,What is the name of the German Officer who lived and died in Madrid and rescued Mussolini?,Otto Skorzeny,Food & Drink,Where is Scotland's largest malt whisky distillery? ,Tomatin  -Music,"What Part Did Tina Turner Play In Ken Russell's Movie ""Tommy""",The Acid Queen,General,What is the Hellenic republic,Greece, History & Holidays,Who invented the cotton gin?,Eli Whitney -Science & Nature,What is the meaning of the name of the constellation Draco ?,Dragon, History & Holidays,"Which character in a Disney cartoon, wanted to make a coat out of 101 Dalmatians ",Cruella Devil ,General,What is the roughly circular hollow feature on the top of a volcano called,Caldera -General,"Wile E. Coyote, Supra Genius, gets all his traps to try to catch the Road Runner from what company",Acme,Art & Literature,"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,General,Which golfer has won the British Open most times since 1945,Tom watson (5) -General,In Montana it is a felony for a wife to open her husbands what,Mail,General,In Blythe Ca. you cant wear cowboy boots unless you own what,Minimum 5 head of cattle,Sports & Leisure,What Major Sporting Milestone Occurred On 6 th May 1954 ,First Sub 4 Minute Mile  -General,Vaccinophobia is the fear of ______,Vaccination,General,What remained at the bottom of pandora's box,Hope,General,Name the first space probe to land on the moon 13 Sept 1959,Luna 2 -General,Who was the first American to win a Nobel prize,Theodore Roosevelt,General,Second city: Salt Lake City (state),West valley city,General,In which Middle Eastern country is the site of the Hanging Gardens of Babylon understood to have been,Iraq -General,What happens every 45 seconds in the USA,House Fire, History & Holidays,"The state motto for oklahoma is labor omnia vincit, which means what ",Labor conquers all things ,General,In Kentucky people wearing what on streets get police protection,Bathing Suits -General,What is the Capital of: Comoros,Moroni,General,What is the second day of the week,Monday,General,What kind of hat took its name from a George Du Maurier novel,Trilby -Science & Nature,Which soft metal is used in the production of soap? ,Sodium ,General,John lennon and yoko ono marry in gibralter on march 20th and honeymoon in,Paris,General,Who Is The Greek God Of Love ,Eros  -General,From the Earth to the sun is one AU what does AU stand for,Astronomical Unit,General,"What was the name of the heroic boy in ""The Never Ending Story?",Atreyu,General,How many floors are in the empire state building,102 -Music,In 1972 Mary Whitehouse Campaigned Furiously To Get Which Song Performed By An American Solo Artist Banned As She Deemed It Offensive,My Ding A Ling,Science & Nature,"In Which Country Is Cherepovets, Site Of One Of The Worlds Largest Blast Furnaces? ","In Russia , At The Cherepovets Works ",General,"A welt, a vamp, a tongue and a quarter can all be found on which object",A shoe -Entertainment,"The eldest sister in the TV Series Charmed, is played by who?",Shannon Doherty,General,Structure for hanging criminals,Gallows,General,What kind of bird is a bourbon,Turkey -People & Places,Who Was Humphrey Bogarts 4th Wife ? ,Lauren Bacall ,General,Who wrote the classic thriller 'The Birds',Alfred Hitchcock,General,Sable is the heraldic name for which colour,Black -Sports & Leisure,Between 1950 And 2000 Name Three Tennis Players Born in Germany That Won The Men's Singles Title At Wimbledon? (PFE) ,"Boris Becker , John McEnroe & Michael Stich ", History & Holidays,Oklahoma's recorded History began in 1541 when what spanish explorer ventured through the area on his quest for the lost city of gold ,Coronado ,General,U.S. captials - virginia,Richmond -General,"Cool, Nice and Oz are all types of what?",Computer Languages,General,Lancelot where is 'the breadbasket of russia',Ukraine,People & Places,In 1995 Which Comedien Dissapeared For Several Days After Receiving Adverse Reviews ,Stephen Fry  -General,"What have woodpecker scalps, porpoise teeth and giraffe tails all been used as",Money,General,"Who said ""Today Europe tomorrow the world""?",Adolf Hitler,General,Which spirit was once known as kill devil,Rum -General,Who was the first person to make a million pounds out of playing golf,Arnold Palmer,General,Love what does encephalitus affect,Brain,General,Which Common Expression Is Said To Derive From The Name Of 2 Inns In The Village Of Stony Stratford,A Cock & Bull Story -Music,Which male vocal range is pitched between tenor and bass?,Baritone,General,Collective nouns - A congress or flange of what,Baboons,General,What famously happened on 6th August 1945,The atom bomb was dropped on hiroshima -General,More than 100 women make a living from impersonating who,Marilyn Monroe, Geography,What is the basic unit of currency for Ethiopia ?,Birr,General,Vincent Price Made His Last Big Screen Appearance In Which Movie,Edward Scissorhands -General,What fleshy muscular organ is joined to the hyoid bone,Tongue,General,"Excellency Which company, during the 1984 Super Bowl, aired what is considered one of the best commercials in TV history",Apple, History & Holidays,"What was the instrument of execution during the ""Reign of Terror""?",Guillotine -General,"Where Exactly Were The Band ""The Bee Gees"" Actually Born",The Isle Of Man, Geography,Where is Tongeren?,Belgium,General,What is a group of bats,Colony -Entertainment,Who is Snoopy's arch enemy?,The Red Baron,Science & Nature,Which British City Street Had The First Gas Lamps ,Pall Mall London In 1807 ,Music,Which Popstars Rejects Topped The Charts In 2002,Liberty X -General,In Milan citizens can be fined $100 if they don’t always do what,Smile - Not Hospital and Funerals,General,"In boxing, what is a blow to the back of the head",Rabbit punch,Music,Who Was The First Beatle To Have A Solo Number One Hit In The Uk,George Harrison (My Sweet Lord) -General,In the UK the Clerk of the Closet is the Queens official what,Chaplin,General,What is the fourth month of the year,April,General,Gary Mabbut Was The Last Person To Do What In An FA Cup Final In 1987,Score At Both Ends -General,"Either of two saturated hydrocarbons, or alkanes, with the chemical formula C4H10",Butane,General,What substance was used to build the Kinga Chapel in Poland?,Salt,General,"What gift was given on the 10th day, according to ""The 12 Days of Christmas",Ten leaping lords ten lords a leaping -General,What is the drummer's name in 'the muppet show',Animal,Music,Survivir Sang About The Eye Of The What,Tiger, History & Holidays,Which eighties fashion accessory consisted of a saftey pin and small beads? ,Friendship pins  -General,"There are 2 annual publications devoted to the peerage. One is Burkes Peerage, what is the other",Debretts,People & Places,Who In Music Is Known As The Boss ,Bruce Springsteen ,Sports & Leisure,Who Became The BBC Sports Personality Of The Year In 2006? ,Zara Phillips  -General,Which Character On Television Has The Surname “ Sagdiyev ” ?,Borat,General,Who wrote Dr Zhivago,Boris Pasternak,Music,"Who Had A Smash Hit With The Song ""Don't Worry Be Happy""",Bobby McFerrin -General,Portion of the central nervous system contained within the skull,Brain,General,What sort of music is intended for a room rather than a large auditorium,Chamber,General,Reagan and Nancy Davis What 19th century novelist spent his last days as an inspector at New York's Customs House,Herman Melville -General,Where is the guggenheim museum,New york city,Art & Literature,"Stephen King's: ""The Dead ________"".",Zone,General,In the 18th century offensive what were whipped,Books -General,"In physics, process of reduction of matter into a denser form, as in the liquefaction of vapor or steam.",Condensation,General,-ism: The belief in the existence of a god or gods.,Theism,General,Over 400 films have been made based on the plays of which famous writer,Shakespeare -General,Who Is The Only Carry On Star To Have Won As Oscar,Jim Dale,General,What is the sum of 75 + 23 + 84 - 101 + 18,Ninety nine,General,Fill in the blank: dont ____ be happy,Worry -General,What shape is the set of all points in a plane equidistant from a certain point,Circle,Music,Number of Beatles-related websites listed on Dave Haber's website,52,Food & Drink,"In the Arab world, to eat or share what with someone is an expression for hospitality ? ",Salt  -General,What percentage of the earths weight is taken up by the oceans,Less than 1,Science & Nature,Name one male fish that gives birth?,Sea horse or pipe fish,Music,Let Me Be You're Fantasy Was A Massive Dance Hit For Whom,Baby D -Entertainment,Who directed the classic thriller 'The Birds'?,Alfred Hitchcock, History & Holidays,In which city was President Kennedy killed,Dallas,General,"Upon his death in 1931, all non essential lights in the U.S. were turned off for one minute in his honor",Thomas edison -General,What is another name for the star fruit,Carambula,General,The Mantu and Heath tests check for what infectious disease,Tuberculosis,General,Where is mount washington,New hampshire -Toys & Games,How many pieces are found in a chess set ?,32,General,Strip where is 'the strip' that was designated an official scenic byway,Las vegas,General,Spain Portugal and Algeria are three top produces of what,Cork - Language,"Other than Germany, whose official language is German?",Austria,General,What number appeared on the side of the car 'Herbie' in the series of films?,53,General,Which bird is the symbol of the Royal Society Protection Birds,Avocet -General,"Which Actress Turned Singer Released Their 4th Album In 2009 Entitled ""Come To Life""",Natalie Imbruglia,General,"Which recording by 10 cc contains the lines 9 keep your picture on the wall, it hides a nasty stain that's lying there.""",I'm not in love,General,What is a rhinocerous horn made of,Hair -General,Which king of England met the king of France on the field of the cloth of gold,Henry viii,General,Which planet is closest to the Sun,Mercury,General,A condition causing breathing difficulties,Asthma -General,"Richard Drew produced an all purpose sticky tape, under what name was it sold in Europe",Sellotape,Music,Name The 1976 One Hitv P.M Wonder Of Thar Starland Vocal Band,Afternoon Delight, History & Holidays,"The most famous indian relocation to oklahoma was by the cherokee indians, what was the route called ",Trail of tears  -General,Which band recorded the live album 'Strangers in the Night',Ufo,People & Places,Which Former Husband And Wife Provide A Link Between The Films Death Becomes Her And Disclosure (PFE)? ,Bruce Willis And Demi Moore ,General,Who is the Patron Saint of cooks,St Laurence -People & Places,What Surrey town is famed for its salts?,Epsom,General,U.S. Captials - South Dakota,Pierre,General,The back of what item is called a gore,A Sock -Geography,The U.S. state that contains the most square miles of inland water is ______________,Alaska,General,Schubert's fourth symphony is nicknamed the what,Tragic,General,Thousand on what river is liverpool,Mersey -General,"What was Higgins first name in ""Magnum PI""",Jonathan,General,Who argued it out in 'the kitchen debate',Richard nixon and nikita,General,What kind of fruit were prunes before they shrivelled,Plums -General,Who directed Serpico,Sidney Lumet,General,This world class model recently crashed in a helicopter,Christie brinkley,General,What is made by the crush tear curl process,Tea - History & Holidays,How Many Gold Rings In Total Did My True Love Give To Me (Think About It) ,40 (5x8=40) ,General,Surveyed 70% of US females said they preferred this to sex what,Chocolate,General,"Common name for a large sea turtle, named for the color of its fat, although the animal is brownish overall",Green turtle -Science & Nature,What Function Does The Labyrinth In Your Ear Have ,It Maintains Your Balance ,Science & Nature, The female condor lays a single egg once every __________,2 years,General,What's the only female animal that has antlers,Caribou -Geography,Which country has Budapest as its capital,Hungary,General,"Who was the ""great pyramid"" built for",Cheops,General,"What 80's game show featured the ""Whammy""?",Press Your Luck -Sports & Leisure,What Is The Most Popular Finishing Double In Professional Darts? ,Double 16 ,Music,With Which Instrument Is Earl Scruggs Associated,The Banjo,General,Which dog breed gets its name from German meaning to splash,The Poodle - History & Holidays,Who was the first person to break the sound barrier?,Chuck Yeager,Technology & Video Games,What colour is the 'Black box' on commercial planes?,Orange,General,"Who was the German National Socialist official, notorious as the head of the Nazi police forces",Himmler -General,What is the common name for many species of burrowing mollusks,Clam,General,Who is woody woodpecker's girlfriend,Winnie woodpecker,Music,"What Instrument Was ""Sackbut"" The Old Name For",The Trombone -Music,In The Film Risky Business Tom Cruise Danced Around His Living Room In His Underpants To What Song,Old Time Rock & Roll,General,What is the flower that stands for: delicate beauty,Hibiscus,General,In what film did Paul Robeson sing Old Man River,Showboat -General,What was the first country to have a public monorail system,Japan,General,"What was Spode the first to make in 1797, by adding bone ash to hard paste porcelain",Bone china, History & Holidays,"The invention of what in 1867, made Alfred Nobel famous? ",Dynamite  -General,The lumbar spine consists of how many vertebrae,Five,General,What was the name of John Steinbeck's dog Charley,Standard Poodle,Music,"The Monkees ""I'm A Believer"" Was A Hit In What Year",1967 -General,Which country and western singer is known as the 'okie from muskogee',Merle,General,In America its noise is B flat in England its G what is,Buzz of Electric Razor,Science & Nature,Which Bone In The Body Is Broken Most Frequenly ,The Collar Bone  -General,"Panther Cap', 'Stinkhorn' and 'Penny Bun' are types of which plants",Fungi,General,And what country won it,Sweden,General,What do Americans call 'candy floss',Cotton candy -General,How many freckles did howdy doody have,Forty eight,General,The Hubble telescope is named after this astronomer?,Edwin Hubble,Sports & Leisure,Irishman Stephen Roche Won Which Sporting Event In 1987 ,The Tour De France  -Music,Which 1970's Group Featured The Longmuir Brothers?,Bay City Rollers,General,What is one of the flavors that make up neopolitan ice cream,Strawberry,General,Review This show suspends all belief it will never work what ?,Original Star Trek -General,Which US state has a buffalo or bison on its flag,Wyoming,General,Who wrote the song 'do they know it's christmas' with midge ure,Bob geldof,General,What is the family name of the Dukes of Somerset,Seymour -General,What does bbl mean,Be back later,General,What was the name of the Soviet Security Service immediately after the October Revolution,Cheka,General,In which country was Pilsner beer originally brewed,Czech republic -General,In which state is Cornell University,New york,Food & Drink,"Even though it tastes nothing like grapes, a __________ is often eaten for breakfast.",Grapefruit,General,What exploded in 1720,The South Sea Bubble -General,Which author wrote the two World War 2 books 'Fighter' and 'Bomber',Len deighton, History & Holidays,What two mountain ranges did hannibal and his elephants march through in 218 b.c. ,The pyrenees and alps ,Science & Nature,This animal's shell is used to make attractive jewelry.,Abalone -General,What did president lincoln proclaim a national holiday in 1863,Thanksgiving, Geography,What is the most mountainous country in Europe?,Switzerland,Music,"What day of the week is mentioned in ""I Am The Walrus""?",Tuesday -General,In June of what year was the treaty ending WWl signed,1919,General,Who always had 56 curls in her hair,Shirley temple,General,Declan macmanus is better known to us as,Elvis costello -General,What west coast nfl team has the motto 'commitment to excellence',Oakland, Geography,What is the basic unit of currency for Mongolia ?,Tugrik,General,Which tropic passes through Taiwan,Tropic of cancer -Music,Which DJ & Recording Artist Is Known As The House Godfather,Frankie Knuckes,General,Which Former World Champion Was Nicknamed The Black Cloud,Larry Holmes,General,Collective nouns a rhumba of what,Rattlesnakes -General,What is the study of soil,Paedology, Language,What is 'blackpool' in Irish?,Dubh linn,General,Who played trixie delight in the film 'paper moon',Madeline kahn -General,Which TV series was narrated by Walter Winchell,The Untouchables,General,Why could you find a hoist and a fly,On a flag,General,Time magazine lists the second most powerful person in Washington in 1993,Hillary rodham clinton -General,What do Ethiopians spend,Birrs,General, A receptacle for holy water is a(n) ________.,Font,General,Who wrote the book Coral Island,R. m. ballantyne -Music,Which 2 Boys Spent 12 Weeks In The Charts Together With A Re-Mixed Surfari's Track,Beach Boys & Fat Boys (Wipeout),General,What us state includes the telephone area code 610,Pennsylvania,Geography,Which U.S. state borders a Canadian territory,Alaska -General,56% of men have had sex where,At Work,General,What's another word for stewardess,Air hostess,Sports & Leisure,What Is The Dart Player Eric Bristows Nickname ,The Crafty Cockney  -People & Places,How Did Dmaon Hill's Father Graham Die ? ,In A Plane Crash ,Science & Nature,Who developed the vaccine for smallpox ?,Edward Jenner,General,The study of shells,Conchology -General,A 'roux' is produced when making which food,Sauce,General,Baseball: the new york ______,Mets,General,What name is given to a statistician employed by an insurance company to calculate risks,An actuary -General,In which musical work would you hear the song As Long As He Needs Me,Oliver,General,"Name the small fried cakes made from chick peas, eaten in the Middle East",Falafel,Science & Nature,What Does Omnivorous Mean? ,Feeds On Any Food  -General,What is the nickname for Texas,Lone star state,Music,"Was Llouyd Cole's Band Called ""The Rattlesnakes"" Or The Commotions",The Commotions,Entertainment,What film featured a cat named Mr. Bigglesworth?,Austin Powers -General,What was ALF's girlfriend from Melmac's name?,Rhonda,General,Which European city is called Mailand by the Germans,Milan,General,Who wrote 'the hobbit',J.r.r tolkien -Geography,In Which Country Will You Find The Holiday Resort Bodrum ,Turkey ,General,What character Tamed the Shrew in the Shakespeare play,Petrucchio,General,Which car company produced the first front wheel drive 1934,Citroen -Music,"Liza Minelli Recorded An Album With The ""Pet Shop Boys"" Or ""David Bowie""",The Pet Shop Boys,General,What is a group of this animal called: Lion,Pride,General,Disney's __________ was featured on cereal boxes for the Post cereal Toasties corn flakes back in 1935. ,Mickey mouse -Geography,What Is The Principle Language Of Brazil ,Portuguese ,General,The Teletubbies have two favourite foods. Name one.,Tubby toast tubby custard, Geography,What is the capital of Nepal?,Kathmandu -General,For which ad campaign was the line 'i can't believe i ate the whole thing' used,Alka seltzer,General,Which number could not be represented in the Roman numbering system,Zero,General,Which of the Beatles group played piano on Don't Pass Me By,Ringo starr - History & Holidays,"When the choctaw indians were moved to oklahoma,they brought their crack police force with them. what were they called ",Lighthorsemen ,General,As what is Hungary also known,Magyar,General,Who painted Marriage d la Mode in 1743,William hogarth -General,Who was Tommy Lee Jones' freshman roommate at Harvard?,Al Gore,Geography,Which Scandinavian Capital Begins And Ends With The Same Letter? ,Oslo ,General,In 1964 Jett Bock composed the music for what hit show,Fiddler on the Roof -Food & Drink,"Bourbon, sugar and mint make up which type of Cocktail ",Mint Julep ,General,What is the equivalent RAF rank to Sub-lieutenant RN and Lieutenant in the army,Flying officer,General,"""Mr Boddy"" is the murder victim in what board game",Clue -General,How many individual bets make up a Yankee,Eleven,General,Which country's national flag consists only of a green field,Libya,General,Menophobia is the fear of,Menstruation -General,What ocean separates North America from Europe,Atlantic,General,Bond: What was the first James Bond film,Dr. No,Entertainment,"This magic word was in the movie, ""Mary Poppins"".",Supercalifragilisticexpialidocious - History & Holidays,When was the Greek alphabet first used?,800 BC,General,Which associate of Ricky Gervase played the character known as 'The Idiot Abroad' in a series of comedy travel documentaries?,Karl Pilkington,General,"Whose story did the books 'born free', 'living free' and 'forever free' tell",The lioness elsa -General,"In medical matters, what does the letter C stand for in C.A.T. scanner",Computerised,General,Cross what day of the week did solomon grundy die,Saturday,General,In what US state is the town of Maggie's Nipples,Wyoming -General,What name is given to a doctor who specialises in skin disorders,Dermatologist, History & Holidays,"These fighters always began a bout by saying, ""Hail Emperor, those about to die salute you.""?",Gladiators,General,For who did the song '867-5309/jenny' spawn a lawsuit,Tommy tutone -General,What is the commonest name for a pub in Britain,The Red Lion,Science & Nature,What Are Gonads ,The Male Or Female Sex Organs ,People & Places,In Whose Car Did Mary Jo Kopechne Die At Chappaquidick ,Edward Kennedy  -General,"What's the radical feminist word for ""history""",Herstory,General,What country had RCH on its cars?,Chile,Music,Number of Beatles fanzines currently published worldwide,44 -General,Who was the first woman to win 4 consecutive US tennis open,Chris Evert Lloyd,General,Who is the ventriloquist who created Lamb Chop,Shari Lewis,General,"What percentage of your weight is water 30, 50 or 70 percent",70 -General,What is a bangtail,Perforated tag,General,Who played 'uncle tim' in 'my favourite martian',Ray walston,General,What is a calm ocean region near the equator,Doldrums - History & Holidays,Released in 1978 what were the names of the two gangs which John Travolta and Olivia Newton John belonged to in the movie `Grease'? ,The T-Birds and The Pink Ladies ,Geography,What is the capital of Czech Republic,Prague,Geography,What is the capital of Malta,Valletta -General,How many chromosomes do each body cell contain,Forty six,Entertainment,Who directed 'The Shining'?,Stanley Kubrick, Geography,What are drumlins and eskers formed by?,Glaciers -Geography,What is the capital of Romania,Bucharest, History & Holidays,What Did Frenchman Andre Turcat Do On 2nd March 1969 ,Flew Concordes Maiden Voyage ,General,A woman described as a Magdalene in the 17th Century was a repentant what,Prostitute -General,In which California city does Poltergeist take place?,Cuesta Verde,General,Ascorbic acid & sodium ascorbate are the most common forms of which vitamin,Vitamin c,Art & Literature,"In one of Donald Horne's novels, which was 'the lucky country'?",Australia -General,"Where did over 300 defiant Indians head off to, after Sitting Bull was killed",Wounded knee,Sports & Leisure,Who Was The First Person To Beat Muhammed Ali in a Professional Fight? ,Joe Frazier ,General,What was Michael Jackson advertising when he was nearly killed?,Pepsi -Sports & Leisure,A Statue Of Billy Bremner Stands Outside The Ground Of Which Football Ground? ,Leeds United ,General,In Idaho you cant give a citizen something more than 50lb - what,Gift of candy,General,Who married to Jenny Von Westphalen in 1843,Karl marx -Science & Nature,What's the term for the hybrid offspring if a male lion and a female tiger ,Liger ,General,"He released the parody ""oh you ate one too"" in 1988 which included the song ""Cabo Wabo""",Van Halen,Entertainment,Who was the first singer in Genesis?,Peter Gabriel -Music,Which 1985 Song Was Co Written By Michael Jackson And Lionel Richie,We Are The World,Geography,"________________, of the southern Baja Peninsula, was favored by early pirates because of its safe harbors.",Los cabos,General,Sportsman are most likely to get diseased anuses / rectum,Water Skiers -General,"Which classic film of 1948 was advertised as, 'Greed, Gold and Gunplay on a Mexican Mountain of Malice'",Treasure of the sierra madre,Art & Literature,Who Wrote About Tarzan ,Edgar Rice Burroughs ,General,Which Roman ampitheatre was built by Emperor Vespasian in around 70ad,Colosseum - History & Holidays,How Does Good King Wencelesas Like To Eat His Pizza ,Deep Pan Crisp And Even ,General,What is a group of swallows,Flight,General,What type of food is coulibac,Russian Fish Pie - History & Holidays,Who Released The 70's Album Entitled John Barleycorn Must Die ,Traffic ,General,What is a mexican afternoon nap,Siesta,General,What's the most popular name for a female pet cat,Samantha -General,New jersey has a spoon featuring over _________spoons from every state and almost every country,5400,General,What is a hen of the woods,A mushroom,General,"The study of populations of animals & plants, a population being a group of interbreeding organisms in a specific region; for example, the members of a fish species in a lake",Population biology -Science & Nature, The __________ whale is the mammal with the heaviest brain _ about six times heavier than a human's.,Sperm,Sports & Leisure,How old was Boris Becker when he won his first ever Wimbledon singles Championship? ,17 ,General,Flies and humans can both get which condition,Athletes Foot -Music,James Todd Smith Is The Real Name Of Which Singer,LL Cool J,Science & Nature,What is the luminous intensity of light measured in ?,Candela,General,"The arrangement of individual characters of a particular typeface into words, sentences, paragraphs, & so on, for the purpose of printing & publishing (printing; type)",Typesetting -General,What are the first names of the popular early 80's duo hall and oates,Darryl, History & Holidays,Who appeared on the back of a US banknote in 1875?,Pocahontas,General,In which fictional land did 'a girl and her dog travel to the Emerald City',Oz -General,What were the wicks in the Vestal Virgins lamps made from,Asbestos,Geography,Which European capital City is nicknamed (the city of a hundred spires) and has tourist attractions including St Vitus Cathedral and Charles Bridge? ,Prague ,Music,In Paul Hardcastle's Hit Song What Was The Average Age Of The Combat Soldier During The Vietnam War,19 -General,The Beatles Were The 1st British Group To Have A Us No.1 Single Who Was The 2nd,The Animals,General,The Jefferson's was a spinoff of what show?,All in the Family,General,What did Moses do for a living before he was called by God,Shepard -General,You can ski on the piste but what other sport uses the term,Fencing where the fight happens,General,What mixture is used to calm crying babies,Gripe water,Music,Chris Stein Worked With Which Sex Siren To Produce A String Of 80's Hits,Deborah Harry -General,What's the main feature of a Chong Sang skirt,Split up side,Music,The Kane Gang Split To Become Who,Hue & Cry,General,What nationality was Aladdin,Chinese -General,What is the fear of cosmic phenomenon known as,Kosmikophobia,General,"Where would you find bow, bay and traytime parts of what",Male deer's antlers,General,What does a kayser measure,Waves -General,What is the literal meaning of the title Viceroy,In place of the King,General,Vootery is the practice of what,Deceit or Lying,Entertainment,Where did George of the Jungle live,Imgwee gwee valley -General,What French cheese is ripened in caves,Roquefort ewes milk,General,Who largely took over ontario for a month in the 19th century,Irish rebels,Music,"What Was Advertised In 1998 With A Photo Of One Of John & Yoko's Bed Ins & Slogans ""Think Different""",Apple Computers -General,Which planet was discovered in 1846,Neptune,General,Which food did Victorians deride as little bags of mystery,Sausages,General,Who first appeared in the cartoon strip Thimble Theatre,Olive Oyl -General,What is the most frequently seen comet?,Encke,Sports & Leisure,Hockey: The Toronto _______.,Maple Leafs,Geography,What is the capital of Macedonia,Skopje -General,Name award shaped like a teapot with a skull and crossbones,Agatha - for crime mystery writers,Music,"Who Has Written Songs With Mike Love , Tony Asher & Van Dyke Parks",Brian Wilson,Geography,"What U.S. state is known as The Land of 10,000 Lakes",Minnesota -Mathematics,The angles inside a square total _______ degrees.,360,Geography,From which London Station Do Trains To The Channel Tunnel Leave From ,Waterloo ,General,Who invented the carpet sweeper in 1876,Melville bissell -General,What was the first gramophone record made from,Tinfoil,Entertainment,"Who played the 'Wicked Witch of the West' in ""The Wizard of Oz""",Margaret Hamilton,General,China which is the most remote island in the southern atlantic ocean,Bouvet island -Music,"Who Am I ""frederick Bulsara (1964-1991)",Freddie Mercury, History & Holidays,Who Was The Last British Monarch To Lead His Forces Into Battle? ,George II ,General,What did thousands ogle for the first time when it served as a pace car for a race in Alabama in 1964,The mustang mustang -General,"-isms: Public ownership of the basic means of production, distribution, and exchange.",Socialism,General,What gas is produced in plants in the process of photosynthesis,Oxygen, History & Holidays,On the 1st of July of what year was the British colony of Hong Kong returned to China? ,1997  -General,Where was slave trading abolished in 1807,British empire,General,Which James Bond Movie Was The Last To Use A Title Actually Written By Ian Flemming,The Living Daylights,General,Where did nikki lauda get his disfiguring burns,Nurburgring -General,It is estimated that at any give time 1% world’s population is what,Drunk,General,"Who sang the song ""Run To You""?",Bryan Adams,General,Prova from provolone means what,Ball shaped -Music,"Which Swedish Female Vovalist Used ""Open Sesame"" To Enter The Charts",Leila K,General,What is the Capital of: Montserrat,Plymouth,General,"What animals name is Aboriginal for ""no drink""",Koala -Music,Which Song Was Used To Launch MTV In America,Video Killed The Radio Star,General,In fable who pulled the thorn from the lions paw - not eaten,Androcles,People & Places,What Part Of Betty Grable Was Insured For Over A Million Dollars ,Her Legs  -General,In what Indian city is the Taj Mahal located,Agra,Food & Drink,What type of meat is used in the preparation of Osso Bucco? ,Veal ,General,What do the initials IOU stand for on an IOU,I Owe Unto - Geography,What is the basic unit of currency for Morocco ?,Dirham,General,Which Star Died During The Filming Of The Movie “Game Of Death” In 1973?,Bruce Lee,Music,Brett Michaels Was The Lead Singer Of Which Band,Poison -General,What was the first Bond film not to be titled from a Bond book,Licence to Kill,Science & Nature,What Was Built At Obrusk In The USSR ,The Worlds First Nuclear Power Station ,Art & Literature,Who Painted The Mona Lisa ,Leonardo Da Vinci  -General,What is the measure of monitor screen quality,Resolution,General,What is the magazine of the Salvation Army called,The Warcry,General,Who is known in England as the tatty detective,Columbo -General,On what common object would you find a sleeve and a tray,A Matchbox,Entertainment,Who drew the comic 'The Maxx'?,Sam Keith,General,Name the primeval supercontinent which split into Gondwanaland and Laurasia between 250 and 300 million years ago,Pangaea -General,"Parr, Smolt and Grilse different names same thing what",Salmon - life stages,General,"Who was marshall james butler ""wild bill"" hickock's sidekick",Jingles,General,What is Damson Cheese,Thick Damson Jam -General,"Where was ""Conozca Beatles"" released",Mexico,General,What is the culinary term meaning to coat or sprinkle with flour or sugar,Dredging,General,"Who Was The Youngest Person Ever To Appear On ""This Is Your Life"" Aged Just 19",Twiggy -General,William Perks became more famous as who,Bill Wyman,General,Volcanic lake in Romania:,Lake st ana,General,By what other name is the 180 degree meridian known as,International date line -General,"Which city, capital of the Assyrian Empire, was destroyed by fire in 612 B.C.",Nineveh,General,What medical procedure is said to work by manipulating the body’s electrical energy flow?,Acupuncture,General,Who composed a Paris and a Prague Symphony,Mozart -General,Under what structure was the first nuclear reactor built in Chicago,Football stadium,General,25 years after first playing James Bond Sean Connery won an Oscar for his part in which film,The untouchables,Music,Which 3 Bands Has Johnny Marr Been Associated With (PFE),"The Smiths, The The, Electronic" -People & Places,Which Celebrity Launched A Perfume Range Entitled 'M' Just In Time For Christmas 2007 ,Mariah Carey ,General,Xavier Roberts was the name associated with which eighties toy?,Cabbage Patch Kids,Sports & Leisure,At Which Course Is The British Grand Prix Held? ,Silverstone  -Sports & Leisure,In Athletics Track Races What Does The Ringing Of A Bell Signify ,The Last Lap ,General,With which art form would you associate the name Karsh of Ottawa,Photography,General,Who wrote Lolita,Vladimir nabokov -General,Bob van Winkle changed his name to what,Vanilla Ice,General,"Countries of the world: landlocked country in central South America, the capital is Asuncion",Paraguay,General,A moist fertile spot in a desert is called a(n),Oasis -Music,In The World Of Music Monica & Gabriela Irimia Are Otherwise Known As Who?,The Cheeky Girls,General,What was abolished by the english parliament in 1647,Christmas,General,Advertising film which is informative and purportedly objective,Infomercial -General,Osteoporosis primarily affects,Bones,General,In The Tv Show Auf Wiedersehen Pet What Was The First Name Of The character Oz,Leonard,General,What is MMM minus MD,MD 3000-1500=1500 -Music,"When playing the bagpipes, what name is given to the “melody” pipe, played with one or two hands.",The CHANTER,General,What is the stage name of film actress Betty Joan Perske born 1924,Lauren bacall,General,"In medicine, of what is oncology the study'",Tumours -General,What city is signified by the 'd' stamped on some american coins,Denver,General,"In The Godfather, who played the role of Mo Green",Alex rocco,General,Not Including The Word OK Or Any Brand Names What Word Is Pronounced The Same In Over 36 Countries Worldwide,Taxi -General,What is the most common blood type in humans,Type o,General,What is the main job of a striker in soccer,Score goals,Art & Literature,Who Wrote The Novel Lady Chatterly's Lover ,DH Lawrence  -General,Red white blue yellow green what's missing from Rubik's cube,Orange,General,The Bermuda Bowl is world championship in which game,Bridge, Geography,What is the capital of Pakistan ?,Islamabad -General,Which American crowned a great 1998 by winning at Wentworth,Mark o'neara,Sports & Leisure,"Other than skiing, which sport takes place on a piste?",Fencing,General,What was Supergirl's secret identity,Linda Lee Danvers -General,Bulls Blood wine comes from which country ,Hungary,General,Who wrote the surreal novel Tarantula,Bob Dylan,General,What planet is often referred to as Earth's sister planet,Venus - History & Holidays,Which singer sang 'I Believe In Father Christmas'' ,I Believe In Father Christmas ,General,U.S. Captials - Alaska,Juneau,General,In the Bible which book follows John,Acts of the Apostles -General,What should be done with a used worn out flag,Burned,General,To whom is the Wizard of Oz dedicated,The Young in Heart,Music,In what year did the 'Pretenders' release their first LP?,1980 -General,What was the real name of the hospital on St. Elsewhere?,St. Eligius,General,Francis Scott Key Born On August 1st 1779 Is Credited With Writing Which Song,The Star Spangled Banner / American National Anthem,General,Member of male non enclosed religious order,Friar -General,Johannes Ostermeir invented which photographic aid,Flashbulbs,General,"""It only takes a _____ to get a fire going""",Spark,General,Which Major League baseball team has its stadium in South Bronx,New york yankees -General,An assisted reproductive technology (art) in what one or more eggs are fertilized outside a female's body,Invitro fertilization,General,Which novel features Room 101,1984,Entertainment,"Who played the lead in the movie ""Mission Impossible""?",Tom Cruise -General,In what Australian state would you find whyalla,South australia,Food & Drink,For Which beer is Rutland famous? ,Ruddles ,General,"What sexually ambigious prisonmate was often dubbed ""Mrs. Hitler""",Rudolf hess -General,Name two self cleaning organs,Eye Vagina,General,Who Is The Only Person Outside Formula One To Have Been Awarded The BBC Sports Personality Twice,Henry Cooper,General,By what name is the skin condition called 'naevus' better known,Strawberry mark -General,Who owned the yacht Lady Ghislane,Robert Maxwell,General,What is the most chosen name for US schools sports teams,Eagles or Tigers,Entertainment,"Darth Vader was the villan in the movie, ""____ Wars"".",Star - History & Holidays,Ghost Town' was the only number single released by which British band ,Specials ,General,What is a 'palas',Queen of spades,General,What is the collective noun for a group of tigers,An ambush -General,What us state includes the telephone area code 608,Wisconsin, Geography,Rabat is the capital of which country?,Morocco,General,In which century was the poet Robert Frost born,19th -Geography,Which is the largest lake in the British Isles? ,Lough Neagh in Northern Ireland , History & Holidays,Who is recognised as the father of geometry?,Euclid,Science & Nature,This branch of medicine deals with old age and its diseases.,Geriatrics -Sports & Leisure,Who was the first NHL player to score 50 goals in one season?,"Maurice Richard <-- pronounced ""Reeee-shard""",General,What collective name is given to the four largest moons of Jupiter?,Galilean Moons,Music,Who underwent treatment for rabies following an incident in which he bit the head off a live bat?,Ozzy Osbourne -General,"In Which Us State Was Rapper And Hip Hop Artist ""Eminem"" Born",Missouri,Food & Drink,From Which Fruit Is Grenadine Obtained? ,Pomegranate ,General,What was the last black and white film to win Oscar best film,The Apartment 1960 Jack Lemon -General,Aviatophobia is a fear of ______,Flying,General,What song is about a sheep stealing suicide,Waltzing Matilda,General,What are the names of donald duck's nephews,Huey dewey and louey -Science & Nature, A quarter horse gets its name from its speed in running the __________,Quarter_mile,Technology & Video Games,What was the Jaguar Car called before 1945?,SS,General,Which creature appears on the Samoan flag,Eagle -General,"What was the setting for walk, don't run",Tokyo olympics, History & Holidays,The Monument in the City Of London is a monument to which event? ,The Great Fire Of London ,General,What is an igloo built out of,Snow -Music,What is Ray Charles' real last name?,Robinson,General,What city in the USA has the fewest % of native born residents,Huston - Texas,General,"Of what are throat, foxing and platform parts",Shoe -General,Which is the largest known butterfly,Queen alexandra's birdwing,General,What are young bats called,Pups,General,Which Australian author wrote Illywhacker and Oscar and Lucinda,Peter carey -General,Terrence Nezman became more famous as who,Stanley Kubrick,General,What is usually sprinkled on top of cappuccino,Chocolate,General,Who voices the cowboy doll 'Woody' in the film 'Toy Story',Tom hanks -General,Where was the first Pony Express set up,Outer Mongolia, History & Holidays,"Traditionally are the 12 Days of Christmas, before or after Christmas ",After (26 Dec - 06 Jan) ,General,What is the young of this animal called: Grouse,Cheeper -General,Denzil Washington's first film as director was what,Finding Fish,General,What is Panphopia a fear of?,Everything,General,Fragrant plant with edible leaf-stalks and seeds,Fennel -General,"Which South African Country (NOT South Africa) Banned The Book ""Black Beauty"" After Claiming It's Title Was Racist",Namibia,General,What is the common name for the marine animals asteroidea,Starfish,Music,"Who originally recorded the Beatles' cover song, ""Chains""?",The Cookies -General,Who wrote the novel' The Turn of the Screw',Henry james,General,By law Las Cruces New Mexico can't carry what in mainstreet,Lunchbox,General,The star constellation Lepus has what English name,The Hare -General,Which Tv Legend Plays The Captain In The New Series Of Fort Boyard ?,Tom Baker,Toys & Games,What game is Bobby Fischer associated with?,Chess,General,What sport features snatches and clean jerks,Weightlifting -General,"In 'coronation street', who is ken and denise's son",Daniel,General,Where will children as young as 15 be jailed for cheating on their finals,Bangladesh,Food & Drink,From which flower does the expensive spice of saffron come from ? ,Crocus  -Music,Whiose first solo hit was Spread A Little Happiness in 1982?,Sting,General,To what great civilization/empire do we owe our custom of 60 minutes in an hour,Babylonian empire,Music,A picture of Burt Bacharaach appeared on the cover of which best selling 90's album?,Definitely/Maybe -General,Approximately how many times a minute does lightning strike the earth,Six,Music,Which R&B Bad Boy Changed His Name To Abdul Rahman In 1998,Mark Morrison,General,Where in your body is your patella,Knee ( it's the kneecap ) -General,In The Classic 80's Video Prince Charming By Adam And The Ants Who Played The Role Of The Fairy God Mother,Diana Dors,General,The Pinotage grape is a native of which country,South africa,General,King George III is remembered in which children's nursery rhyme,The Grand old Duke of York -General,What is a pharaoh,King of egypt,Music,Who Had A Monkey Gone To Heaven In 1989,Pixies, History & Holidays,On what was Pennsylvania incorrectly spelled?,Liberty Bell - History & Holidays,Which British alternative band takes its name from a character in the film To Kill a Mockingbird ? ,The Boo Radleys ,General,Where could you hear the Cuckoo Song,Laurel Hardy film theme song,Geography,"Apart from water, what runs through the mouth of the River Amazon and Lake Victoria? ",The Equator  -General,Point Maley is the coast guard cutter in what Disney movie,Boatniks,General,"Messidor, Thermidor and Fructidor were what in 1789 (JJA)",French revolutionary calendar months,General,Which Song By Michael Jackson Spent The Most Weeks At No.1 In The UK Singles Chart,Earth Song -General,"Who recorded the album ""nebraska"" in 1982",Bruce springsteen,General,Which kitchen appliance was first designed in 1927 by the American Charles Strite,Automatic toaster,Science & Nature,What word is used for a male ass (Other than that the word used for that,Jack -General,"Other than martha washington, which two women have been represented on u.s currency",Pocahontas and susan b anthony,Music,"Who Had A Hit With ""If I Could Turn Back Time""",Cher,Art & Literature,Which English Author Created Horatio Hornblower ,C.S. Forester  -General,What creature has a penis 20 times the length of its body,Barnacle,Science & Nature, A snake is capable of eating an animal four times larger than the width of its own __________,Head,General,What tome did Nazis give newlyweds & parents of large families,Mein kampf - Geography,What is the basic unit of currency for Switzerland ?,Franc,General,CANAM is a major competition in what 'sport',Cheerleading,General,Where is Huracan stadium,Buenos aires -Science & Nature," A group of bees can be called either a hive, a swarm, or a __________",Grist,Food & Drink,What Are 'Ladies Fingers' Better Known As ,Okra Or Bhindi , History & Holidays,Which Royal House Ruled England Between 1603 & 1714? ,The Stuarts  -Music,"How Are ""Florence Ballard & Mary Wilson"" More Commonly Known",The Supremes,General,Britain's call it sellotape - What's the brand name in Australia,Durex,Science & Nature,What Is Also Known As The Freshwater Lobster? ,The Crayfish  -General,Name the Australian film about the pianist Halstadt,Shine,General,In 1998 the space probe Luna Perfecta found what on the moon,Ice,General,What company first guaranteed satisfaction or your money back,Montgomery Ward 1874 -General,"In 1925 Grace Scurr, A Secretary Invented & Named Which Product Now Synonomous With The 1980's?",The Filofax,General,The royal yacht Britannia is now moored in the port area of which city,Edinburgh,General,On what date Greek Russian orthodox churches celebrate Xmas,January 6th -General,In Which Sport Might You Perform “ A Double Axel ” & “ A Lutz ” ?,Ice Skating,General,What is the meaning of the word 'Dodecanese',Twelve islands,General,We know what a bronco is but what does it mean in Spanish,Rough -General,Which Latin American author wrote 'The War of the End of the World',Mario vargas llosa,Art & Literature,Paint applied very thickly. It often projects from the picture surface. ,Impasto,General,Who was the first losing candidate in a U.S. presidential election,Thomas jefferson -General,Who was king of the Franks from 768 to 814 a.d,Charlemagne,General,Who wrote the scripts for Hill street Blues,Steven Bochco,General,Marie Gresholtz is better known as who,Madam Tussaud -Sports & Leisure,Who Ended Up Winning The Formula One Drivers Championship In 2007 ,Kimi Raikkonen ,Science & Nature,Which Hi Tech Gadget Which Can Also Be A Bit Of A Pest Was Invented By Douglas Englebart In 1964 ,Computer Mouse ,General,In which creatures does formic acid occur,Ants -General,Which German city was the birthplace of the poet Heinrich Heine,Dusseldorf,Food & Drink,According to Ken Dodd what are mined in Knotty Ash? ,Jam Butties ,General,"Name the fat, rich detective with a passion for beer, food and orchids",Nero -General,What's the capital of the Comoros,Moroni,General,What does Ally Sheedy use to decorate her picture in the Breakfast Club?,Dandruf,General,"What was the nickname of Charles Heidsick, the 19th Century French wine producer",Champagne charlie -Music,Before Changing It To Bob Dylan What Was This Legends Name,Robert Zimmerman,Entertainment,"Sung by Robert Palmer, '______ to love'?",Addicted,General,When light waves pass from one medium into another they change direction. This is called ________,Refraction -General,Details of what can be found in The Blue Book,US Aristocracy,Music,Johnny Halliday Was A Massive Star Over Three Decades In Which Country,France,General,Volvo's chairman resigned in 1993 in protest of a merger with this automaker.,Renault -General,What is the heaviest snake,Anaconda,General,Which was the first country to give women the right to vote,New zealand,General,Which Band Was Originally Known As Feedback?,U2 -Geography,"Excluding Alaska, the American state with the lowest population density is?",Wyoming,General,This is the name of a fairy in A Midsummer Nights Dream,Moth,General,What poet wrote how do i love thee,Elizabeth barrett browning -General,Who painted The Blue Boy,Thomas gainsborough,General,"In an ancient Roman house, a central room open to the sky, usually having a pool for the collection of rainwater. In churches, a front courtyard. ",Atrium,General,"Who wrote 'the agony and the ecstasy""",Irving stone -Music,Name Either Of Chopin's Christian Names,Frederic Froncois,Science & Nature,What Was The Name Of The First Orbiting Space Station ,Salytut ,Music,"Members Of The Buggles, King Crimson & Yes Went On To Form Which Band",Asia -Music,"Who Had A Hit With ""Sweet Dreams Are Made Of This""",The Eurythmics,General,You would find a mummy in one of these stone coffins,Sarcophagus,General,Which animals make a sound called nuzzing,Camels -General,"Which Safety Device First Constructed & Used In 1982, Is Known By Its Creators As “Hybrid 3”",Crash Test Dummy,General,In Kansas the law prohibits shooting rabbits from where,A Motorboat,General,First ad on Radio Luxemburg 1930s for Bible Beans - which are?,Laxatives -General,The Intelligent whale was the nickname of an early what,Submarine,General,What is the largest planet in the solar system,Jupiter,General,In what series of stories did Inspector Lestrade appear,Sherlock Holmes -Tech & Video Games,What video game starts out with Koma Pigs stealing your treasured bracelet? ,Tomba!,Entertainment,Who played the Agent james Bond in the 1966 film 'Casino Royale'?,David Niven,General,On which river is the city of Florence situated.,Arno - History & Holidays,This French peasant girl led the army to victories.,Joan of Arc,General,Automysophobia is a fear of ______,Being dirty,Geography,What is the Capital of Barbados Called? ,Bridgetown  -General,What distant planet circles the sun every 84 years,Uranus,General,"What Type Of Foodstuff Was Invented In The Early 1900's By ""Charles Jung""",The Fortune Cookie, History & Holidays,In what type of building did Plato and Aristotle teach ?,Gymnasium -General,According to the ancient Chinese what cures headaches,Swinging your arms,General,Hans Steininger had the world longest what - that killed him,Beard - Tripped over it down stairs,General,What does a philluminist collect,Match box labels -General,What is the longest insect,Walking stick,General,When was the cash register invented,1879,Geography,What is the capital of Bahrain,Manama -Food & Drink,In which dishes is sticky rice used? ,Sushi ,General,What animal in The Jungle book is also a type of uncut velvet,Bagheera,Geography,In which state are the finger lakes ,New york  -General,Who sang the 1975 remake of the Flamingos' I Only Have Eyes For You,Art,General,Hydra Gyrum was the Latin name for which element,Mercury - Hg,Entertainment,Vincent Vega appeared in which movie?,Pulp Fiction -General,Which year did Jemima Goldsmith marry Imram Kahn,1995,General,In 1999 Dallas Texas passed a law banning what from city,Roosters noise pollute,General,By law in Guam who are not allowed to marry,Virgins - They pay men to pop em -General,What was the name of Roses monkey in Friends,Marcel,General,Who received seven perfect scores in gymnastics at the 76 montreal olympics,Nadia comaneci,General,How do you catch a Phart,With a net it’s a fish -Science & Nature,Who invented the smallpox vaccine?,Edward Jenner,General,What do you take dramamine for,Motion sickness, Geography,Where is the bridge of San Luis Rey?,Peru -General,Fear of haircuts is called,Tonsurephobia,General,What is the nickname of the Derbyshire One-Day Cricket team?,Falcons,General,"If yoU.S.aw the word 'sag' on an Indian menu, which vegetable would it signify",Spinach -General,Which star of films such as 'The Philadelphia Story' died in 1997,James stewart,General,The Audi car company created by August Horch – means what Latin,Bear,General,It’s a flock of sheep what's a group of owls called,Parliament -General,Which English King had the most legitimate children (18),Edward I,General,What vegetable did Gregor Mendel use in his studies,Peas,General,What American state is the Badger state,Wisconsin -General,Photophobia is fear of ______,Light,General,Ireland and New Zealand are the only countries that lack what,Native Snakes,Geography,Into what sea does the Mackenzie River flow,Beaufort -General,Which country made the worlds first feature film in 1906,Australia Story of Kelly gang,General,Who introduced the first designer collection for men,Pierre cardin,General,What was the title of William Golding's book about boys marooned on an island in the Pacific,Lord of the flies -Science & Nature,From 1979 until 2000 the most distant planet from the earth was _______.,Neptune, History & Holidays,Which country was previously known as the Dutch East Indies? ,Indonesia ,General,Danes Overst Senap Spanish Marques de Marina what in UK,Colonel Mustard Cluedo -General,What's the world's largest Gulf?,Gulf of mexico,General,What geological era preceeded the cenozoic,Mesozoic,People & Places,By what name is Arthur Leech better known as?,Cary Grant -General,"What do the pig, horse and rat have in common",Chinese astrology,General,What do the initials U.F.O stand for,Unidentified flying object,General,Who did Fess Parker play in on TV 1964,Daniel Boone -Entertainment,Where does Yogi Bear Live?,Jellystone Park,General,Branch of medicine dealing with the care of old people,Geriatrics,General,Who left three pt boat tie clasps on top of the yukon's mount kennedy in 1965,Robert kennedy -General,What was unusual about Tyrell's car in the 1976 Spanish G Prix,Six Wheels,General,What's the longest tendon in the body,Achilles tendon,Music,Who Told Us That It's Only Make Believe In 1978,Child -General,"Mr & Mrs Dursley Of No. 4 Privet Drive,Were Proud To Say That They Were Perfectly Normal Is the opening passage to which famous book?",Harry Potter & The Philosphers Stone,General,In Tv & Film The Character Of “ Selena Kyle ” Is More Commonly Known As Whom?,Catwoman,Music,"Which singer was Michael Jacksons massive hit ""Ben"" Originally intended for",Donny Osmond -General,Who was murdered in Bohemia in 929,Good King Wenceslas,General,What would you do with a soft cock,Wear it - it’s a wig,General,What river winds through Hell's Canyon,Snake -General,Nosocomephobia is the fear of,Hospitals, History & Holidays,21 October 1805 Is The Anniversary Of Which Famous Battle ,Trafalgar ,General,How many sides does a heptagon have,Seven -General,Where did the British Brown Bess musket get its name,Thin line of uniform brown rust,General,Who denied jesus three times,Peter,General,What was the name of the Akla-Seltzer boy?,Speedy -General,Which actress said 'Sometimes I'm so sweet even l can't stand it',Julie andrews,Sports & Leisure,Which Swimming Stroke Was Introduced Into Competition In 1952 ,Butterfly ,General,In 1919 in the USA you could be jailed for doing what in Public,Sneezing -General,What sort of animal is a fennec,Desert Fox,Sports & Leisure,What Is The Weight Of A Cricket Ball In Ounces ,5.5 - 5.75 Ounces ,General,Which Test match team plays home Cricket matches at the Kensington Oval?,West Indies -General,In what country did bongo drums originate,Cuba,Science & Nature," 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,Music,What Was The Beatles 8 th Album Released On 1 st June 1967?,Sgt Peppers Lonely Hearts Club Band -General,Phil Collins won an Oscar for Best Original Song in 2000. In which film,Tarzan,Music,Who Claimed To Have Friday On My Mind,The Easybeats,General,Which ovine expression is used to describe a wishful amorous glance,Sheep's eyes -General,India became independent in what year,1947,General,There are 16 bottles of Champagne in a what,Balthazar,General,"Who was known as ""the yankee clipper""",Joe dimaggio -Music,What Is Paul McCartneys Middle Name,Paul His First Name Is James,General,In WW2 what came between Sword and Gold,Juno - D Day Beaches,General,"In Greek mythology, who turned arachne into a spider",Athena -Sports & Leisure,Which English Footballer Was Sent Off In The 1998 World Cup ,David Beckham , Geography,In what country is the highest point in South America?,Argentina,General,A male goose,Gander -General,"In the tv series 'leave it to beaver', what was the mother's name",June, History & Holidays,He led 900 followers in a mass suicide in 1979.,Jim Jones,Music,What Was The First Uk Hit For Gladys Knight And The Pips,Take Me To Your Arms And Love Me -General,What Everyday Object Was Invented By Don Wetzel In 1968,The Cash Machine,Music,Which Singer Was Born In Canada And Has The Real Name Eileen Edwards?,Shania Twain,General,Whats the largest man made structure visable from space,Great wall of china -General,What album got arrowsmith a gold lp in 1975,Get your wings,Science & Nature,"This dry, warm wind flows eastward down the slopes of the Rocky Mountains.",Chinook,General,Bardolatry is an excessive admiration for which writer,William shakespeare -General,What order of insects contains the most species,Beetles,General,Australians call someone from where a cockroach,New South Wales,General,Michael Dumble-Smith became famous as who,Michael Crawford -General,What is the slogan for 'a sprinkle a day helps keep odour away',Shower to, Geography,Where is Beacon Street?,Boston,Entertainment,Who is the lead singer of limp bizkit?,Fred Durst -Geography,How Many Times Was Tower Bridge Raised In 1990 ,460 Times ,Science & Nature, The skin of baby __________ is so transparent that one can actually see the milk flowing into them as they nurse.,Mice,General,"At andrew Jackson's funeral in 1845, his pet parrot had to be removed. Why",Because it was swearing -General,In Greek mythology who was the Goddess of Chastity,Artemis – sister Apollo,General,What year did George Washington become U.S. president,1789,General,What's the difference between sleeping gorillas and men,Gorillas don’t snore - History & Holidays,Christmas Island Is A Territory Belonging To Which Country ,Australia ,General,The Adi Granth is the Holy Book of which religion,Sikh,General,What is the covering on the tip of a shoelace,Iglet -Science & Nature,What Is A Pencils Lead made From ,Graphite ,General,Which state has the only royal palace in the United States?,Hawaii,General,Selachophobia Is The Morbid Fear Of Which Highly Dangerous Creatures?,Sharks -General,What common sign derived from the Medici family crest,Pawnbrokers balls,General,What term is given to the seasonal movement of animals especially birds and fish,Migration,General,Only 30% of women do what,Swallow -Toys & Games,Where on your body would you wear flippers,Feet,General,Reuben James was the first what 31 Oct 1941,US warship sunk by submarine in WW2,General,Which Indian tribe is mainly associated with the state of Florida,Seminole -General,What U.S. state was once an independent republic,Texas,General,What is exalting one's country above all others,Nationalism,General,What was the most significant battle fought on Belgian soil in 1815,The battle of waterloo battle of waterloo -Food & Drink,Where was Budweiser first brewed?,St. Louis,Science & Nature,"Which Mammel And Scavenger Has Brown, Spotted And Striped Varieties? ",The Hyena , History & Holidays,"What show did the catch phrase, 'Yeah, That's The Ticket' originate on? ",Saturday Night Live  -General,In Massachusetts its illegal to have what in the bathroom,A lightswitch,General,What is the term given to mammals which have hands that can grip,Primates,General,In ancient India what was cut off adulterers,Noses - and they tried to hide it -General,In what game do countries play for the Venice cup,Contract Bridge,General,Choroti women are expected to do what during sex,Spit in their partners face,General,On what river is rome built,Tiber -General,What is an onychophagist,A nail biter, History & Holidays,Which Famous Person Of Film And TV Wrote The Autobiography Tall Dark And Gruesome ,Christopher Lee ,General,"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 -General,What novel centres on the romances of Ursula and Gudrun Brangwen,Women in love,General,On average what one action makes a man live 13 years longer,Castration,General,Athens 1896 Paris 1900 St Louis 1904 London 1908 what next,Stockholm 1912 – Olympic venues -General,"What's the common name for the disease that doctors call ""rubella""",German measles,General,"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, History & Holidays,Who was Henry VIII's second wife?,Anne Boleyn -Geography,"For centuries, Spain's _________________ has been and still is one of the world's largest.",Fishing fleet,General,In 1974 Last Americans evacuated from,Saigon,General,The Arabs call it Al-Maghrib what do we call it,Morocco -General,In Israel what unexpected item is certified Kosher,Postage Stamps,General,Who was the 1990 wimbledon women's singles runner-up,Zina garrison,General,"In World War II, what was ""Operation Torch""",Allied invasion of north africa -General,In Albany New York what's it illegal to do in the streets,Play Golf,Music,Although Often Close What Was The Only No.1 Madness Ever Achieved,House Of Fun,Science & Nature,Cirrus and Cumulus are types of what? ,Cloud  -General,What was the real name of the gangster known as pretty boy,Charles floyd,General,Which English Kings armour has the biggest codpiece,Henry 8,General,Who bought manattan island for the equivalent of 24 dollars,Peter minuit -General,"In 'les miserables', jean valjean's criminal number is the same as what character in 'the simpsons'",Sideshow bob,General,German film of the 1920s starred Max Schreck as a vampire,Nosferatu,Geography,Name the sea north of Alaska.,Beaufort -General,Name the American pilot shot down over Russia in 1960,Francis Garry Powers,General,"Who said ""The internet is a good way to get on the net""",Republican candidate Bob Dole,General,A dime has how many ridges around the edge,118 -Music,Both Roxette & Sheena Easton Had A Hit With A Song Called What,You Got The Look,Art & Literature,"A soft, subdued color; a drawing stick made of ground pigments, chalk, and gum water. ",Pastel,General,Baseball: the florida ______,Marlins -General,"Germany's allies in WW II were Japan, Italy, Hungary, Bulgaria, Finland, Libya, and _________",Romania,General,What are a Boomer and a Blue Flier,Adult Male – Female Kangaroo, Geography,What is the basic unit of currency for Equatorial Guinea ?,Franc -General,"The prefix tetra, used in such words as tetrach, tetrapod, & tetrameter, means what",Four,General,In Elko Nevada sex without what is illegal,Condoms,General,What said I'm never through with a girl till I've had her three ways,John F Kennedy -Food & Drink,What European Country Is The consumer Of The Most Ice Cream ,Sweden , Language,"Many Meanings: Fuel, vapor, flattulence, helium. What is it",Gas,General,What would you expect in a Japanese No Pan Kissa restaurant,Mirror floor knickerless women -General,Britain's oldest existing Trade Union was founded in 1747 what trade,Brushmakers and General Workers,General,What scientist is credited with the discovery that there are galaxies beyond our milky way,Edwin hubble,General,Willkie what is the principal tributary of the wabash river,White river -General,What does sputnik mean,Fellow traveller,General,What were the names of the four main characters of the Facts of Life?,Jo Blair Natalie Tootie,General,What actor played the Wizard of Oz,Frank morgan -General,What is the sum of all the angles in a square? (in degrees),360,General,Who married Marie Louise of Austria because he wanted an heir,Napoleon,General,"If you ordered 'pamplemousse' in a French restaurant, what would you be served",Grapefruit -General,One who tells fortunes by the stars is a(n) __________.,Astrologer,Art & Literature,Which Antipodean Opera Singer Sung At Prince Charles Wedding To Lady Diana Spencer ,Kiri Te Kanawa ,General,Doraphobia is a fear of ______,Fur -General,"What's ""birth control for roaches""",Black flag,General,What was the first u.s consumer product sold in the soviet union,Pepsi cola,General,What animal has red patches on its rear,Mandrill -Music,Which White Blues Singer Had Attended The University Of Texas In The Early 60's And Been Voted The Ugliest Man On Campus,Janis Joplin,General,Which Group Was Banned From The Official Washington 4th July Celebrations In 1983 Because Secretary For The Interior Said They Would Attract An Undesirable Element,The Beach Boys,Music,Patricia Andrzejewski Is The Real Name Of Which Singer,Pat Benatar -Sports & Leisure,What was football player Dick Lane's nickname,Night train,General,"Pepsin, lactase and amylase are types of what",Enzymes,Science & Nature,What Is Represented By The Blue And White Quartered Circle Of The BMW Logo ,A Spinning Propellor  -General,What was the first name of the cartoon character Mr Magoo,Quincy,General,The White House has 13092 of them - what,Knives forks and spoons,General,What year saw the launch of Sputnik I,1957 -Food & Drink,Sweetbread is derived from this organ.,Pancreas,Music,"Which Female Singer Used To Be A Presenter On ""Razzamatazz""",Lisa Stansfield,Entertainment,Who appeared solo at the Woodstock festival after leaving 'The Lovin' Spoonful'?,John Sebastian -General,Grover Cleveland is the only United States president to have been married where?,White House,Science & Nature,What Causes Hypoglycemia ,Low Blood Sugar ,General,"Who painted ""Resurrection: Cookham""",Stanley spencer -General,Tall revolving wheel at fairgrounds,Ferris,General,Second city: Cheyenne (state),Casper, History & Holidays,"Nicknamed the Godfather Of Soul, who died on Christmas Day 2006 ",James Brown  -General,"Which game is played at 12 a-side for women, but at 10 a-side for men",Lacrosse,General,Who produced an electric bicycle called a Zike in 1992,Sir clive sinclair,Science & Nature,Which Company Produced The Worlds First Commercial Jet Air Liner ,De Havilland (The Comet)  -General,Name actor called The voice of Canada - had 1964 hit Ringo,Lorne Green,General,The minnow is the smallest member of what fish family,Carp,General,What was RJ Mitchell's contribution to WW2,Designed the Spitfire -General,"Havilland what does dean martin's california license plate say, on his stutz blackhawk",Drunky,General,In which theater was abe lincoln shot,Ford's theater, History & Holidays,"In the 15th century, what was the war between the houses of Lancaster and York?",War of the Roses -General,What is the fear of tapeworms known as,Taeniophobia,Entertainment,"This electronic instrument's creator was surnamed Moog, and his models are worth a fortune! Other brands include Roland, Korg, and Casio.",Synthesizer,General,In Romeo and Juliet what day is Juliet's Birthday,31st June -General,What common pests does New Zealand not have,Squirrels,General,In which country was the Auschwitz death camp located,Poland, Geography,Bridgetown is the capital of ______?,Barbados -General,Who won the best actress Oscar 1959 Room at the Top,Simone Signoret,General,What is the fear of long waits known as,Macrophobia,General,What fruit can be Red Black or White,Currants -General,A Scotsman tosses his caber - what does caber literally mean,Pole,Music,Which British group were formed by former members of the Housemartins?,The Beautiful South,General,Who sang about Angel in a Centrefold,J Geils Band -General,Who was the classical composer of the tune which was used for the 'Alfred Hitchcock Presents' TV show?,Gounod,Toys & Games,This game of chance was originally called 'Beano'.,Bingo,Food & Drink,The Name Of Which Dish Literally Translated Means 'Outside The Work' ,Hors d'oeuvre  - History & Holidays,Who released an album called 'Ghost in the Machine' ,The Police ,General,What Is The Last Name Of The Character Compo In The Tv Sit-Com Last Of The Summer Wine?,Simmonite,General,"Who wrote the novel that the play ""Les Miserables"" is based on?",Victor Hugo -General,In cookery what happens to food served farci,It's stuffed,General,What year was the first world series game played,1903,General,Who spun straw into gold,Rumplestiltskin -General,What musical play - find a character called Magnolia Hawks,Showboat,General,What is the french for hospital,Hotel-dieu,Music,"In The NME ReadersPoll, Who Was Voted The Best UK Male Singer For 7 Consecutive Years In The 1960's",Cliff Richard -General,Which dormant volcano is the highest peak in Japan,Fujiyama,General,In which German city was the composer Pachelbel born,Nuremberg,General,In Switzerland what device is illegal on Sundays,Lawnmower -Music,What Did Tom Petty's Band Break,Hearts,General,Which modern Irish writer's novels include Dublin Four and Evening Class,Maeve binchy,Science & Nature,What Do You Call A 'Medicine' That Has No Physical Effect ,A Placebo  -General,What is the currency of Turkey,Lira,General,What is the largest lizard,Komodo dragon,General,In The Hobbit what colour is Bilbo's door,Green -Sports & Leisure,How Many People In A Tug Of War Team ,8 People ,Science & Nature,"Which Small Rodent , Highly Valued For It's Fine , Silky Fur, Lives Almost Exclusively High In The Andes ",Chinchilla ,General,Who was Secretary General of the UN from 1946 to 1952,Trigvye lie -General,"Often, a vampire's pallor.",Pale,General,"In common: labrador duck, passenger pigeon, dodo, heath hen, carolina",Extinct birds,Science & Nature,What is the tibia more commonly known as?,Shin bone - History & Holidays,"In 1953 Science fiction author L.Ron Hubbard founded which cult religion, one of who's prominent modern day followers is John Travolta ",Scientology ,General,What bird is sacred in Peru,Condor,Music,Who Was The Lead Singer Of Haircut 100,Nick Hayward -General,"Who wrote ""Wuthering Heights""",Emily bronte,General,What is the capital of Sicily,Palermo,General,The Gloucester E 28/39 first flew in 1941 - what was unusual,Whittle Jet Engine -Sports & Leisure,Football: The San Diego ______?,Chargers,General,Fishy short story also known as Creation Took Eight Days,Goldfish bowl,General,What is the flower that stands for: charming,Cluster of musk roses -General,Aesculus is the Latin name of what type of tree,Horse Chestnut,Entertainment,Who was the director of 'Terminator' and 'Titanic'?,James Cameron,General,Dave Rowntree Is The Drummer With Which Band?,Blur -General,What nationality was the explorer Vitus Bering,Danish,General,Who is Britains best known former kindergarten teacher,Diana,Music,Deniece Williams Wanted To Hear It for Who,The Boy -General,"Who recorded the 1996 alburn, ""Older""",George michael,General,"Countries of the world:north eastern Africa, the capital is Djibouti",French somaliland, Geography,What is the basic unit of currency for Barbados ?,Dollar -Sports & Leisure,What Distance Is Covered In One Circuit Of A Modern Outdoor Running Track? ( In Meters) ,400 Metres ,General,The Hindu trinity are Shiva Vishnu and who,Brahma,Music,Who Wrote Most Of The Pretenders Hits,Chrissie Hynde -General,How many books are there in a trilogy,Three,General,Where would you find you columella - or what is it,Space between nostrils,General,The study of religion is ________.,Theology - Geography,What is the capital of Luxembourg?,Luxembourg,General,In Oklahoma by law baseball teams cannot do what,Hit ball over fence out of ground,General,In Oklahoma it is illegal to bite some else's what,Hamburger -General,This organ is a small pouch that stores bile,Gall bladder, Geography,Which U.S. city is known as the Biggest Little City in the World?,Reno,General,"Which group sang the song ""Rollin""?",Limp Bizkit -Geography,In which country is Cusco,Peru, History & Holidays,How old was John F. Kennedy when he became president?,Forty three,General,How many axles does an 18 wheeler truck have?,5 -General,What animal is incapable of making a sound that will echo?,Duck,General,In Massachusetts by law bars cannot offer what,Happy hours,General,In the international code of signals what does Oscar signify,Man overboard -General,Who wrote a series of novels about the Ballentines of Africa,Wilber Smith,General,In Poland if you asked for a piwo what would you get,A Beer,General,What Jewish festival takes place near Easter? ,Passover  -Music,What Was A Big Hit For Cameo In 1986,Word Up,Entertainment,"What was Sir Alec Guinness's role in ""Star Wars""?",Obi-Wan Kenobi,General,Prince Adam was the secret identity of which Super hero?,He-Man -Toys & Games,"Which game usually begins with, ""Is it animal, vegetable, or mineral""",20 questions,General,What was Joseph Pujol - La Petomanes stage act,He farted – imitating music etc,General,Dark edible fruit of the bramble,Blackberry -General,"The highest waterfall in the world, Angel Falls in Venezuela, has a total drop of how many feet",3121,General,What's the capital of Sweden,Stockholm,General,"Who wrote the novel ""Finnegan's Wake""",James joyce -General,"Got to do with it Who created the famed butler ""Jeeves""",Pg wodehouse,General,Who played dr. frankenfurter in the pop-culture film 'rocky horror picture show,Tim curry,General,"A tagged bird of this species flew the greatest known distance for a bird. (22,500 km)",Arctic tern - History & Holidays,*The war in Vietnam ended with the fall of Saigon in what year?* ,1975 ,Music,What Did Gladys Knight And The Pips Catch In 1976,Midnight Train To Georgia,General,Who wrote April is the cruellest month in poem The Wasteland,T S Elliot -General,Name the Teletubbies?,"Laa Laa, Tinky Winky, Dipsy and Po", Geography,What country borders Sudan to the North?,Egypt,General,Execute by strangulation with a thin wire,Garrotte -General,"In the movie ""Stand By Me"", what did Gordy, Chris, Vern and Teddy set out to find?",A Body,General,In Greek legend who turned men into swine,Circe,Science & Nature,What is a young hare called? ,Leveret  -General,Pantophobia is the fear of,Fears,Technology & Video Games,What is your character's name in the 'Legend of Zelda' series? ,Link,General,"What Everyday Item Was Invented By ""Whitcomb L Judson"" In 1893",The Zip -Music,"Who Sang ""I can Drive 55"" From The Film ""Back To The Future 2""",Sammy Hagar,General,What element was named after the Greek word for green,Chlorine, History & Holidays,"At the time of Julius Caesar, who was the ruler of Egypt ?",Cleopatra -Religion & Mythology,How many times did Peter deny Jesus?,Three,General,"Who said ""men are creatures with two legs and 8 hands""",Jayne Mansfield,General,Which concert hall is now the home of the Halle orchestra,Bridgewater hall -General,Ariel is a satellite of which planet in the solar system,Uranus,General,Bill haley sings 'see you later ______ ',Alligator,Music,Which Group Started A Bumper Crop Of Singles In 1986 With System Addict,Five Star -Music,"Name The Band: Robert Plant, Jimmy Page, John Paul Jones, John Bonham",Led Zeppelin,Music,"Rock & Roll Revival Band ""Sha Na Na"" Appeared As Johnny Casino & The Gamblers In Which Film",Grease,Science & Nature,"The Average Woman Has 7 Pints Of Blood, How Much Has The Average Man ",12 Pints  -Geography,In What Year Was The First Propeller Driven Atlantic Crossing ,1845 ,People & Places,Who Was The First Director General Of The BBC ,Marmaduke Hussey ,General,The Russian composer Alexander Borodin had what other job,Chemistry Professor St Petersburg -General,What did the Manhattan project set out to develop in 1941,Atomic bomb,Entertainment,What is Dennis the Menace's last name,Mitchell,General,What is the SI unit of power equal to 1.341 horsepower,Kilowatt -Music,"A Decade Later He Found A New Dawn But Who Had A No.5 Hit ""Bless You"" In 1961",Tony Orlando,General,"In Greek mythology, who was condemned to bearing the world on his shoulders for trying to storm the heavens",Atlas,General,Carnegie Melon University only one offers a degree in what,Bagpiping -General,What is the most common surname in sweden,Johanssen,General,What would a car have if its specification included A.B.S.,Anti-lock braking system,General,Who has the most personalised licence plates,Illinois -General,Which American Vice President was the only one to serve two full terms as President?,Thomas Jefferson,Religion & Mythology,How many animals of each kind did Moses take onto the ark?,None (It Was Noah Not Moses),General,Who shot andy warhol,Valeri solanis -General,Rap group 2 Live Crew tells it their way and gets banned in,Florida,General,Person who throws gloom over social enjoyment,Party-pooper,General,"A row of windows in the upper part of a wall, especially in a church, to admit light below. ",Clerestory -General,What outfit merged with Time Warner in 1996 to form the world's largest entertainment company,Turner broadcasting systems,General,Citrus Grandis is the Latin name of which fruit,Grapefruit,Music,What Song Did Abba Write For The Eurovision Song Contest In 1973,Ring Ring -Music,Which Playing Card Was A Big Hit With Motorhead,The Ace Of Spades,Music,"What's The Connection Between Chrissie Hynde, & Robert Palmer",UB 40,General,In what language was The Communist Manifesto written,German -General,What are dolly parton's working hours,9 to 5, History & Holidays,Jadis the White Witch is the villain in which children's book ,The Lion the Witch and the Wardrobe ,General,Who was the first wife of zeus,Metis -Geography,___________ is the only country in the Middle East that does not have a desert.,Lebanon,General,"In Greek mythology, who did jocasta marry",Oedipus,General,Apart from man what is New Zealand's only native mammals,Bats - Geography,What is the basic unit of currency for Cameroon ?,Franc,General,Programming language named after 17th cent French mathematician,Pascal - Blaise Pascal, History & Holidays,What is the the state capital of oklahoma ,Oklahoma city  -General,Name the first cartoon character made into a parade balloon,Felix the Cat,Music,Who Directed A Chorus Line,Richard Attenborough,Food & Drink,"Which alcoholic drink would you need to make the cocktail Tom Collins? Vodka, Whiskey or Gin? ",Gin  -Science & Nature, A __________ can swallow a rabbit whole and may eat as many as 150 mice in a 6_month period.,Python,General,What Utah city became the 37th in the U.S. to reach one million in population,Salt lake city,General,In the Dr Dolittle stories what type of creature was Dab-Dab,Duck -General,What committee eventually developed a standard for the 'c' programming language,Ansi,General,What was Angela's son's name in Who's the Boss?,Jonathon,General,Which Film Won The Oscar For Best Film The Year Prince Charles Married Lady Diana Spencer,Chariots Of Fire -General,Frodo Baggins was the first to enter Britain using what,Pet Passport he was a dog,General,"Who recorded the album ""London Calling"" in 1975",Clash,Music,"Which Album Was The Hugely Successful ""Insomnia"" Taken From",Faithless / Reverence -General,What is the capital of the state of Minnesota,St. paul,General,"What is the ""rathaus"" in frankfurt",City hall,Music,Paul Young Was Once A Member Of Which Band Was It The Q Tips Or The Q Jumpers,The Q Tips -General,"A grave, processional court dance popular in the sixteenth and seventeenth centuries.",Pavane,Geography,Name a country which has the same name as a bird. ,Turkey ,Geography,What is the capital of Chad,N'djamena -General,In Shakespeare's play who was the wife of Othello,Desdemona,Science & Nature,What Was The Name Of The First Ship To Sail Around The World ,The Victoria Magellans Ship ,General,Which character did not appear in the cartoon Star Trek,Chekov -Music,Which Andrew Lloyd Webber musical is set in the Troubles Of Belfast in the early 1970's?,The Beautiful Game,General,"Refusal of a group to trade or associate with another group, an individual, an organization, or a nation",Boycott, History & Holidays,In which battle was George A. Custer defeated?,Battle of Little Bighorn - History & Holidays,*What movie earned Steven Spielberg his first hit in 1975?* ,Close Encounters ,Food & Drink,To Which Family Do The Cabbage And Cauliflower Belong ,Brassicas ,Food & Drink,"During the reign of Charles the II, what 'black enemy of sleep and copulation' was called a magnet for political dissent by the King and was condemned as a den of dalliance by Puritans? ",Coffee houses  -General,Who married prince albert of saxe-coburg-gotha,Queen victoria,General,What arabian peninsula nations recently merged under communist leadership?,Yemen,General,Who conquered the Matterhorn in 1865?,Edward Whymper -Tech & Video Games,How many buttons (excluding the control pad) did the original NES controller have? ,4,General,What is the only continent without reptiles or snakes,Antarctica,Music,"Who Had A Hit With ""You Give Love A Bad Name""",Bon Jovi -Music,Which Bands Career Was Boosted By An MTV Appearance Without Their Make Up,Kiss,General,Where is the blarney stone,Blarney castle,General,At what farm does Aunt Ada Doom go on about nasty woodshed,Cold Comfort Farm -Geography,___________ has official state neckwear _ the bolo tie.,Arizona,General,Who is the roman god amor's mother,Venus,Sports & Leisure,Which Snooker Player Is Nicknamed The Rocket? ,Ronnie O'Sullivan  -General,What country has a regiment of bicycle mounted soldiers,Switzerland,General,What is the flower that stands for: disappointment,Carolina syringa,General,Who was the male star in the 1967 film Bonnie & Clyde,Warren beatty -Music,In which Beatles song does the singer feel 2 foot small?,You've Got To Hide Your Love Away,General,What city is closest to Copacabana beach,Rio de Janeiro,Religion & Mythology,Apollo was the Greek god of ______?,Prophecy and archery -Sports & Leisure,Where were the 1896 Olympics held ?,"Athens, Greece",General,Which Country Has The Highest Populatiuon Of Broadband Internet Users In The World,Iceland,General,Fredrick Sanger discovered which medical life saver,Insulin -Religion & Mythology,Which Titan had snakes for hair?,Medusa,General,What Was The Name Of The Album Released By Michael Jackson In 2001,Invincible,General,What group of animals would be in a clowder,Cats -Science & Nature,"Excluding the sun, what star is closest to the earth?",Proxima Centauri (aka Alpha Centauri),General,What is the Capital of: Hungary,Budapest,General,Collective nouns - A parcel of what,Hinds -General,"What's the international radio code word for the letter ""V""",Victor,General,What metal has the chemical symbol al,Aluminium,Music,Which Record Took Madonna To No.1 At The Start Of The Decade,Vogue -General,What is an organism called that lives on or in a host animal,Parasite,General,Who directed the 1971 film Macbeth,Roman polanski,General,What is the sum of 47b + 96b,143b -Art & Literature,What was H.G Wells' first novel?,The Time Machine,General,What is litmus derived from,Lichens,General,What was punky brewster's best friends name?,Cherry -Toys & Games,"These are the two highest valued letters in ""Scrabble"". ""Q"" and _____.",Z,General,Smiths Bon-Bons changed their name to what after 1840,Christmas Crackers,General,Joseph Gayette invented it in 1857 to prevent piles - what,Toilet Paper -General,Harvard University was originally called what,Cambridge Harvard gave 400 books,General,What is 'honcho' in english,Squad leader,General,"June 1988 who's on covers Time, Life, People, and Sports Illustrated",Mike Tyson -Religion & Mythology,"What does the ""touch of Midas"" turn everything into ?",Gold,General,U.S. Captials - Iowa,Des Moines,General,"From Which Musical Does The Song ""You'll Never Walk Alone"" Come From",Carousel -Music,Marvin Lee Aday Is The Real Name Of Which Well Known Singer,Meatloaf,General,What was the name of the cab company in Taxi,Sunshine cabs,People & Places,Albert Einstein Was Born On The 14 th March 1879 In Germany He Was Educated In Austria And Then Eventually Moved To Switzerland But In Which Country Did He Die ,America  -General,"Who created Gomez, Mortia and Uncle Fester as a cartoon",Charles Adams,General,What medal shows 3 naked men hands on each others shoulders,Nobel Peace Prize,Technology & Video Games,What are names of the two brothers in the Double Dragon games? ,Billy and Jimmy -General,Hitchcock appears in a newspaper in Lifeboat who wrote book,John Steinbeck,General,What is the Ishihara test designed to detect,Colour blindness,General,What is the highest point in China,Mount everest mt everest mt. everest -General,"In what substance are eggs rich, which causes silver to tarnish",Sulphur,General,What are scutes,Snakes belly scales,Sports & Leisure,What article of clothing was banned from Ascot in 1971? ,Hot Pants  -General,What is the capital of italy,Rome,General,Who named the st lawrence river,Jacques cartier,General,What was the former name for the African country of Malawi,Nyasaland -Food & Drink,Which Food Stuff Has A Name Which Translates Into English As 'On A Skewer'? ,Kebab ,General,"The song ""Some Day My Prince Will Come"" was introduced in the 1937 Disney movie ________________________ ",Snow white and the Seven Dwarfs,General,Rose O'Neil created the Kewpie doll where is it signed,Sole of Foot - History & Holidays,"Where did Churchill, Roosevelt and Stalin meet in 1945?",Yalta, History & Holidays,"What was the destination of the ship 'Mary Celeste' on it's final voyage November 1872, where it should never arrive ?",Genoa,General,In the animal kingdom what creatures are in the order Chiroptera,Bats -General,Where would you find A Wall The white line and Bars,Horses foot, History & Holidays,Where did the most famous encirclement of the Nazi troops during WWII take place?,Stalingrad,General,What is the Capital of: Armenia,Yerevan -Science & Nature,What Is Botany The Study Of ,Plants ,General,What is the approximate temperature on the planet Pluto,Minus 230 degrees celsius,General,List the 1st & last names of all 4 Sweathogs on Welcome Back Kotter?,"Vinnie Barbarino,Freddie Washington,Arnold Horshack,and Juan Epstein" -General,Every photograph of an american atomic bomb detonation was taken by who,Harold edgerton,General,Who wrote the opera 'i pagliacci',Ruggiero leoncavallo,General,"What does the latin word ""mensa"" mean",Table -General,Which religion's holiest shrine's are in the Ise Shima National Park near Osaka,Shinto,General,"On an analogue clock, what number faces 4",10,Sports & Leisure,What was football player Dick Lane's nickname?,Night Train -General,"Which sport uses ""stones"" and a ""house""",Curling,Science & Nature," Depending on the geographic region, about 30 to 60 percent of all animals brought in to animal shelters in the United States are __________",Euthanized,Music,What Was Britney Spears Debut Single Which Shot To No.1,Baby One More Time -General,Mincing Lane in London is traditionally home of what trade,Tea, Geography,What country does the island of Mykonos belong to?,Greece,General,What is a heavenly body moving under the attraction of the sun and consisting of a nucleus and a tail,Comet -General,The de beers group of companies controls more than 80% of the world's supply of ______,Rough diamonds,Food & Drink,What type of food is Dorset Blue Vinney? ,Cheese ,General,Where is the worlds largest bullfighting ring,Mexico City -General,"Who was cremated on the banks of the Ganges river on January 31, 1948",Mahatma gandhi,Entertainment,Who was John Wayne's musical co-star in true grit?,Glen Campbell,General,If you were drinking Red Stripe lager what country are you in,Jamaica -General,Bill Gates dropped out of which of educational institution,Harvard,General,In Japan what is an obi,A wide Sash worn like a belt,Science & Nature,What is the biological term for the voice box?,Larynx -General,What colour are shelled pistachio nuts,Green,General,What colour is the cross on the Swedish national flag,Yellow,General,Name of the German WWII military code,Enigma -General,When was the quadruplex telegraph invented,1864,Geography,The cities of Cairo in Egypt and Fez in Morroco are generally accepted to have the oldest of what type of institution in the world? ,University ,General,Twinkies originally contained what flavoured cream,Banana – Changed ww2 - no bananas -General,Who would use a brannock or what for,Measure foot shoes,General,Which Greek astronomer wrote the Almagest,Ptolomy,General,Madrid missouri who lived at 1313 mockingbird lane,Munsters -General,What is the name of a plant that turns to keep facing the sun,Heliotrope,General,In Islam what is the fourth piller of wisdom - there's 5 in total,Fasting in Ramadan,General,Which vegetable is used if a dish is described as 'a la Bretonne',Haricot beans -General,Which acid is found in unripe apples and other fruit,Malic acid, Geography,How many countries border the black sea?,"Six - Turkey, Georgia, Russia, Ukraine, Romania and Bulgaria",General,What did the chinese not refer to themselves as,Silk people -Music,"""Love Affair"" Had Three Top 10 Hits In 1968 Name 2 Of Them","Everlasting Love, Rainbow Valley, A Day Without Love",General,Harry Alan Robert Stewart made redundant Britain 1960s Job,Official Hangman,General,Mythophobia is the fear of,Myths stories false statements -General,In Kansas its illegal to eat what on Sunday,Snakes,General,What are the Twin Cities,Minneapolis and St Paul,General,International dialling codes what country is 86,China -General,What sport was banned in England in 1849,Cockfighting,General,"Which English king married Berengaria of Navarre, who never set foot on English soil",Richard the first,General,What is the English statute of 1689 guaranteeing the rights & liberty of the individual subject,Bill of rights -General,Who is the author of Jude the Obscure,Thomas hardy,General,"Who sang the theme for the James Bond film, ""You Only Live Twice""",Nancy,Food & Drink,Which cocktail would you find in a toolbox? ,Screwdriver  -General,"Which Cartoon Character Has An Arch Enemy Called ""Hugo A Go Go""",Batfink,General,Who invented the 'bunsen burner',Robert bunsen,General,Who did gawain accuse of sleeping with guinevere,Sir lancelot -General,Which award has the words for valour on it,Victoria Cross,General,Plastic wrapping material in sheets containing numerous air filled bladders,Bubble wrap,General,What english writer said 'give me a decent bottle of poison and i'll construct the perfect crime'|agatha christie,Agatha christie -General,Lucille Le Sueur became famous as who,Joan Crawford,General,Agricultural science concerning methods of soil management & crop production,Agronomy,General,Until computers replaced it who would use a Bloggoscope,OS Map Makers from Aerial photos -General,What is the most popular last name in France,Martin,General,What is the Capital of: Eritrea,Asmara,General,What planet in the solar system is the largest,Jupiter - History & Holidays,"""How Many gifts Would you receive if you received all the gifts in the song """"The 12 Days Of Christmas"""") Is It 196, 296, 364, 398 "" ",364 ,General,An angle greater than 180 degrees & less than 360 degrees is a(n) ________ angle.,Reflex,General,What is a group of gorillas,Band -General,Which country had four kings called malcolm,Scotland,Music,"""A Little Time"" Was A Hit For ""The Beautiful South"" Or ""Some Kind Of Beautiful""",The Beautiful South,General,What does lacrimal fluid lubricate,Eyes -General,What was the maid's name in the tv series 'the brady bunch',Alice,General,"Erie, suez, panama etc",Canals,People & Places,In Which Couuntry Was The Playwright Tom Stoppard Born ,Czechoslovakia  - Geography,Where is the Machu Picchu?,Peru,General,Five tons are mined annually - five tons of what,Diamonds,General,"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 -General,"Directed by Milos Foreman, which film won the 1975 Oscar for Best Picture",One flew over the cuckoo's nest,General,What is the Capital of: Finland,Helsinki,General,What year did Theodore Roosevelt die,1919 -General,Which composer was nickname the Red Priest,Vivaldi,General,What Illness Is Caused By The Epstein Barr Virus,Glandular Fever, History & Holidays,Which 60's singing duo divorced after 11 years of marriage? ,Sonny and Cher  -Geography,Addis Ababa Is The Capital Of Which African Country ,Ethiopia ,General,Who was the first male host of 'entertainment tonight',Tom hallick, Geography,What is the capital of Denmark ?,Copenhagen -Science & Nature,What's the largest artery in the human body ,The aorta ,General,What countries brides get the most diamond engagement rings,Canada,Religion & Mythology,In what month is Christmas observed?,December -General,Who sang the title theme of the James Bond film A View to a Kill,Duran duran,General,Martin Luther King was the youngest recipient of what,Nobel peace prize,General,An artist supports his canvas on a(n) _________,Easel -General,Which beatle took up racing cars,George harrison,General,What is the name of the mountain range in North Africa,Atlas mountains,General,"Animals that once existed and exist no more, are called ______",Extinct -General,What song earned lionel richie his first grammy,Truly,General,Which 19th Century poet was known as 'The Bard of Rydal Mount',William wordsworth,Music,"Who Wrote ""Great Balls Of Fire"" , ""All Shook Up"" & ""Dont Be Cruel""",Otis Blackwell -General,What is a smew,A type of wild duck,Sports & Leisure,In which sport is the Canadian Wayne Gretzky an all time great? ,Ice Hockey ,General,Nairobi is the capital of ______,Kenya - History & Holidays,After who was America named?,Amerigo Vespucci,General,What do oak trees grow from?,Acorns,General,And which one comes second,Mayonnaise -General,"What is the Capital of: Congo ,Republic of the",Brazzaville, History & Holidays,Who Knocked Out Floyd Patterson To Win The World Heavyweight Boxing Title In 1962 ,Sonny Liston ,Music,What Was The Relation Of Karen Carpenter To Richard,Sister -Science & Nature,Who Invented the ball point Pen ,Laslo Biro ,General,Which characters are described as being three apples high,The Smurfs,Entertainment,"In the TV series 'The Fall Guy', who played Colt Seavers?",Lee Majors -General,With what is rainfall measured?,Ombrometer,General,Galena is the principal Lead ore which other element is combined with the metal to form Galena,Sulphur,Music,"Name The John Cougar Mellencamp Album That Featured The Hit Single ""Jack & Diane""",American Fool - Geography,Which is the most remote island in the southern atlantic ocean?,Bouvet Island,Food & Drink,What name is given to an illegal highly alcoholic Irish whiskey ,Poteen (pocheen) ,Music,What was always Elvis Presley’s closing number in his Las Vegas stage shows?,Can’t Help Falling in Love -General,"At which American University were four students shot dead , while protesting against the Vietnam War",Kent,Music,Who Had A Hit In 1987 With The Song Angel Eyes,Wet Wet Wet,General,How Did Henry Tate Owner Of The Tate Gallery In London Make His Fortune,Sugar (Tate & Lyle) -General,"Hermes, Symphony and Anik are all what",Com satellites,General,Who played the part of Cruella de Vil in the 1996 film '101 Dalmatians',Glenn close,General,"The Super Bowl, and never re-used the commercial?",Apple -General,"Directed by Sydney Pollack, which film won the 1985 Oscar for Best Picture",Out of africa,General,What is 'the helvetic confederation' in latin,Confederatio helvetica,General,The world heritage site Monticello was designed and lived in by whom?,Thomas Jefferson -Science & Nature,This small animal is trained to hunt rats and rabbits.,Ferret,General,What was originally called the Chinese gooseberry?,Kiwi,General,Who was the famous TV painter from the 80's?,Bob Ross -General,Stage who made her show business debut under the name of 'baby frances',Judy,General,"Israel Baline, born in Temum, Russia, on 1lth May 1898, became famous under what name",Irving berlin,General,Can you see Lenny Bruce E A Poe Karl Marx H G Wells etc,Sergeant Peppers -Music,Unknown Until the 60's Who Started Their Career With A Wartime Mining Disaster,"The Bee Gees, New York Mining Disaster",General,"The style of this school, founded in Germany by Walter Gropius in 1919, emphasizing simplicity, functionalism and craftsmanship. ",Bauhaus,General,Which cartoon character was originally called egghead,Elmer J Fudd -General,What is the chemical name for the mineral known as 'fool's gold',Iron sulphide,General,What counties national drink is called aizag pronounced I shag,Mongolian mares milk,General,What make was the first car with air conditioning,Packard -General,"A ""pigskin"" is another name for a(n) ________",Football,General,Scotopic people can do what,See in the dark,General,Which Former England Manager Was Born In Burnley Lancashire,Ron Greenwood -General,"Which French Atlantic port was the target of a raid on March 28th 1942, code-named 'Operation Chariot'",St nazaire,General,Tomika and Uyeshiba are the two main forms of what,Aikido,General,What was the second bridge built across the Thames?,Westminster Bridge -General,Which is the largest bird of prey native to England,Buzzard,General,What was Woody Allen's first film as writer/actor,What's New Pussycat,Science & Nature," The most venomous of all snakes, known as the Inland Taipan, has enough venom in one bite to kill more than 200,000 __________",Mice -People & Places,Which Politician Punched A Protestor Who Threw An Egg At Him During A Visit To Wales In 1991 ,John Prescott ,General,Who wrote the 1955 play Long Day's Journey into Night,Eugene o'neill, Geography,Which country would come first in an alphabetical list of countries?,Afghanistan -General,Superstition says the feathers of which bird shouldn't be used as house decorations,Peacock,General,In Minnesota it is illegal to wear what in bed,Nothing ie be naked,General,What element is represented by the chemical symbol pb,Lead -General,What was invented by Dr Albert Southwick in 1881,Electric chair,Geography,In which country is Loch Ness,Scotland,General,With whom was the first covenant of God,Adam & eve -General,The film Cleopatra was banned in Egypt in 1963 why,Liz Taylor Jewish convert,Music,In The Lou Bega Song “Mambo No.5” What Is The Name Of The 1st Girl Mentioned In The Song,"Angela, Pamela, Sandra, Rita",General,Daisy cooper was a housekeeper in what western,Laramie -General,Name the boat on which you can see Niagara Falls,Maid of the Mist,General,In Mesquite Texas its illegal for children to have what,Unusual Haircuts,General,Who is the headmaster of Hogwarts school in the Harry Potter books,Professor dumbledore -General,Who ordered the persecution of the christians in which peter and paul died,Nero, Geography,Name the capital city of Massachusetts.,Boston,General,Capital L is the Roman numeral for which number,Fifty -General,William the boys name means what,Resolute Protector,General,Where are the katydid bug's ears,Hind legs,General,Name the little elephant in books by Jean de Brunhoff,Babar -General,In 1878 Thomas Alva Edison patents the,Phonograph,Entertainment,"She played the lead role in ""Coal Miner's Daughter"".",Sissy Spacek,General,What was the name of the old man in The Old Man and the Sea,Santiago -Science & Nature,This science deals with the motion of projectiles.,Ballistics,General,What restaurant chain had served forty five thousand million hamburgers by 1983,Mcdonalds,General,Who was given an honorary Oscar in 1985 after 50 years acting,James Stuart -Science & Nature,The North Star is also known as _______.,Polaris,General,Slivovitz is a brandy made from what,Plums,Music,Who played guitar on the Michael Jackson song Give In To Me?,Slash (Guns and Roses) -General,What are wrapped in rashers of bacon to make the dish Angels on Horseback,Oysters,General,"Whose ads tout ""the return of fz on cd""",Frank zappa,General,"Woman's are faster than men's, they usually have more - what",Heartbeats -General,Of what was vadim viktorovich bakatin the last chairman,K.g.b,General,"What weed derives its name from the French for ""lion's tooth""",Dandelion,General,"Who Did Surgeon ""Dr Neil Murray"" Marry In A 20 Minute Private Ceremony At His Home In Pershire Scotland On Boxing Day In The Year 2001",J.K Rowling -Science & Nature," In 1880, there were approximately 2 billion passenger pigeons in the United States. By 1914, the species was __________",Extinct,Art & Literature,Who wrote 'The Great Gatsby'?,F. Scott Fitzgerald,General,What does the acronym WYSIWYG stand for,What yoU.S.ee is what you get -General,What does a philologist study,Languages,General,What is a group of this animal called: Coyote,Band,General,Who wrote the poem Kubla Khan,Samuel Taylor Coleridge - Geography,In which continent would you find the Amur river ?,Asia,General,Outside which london building were traffic lights first installed,Houses of,General,What is a 'gilt',Young female pig -General,POETS: Who wrote Kabla Kahn,Samuel taylor coleridge,General,What is the capital of cameroon,Yaounde,General,Name the triangular cotton headscarf or Russian grandmother,Babushka -General,What is the largest natural harbour in south africa,Saldanha bay,General,Who wrote the play 'Under Milk Wood',Dylan thomas, History & Holidays,The following is a line from which 1970's film My name is___. 'Names is for tombstones baby' ? ,Live and Let Die  -General,Who wrote Lord Of The Rings,J.R.R. tolkien,General,What is the brightest asteroid,Vesta,General,To what does the original term' cutty sark ' refer,Short shift chemise -General,What was the last film of director Stanley Kubrick?,Eyes Wide Shut,Sports & Leisure,This team won their first World Series in 1969.,New york mets,Music,Which Beatle Had His Tonsils Removed In The Latter Part Of 1964,Ringo -General,What is the flower that stands for: do me justice,Sweet chestnut tree,Sports & Leisure,Why Was Linford Christie Disqualified From the 1996 Atlanta Olypics ,2 False Starts ,General,Who in the Bible received thirty pieces of silver,Judas -General,What animal provide 50% of all the protein eaten in Peru,Guinea Pigs,General,In 1688 Edinburgh Became The First City To Have What?,Pavements,General,What is the deepest mine in the world?,Western Deep Levels Mine -General,Which Beatle wrote the score for the 1966 film The Family Way,Paul mccartney, Geography,Where is Eurodisney?,"Paris, France",People & Places,Who Was Sent Off In Both Opening Premiership Games Of The 2000 Season ,Patrick Vieira  -General,Who was the first king of israel,Saul,General,The word volar refers to what part/s of the body,Palms of hands and soles of feet,General,Bat Masterson was a sports writer for what paper,Cape town -Science & Nature,What lives in a formicary?,Ants,General,How many solutions are there to a quartic equation,Four,General,"Mark Twain referred to the what as the ""stomach Steinway.""?",Accordion -Science & Nature,What muscle is joined by the lingual nerve to the brain?,Tongue,General,In August 1945 atomic bombs were dropped on which two cities,Hiroshima and nagasaki,Sports & Leisure,The Pumas Are The Rugby Team Of Which Country? ,Argentina  - History & Holidays,What's the claim to fame of abraham zapruder ,He filmed john f. kennedy's assassination ,Music,"What Equally Successful Track Was On The Flip side Of ""Walk Right Back"" In 1961",Ebony Eyes,General,What is usually given to 'trick or treaters',Candy -Entertainment,"In the film 'American Hot Wax', who did Jay Leno play?",Mookie,General,Who was the leader of the Transformers?,Optimus Prime,General,Frosties Tony the Tiger had a Son Tony Jr and a daughter name,Antoinette -General,In 1999 20% of all US tourists came from which country,Japan,General,What did Sandy Fowler invent for drinkers that had he patented it would have made him millions,Tea bag,Entertainment,What was the last Beatles album to be released before they broke up in 1970?,Let It Be - History & Holidays,In which hospital would you find Sir Lancelot Spratt? ,St Swithens , History & Holidays,"The first charity Christmas card was produced by UNICEF in 1949. The picture chosen was painted by a: A Chimp, A 7 Year Old Girl, A Pop Star, A Buddhist Monk ",A 7 Year Old Girl , History & Holidays,What did Eli Whitney invent?,Cotton gin -Geography,What is the capital of Barbados,Bridgetown,General," The study of the earth's physical divisions into mountains, seas, etc. is ________.",Geography,Science & Nature,"Nitrogen, a poisonous gas, makes up 78% of the ___ that we breathe.",Air -Art & Literature,This statue was found on the Greek island of Melos in 1820.,Venus de milo,General,What was the ancient Egyptian cure for haemorrhoids,Beer - lots of beer,General,"Who's Autobiography Is Entitled "" And There's More""?",Jimmy Cricket -General,What is a group of this animal called: Rook,Building clamour,Entertainment,What was painted on Peter Fonda's helmet motorcycle helmet in 'Easy Rider'?,Stars and stripes,Science & Nature,In which country was the match invented,France -General,What kind of tree is Alexander the Greats entire army said to have sheltered under,Banyan,General,Who won best supporting actor for his role in ryan's daughter,John mills,Entertainment,Who played Kevin Hathaway on the soapie 'Days Of Our Lives'?,Pat Sajak -General,Who has the most u.s banknotes,Russia,General,"In Which Us State Does The Fst Food Chain ""Subway"" Originate",Connecticut,General,In Which US State Is John F Kennedy Buried,Virginia -General,Large extinct flightless bird,Dodo,General,Ile de France was the former name of which country?,Mauritius, Geography,What is the capital of Taiwan ?,Taipei -General,Who was the first (and last) catholic president,Kennedy,General,What is the capital of the state of Connecticut,Hartford,General,What is a trainee jockey under 21 years of age called,Apprentice -General,The Bay of Naples and the Gulf of Salerno are inlets of which sea,Tyrrhenian,General,"When driving from Innsbruck in Austria to Bolzano in Italy, you cross the 'Bridge of Europe' as you climb which Alpine pass",Brenner pass,Art & Literature,"Tilly Trotter, Hannah Massey And Maggie Rowan Are All Characters Created By Which Novelist? ",Catherine Cookson  -General,The duodenum and the jejunum are two of the three sections of the small intestine. Which is the third,Ileum,General,Thomas the boys name means what,Twin,General,What is a group of this animal called: Frog,Army colony -General,Rodrigo Diaz de Vivar famous under what nickname,El Cid,General,What animal does the adjective 'macropine' refer to,Kangaroo,General,What nationality was Hans Christian andersen,Danish -Toys & Games,The King in chess can move a maximum of this many squares.,Two,Entertainment,"Which formber Beatle released the hit single ""My Sweet Lord""?",George Harrison,Geography,"If its 4:00pm in seattle washington, what time is it in portland oregon ",4.00pm  - Entertainment,What is the longest running musical in Broadway history?,Cats,General,Who was Englands first Norman king,William the conqueror,Science & Nature,What is the most reliable geyser in the world?,Old Faithful - History & Holidays,"Who In 1963 , Became The First Film Star To Earn A Million Dollars For A Single Film ",Elizabeth Taylor In Cleopatra ,General,In what Australian state would you find Canowndra,New south wales nsw,Sports & Leisure,How many sides does a home_plate have,Five -Geography,The only national airline that has never had a crash nor a forced landing.,Qantas,General,Dermaptera are what species of insects,Earwigs,General,In which year was the first FA Cup final held at Wembley?,1923 -General,What constellation is represented by scales,Libra,Sports & Leisure,How many players make up a field hockey team,Eleven,General,Victor Barna was a famous name in which sport?,Table Tennis -Music,"The Song ""Crazy"" Is Synonymous With Pasty Cline But Who Wrote It",Willie Nelson,Music,What Was The Name Of The Horse In America's 1971 Hit,(Nothing (Horse With No Name),General,"What small Arctic rodents are said to, but don't, commit suicide in mass plunges into the sea",Lemmings -General,What U.S. state includes the telephone area code 501,Arkansas, History & Holidays,What was Europe's first super-high-speed passenger train powered by?,Electricity,General,Which search engine gets its name from Latin for wolf spider,Lycos -General,Who does fred savage play on 'the wonder years',Kevin arnold,Sports & Leisure,For which International side did Shane Warne play Cricket? ,Australia ,General,"In which river is the group of about 1,500 islands known as ""Thousand Islands""",St lawrence river -Sports & Leisure,How Many Jumps Are There In The Grand National ,30 Jumps ,Sports & Leisure,Which footballer was called (Crazy Horse)? ,Emlyn Hughes ,General,Churches in Malta have two what,Clocks right and wrong confuse devil -General,A technique by which patients monitor their own bodily functions in an attempt to alter those functions,Bio feedback,General,What is a goat sucker,A Bird,General,What group of people meet at Kingdom Halls,Jehovah's Witnesses -Food & Drink,Which vegetable is the principal ingredient of rosti? ,Potato ,Music,"Who Recorded ""Wee All Stand Together"" With The Frog Chorus",Paul McCartney,General,What is a 'fody' a type of,Bird -General,When was the smoke detector invented,1969,General,What is the correct name for a male red deer,Hart,General,What company created a computer dubbed Jackintosh,Atari -General,"What herb seed can be either black or white, & yields an oil that resists turning rancid",Sesame,General,What organization was given the only Nobel peace price awarded during WW I,International red cross,General,What was the secret identity of captain america,Steve rogers -General,Who was the first athlete to have an animated cartoon series,Mohamed Ali,General,What is the israeli knesset,Parliament,General,Which dinosaurs name translated as speedy predator,Velociraptor -Science & Nature, The cells which make up the antlers of a __________,Are the fastest growing animal cells in nature. moose,General,Collective nouns - A sute of what,Bloodhounds,General,What manufacturer of pens & throw away razors also make sailboards,Bic - History & Holidays,"Talking of Holland, traditionally Santa doesn't actually deliver the presents who does, is it, Rudolph, Santa's servant Black Peter, A goat named Ukko or Thirteen Elves ",His servant Black Peter ,General,Who was the 'serpent of the nile',Cleopatra,General,Michael Jackson Sadly Died In 2009 But Can You Tell Me His Middle Name,Joseph -General,"During which war did the expression ""They shall not pass"" originate",World war 1,General,Who was the last briton to win the men's singles at wimbledon,Fred perry,General,"Which Female Artist Released Their 6th Album In 1985 Entitled ""The Whole Story""",Kate Bush -General,In 1983 Challenger crew perform a spacewalk - first by U.S. in,9 years,Geography,What is the capital of Portugal,Lisbon,General,"What mode of transport was invented in 1959 by the Canadian, Armand Bombardier",Snowmobile -General,What was John Fitzgerald Kennedy's campaign song in 1960,High Hopes,Geography,In which country is Angel Falls,Venezuela,General,"What product built Hershey, Pennsylvania?",Chocolate -General,"Because the emu and the kangaroo cannot walk backwards, they are on the australian ______",Coat of arms,Geography,Lake Ladoga Is The Largest Lake In Which Country ,Russia ,General,What is the fastest swimming ocean fish over 60 mph,Sailfish - Marlin -General,What is the second-highest mountain in Africa?,Mt Kenya,General,"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,General,"Which major food company grew out of the Sanitas Food Company of Battle Creek, Michigan",Kelloggs -Science & Nature,Why Do Fossils Of Long Necked Dinosaurs Appear To Show The Head Pulled Back Over The Body ,Shrinkage Of Neck Muscles After Death ,General,Which of India's states is thought to have the largest Sikh population,Punjab, History & Holidays,Who burned Atlanta in 1864?,General Sherman -General,The Dutch Royal family are Orange where is Orange,Village in France,General,Which countries government spends most in social security %,Uruguay,Music,"""This Old House"" & ""Mambo Italiano"" Were UK No.1 For Which Songstress",Rosemary Clooney -General,Chronos in Greek Saturnus in Roman Gods of what,The Harvest,General,What late night show replaced Tom Synder's show?,David Letterman,General,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 -General,Who Starred In The Very Last Program To Be Broadcast By The BBC Just Before The Start Of The 2 nd World War,Mickey Mouse, History & Holidays,"Which Margaret Mitchell novel, later a successful film, won the 1937 Pulitzer Prize? ",Gone With The Wind ,General,Who drew the Peanuts series of cartoons,Charles schulz -General,Where on your body are the most sweat glands,Feet,General,In Troy measurement a pennyweight contains 24 what,Grains,General,Which chief minister of Charles I of England was nicknamed Black Tom Tyrant?,Thomas Wentworth -General,The most common hat in the world is made out of what,Bamboo, History & Holidays,In Which Country Will You Find Lapland? ,Norway ,General,"What pop group recorded the title track for ""a view to a kill"" in 1985",A-ha -Entertainment,"Which comic strip was banned from ""Stars and Stripes""?",Beetle Bailey,People & Places,Which 2 People Are Now Best Associated With The Phrase 'You're Fired' (PFE)? ,Alan Sugar & Donald Trump ,Geography,What is the capital of Antigua and Barbuda,Saint john's -General,Bilrubin is produced by what part of the body,Liver,General,Who wrote Don't count your chickens before they are hatched,Aesop - Milkmaid and her Pail,General,Cashmere comes from a(n) _____,Goat -General,Who was the Chief Designer of the Hawker Hurricane fighter aircraft,Sidney camm,Food & Drink," Mustard, ketchup and onions on a hotdog are all ___________.",Condiments,General,Collective nouns - a knot of what,Toads -General,What is the currency of Egypt,The Pound,Music,Which Record Re-Entered The Charts For The 3rd Time For Donny Osmond In 1973,Puppy Love,General,Who was the only Russian born prime minister of Israel,Golda meir -General,What sort or creature is a Boto,Dolphin,General,Which places name means many islands,Polynesia,General,What number stays the same when yoU.S.quare it or cube it,One -General,"Who wrote ""The Old Man and the Sea""",Ernest hemingway,General,What is the logo of the reference work 'Encyclopedia Britannica'?,Thistle,General,What is a line drawn from an angle of a triangle to the midpoint of the opposite side,Median -Food & Drink,In Which Country Was Gin Invented ,Holland ,General,Teiichi igarashi climbed what mountain at the age of 99,Mount fuji,General,In London 1915 what became illegal subject to £100 fine,Buying a round of drinks -General,"In law, special court exercising jurisdiction over all maritime issues",Admiralty,General,What is the symbol for tungsten,W,Sports & Leisure,What trophy is awarded to the winner of the NHL play_offs,Stanley cup -General,What does Honolulu mean in Hawaiian,Sheltered Harbour,Geography,What country does the island of Mykonos belong to,Greece, History & Holidays,In What Century Were The War Of The Roses Fought ,15th Century  -General,What is the former name of Guinea-Bissau,Portuguese guinea, History & Holidays,"The ""Bay of Pigs"" fiasco took place in this country.",Cuba,General,"What links Da Vinci, Picasso, Charlie Chaplain, Ben Franklin",Left Handed -General,What kind of apple is on the beatles' apple label,Granny smith,General,The sea gods had a three pronged spear called a(n) ________,Trident,General,What Was Said To Be Hitlers Favourite Film,King Kong -Music,Who Was Standing In the Road,Blackfoot Sue, History & Holidays,What is the name of the lead singer for the Smiths? ,Morrisey ,General,What is a group of this animal called: Turtledove,Pitying dule -Music,"""Need You Tonight"" Was A Hit For Which Aussie Rockers",INXS,General,"What did the americans buy of Russia for $7,200,000 in 1867?",Alaska,General,Martina Navratilova won most doubles with which partner,Pam Shriver -General,What is the third movement of a symphony called,Minuet,General,"The mola mola, or ocean sunfish, lays up to how many eggs at one time",5 billion,General,What tv network features programming just for children,Nickelodeon -General,Laika was the first ever dog to do what,Go into space,General,74 year old Margaret Weldon FL 2 hole in one 2 days - unusual,She was totally blind aided hubby,General,As what is the tree with the botanical name 'Betula' better known,Birch -General,Who Was The First Musical Act To Have A No.1 Hit With The Stock Aitken & Waterman Hit Factory,Dead Or Alive,General,Walter and john huston became the first father-and-son team to win oscars for which film,Treasure of sierra madre,General,What common item was a sign of wealth in 19th century England,An Umbrella -Religion & Mythology,What's heaven to fallen Norse warriors,Valhalla,General,We know what Mardi Gras is but what's its literal translation,Fat Tuesday,General,Which Hollywood star has made the cover of Life most times,Elizabeth Taylor (11) -Music,What Was Rod Stewarts 1975 Nautical UK No.1 Single,Sailing,Music,"Whose Debut Solo Album In 1968 Was Titled ""Wonderwall""",George Harrison,Music,Where Is Elvis Buried,Graceland - History & Holidays,What was the initial capital of USSR?,Leningrad,General,A long tunic worn by men in the Near East,Caftan,General,"On the average, there are how many peas in a pod?",Eight -General,More than 40% of USA women were once what,Girl Scouts,Geography,Which Is The Oldest Surviving Thames Crossing In London ,Richmond Bridge ,General,In Aussie slang what are Bum Nuts,Eggs - History & Holidays,Which country was the first to allow women to vote in 1893? ,New Zealand ,Art & Literature,Name The 3 Bronte Sisters ,"Charlotte, Emily & Anne ",General,Dropped out of the sky onto the actors' heads,Green Slime -General,What fictitious murderer first appeared in String of Pearls 1840s,Sweeny Todd,Sports & Leisure,Which Sport Uses The Lightest Ball? ,Table Tennis ,General,Name the painting medium which involves the use of egg yolks,Tempera -General,What wife of a U.S. President was accused of being a spy,Mary todd lincoln,General,"Which Game Was First Patented Under The Name ""Spharistrike""",Lawn Tennis,General,Actress Jody Foster was a student at what college,Yale -Science & Nature,What Does Mass Multipled By Velocity Give You ,Momentum ,General,In what film did whoopi goldberg make her screen debut,Color purple,General,In Alabama its illegal to have more than 3 what in your house,Animals -Science & Nature,What Is The Collective Term For Ducks? ,A Paddling , History & Holidays,Who drafted most of the American Declaration of Independence?,Thomas Jefferson,General,Mapother IV is the real surname of what film star,Tom Cruise -General,"Who said about his songs ""some are 10 minutes long some are 6""",Bob Dylan,Art & Literature,What are arranged in the Japanese art of Ikebana?,Flowers,General,What was the very first James Bond movie that was shown in the 80's?What was the last?,For Your Eyes Only and Licence To Kill -General,What state has the bluebonnet as it's flower,Texas,General,What missionary station was built by albert schweitzer,Lambarene,General,Noctiphobia is the fear of,The night -General,"What Do Sir Isaac Newton, Kenny Everett & Annie Lennox All Have In Common",All Born On Christmas Day,General,Who played Eth in the radio show The Glums,June whitfield,General,"What are lust, pride, anger, envy, sloth, averice and gluttony",Seven deadly sins -General,What is Ronald Reagan's middle name,Wilson,Science & Nature,What Does The XP In The Operating System 'Windows XP' Actually Stand For? ,Experience ,Music,Who Played Eliza Doolittle In The Original Stage Production Of My Fair Lady,Julie Andrew -General,James hunt was disqualified after winning which grand prix,1976 british,Science & Nature,What is a male swan called,Cob,General,What is tuberculosis,Consumption -General,What was Ghandi's profession,Lawyer,General,Which part of the human eye may be removed and kept in an eye bank,Cornea,General,52% of Americans would rather spend a week in jail than What,Be President -General,What's the opposite of 'synonym',Antonym,General,What can be measured in angstroms,Wavelengths,General,"""Carmine"" is a shade of which color?",Red -General,"In World War 2, where was the defensive line known as The Gin Drinkers Line",Hong kong,General,What is the capital of the Spanish region of Navarre,Pamplona,General,Who is the roman counterpart of hera,Juno -Music,Which Film Director Did Madonna Marry In Scotland In 2000,Guy Richie,General,What song did michael jackson sing about a rodent,Ben,Food & Drink,A tayberry is a cross between which two fruits?,Blackberry and raspberry -General,What is the state flower of Wisconsin,Wood violet,General,Which playwright wrote Blithe Spirit,Noel coward,Science & Nature, __________ are the only animals born with horns. Both males and females are born with bony knobs on the forehead.,Giraffes -General,Which was the first Pinball game that used flippers ?,Humpty Dumpty,General,What is the Capital of: Cuba,Havana,General,The island of Yap has the worlds largest what,Coins up to 12 feet across -General,An animal described as ecostate lacks which physical feature,Ribs,Music,Which 80's Classic Became UK's Best Selling 12 Inch Single Of All Time,Blue Monday,General,What was the name of the world's first multi-coloured postage stamp?,Basel Dove -General,Which detective story writer created the character Tommy Beresford,Agatha christie,General,"In 1657 london, what was advertised as a cure for scurvy, gout and other ills",Coffee,General,What is a group of this animal called: Woodpecker,Descent -General,Who was the first prime minister of Israel,David ben gurion,Music,Name The Lead Vocalist With Wizzard In The Early 70's,Roy Wood,General,Who began his career as The Worlds Worst Juggler,Fred Astair -General,Who rode Rocinante,Don Quixote, History & Holidays,"Jesus was allegedly born on Christmas Day, what Starsign would he have been ",Capricorn ,General,What is the fear of rivers or running water known as,Potamophobia -Music,Who Knew Major Tom Was A Junkie,David Bowie,General,Which French author and philosopher was the cousin of Nobel Prize-winner Albert Schweitzer,Jean paul sartre,Music,"Where Was The Setting For ""On The Town""",New York -General,"Who played Samantha on ""Bewitched""",Elizabeth Montgomery,General,Who flies planes directly into tropical storms and hurricanes,53rd weather,General,Vivaldi the composer had what other profession,Priest -Music,What Are Tracy Thorn & Ben Watt Collectively Known As,Everything But The Girl,Geography,What is the capital of Swaziland,Mbabane,General,The Bahunia a five petal wild orchid is the symbol of where,Hong Kong -General,What seaport's name is spanish for 'white house',Casablanca,General,What is the name given to the science of improving the population by controlled breeding,Eugenics,Music,"From Which film did the Bee Gees ""Stayin Alive"" originally stem?",Saturday Night Fever -General,"What is 9 metres high, 7 metres wide and 2,500 kilometres long",Great wall of,Technology & Video Games,"In the game ""Chrono Trigger,"" what is Lucca's mother's name? ",Lara,Music,What Was The Name Of The Leisure Complex Founded In Nashville By Country star Conway Twitty,Twitty City -Science & Nature,If The Sum Of The Distances Between 2 Points Is Constant What Shape Do You Get ,Circle / Ellipse ,General,In North Dakota if you are in a covered wagon you can do what,Shoot mounted Indians,General,What British author was offered £250000 to write book of ET,Jeffrey Archer -General,Name the only war to end on the same day that the U.S. draft ended,Vietnam war,General,What is a noggin,A small cup,General,Where in the world can you find Friday before Thursday,In a Dictionary -Art & Literature,French impressionist Claude _____,Monet,General,Which islands capital is Flying Fish Cove,Christmas Island,General,Which US place name translates Indian as place of drunkenness,Manhattan -General,Vegetable with green or purple leaves forming a round head,Cabbage,General,"In ballet, a position of the body at an oblique angle and partly hidden.",Effacé,General,21% Americans don’t do it every day 5% never do it - what,Make their bed -General,What is the square root of the sum of 55+65+24,12,General,What is the shin bone,Tibia,Geography,Near Tewkesbury in Gloucestershire the river Avon flows into which other river ,River Severn  -Entertainment,"In the 'Nightmare On Elm Street' films, who played Freddy Krueger?",Robert Englund,Music,Which Oxford University Professor Of Poetry Had His Lyrics For Les Miserables Rejected,James Fenton,Science & Nature,What Is The Alloy Pewter Made From ,Lead & Tin  -General,What London landmark has an 11 foot long hand?,Big Ben,Music,Who Did The Stilettoes Go On To Become,Blondie,General,Collective nouns - A cloud of what,Gnats -General,Where on a horse is the pastern,Above the hoof,Geography,Which City Is The Capitaal Of Malaysia ,Kuala Lumpur ,General,Lagomorphs refer to which animal,Rabbits -General,"Famous Lyrics: ""There's a lady who knows all that glitters is gold and she's _____ _ _____ __ _____""",Buying a stairway to heaven,General,Who led the Soviets when they invaded Hungary in 1956,Nikita Khruschcev,General,Bureau of Alcohol Tobacco and Firearms bans what word in adds,Refreshing -General,What word did non-English speakers say sounded prettiest,Diarrhoea,General,What organisation opposes ASH,FOREST,General,Which element is extracted from the ore Scheelite,Tungsten -General,Leporine refers to what kind of animal,Rabbit,General,Who spent 18 months in 1940s as no 3188 home wayward boys,Steve McQueen,Food & Drink,Of which vegetable are Globe and Jerusalem varieties ,Artichoke  -Science & Nature,The Big Dipper is part of what constellation?,Ursa Major,General,On what common item would you find a keeper,Belt its loop that holds end,General,What country hosted the 1982 world cup of soccer,Spain -General,Sir Emest Swinton was a British colonel credited with the invention of which weapon,Tank,General,What is the young of this animal called: Seal,Pup,General,What is a group of boars,Singular -General,"In 'Star Trek', who was the captain of the 'Enterprise C'?",Rachel Garret,Science & Nature," A __________ gives nearly 200,000 glasses of milk in her lifetime.",Cow,Science & Nature," Since housecats are clean and their coats are dry and glossy, their fur easily becomes charged with __________",Electricity -General,Kainolophobia is the fear of,Novelty,General,Largest single user of almonds in North America.,Hershey,General,What war involving england began in 1899 and ended in 1902,Boer war - Geography,Which element makes up 3.63% of the Earth's crust ?,Calcium,General,What relation was Queen Victoria to George III,Granddaughter,Food & Drink,What is the name of the liquid butter made from cow or buffalo milk which is used in Eastern Countries? ,Ghee  -General,What is a Winston Churchill,Cigar,General,Ancient Aztecs of Mexico used a rabbit scale to measure what,Drunkenness few to 400,General,Way who lived on bonnie meadow way in new rochelle,Rob and laura petrie -General,What mineral salt is an important constituent of bones and teeth,Calcium,Music,Which One Of The Bands Hamburg Friends Designed The Sleeve Of The Revolver Album,Klaus Voormann,Music,According To Her Hit Single What Was Mary McGregors Dilemma,She Was Torn Between Two Lovers -General,"Which drink is known as ""the uncola""",7-up,General,How many best director Oscars did Alfred Hitchcock win,None,General,Who is the greek messenger god,Hermes -General,Where is tobruk,Libya,General,In what Australian state would you find Tamworth,New south wales nsw,Science & Nature,Swedish Botanist Anders Dahl Gave His Name To Which Flower ,The Dahlia  -General,What is the Capital of: Puerto Rico,San juan,General,"Which Hugely Successful 90's Movie Was Originally Entitled ""$3000""",Pretty Woman,General,"In the Bible, who was Abraham's first son",Ishmael - History & Holidays,*What was the name of the scandal that forced President Nixon to resign?* ,Watergate ,Food & Drink,"In French cookery, What is the earthenware dish in Which pat? is served? ",Terrine ,General,Christian Dior launched his 'New Look' in which year,1947 -General,What is liquid clay used in pottery,Slip, Geography,What is the world's deepest lake ?,Lake Baikal,General,What outdoor sport does 'love' mean a score of zero in,Tennis - History & Holidays,Which TV show portrayed the lives of performing arts high school students ,Fame ,General,Ignoring USA whose motto is E Pluribus Unum,Benfica Football Club,General,"Other than skiing, which sport takes place on a piste",Fencing -General,What blood type has been found in less than a dozen people since it was first discovered,Type ah,Science & Nature,What Was The Family Name Of The French Brothers Who Were Pioneer Developers Of The Hot Air Balloon And Who Conducted The First Untehered Flights ,Montgolfier ,Entertainment,Who was born on Krypton?,Superman -Geography,What city has a newpaper called the plain dealer ,Cleveland ,General,Ernest Hemmingway said what would protect against allergies,Having lots of sex,General,If you landed at Schipol airport where are you,Amsterdam -General,What first appeared at the 1928 Winter Olympics,Five Olympic Rings,General,How much did a mcdonald's hamburger cost in 1963,Fifteen cents 15 cents,General,John Huxham in 1750 invented which word,Influenza -General,Who appeared on the first cover of TV guide 3 April 1953,Desi Arnaz Jr,Sports & Leisure,"What is a Japanese sumo wrestling tournament called? *a Bisho, a Basho or a Bonko * ",A Basho ,General,Who first appeared on TV December 17th 1989,The Simpsons – Episode 1 in USA -General,Cord what colour is the umbilical cord,Blue,General,What is a military governer in japanese,Shogun,General,Which leader was defeated at the battle of Salamis,Alexander -General,Which two early 19th century German brothers wrote a collection of fairy tales,Grimm brothers, Geography,What is the capital of Vatican City ?,Vatican City,General,How do male moths find female moths in the dark,By smell smell -General,Taal is an alternative name for what language,Afrikaans, Geography,What city is on Lake Erie at the mouth of the Cuyahoga River?,Cleveland,General,The pedal bicycle was invented in which year,1839 -General,Which queen had menstrual cramps eased with marijuana,Queen victoria,General,"What avenue runs along the east side of Central Park, New York",Fifth avenue,General,Jorn Utzon of Denmark designed what landmark,Sydney Opera House -General,What is the Capital of: China,Beijing, History & Holidays,"Two groups have had three consecutive Christmas No 1's, the first was the Beatles, in 1963-64-65, name the second ",The Spice Girls (1996-97-98) ,Food & Drink,Which Rap Act Includes 'MC Taboo' And 'Will I Am' In Their Line Up? ,Black Eyed Peas  -General,What animal has the highest blood pressure,Giraffe,General,Where in your body is the labyrinth,Ear,Science & Nature, The __________ bird can fly at a speed of 260 miles per hour.,Frigate -General,According to Billboard what was the top single of the 60s,Hey Jude,General,"Which American president renamed ""Shangri-la"" as ""Camp David"" after his grandson",Eisenhower,General,Groundhog day is this day in february.,2nd -General,Worlds first paperback book written in 1867 by Goethe what title,Faust I,General,"Oranges and lemons, the bells of ______",St clements,General,What is the only patented uniform / costume in the USA,Playboy Bunny Girls -General,The Horned Planet is better known as what,Venus,General,What is the Capital of: Libya,Tripoli,General,What Was Arsenal Tube Station Called Before It Was Renamed To Arsenal,Gillespie Road -General,What do diners in a restaurant use to take away their leftovers,Doggy bag,General,What is a group of stars,Cluster,Science & Nature,This animal is kept as a house pet to kill cobras.,Mongoose -General,What religions sacred writings are divided into the Tripitaka,Buddhism, Language,From what language is the term 'finito'?,Italian,Food & Drink,What spirit is used in fortifying red wine to create port? ,Port  -General,Where is Bonnie Prince Charlie buried,Rome,General,Who founded mormonism,Joseph smith,General,"This ain't no party, this ain't no disco ..' were lyrics from which group's 1979 release 'Life During Wartime'",Talking Heads - History & Holidays,In which war was Bunker Hill a major battle? ,The American War Of Independence ,General,How was William Pitt the Elder's son known ?,William Pitt the Younger,Science & Nature,What is the atomic number of Bromine?,Thirty five - History & Holidays,In which European country did the use of Christmas trees originate ,Germany (5th Century) ,General,"Who was george burns' wife, whom he had a popular tv show with",Gracy allen,General,Who wrote the choral work the Messiah,George frederick handel -Tech & Video Games,Who created the music for N2O: Nitrous Oxide? ,The Crystal Method,Music,"What Song Features The Lyric ""So Tell Me What You Want What You Really Really Want""",Wannabe, Geography,Which country altered it's timezone in order to be the first to see in the year 2000 ?,Tonga -Music,What Was Westlifes First UK Number One Hit?,Swear It All Over Again,Music,Whose Albums Included Plastic Letters & Parallel Lines,Blondie,General,What is the traditional gift for a sixth wedding anniversary,Sugar -General,"Springsteen What country's explorers discovered the site of Pensacola, Florida",Spain,General,Indoors 6 players a side outdoors numbers vary what sport,Volleyball,General,The closest living relative of this African mammal is the Giraffe?,Okapi -General,By the time a child finishes elementary school they will have witnessed how many murders on television,"8,000",General,What was formerly called the Christian Revival Association and the East London Christian Mission,Salvation army,General,What subject is covered in the mag 'bondage',James bond -General,What place is known as 'the land nowhere near',Cape three points,General,What name is given to the parliament of Norway?,Storthing,General,What does 'rio de janeiro' mean in portuguese,January river -General,What is the latin phrase meaning 'for the particular end or purpose at hand',Ad hoc,General,The USA declared war on which country in 1898,Spain, History & Holidays,What popular US TV sitcom With 3 Words made its first appearance in 1951 & ran until 1957 ,I Love Lucy  -General,What is the name given to a group of geese,Gaggle,General,Who directed Spartacus and Lolita,Stanley Kubrick,General,Which county lies between the north sea and greater london,Essex -General,What relation to you is your uncle's father,Grandfather,General,Garlic and Chives belong to which plant family,Lilly,General,Sgt Jack Mills Was The Designated Driver In Which Infamous Journey In History,The Great Train Robbery -Food & Drink,Which fruit is used to make Calvados? ,Apples ,Science & Nature,Which is the largest nerve in the Human Body? ,Sciatic ,General,Who played the murder victim in the original version of 'psycho',Janet leigh -General,Women do it twice as often as men - what,Blink, Geography,Which tropic passes through Australia?,Tropic of Capricorn,Music,Whose First Chart Album Was Called Concerto For Group And Orchestra,Deep Purple -General,In the Bible Judah was in which province,Palestine,General,What is detective Hercules Poirot's brothers name,Achille,General,By law what unpopular thing must prostitutes now do in Holland,Pay Income Tax -General,Macrophobia is the fear of,Long waits,Science & Nature,What Is A Rhinoceros's Horn Made Out Of? ,Hair ,Entertainment,"This band's highly original video for ""Whip it,"" characterized by red flower pot hats was criticized for being both sado-masochistic and racist?",Devo -General,"Who said ""Its so long since sex I forget who gets tied up""",Joan Rivers,General,"Where In The Uk , Is Charles Dickens Buried",Westminster Abbey,General,What is a toboggan course,Cresta run -General,What was Anne's surname in Anne of Green Gables,Shirley,General,What was the last film where Sergio Leone directed Eastwood,The Good the Bad and the Ugly,General,What other name is used for the snow leopard,Ounce -Sports & Leisure,Which Premiership Club Play Their Home Games At The JJB Stadium? ,Wigan Athletic ,General,In fable who sold a cow for five beans,Jack ( and grew a beanstalk ),Music,“Roll Up And That’s An Invitation” What Were The Beatles Asking You To Roll Up For,Magical Mystery Tour -General,What was Spencer Tracy's last film,Guess whose coming to dinner,Music,In Which City Did The Beatles Perform Their Final Concert,San Francisco,General,"In Russia, what type of food is a blini or blintze",Pancake -General,In what Australian state would you find Canberra,Act,General,Science of control systems and communications,Cybernetics, History & Holidays,Who was President of the USA from 1953 till 1961? ,Dwight D. Eisenhower  -General,What product is consumed most in California,Bottled Water,General,What is a galeophobic afraid of,Sharks,General,Bees live in a hive what do seals live in,A Rookery -Art & Literature,In Which Story Does The Schoolboy (Piggy) Star ,Lord Of The Flies ,Science & Nature,A loss of memory is known as __________.,Amnesia,General,"Who wrote this line of poetry ""I wandered lonely as a cloud""",William -General,What did robert bunsen invent,Bunsen burner,General,Where did the eentsy-weentsy spider climb,Up the water spout,Geography,Which Country Is The Worlds Leading Exporter Of Salmon ,Norway  -General,Who was Olive Oyls boyfriend - before Popeye,Ham Gravy,General,The name of which element comes from the Greek for 'stranger',Xenon,General,Paris and What other capital had the worlds first telephone link,Brussels -General,In which North American city would you find the 1815 feet high C.N. Tower,Toronto,General,Who was the first UK solo artist to have a US number 1 hit,Acker Bilk Stranger on the Shore,Food & Drink,What Food Do You Use Up More Calories Eating Than You Gain Through Consumption ,Celery  -General,Charles Jung invented what in America,Fortune Cookies, History & Holidays,The date of which Christian festival was fixed in 325AD by the Council of Nicaea?,Easter,General,What is the fear of syphilis known as,Syphilophobia - History & Holidays,Who Was Ptolemy Dionysius Related To As Both Brother And Husband ,Cleopatra ,General,Which vertebrate holds the record for the longest recorded life span,Tortoise, Geography,Name the largest lake in Australia.,Eyre -General,In Georgia what can you not keep in your bathtub,Donkey,Food & Drink,After Whom Was The Desert 'Pavlova' Named ,The Russian Ballet Dancer Anna Pavlova ,General,Who is the only author to have a book in every dewey decimal category,Isaac asimov -General,What was the chief Roman silver coin,Denarius,Music,In 1979 who sang about Walking on the Moon?,The Police,General,Who is President of Germany,Roman herzog -Science & Nature,Are Worker Ants Male Or Female? ,Female ,Geography,Which Is The Highest Mountain In The Alps ,Mont Blanc , Geography,Jefferson City is the capital of ______?,Missouri -General,Who was the first man in space?,Yuri Gagarin,General,What metal are hot water pipes most often made of,Copper,General,What is a group of hornets,Nest -General,What is Virga,Rain the don’t reach ground,General,Which English speaking country consumes most table wine per,Australia, History & Holidays,Who in 1988 became the first elected female prime minister in an Islamic country ?,Benazir Bhutto -General,"In telephony, what do the initials ISDN stand for",Integrated services digital network,General,Name the pet alligator in Miami Vice,Elvis,General,Which drug company manufacture Viagra,Pfizer -General,The Dirty Harry franchise ran to five films what was the title of the final 1988 film,The dead pool,General,Cephalalgia refers to a(n)___.,Headache,General,Who forced 146 captured british officers into the black hole of calcutta,Indian troops -Sports & Leisure,Which footballer was sentenced to 3 months at Ford Open Prison in 1984 for drink driving and assaulting a police officer? ,George Best ,General,"From Which Country Does The Game ""Canasta"" Originate",Uruguay,General,"What was the name given to the short bobbed hairstyle, popular amongst upper class women of the 1920s",Eton crop -General,What is the flower that stands for: addresses rejected,Ice plant,Science & Nature,Encephalitis affects the ________.,Brain,Sports & Leisure,In Which City Were The 2000 Olympic Games Held? ,Sydney  -General,Basketball: the Milwaukee _______,Bucks,General,Albert Harry Jack and Samuel Eichelbaum known as who,Warner Brothers,General,In what city was Audry Hepburn born,Brussels -General,A Stand or Flamboyance is the collective noun for which type of bird?,Flamingo,General,Which country produces Tokay,Hungary,General,Which girls name means farseeing,Prudence -General,The telephone was invented in which year,1876, History & Holidays,Which actress played the same part in all 3 Scream movies ,Neve Campbell ,General,What was discovered at Qumran,Dead Sea Scrolls -General,Type of spongiform encaphalopathy affecting human beings and leading to dementia,Creutzfeldt-jakob disease,General,Who played Webster,Emanuelle lewis,General,"In India, and also the British forces, what job does a Dhobi Wallah do",Laundry -General,Unit of measure for energy,Joule,General,"Whose comment on the first moon landing was ""This is the greatest week in the history of the world since the creation""",Richard Nixon,Music,Who played guitar for 'The James Gang'?,Joe Walsh -General,Who was the second king of israel,David,General,A line drawn from an angle of a triangle to the mid-point of the opposite side is a(n) _______,Median,General,What U.S. state includes the telephone area code 513,Ohio -Music,Which Musical Was Built Around The Songs Of The Pop Group Abba,Mamma Mia,Entertainment,What other well known singer shares the same birthday as Elvis Presley (Jan 8)?,David Bowie,General,Thunder music is the literal translation of which musical term,Philharmonic -General,Which saint died about 601 AD,David,Science & Nature,What Is An Ovipositor ,It Is An Appendage Through Which A Female Insect Lays Her Eggs ,General,Another name for a slaughter house,Abattoir -General,What geographic term describes a hill with sharply sloping sides & a flat top,Butte, History & Holidays,What kind of teeth did George Washington have?,Wooden,General,What is the literal translation of terrapin,Eatable (Algonquin word) -Geography,What is the capital of Philippines,Manila,General,What is the musical form of Pygmalion,My fair lady,Music,Which Band Was Formed In 1994 By Fred Durst?,Limp Biskit -Music,Who Had A Number One Hit With “Fill Me In” In 2000?,Craig David,Sports & Leisure,"Was The Oxford And Cambridge Boat Race First Contested In The 18th, 19th Or 20th Century ",19th ,History & Holidays,How many Christmas trees are produced by Nova Scotia anually,1 -General,What class of ship was the Caine,Minesweeper,General,What greenish cylindrical fruit is the Cucumis sativus,Cucumber,General,Saying: don't switch horses in___.,Midstream -Food & Drink,Creme de Menthe and brandy make which cocktail? ,A Stinger ,General,Who played Popeye in the 1980 film of the same name,Robin williams,General,"Garnet, amethyst and zircon are all types of what",Minerals -General,Name Dennis the Menace dog Hank Ketchum comics 1950s,Ruff,General,Mount Logan is the highest mountain in which country,Canada,General,"If bats are nocturnal and horses diurnal, than coyotes and others animals that roam at the twilight hours and dawn are called:",Crepuscular -General,The 9 banded armadillo and humans have what in common,Both catch Leprosy,General,Whose biography is over 8.5 million words long,Winston Churchill,General,The symbols used on a map are explained by the ______.,Legend -General,Reeves who produced 'sgt pepper's lonely hearts club band',George martin,General,The Yucatan peninsula is mainly in which country,Mexico, History & Holidays,"What country was ruled by Pol Pot, leader of the Khmer Rouge party?",Cambodia (Kampuchea) -Geography,What Type Of Shop Predominates On The Ponte Vecchio In Florence ,Jewellers Have Had The Monopoly Since 1593 ,General,When was the first suburban shopping mall opened,1922,People & Places,According To Marilyn Monroe What Was The Only Thing She Wore In Bed? ,Chanel No.5  -General,What US state is the magnolia state,Mississippi,General,Smith Johnson Williams Brown Jones next US common surnames,Miller,General,In Algeria what is rai,A form of music -General,Wiley E Coyote chases roadrunner what does the E stand for,Ethelbert,General,Which is the largest artery in the human body,Aorta,General,In Indian cookery what dish literally translates as Red Juice,Rogan Josh -General,Thousand after what are the b52 bombers named,Fifties hairdo,General,In what sport would you find a Bagel,Tennis - Set won 6-0,Sports & Leisure,In Which Sport Is The Lonsdale Belt Awarded ,Boxing  - History & Holidays,Who was the first female American astronaut ?,Sally Ride,Geography,Which Is The Worlds 2nd Highest Mountain ,K2 ,General,How many episodes of Fawlty Towers were made?,12 - Geography,What is the capital of Algeria ?,Algiers,Science & Nature,What is the symbol for Iron?,Fe,General,Which part of the body is most sensitive to radiation,The Blood -Entertainment,Who collaborated with John Lennon on 'Whatever Gets You Through The Night'?,Elton John,Religion & Mythology,What dod Pandora Release when she opened the box?,Misery and evil,General,"What is the fear of lues, syphillis known as",Luiphobia -General,Dance with a Stranger was the film of who's life story,Ruth Ellis,General,Theophobia is a fear of ______,Religions, History & Holidays,What was King Arthur's mother's name?,Igraine -Art & Literature,"A band of painted or sculpted decoration, often at the top of a wall. ",Frieze,Music,"Which Japanese Artist Released The !973 Album ""Approximately Infinite Universe""",Yoko Ono,Music,Which US Pop Sensation Made Her Movie Debut In The Movie Crosroads,Britney Spears -General,Who's first girlfriend was named Thelma Pickles?,John Lennon,General,"Name Any Year During The ""Reign"" Of Genghis Khan",1206-1227,Science & Nature,Does The Male Or Female Horsefly Feed On Blood ,The Female  -General,What keeps growing until you are 35 then starts to shrink,Your Skeleton,General,"In international car registrations, which country has the letters ZA",South africa,General,Near Ayres Rock is a lake named after which composer,Mozart -General,Who was the first African American to play in a NBA game,Earl Lloyd,General,What is the large central inner tower of a castle called,Keep,Entertainment,What was the name of Ross' pet monkey on 'Friends'?,Marcel -General,Which building material gets its name from Arabic for the brick,Adobe,General,"Who sang ""cold, cold heart""",Hank williams,General,What relative of King Faisal of Saudia Arabia assassinated him,Nephew -General,What Was The First TV Show To Be Filmed In Colour,Stingray,Music,Ace Of Base Come From Which Country,Sweden,Music,For which singer were The Beatles a backing group for in 1961 before hitting the big time,Tony Sheridan -Entertainment,Where did Clark Kent attend college?,Metropolis University,General,In Ackworth Georgia all citizens must own what by law,A Rake,General,What was the fight between Argentina and Great Britan over?,Faulkland Islands -General,"Which Comedian Has The Real Name Of ""Robert Davis""",Jasper Carrott,General,What isnt present in a fillet,Bones,General,Who was the female star of the film Klute,Jane fonda -General,What is the medical term for an eyeball shaped like a rugby ball,Astigmatism,General,What African republic's name was inspired by its thriving elephant tusk trade?,The Ivory Coast,General,Arthur Sarsfield Ward the creator of Fu Man Chu is which author,Sax Rohmer -Science & Nature,How Long Can A Stag Beetle Spend As A Larva ,Up To Three Years ,Sports & Leisure,Which Colour Ball Is Not Placed Back On The Table If It Is Illegally Potted ,Red ,Religion & Mythology,Who is the Norse god of lightning?,Odin -General,Rebecca Rolfe Is More Commonly Known As Who,Pocahontas,General,What is the state capitol of New Jersey,Trenton,General,"Whose members get ""Promoted to Glory"" on their death",Salvation Army -Entertainment,What is the address of The Munsters?,1313 Mockingbird Lane, History & Holidays,What is the English title of the carol written in 1818 by Austrian priest Josef Mohr originally called Stille Nacht? ,Silent Night ,General,Crown - Ring - Shank - Stock - Fluke parts of what,Anchor - Geography,In what mountain range is Kicking Horse Pass?,Rocky,General,What is the name for a person hired to carry a golfer's clubs for him,Caddie,Geography,What is the capital of Fiji,Suva -General,"In an average lifetime, the average american charges on _____",Credit cards,General,Spaceman Spiff was a charcter on which eighties cartoon strip?,Calvin and Hobbes,Art & Literature,"A European movement of the late eighteenth to mid-nineteenth century. In reaction to neoclassicism, it focused on emotion over reason, and on spontaneous expression. ",Romanticism -General,"Which cow disease was first identified in Britian in 1986 and by 1996 had claimed 158,000 cattle",Bovine spongiform encephalopathy,General,Name the Rolling Stones second album,Rolling Stones No 2, Geography,What country's capital is Caracas?,Venezuela -General,"In the film 'home alone', who played the baddies",Joe pesci and daniel stern, Geography,What is the capital of Namibia ?,Windhoek,General,What was E.T.'s favorite candy?,Recee's Pieces -Science & Nature,What is the highest active volcano in the world?,Cotopaxi,Music,Which Working Hours Did Dolly Parton Sing About,9 to 5,General,What is the wrought iron tower in paris,Eiffel tower -General,On what does the firefly depend to find mates,Sight,General,Where are plaques of humans wearing nothing,Pioneer spacecraft,General,The Chinese ideograph with two women under one roof means what,Trouble -General,"Whose suicide made robert mitchum sigh, ""she seemed like a lost child""",Marilyn monroe,People & Places,Which actress was the first wife of Ronald Regan? ,Jane Wyman ,Sports & Leisure,In 1998 Who Became The Youngest Footballer To Score A Hat Trick In The English Premiership ,Michael Owen  -General,Who was captain of 'the mayflower',Miles standish,Science & Nature,What is Borborygmus?,Stomach Noises,General,"Football"" the oakland ______",Raiders -General,On which motorway are the Michael Wood and Gordano service areas,M5,Entertainment,The Who's rock musical stars Elton John. It's called ________.,Tommy,General,"In 'alice in wonderland', who never stopped sobbing",Mock turtle -General,What is the fear of gods or religion known as,Theophobia,Music,What Was The One Hit Wonder For Little Anthony And The Imperials In 1976,Better Loose Your Head,Music,"Who Has Been A Founder Member Of Yazoo, Depeche Mode And Erasure?",Vince Clarke -General,Who was the female star of the film 'Seperate Tables',Deborah kerr, History & Holidays,Who denounced Stalin?,Nikita,General,In Rosemead California its illegal to eat what with a fork in public,Ice Cream -General,England its illegal for a lady to do what on a public conveyance,Eat Chocolates,General,"What completes the term ""double-_____"" which forms the structure of DNA",Helix,Mathematics,What is the name given to the number equal to 10 raised to the power of 100?,"A ""googol""" -General,What boys name means Rich Guard,Edward or Edmund,General,What is the ratio of the speed of an object to the speed of sound in the surrounding medium,Mach speed,General,What religion has mosques as its places of worship,Islam -General,Wwhat is the name of Mulder and Scully's supervisor on the X-files?,Walter Skinner,General,For what is the chemical symbol h2o2,Hydrogen peroxide,General,What type of chemical are adrenaline and oestrogen,Hormones -General,Estelle Parsons best supporting actress Oscar what 1967 film,Bonnie and Clyde,Music,Which Band Did David Coverdale Form After Leaving Deep Purple,Whitesnake,General,What is meat slaughtered according to Muslim law,Halal -General,"In egyptian mythology, who was isis the wife of",Osiris,General,What is th name of the famous hyrogen gas filled airship that crashed in 1936?,Hindenburg,Food & Drink,"Which food connects Blanche Ames, Lord Lambourne and Willis Williams? ",They're all Varieties of Apple  -General,"Who recorded the album ""Wings Over America"" in 1976",Paul McCartney,General,In which book of the bible are the Ten Commandments first listed,Exodus,General,In which group would you find Jarvis Cocker,Pulp -General,Worker ants may live up to how many years,Seven,Music,Name The Singer And The Song Of Brian Hyland's Hit Reaching No.1 In 1989,Jason Donovan / Sealed With A Kiss,General,Mary Robinson became president of Ireland in which year,1990 - History & Holidays,When And Over What Was The First British Referendum Held? ,"1975, Membership Of The EEC ",Sports & Leisure,What type of testing was first carried out at the Olympics in 1968? ,Sex Testing ,General,What is a group of this animal called: Buck,Brace clash -General,What is the Australian sea wasp,Jellyfish,General,In Disney's Jungle book name four vultures,John Paul George Ringo,General,"Which trophy is inscribed ""The Gentlemen's Single-Handed Championships of the World""",Wimbledon men's singles cup -Music,"What Connects Jeff Healey, Ray Charles, Stevie Wonder",All Are Blind,General,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,General,What is a male cat called?,Tom -General,Which country blew up a greenpeace ship in new zealand,France,Music,With Which Group Do You Associate David Ruffin & Eddie Kendricks,The Temptaions,Art & Literature,What Did Winston Encounter In Room 101 ,Rats  - Geography,What is the principal river of Ireland?,Shannon,General,Mardi gras is French for ___________,Fat Tuesday,General,What was the name of the changeling on Deep Space Nine,Odo -General,What Russian revolutionary founded Pravda,Leon Trotsky,General,What country's major seaport is alexandria,Egypt,People & Places,Who was elected as the Conservative MP for Henley in 2001? ,Boris Johnson  -General,What name is given to the current of warm water that flows across the Pacific to Peru,El nino,Sports & Leisure,Who Won The Young Persons BBC Sports Personality Of The Year Award In 2006? ,Theo Walcott ,General,Which hats became popular with children in 1956,Davy Crocket -Sports & Leisure,What Is Lepidoptery Better Known As ,Butterfly Collecting ,Science & Nature,What animal lives in a warren?,Rabbit,General,And in 1985 who was on the last one produced,Rambo -General,What's the plural of 'larva',Larvae,General,Who is the Patron Saint of sailors,Saint Elmo,General,An anti-tussed is used to treat what,Coughs -General,Which russian scientist used dogs to study conditioned reflexes,Ivan pavlov,General,What is the name of the metal discs set in a tambourines rim,Jingles,Sports & Leisure,What Annual Sporting Event Takes Place Between Putney And Mortlake? ,The University Boat Race  -Food & Drink,After Who Was The Sandwich Named ,The Earl Of Sandwich ,General,Who draws the Far Side series of cartoons,Gary larson,Food & Drink,In which English county is Brie made? ,Somerset  -General,Who was the first Christian missionary?,Paul,General,When was the cascade tuning radio receiver invented,1913,General,What part was played by Patrick Newell in the series The Avengers,Mother -Sports & Leisure,Who won a boxing gold medal at Sydney in 2000 in the super heavyweight division? ,Audley Harrison ,Art & Literature,Who created 'The Saint'?,Leslie Charteris,General,In the wild what animal pollinates banana plants,Bats -General,Where is the site of the U.S. bullion depository,Fort knox,General,Which leader lives in the Potola,Dalai Lama, History & Holidays,"If you were born on Halloween, what star sign would you be ",Scorpio  -General,Which famous athlete was was a Tory M.P. from 1959-66 and 1969-74; latterly holding ministerial office,Chris chataway,General,An animal described as ecaudate lacks which physical feature,Tail,General,Term literally jointed foot applies to insects spiders and crabs,Arthropods -General,How many locks are there on the Suez Canal,None,General,Who is the Roman Goddess of invention and wisdom,Minerva,General,"Tylenol, darvon, & aspirin are examples of _____",Analgesics -General,"Who is the Norse god of fertility, sun, & rain",Frey,General,If you suffer from protanopia you cannot see what,Colour red,General,Name Woody Allen's black and white romantic study of his home town,Manhattan -General,One of the band steps is nicknamed H what's it stand for,Hyperactive,General,South africa is the biggest producer and exporter of ______?,Mohair,General,"After five years as ""Suzanne Sugarbaker"", Delta Burke left what hit show",Designing Women -General,A person with refined taste in food and drink,Epicure,General,Who wrote the Star Spangled Banner,Francis Scott-key,General,Who is the leader of the inkatha freedom party,Mangosuthu buthelezi -Music,"Who Organised The Legendary 1972 Bickershaw Festival Starring The Grateful Dead, Captain Beefheart, & Donovan",Jeremy Beadle,General,"""Victor Willis, Felipe Rose, Randy Jones, David Hodo, Glenn Hughes, & Alex Briley"" Are All Members Of Which Chart Topping Group",The Village People,General,What's the word for the luminous mist that surrounds a saint,Nimbus -Food & Drink,"In Italy, if you were served pesce martello, what would you be about to eat? ",Shark ,General,Which Greek island is also a variety of lettuce,Cos,General,What is also known as liberty cabbage,Sauerkraut -Tech & Video Games,Who is the famed musical director for Square's Final Fantasy series? ,Nobuo Uematsu,Music,Anna Mae Bullock Is The Real Name Of Which Singer,Tina Turner,General,Which Nobel Prize winner wrote 'The Old Man and the Sea,Ernest hemingway -General,"Equestrian, Yachting and what Olympic sport are sexes equal",Shooting,Music,"Which Swingers Were Doing ""The Hippy Hippy Shake"" In 1963",The Swinging Blue Jeans,General,What does susan b. anthony's middle initial stand for,Brownell -General,What is the current no 1 aphrodisiac (reputedly),Asparagus,General,"In rugby, what is the equivalent of a hockey face-off",Scrum, History & Holidays,Name the incident in which tea was dumped into the harbour.,Boston Tea Party -General,Who is Goldie Hawns actor partner,Kurt russell,General,What was the ceaseless medieval search for a method of turning base metals to gold called,Alchemy,Music,"Brian Jones Died In A Swimming Pool At Cotchford Farm, Sussex But Which Author Once Owned The Farm",A A Milne (Winne The Pooh) - History & Holidays,What planet was 'ALF' from? ,Melmac ,General,Ad Lib is short for the Latin Ad libitum what's it literally mean,At Pleasure,General,Which actor refused the leading role in Laurence of Arabia,Marlon Brando -Sports & Leisure,What Country Was The First To Win The World Cup & What Country Was The First To Host It (PFE) ,Uruguay & Uruguay ,Science & Nature," The Ozark blind salamander begins life with eyes and plumelike gills. As the animal matures, its eyelids fuse together and the gills __________",Disappear,General,What is the fear of birds known as,Ornithophobia -General,What is the address Donald Duck lives at,"1313 webfoot walk, duckburg, calisota",Science & Nature, A shrimp has __________ pairs of legs.,5,General,Where is the worlds largest gold depository,Federal reserve bank Manhattan -General,What is the unit of currency in Hungary,Forint,General,What did the US government call predawn vertical insertion,Invasion of Granada,General,What are you supposed to give/get for 40 years of marriage,Ruby -General,One of Ferdinand Magellen vessels completed the first circumnavigation of the world in which year,1522, History & Holidays,Which military battle took place in 1815?,Waterloo,General,The mersey river runs through _____,Liverpool -General,How long is Lent is western churches? ,40 Days ,General,What metallic element is essential to the red blood cells,Iron,General,What is the Capital of: Suriname,Paramaribo - History & Holidays,According to the Bible who is Jesus's father ,God ,General,Champagne bottles - 6 bottles of champagne are in a what,Rheoboam,Food & Drink,Forks Were Originally Known As What ,Splitspoons  -Food & Drink,What Is A Ramekin ,A Small Casserole Dish ,General,Whose nickname was 'babe',Mildred ella didrikson,General,Name the first mailman in Philadelphia,Benjamin Franklin -General,Pilgrims visit Mecca where is Mecca,Saudi Arabia,General,Who is the biggest producer and exporter of mohair,South africa,General,Ailurophobia is the fear of?,Cats -General,March April and May are the only months that have what,Anagrams Charm Ripal Yam,General,Which U.S. film actress was married to Mickey Rooney and Frank Sinatra,Ava gardner,Music,Who had a hit song in 2007 called “I don't feel like dancing”,SCISSOR SISTERS -General,"Puritan preacher who said ""Wine is from God, the drunkard is from the Devil""",Increase mather,General,What are you doing if you pandiculate,Yawn,General,What is measured in ohms,Electrical resistance -General,Which Canadian island is the setting for 'Anne of Green Gables,Prince edward island,General,What's the capital of paraguay,Asuncion,General,M31 is the nearest galaxy to us - what is its other name,Andromeda -General,"What ship sank in ""a night to remember""",Titanic,General,Franki valli and the _______,Four seasons,General,Scottish clan were traitors and caused the Glencoe massacre,Campbells -General,By the time a child finishes elementary school they will have witnessed how many acts of violence on television,100000,General,Who was the first UK royal interviewed on television,Prince Philip,Geography,Into which sea does the Nile flow?* * ,The Mediterranean  -General,Stewart Goddard changed his name to become what pop hit,Adam Ant,General,Which character in TV's Red Dwarf is a hologram,Rimmer,General,How many pounds are there in a stone,Fourteen -General,Which English Prime Minister was known as 'the Great Commoner'?,William Pitt the Elder,Music,Which Song About Contraception Was Blazoned Across Countless White T-Shirts,Relax,Religion & Mythology,These wounds of christ mysteriously appear on believers who sometimes weep blood as well.,Stigmata -General,Who is the lead singer of the group doors,Jim morrison,General,The Fort George Point in Belize City was formed by the silt runoff of what hurricane,Hattie,General,Who would use a Pig'in String,Calf Roper Rodeo – Tie its feet -General,Which Novel Was The First To Be Written On A Typewriter,Adventures Of Tom Sawyer,General,Name the first British film studio set up in the 1930s,Pinewood Studios,General,The Suez Canal was nationalized in what year,1950 -General,In Guelph Ontario a by-law makes what illegal in the city,Peeing A no Pee zone,General,What nationality was the entertainer Victor Borges,Danish,General,What is the Badger state,Wisconsin -General,In which European city is Charles university,Prague,General,What are the clouds of magellan,Galaxies,General,What toy company is the world's1 maker of female apparel,Mattel -General,What is the young of this animal called: Pigeon,Squab squeaker,General,What is the fear of leprosy known as,Leprophobia,General,Which is the only country to represent a letter in the phonetic alphabet,India -Toys & Games,The easiest to defend continent in Risk,Australia,General,"The Movie Star ""Mary Cathleen Collins"" Is Better Known As Who",Bo Derek,Sports & Leisure,Who Beat Mike Tyson In 1990 To Become Undisputed Heavy Weight Boxing Champion Of The World ,James Buster Douglas  -General,In dry measure 8 quarts are a what,Peck,General,U.S. captials Montana,Helena,General,A receptacle for holy water is a(n) ________,Font -General,Gerald Thomas directed what series of films,Carry on Films,General,What are alabaster marbles,Alleys,General,Lexico was invented in 1932 what did it change its name to,Scrabble -General,What links Sivan Av Tevat and Adar,Jewish months,General,In Ashville North Carolina its illegal to do what on the streets,Sneeze,Music,What is the stage name of the rap star born Curtis Jackson,50 Cent -General,Winnie the Pooh lived where,Hundred Acre Wood,General,"In Greek mythology, the nymph Callisto was turned into which creature",Bear,General,Julian Dick George Anne and who make the famous five,Timmy the Dog -General,What do men do half as much as women,Blink,General,What is the fear of halloween known as,Samhainophobia,Sports & Leisure,Baseball: The Milwaukee ______?,Brewers -General,"In 'startrek', who did leonard nimoy play",Dr spock,General,Who is the roman goddess of harmonious relations,Concordia, History & Holidays,Which was the last of the 5 civilized tribe to arrive in oklahoma ,Seminole  -General,Which song did the easybeats record that everyone sang at the end of a work week,Friday on my mind,General,What was the name of Frank Zappas first band,The Ramblers,General,What are the sandals called that are worn in ceremonial japanese tradition?,Tabi -General,Who Originally Said Of Gerald Ford That 'He Was So Dumb That He Couldn't Fart And Chew Gum At The Same Time',Lyndon B Johnson, History & Holidays,Which does Carrie's Mother Warn Her Will Happen If She Attends The Prom ,They are all going laugh at you ,General,What is the Capital of: Turkey,Ankara -General,If an Aussie called you a Bananabender what would he mean,You were from Queensland state,General,What is the name of the police inspector that is bent on getting Valjean in Les Miserables,Javert,Geography,What Is The Largest Lake In England ,Windermere  -General,"Born May 7, 1901, He Starred In This Movie: Dallas - 1950",Gary cooper,General,What chemical substance can halophytic bacteria tolerate,Salt,General,"Which Irish pop band consists of' Paul Hewson, Larry Mullen, David Evans and Adam Clayton",U2 -Science & Nature,Which metal has the chemical element W? ,Tungsten ,General,Vigesimal is which base numbering system,Base twenty,General,Who uses the slogan 'aol',American online -General,What colour is Llamas milk,Yellow,General,Insulin is commonly used to treat which condition,Diabetes,People & Places,"About Whom Did President Eisenhower Say 'I Just Will Not, I Refuse To Get Into The Gutter With That Guy' ",Senator Joseph McCarthy  -Entertainment,For which ad campaign was the line 'I can't believe I ate the whole thing' used?,Alka Seltzer,General,Of which country was Salvador Allende president,Chile,General,What is tina turner's real name,Annie mae bullock -General,Who is the persian god of light,Mithra,General,A fingernail or toenail takes about how many months to grow from base to tip,Six,General,Who designed the first feasible automobile with an internal combustion engine,Karl f benz -General,What is the national sport of Finland,Motor Rallying,General,How many teeth constitute a set of adult teeth,Thirty two,Music,"Which 1970's song and singer “It's late September and I really should be back at school, I know I keep you amused but I feel I'm being used”?",Rod Stewart / Maggie May -General,Who was the black assistant of mandrake the magician,Lothar,General,Who won the eurovision song contest twice,Johnny logan, History & Holidays,Who wrote How the Grinch Stole Christmas? ,Dr Seuss  -General,Which doctor loved Lara Antipova,Dr zhivago,General,What do ungulate animals alone have,Hooves,General,Where would you find a bema narthex and apse,In a Basilica -Science & Nature, A crocodile can't stick out its __________,Tongue,Music,Who had a hit with Lazy Sunday in 1968?,The Small Faces,General,"Which Famous Movie Features A Car With The Licence Plate ""ECTO 1""",Ghostbusters -General,If yoU.S.uffer from ailurophobia what are you afraid of,Cats,General,The Indiana Pacers basketball team retired 35 which used to belong to _____,Roger brown, History & Holidays,In which film is the bad guy a one handed criminal named Han who deals in drugs and white slavery ? ,Enter the Dragon  -General,"Who Said ""Who controls the past controls the future. Who controls the present controls the past""?",George Orwell,General,"In the Bible, who led 10,000 soldiers into battle against the Midianites",Gideon,General,What is the name of the man who gave his name to the World Cup Trophy,David rimet -Music,Name Paul McCartneys Back Up Group On His We All Stand Together Single,The Frog Chorus,General,Brian Lara broke the record for the highest first class cricket innings by scoring 501 not out against which county in 1994,Durham,General,"Which company produced the World War Two aeroplane, the 'Lightning'",Lockheed -General,What popular drink was introduced at the St Louis World's Fair in 1904,Ice,General,"Who is the mayan earth and moon goddess, and patroness of pregnant women",Ixchel,General,Jack Nicholson and Jessica Lange starred in the remake of the film 'The Postman Always Rings Twice' in what year,1981 -General,Which writer coined the word Cyberspace in 1984,William Gibson – Neuromancer,General,What is the most stolen item in US drugstores,Batteries cosmetics,General,"What was the real name of the actress, Gloria Swanson",Gloria may josephine svensson -General,Who won the 1988 Superbowl,Washington Redskins,General,In standard cine film how many frames are shown each second,24,General,Mary Cathleen Collins changed her name to what,Bo Derek -General,What is the Capital of: Aruba,Oranjestad,General,What kids tv show celebrated its 20th season in 1988,Sesame street,General,What is the flower that stands for: ambition,Mountain laurel - History & Holidays,The Christmas Tree Displayed In Londons Trafalgar Square Is Traditionally Donated By Which Country ,Norway ,General,Bonnie Booth (38) used what to remove a corn from her foot,410 shotgun – after razor hurt,General,What's the royal dog of china,Pekingese -General,"Countries of the world:central Europe, the capital is Prague",Czech republic,Music,"Which Female Vocal Group Started A String Of Hits With Stay In ""1993""",Eternal,General,"Which metal, with the Atomic Number 3, is the lightest known solid element",Lithium -General,What dog has the best eyesight,Greyhound,General,Where in the human body is the round window,Ear, History & Holidays,On which Christmas day did English and German troops play football ,1914  -General,What was Madam Curie's husbands name,Pierre,Food & Drink,"White Russian Cocktails Are Made From Milk, Vodka And Which Liquer ",Kahlua ,General,Film The Dead Heat Merry go Round 60s what stars first 1 line,Harrison Ford -General,"What was first played at Ballarrat gold fields, Australia in 1853",Australian rules football, History & Holidays,Who played the first screen incarnation of Dr. Hannibal Lecter ,Brian Cox ,Music,"In Which Year Did Micheal Jackson Top The Charts With The Song ""Black Or White""",1991 -General,"Spanish: how do yoU.S.ay ""fifty""",Cincuenta,General,The story about a king who prematurely divides his kingdom between his daughters is portrayed in which film,King lear,General,Atlanta burned in Gone With the Wind was what old film set,King Kong it needed clearing -General,"The first programmable machine was made in 1808, what was it",Loom,Music,Who Composed The Score For Gentleman Prefer Blondes And Funny Girl,"Jule Styne, Last Of Broadway Giants",General,What tv series starred six female impersonators during its 17 year run,Lassie -Geography,"How Did Henry Stanley Carry His Boat, The Lady Alice Overland ",He Divided It Into 8 Sections ,General,In musical notation which note is half a minim,Crotchet,General,What East Indian herb of the family Pedaliaceae linked Ali Baba,Sesame -General,In The World Of Music How Is Raymond Burns More Commonly Known,Captain Sensible,General,Superstition says that this birds feathers should never be inside a house,Peacock,General,Motor racing across country or on unmade roads,Autocross -General,Where did aristotle believe the seat of intelligence was,Heart,Sports & Leisure,In Which Game Might You Tug On Your Ear ,Charades ,General,What is the Capital of: Saudi Arabia,Riyadh -General,What is bovine spongiform encephalopathy,Mad cow disease,General,Spanakopia is a Greek pie filled with what,Sautéed Spinach,General,What is Agoraphobia the fear of?,Open Spaces - History & Holidays,Britain's first stretch of motorway was opened in 1958 to bypass which northern town (now a city) ,Preston ,General,What is the world's longest river,Nile,People & Places,In Which African Country Is The Seaport Of Banana ,"The Democratic Republic Of Congo , Formally Zaire " -General,What did members of the nazi ss have tattooed in their armpits,Blood type,Music,Who Was Married To Nirvana's Late Lead Singer Kurt Cobain,Courtney Love,General,What gives its name to a protein found in the human blood,The rhesus monkey -Science & Nature,Heroin is the brand name of morphine once marketed by which pharmaceutical company?,Bayer,General,The PH scale measures acid or alkali what's PH stand for,Potential of Hydrogen,Sports & Leisure,What swimming stroke is named after an insect?,Butterfly -General,In what city 1985 was the worlds first computer museum opened,Boston,General,Named After A Bird What Is The Specific Tertm In Golf For The Unusual Score Of Four Under Par?,A Vulture,General,How high is a baketball hoop?,10 Feet -General,Whose likeness is displayed on the purple heart medal,George washington,General,A Retifist has a fetish about what,Shoes,General,In which country would you find the Negev desert,Israel -Sports & Leisure,Which Film Starring John Candy Told The Story Of The Jamaican Bobsleigh Team ,Cool Runnings , History & Holidays,Where Did Harold McMillan Make His Famous Winds Of Change Speech In 1969 ,"Cape Town, South Africa ",Science & Nature,What is the only day named after a planet?,Saturday -General,What is a gricer interested in?,Trains,General,What does an odometer measure,Speed,Sports & Leisure,There Are 2 Major League Baseball Teams In New York City Cab You Name Them PFE ,Yankees & The Mets  -Entertainment,Which films are about the Corleone family?,The Godfather films,General,Who wrote the opera 'norma',Vincenzo bellini, History & Holidays,"What type of men's jacket featured it's name on the outer breast pocket,and epaulets on the shoulders? ",Member's Only  -General,Floating wreckage at sea,Flotsam,General,Who created the cartoon character 'Bugs Bunny',Chuck jones,General,What is the only word in the english language that begins and ends with 'und',Underground -Science & Nature, 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,People & Places,Which Famous Child Actor of the 80's is presently giving evidence at the trial of Michael Jackson ,Corey Feldman ,General,What is the nickname for South Dakota,Coyote state -General,What roman emperor does the King of Diamonds represent,Julius caesar,General,What the most north eastern state of the contiguous U.S.,Maine,General,What Was The First Ever Consumer Product To Contain Nylon?,The Toothhbrush -Food & Drink,The Name Of Which Chinese Dish Means 'Odds & Ends' ,Chop Suey ,General,In what Shakespeare play does the character Caliban appear,The Tempest,General,What is the fear of voids known as,Kenophobia -General,"Link the sports Cricket, Rackets, Croquet and Motorboat racing",Only appeared once in Olympics,General,On the same subject who eventually married Lord Peter Wimsey,Harriot Vane, History & Holidays,In which state was `The Blair Witch Project' set ,Maryland  -General,"Who wrote 'Bliss was it in that dawn to be alive, but to be young was very heaven'",William wordsworth, History & Holidays,Which fellow singer was Roberta Flack paying tribute to in her song 'Killing Me Softly ,Don McLean ,General,The Pentagon accidentally ordered 82 year supply of which food,Freeze dried Tuna salad mix -General,What does wyatt earp's headstone say,..that nothing's so sacred as honor and,Music,"Who Recorded The Albums ""All Over The Place"", ""Distant Light"", ""Everything""",The Bangles,General,Who is the Greek god of shepherds & flocks,Pan -General,Who played bonnie to warren beatty's clyde,Faye dunaway,General,How many musicians are there in a nonet,Nine,General,Who was Cleopatra's first husband,Ptolemy Dionysus – her brother -Music,"Which Band Recorded The Album ""Hysteria""",Def Leppard,General,What capitol city means Bay of Smoke in the local language,Reykjavik,Music,Number of solo albums by individual Beatles,71 -Music,On the 80's album Purple Rain who backed Prince?,The Revolution,General,This space station killed a cow on re entry into earth's atmosphere,Skylab,Music,In Which UK City is Abbey Road?,London -General,"Which classic Hollywood western is based on the film ""The Seven Samurai",The magnificent seven,General,Men must toss what at least 3 times during Olneys Great Race,A Pancake,General,In what sport is a 'chukka',Polo -General,What two-person group recorded the song 'love will keep us together',Captain,General,What kind of rain was New York cop Michael Douglas running through in Japan in 1989,Black rain,General,What is the flower that stands for: beauty and prosperity,Red-leaved rose -General,Who was the leader of the wolves in Kipling's Jungle Book,Akala,General,What is the fear of wasps known as,Spheksophobia,General,What caused the computer in Electric Dreams to become alive?,Spilled Champagne -Music,Who Had A Hit In 1981 With The Song Daddy's Home,Cliff Richard,General,Where does a tortoise have an upturned shell at its neck so it can eat cactus brances,Galapagos islands,General,Who founded the Missionaries of Charity in 1948,Mother theresa -Sports & Leisure,Monza & Silverstone Are Venue's For Which Sport? ,Formula One Racing ,General,Famous 20th century novel is set mainly on fictional Pianosa,Catch 22,General,What is the young of this animal called: Rat,Kitten -General,"What novel contains the line: ""who promoted major major""",Catch 22,General,An arched brick or stone ceiling or roof.,Vault,Music,"At This Moment Was A Hit For ""Bob & The Boot Leggers"" Or Was It ""Billy & The Beaters""",Billy And The Beaters -General,What is the real identity of aquaman,Arthur curry,General,"Who played edgar linton in william wyler's ""wuthering heights""",David niven,General,What term was used from 1914 onwards to describe music emanating from New Orleans,Jazz -Science & Nature,What Is The Square Root Of 144 ,12 ,General,Whats the last word of the bible,Amen,General,Which 20th century leader introduced the custom of carrying a flaming torch from Athens to the site of each Olympic games,Adolf hitler -General,At which village in West Sussex was a Roman palace discovered in 1960,Fishbourne, Geography,What is the capital of Bosnia and Hercegovina ?,Sarajevo,Music,"In The 10 Years Between 1972 & 1981 John Peel Was Voted Best DJ In The NME Readers Poll Nine Times, Which Radio 1 DJ Was The Only Man To Win The Award",Noel Edmonds - History & Holidays,For what is the eighteenth and nineteenth century sailor Sir Francis Beaufort best remembered? ,His System Of Wind Force Indicators ,General,Who played arthur fonzarelli in 'happy days',Henry winkler,General,"In The World Of Music How Is ""Evangelos Odysseus Papathanassiou"" More Commonly Known",Vangelis -General,In which Australian state or territory is the Kimberley Plateau and Eighty Mile Beach,Western australia,General,"If a bear lives in the northern hemisphere, the opening of the cave in which he hibernates is always on which slope",North,General,What do british tabloids often refer to as buck house,Buckingham palace -General,Which nation calls its parliament 'The Knesset'?,Israel,General,From which plant does the drug belladonna come from,Deadly nightshade,General,Mickey mouse has some nephews what were there names,Mortie and ferdie -General,90% of all thoroughbreds are descended from what horse,Eclipse,General,Who is the mesopotamian god of vegetation,Dagon,General,Poem or song narrating popular story,Ballad -General,Alan Stuart Konigsberg famous as who,Woody Allen,Sports & Leisure,Who Did Mike Tyson Defeat to gain his first HeavyWeight Title ,Trevor BerBick ,General,If You Suffered From “ Pediophobia ” What Type Of Object Do You Really Dislike?,Dolls -Sports & Leisure,How many points does a player score for a goal in hurling? ,3 Points ,Geography,"Reykjavik, _______________ is likely the cleanest capital city in the world.",Iceland,General,What color is produced by the complete absorption of light rays,Black -Entertainment,"Tinky winky, Dipsy LaLa and Po are know as what?",The Teletubbies,General,67% of the worlds population have never done what,Make a phone call,General,"Who said Hanover, Indiana was the ""dufus capital of the world""",Larry bird -General,What kind of food is Cullan Skink,Fish,General,What museum is home to half the paintings now attributed to Leondardo,The louvre louvre,General,What is the back boundry line in tennis called,Baseline -Geography,In Which Ocean Is The Gulf Stream ,The Atlantic ,General,Where can you buy a copy of Penguin News,Falkland Islands,Music,Which Groups Name Has The Initials RFTC,Rocket From The Crypt -General,"In religious institutions, a courtyard with covered walks. ",Cloister,Music,What Is The Term Which Defines Unaccompanied Singing,A Cappella,Music,What Was A No.1 Hit In The 70's For Tina Charles,I Love to Love (My Baby Just Loves To Dance) -Music,"Which 1990's Star Appeared As A Child On The Sleeve To The Grateful Deads 1969 ""Aoxmoxoa"" Album",Courtney Love,General,Walt Disney's family dog was named _________. She was a poodle. ,Lady,General,Which cheese is traditionally put on pizza,Mozzarella -General,"Concertino=short concerto, concertina=simple type of this instrument",Accordian,Science & Nature," When a __________ is first born, it is male, and it gradually evolves to female as it matures.",Shrimp prawn, History & Holidays,In which country do people who want to travel take a suitcase and carry it around the house on New Year's Eve? ,Venezuela  -General,In 18th century England what was known as Old Tom,Gin,Food & Drink,The Aperitif Made From White Aligote Wine And Cassis Is Known As What ,Kir ,Music,Which Teen Boy Band Did Johnny Wright Manage Before The Backstreet Boys,New Kids On The Block -General,Nudophobia is the fear of,Nudity,General,According to doctors people with what pets fall asleep easiest,Fish,General,What Boston Celtic's player think that Woody's hometown is full of idiots,Larry bird -General,What was the nationality of Franz Liszt,Hungarian,General,Most lipsticks contain what unexpected item,Fish Scales,General,Kopophobia is the fear of,Fatigue -General,What does bette davis' headstone say,She did it the hard way,General,"Who played victoria barkley on the tv show, ""the big valley""?",Barbara stanwyck, Geography,In which country is Tobruk?,Libya -General,What capital city is found near the headwaters of the Bosna River,Sarajevo, History & Holidays,How many astronauts manned each project mercury flight ,One ,Science & Nature,What Fundamental Part Of Computer Technology Was Pantented In The Us In 1961 ,Silicon Chip  - Geography,What is the basic unit of currency for Qatar ?,Riyal,General,Brothers A terrapin is a type of _________.,Turtle,General,Mary Pickford Charlie Chaplin and who founded United Artists,D W Griffith -General,Which Pop Duo Before Hitting The Big Time Were Formally Kno wn As Executive,Wham,Science & Nature, Most varieties of __________ can go an entire year without eating a single morsel of food.,Snake,General,What is the name for meat killed in the prescribed Muslim manner,Halal -General,Who founded the academy in athens,Plato,Food & Drink,In which US state did chilli con carne originate? ,Texas ,Sports & Leisure,In Tennis What Have You Achieved When You Score A Point Directly From A Serve? ,An Ace  -General,"The oldest tree in Britain is a yew in Scotland, how old is it","1,500 years",General,Glen Morris was the last Olympic gold medallist to do what 1938,Act Tarzan in Tarzans Revenge 1938,General,What stage of a meal would you eat charlotte,Dessert -Geography,Grasshopper Glacier in ___________ was named for the grasshoppers that can still be seen frozen in the ice.,Montana, History & Holidays,"Who were Balthazar, Melchior and Caspar? ",The Three Wise Men ,Science & Nature,"What Type Of Insects Are Hawkers, Clubtails, Biddies, Emeralds, Darts & Skimmers ",Dragon Flies  -Music,"Was ""Glory Of Love"" A Hit For Peter Cetera Or Kenny Loggins",Peter Cetera,General,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,General,Which spice is used in a whisky sling,Nutmeg -General,Angus Drummie Zeb Gaye is a member of which group,Aswad,Music,"When Did The Prodigy Release ""Fire""",1992,General,Name the port at the mouth of the River Seine,Le havre -General,Which island lies to the west of australia,Mauritius,General,What kind of creatures are the canary islands named for,Dogs,General,"What group sang ""Come On Eileen""?",Dexy's Midnight Runners -General,As who is the Frankish ruler Charles the Great better known,Charlemagne,General,What statuette is awarded annually for the best television commercial?,Clio,General,Magnifera Indica is the Latin name of what fruit,Mango -General,"In the 1998 film ""Titanic"", who played the part of Captain Smith",Bernard hill,General,What famous mountain is often photographed by film of the same name,Fuji,General,"Who wrote the classic war novel ""All Quiet on the Western Front""",Erich maria remarque - History & Holidays,Who imported the first Go set into Britain ?,Marco Polo,Food & Drink,In which month does beaujolais nouveau arrive? ,November ,General,Albany is the capital of _____,New York -General,"Only 2 Songs By The Beatles Spent Over 7 Weeks At No.1 ""From Me To You"" Was One Name The Other","Hello, Goodbye",Sports & Leisure,Who Moved Up To The No.1 Ranking For Snookers 1998-1999 Season ,John Higgins ,General,"What outlaws last words were supposed to be "" such is life """,Ned Kelly -General,According to historians what is the oldest device still used,Toothpicks,General,Which Famous Sporting Event Was Founded By Chris Brasher In 1981,The London Marathon,General,The former ancient region of Numidia lies mostly in which modern day country?,Algeria -General,Which US president twice served as an executioner,Grover Cleveland – duty as sheriff,General,What is made of fermented grape juice,Wine,General,"Which Country & Western singer is quoted as saying ""It takes an awful lot of money to look this cheap.""",Dolly parton - History & Holidays,Near what falls did Jimmy Angel crash his plane in 1937?,Angel Falls,General,What is histology,Study of tissues,Geography,In which state is the Kennedy Space Center,Florida -General,What colour bill does a greylag goose have?,Orange,General,For which company did Elvis Costello program computers,Elizabeth Arden,Sports & Leisure,Who was the first to win the grand slam of tennis?,Don Budge -Geography,In Which English City Will You Find The Angel Of The North ,Newcastle ,General,Who got Judas job as the twelfth apostle,Matthias,General,What fruit does not ripen after picking,Pineapple -General,Who once entered a Charlie Chaplin contest in Monte Carlo & placed third,Charlie chaplin,General,What is the sacred river of Hinduism?,Ganges,General, Ichthyology is the study of ________.,Fish -General,What is the longest word that can be typed using only the left hand,Stewardesses,General,The term Quincentennial represents how many years ?,500,General,In the Texas version 12 Days Xmas what is given on the 4th day,Four Prickly Pears - History & Holidays,What name was given to the Allied invasion of North Africa in 1942? ,Operation Torch ,Sports & Leisure,How many minutes is a major penalty in hockey,Five,Geography,"He visited Australia and New Zealand, then surveyed the Pacific Coast of North America.",Vancouver -General,What gland washes the eyes,Tear gland,Science & Nature,What Type Of Plague Was The Black Death ,Bubonic ,General,What film did Art Carney win the 1974 best actor Oscar for,Harry and Tonto -General,Caries refers to decay in what,Teeth,General,What did ed peterson invent,Egg mcmuffin,General,According to Playboy what is their Playmates greatest turn on,Music -General,Methacrylate resin is used to make what,Prosthetic eyes,General,Who built camelot,King arthur,General,"In 1986, what was the maximum fuel capacity (in litres) imposed in Formula 1 racing?",195 -Sports & Leisure,Which Famous TV show was introduced by the theme tune The Black and White Rag? ,Pot Black ,General,In the Christmas song your true love gave you give eight what,Maids a Milking,General,What is in apple pips,Cyanide -General,What is the capital of the U.S. state of Delaware,Dover,General,Where would you find your Zygomatic Arch,Cheekbone,General,Who was the Italian captain who skied a penalty in the 1994 world cup final's penalty shootout,Franco baresi -General,"In Greek mythology, who did melanion defeat in a footrace",Atlanta,General,What kind of creature is a 'Meadow Brown',Butterfly,General,Mans scarf worn inside an open necked shirt,Cravat -General,Who collaborated with john lennon on 'whatever gets you through the night',Elton john,General,Georges Claude invented what in 1911,Neon lights,Science & Nature,What is another term for a black leopard?,Panther -Music,What Is Micks Middle Name,Philip,General,There are 325 days in a christian year; the rest are called _____?,Lent, Geography,Which is the only land-locked country in South East Asia?,Laos -Music,"How Are ""Alan, Wayne Merrill, Jay & Donny"" More Commonly Known",The Osmonds,General,In which country was the yo-yo originally a weapon,Philippines,General,What is unique about the pistol star,Brightest in sky -General,"How many top ten digit hits came from Lionel Richie's LP ""Can't Slow Down""",Five,General,By Indonesian law what is the penalty for masturbation,Decapitation Which head? :o),General,Marathon runners have on average 14 a week - what,Alcoholic drinks -Food & Drink,"What was the first name of Senor Cardini, the Mexican restaurateur who created a classic salad in 1924? ",Caesar ,Science & Nature,Hepatitis affects the __________.,Liver,General,Dark skinned nomadic European,Gypsy -General,By what title was Mohandas K Gandhi known,Mahatma, Geography,Which element makes up 2.5% of the Earth's crust ?,Potassium,General,This large bean shaped lymph gland can expand & contract as needed,The spleen -General,International registration letters what country is ZR,Zaire,Art & Literature,"Whose Works The Ballad Of Reading Gaol & De Profundis, Were Written From His Experiences In Prison ",Oscar Wilde ,General,What are the 2 languages spoken in Malta,English and maltese - History & Holidays,What was the name of the character on the 1st Garbage Pail Kids Pack? ,Blasted Billy or Adam Bomb ,General,What two European states enjoy observer status at the United Nations,Switzerland & vatican city vatican city & switzerland,General,What caused the first Rednecks to be Redneck,Vitamin D Deficiency - poor diet -General,Who was king of Egypt from 1375 to 1358 b.c,Amenhotep iv,Geography,What Is The Capital Of New Zealand ,Wellington ,Music,"With Which Instrument Would You Associate Lionel Hampton, Red Norvo & Gary Burton",Vibraphone -General,Where is the statue 'le petit pissoir',Brussels,General,What causes an Iatrogenic illness,Doctors or treatment,General,What is an animal stuffer,Taxidermist -General,What people were the first to use the rounded arch,Romans,General,From Which Language Does The World Commando's Originate,Afrikaans,General,Where is the worlds largest gay festival held annually,Sydney gay Mardi gras Australia -General,Diane Leather was the first woman to do what,Sub 5 minute mile,Food & Drink,What is the other name for a ground nut or a peanut? ,Monkey Nut ,General,What mythical beast is a cross between a lion and an eagle,Griffin - History & Holidays,Which 1976 Film Is About A Persecuted Schoolgirl With Psychokinetic Powers ,Carrie ,Music,Dominion & Lucretia My Reflection Are Tracks From Whom,Sisters Of Mercy,Entertainment,Secret Identities: Wally West,The flash -General,What Monty Python movie was banned in Scotland,Life of brian,General,Ranidaphobia is the fear of,Frogs,General,"Which group had a British top five hit in the 1960s with Monday, Monday",Mamas and the papas -General,What is the top holiday in the US for candy / sweet sales,Halloween,General,What is a group of this animal called: Fly,Swarm,Science & Nature,What is the most reactive element?,Fluorine - History & Holidays,Which witch did Ozzy Osborne sing about in 1980 ,Aleister Crowley ,General,Who was the first Marvel Comics superhero,Human Torch,Science & Nature,What small region at end of medulla oblongata serves as 'bridge' to brain?,Pons -General,Who wrote the psalms,David,General,Brass is an alloy of copper and what,Zinc,General,Encephalitis affects the ________,Brain -General,William Moulton Marston Lie Detector and what comic character,Wonderwoman,Food & Drink,Fred The Flour Grader Was The Trademark Of Which Company? ,Home Pride ,General,White ribbed red cabbage is named from Italian for Chicory,Radicchio -General,"Who wrote the novel ""Slaughterhouse Five""",Kurt vonnegut jr,Science & Nature,Other Than Mercury What Other Planet Has No Moons ,Venus ,Music,"Who Had A Hit In 1990 & 1994 With ""Tell Me There Is A Heaven""",Chris Rea -Science & Nature,Which Rodent Has Given It's Name To A Mean Spirited Or Bad Tempered Woman ,Shrew ,General,In Which Film Was The Bill Haley Classic “ Rock Around The Clock ” First Heard ?,Blackboard Jungle,Music,Name Two Of The Three Members Of The Police,"Sting, Andy Summers, Stewart Copland" -General,Where is the dirtiest skin on your body,The face,General,What is the Capital of: Slovakia,Bratislava,General,In mythology Romulus Remus suckled by a shewolf fed by what,Woodpecker -Entertainment,"What famous animal character called ""Skull Island"" home?",King Kong,General,Which Icon Of The 1960's Used To Own A Nightclub Called Slack Alices,George Best,General,What organ will most often suffer permanent damage if you have amoebic dysentery,The liver liver -General,What creature in nature is most sensitive to heat,Rattlesnake organs between eyes,General,Jane Peters became famous as who - ( Clark Gables wife ),Carol Lombard,General,Which european peak was first conquered in 1865 by english mountaineer edward whymper,The matterhorn -General,American Hamilton Smith invented what in 1858,A washing machine,General,Capital cities: Tonga,Nuku'alofa,General,What is an ophthalmologist,Eye doctor -General,"What's the ancient greek word for ""great city""",Megalopolis,General,In Britain in 1746 what type of clothing was made illegal,Highland Dress – kilt plaid etc,General,"On which planet, other than earth, did a manmade object first land",Mars -General,What can readers learn about in Equus magazine,Horses,General,What is a marsupium,Pouch,Music,Who Had Hits With “Kiss From A Rose” & “Crazy”,Seal -General,What is a group of finches called,Trimming,Sports & Leisure,How many pockets on a standard snooker table?,6,General,Who was the original killer in Friday the 13th?,Jason's mother -General,Britain's live cable TV used to show what game topless,Darts - filmed in Australia,Music,"Which Lancastrian Town Features In The Beatles ""A Day In The Life""",Blackburn, History & Holidays,The following is a line from which 1970's film 'you're gonna need a bigger boat' ? ,Jaws  -General,"Countries of the world: north eastern coast of central America, the capital is Belmopan",Belize,General,"In music, the art of extemporization or creating all or part of a composition at the moment of performance",Improvisation,General,Rodgers who discovered the grand canyon,Francisco coronado - Geography,What country has a birth rate of 0?,The Vatican City,Science & Nature,What Is Acetylsalicycil Acid Better Known As ,Aspirin ,General,If you were given a French Gobelin what would you have had,A Tapestry -General,Which Mediterranean countries orchestra is bigger than its army,Monaco,General,What Hollywood star was the inspiration for Bugs Bunny,Clark Gable,Sports & Leisure,"Peter Simple, Jack Horner & Ben Nevis have all won which famous sporting event? ",The Grand National  -Tech & Video Games,What is the development team at Nintendo headed by Shigeru Miyamotocalled? ,EAD,Toys & Games,How many balls are used in a game of snooker in addition to the cue ball,21,General,Which pop group were named after the inventor of the seed drill,Jethro Tull -Sports & Leisure,Which City Was The First Ever To Host The Olympics Twice ,Paris ,General,What is the chemical symbol for plutonium,Pu,General,Whose autobiography is Parcel Arrived Safely: Tied With String,Micheal crawford -General,What Was The Vey First London Underground Tube Station To Be Built,Baker Street,Science & Nature,"A ""sirocco"" refers to a type of __________.",Wind,General,Seasoned smoked sausage,Frankfurter -General,What eats 14 feet of earthworms every day,Baby robins,Religion & Mythology,"In Greek mythology, who was the only mortal gorgon?",Medusa,General,Who is the smallest member of the European union,Luxembourg -General,Who won an Academy Award in 1968 as Director of Midnight Cowboy,John schlesinger,General,A woman with dark hair,Brunette,General,What planet is nearest the sun,Mercury -General,What first name has been used by most presidents,James,General,When did shires have reeves,Feudal times,General,Captain Hanson Gregory Crockett created what void in 1847,Hole in Doughnuts -General,What is the Capital of: Portugal,Lisbon,Music,Berry Gordy Was The Founder Of Which Incredibly Famous Music Label,Motown,General,Who did James Bond marry - character - (both names),Theresa Draco -General,In which constellation are the Seven Sisters,Taurus,Music,Which American Band Took Their Name From A Lesbian Sex Position?,Scissor Sisters,General,Which cartoon character lives in Sweetwater,Popeye's home port -General,"In the film The Great Escape , what were 'Tom', 'Dick' and 'Harry'",Three escape tunnels,Food & Drink,"Once very popular in Europe, which leafy weed was later called pig weed because it was said to be only suitable for pigs and Frenchmen ? ","Portulaca, Purslane or Pusley ",General,Until 1819 technically you could be hung for what in Britain,Cutting down a tree - History & Holidays,"After Henry VIII, Who Was The Next Member Of British Royalty To Get Divorced? ",Princess Margaret ,Technology & 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",General,In Heraldry what is a canton,A Corner -General,What is the small irregular white cloud that zips around neptune approximately every 16 hours,Scooter,General,What was Black Beauties original name,Darkie,Science & Nature,What is a group of geese called?,Gaggle -General,What well known drug comes from the yellow cinchona plant,Quinine,General,Where is the centennial safe,Washington dc, History & Holidays,Which Fictional Radio Character Worked For Radio Norwich ,Alan Partidge  -Entertainment,How many flats are in the key of B flat major?,Two,General,Who was the featured vocalist of the miracles,Smokey robinson,General,"Cod French philosopher, scientist, and mathematician, sometimes called the father of modern philosophy",Descartes -Science & Nature,What phenomenon is caused by the gravitational attraction of the moon,Tides,General,In Minnesota woman can get 30 days for impersonating who,Santa Claus,General,"In 1513, Ponce de Leon discovered what is now the state of",Florida -Music,"Name The Label That Links Joy Division, Durutti Column, OMD, A Certain Ratio, New Order & Happy Mondays",Factory,General,"Countries of the world:western Asia, the capital is Damascus",Syria, History & Holidays,"""What town is the setting for the perennial Christmas classic 'It's a Wonderful Life'? (""""Bailey Park, Beford Falls, Sleepy Hollow, Pottersville"""") "" ",Bedford Falls  -Food & Drink, What colour is creme de menthe?,Green,General,What was the title of Jung Chang's account of growing up in China,Wild swans,Music,Which 1986 No.1 Hit For A Group Was A Cover Of A 1970 No.1 Hit For A Solo Artist,Spirit In The Sky -Music,Which Paul Simon Album Won A Grammy For Album Of The Year In 1987,Graceland,General,Who painted the Water Lilly Pond in 1899 (both names),Claude Monet,General,What talk show host did fred foy announce for,Dick cavett -General,What is a heart attack,Myocardial infarct,General,In which country is the port of Frey Bentos,Uruguay,General,A complex alcohol constituent of all animal fats and oils,Cholesterol -Music,What Was Des O Connor's Only No.1 Single,I Pretend,Science & Nature,"Butterflies & Moths Are In The Insect Group Lepidoptera, Which Group Contains Ants Bees & Wasps ",Hymenoptera ,General,Which actress sang the theme tune to the British sitcom 'A Fine Romance' ,Judi Dench  -Religion & Mythology,Who is the greek equivalent of the roman god Minerva ?,Athena,General,What is a group of hawks,Cast,General,Polyphemus was the leader of which group of mythical giants,Cyclops -Entertainment,"When danger appeared, Quick Draw McGraw became which super hero?",El KaBong,Geography,Lombard Street is London's equivalent of New York's ______________,Wall street,General,The Sydney Olympic torch showed a boomerang and what else,The Opera house -General,What are the devils bones,Dice,Music,Pickin The Blues By Grinderswitch Was Used By Which Radio 1 Disc Jockey As His Theme Tune In The 1970's,John Peel, Geography,Which country administers Martinique?,France -General,Which international alliance was set up in Vienna in 1960 to control the production and pricing of a specific commodity,O p e c,General,In the Sikh religion what is kesh,Uncut hair or beard,General,"The analysis of blood splatter patterns, insect specimens taken from a crime victim, and ballistic information are all part of a larger crime-solving science known as:",Forensics -Science & Nature,What is -459.7 F also know as?,Absolute Zero,General,"Who played John Candy's obnoxious brother-in-law in ""The Great Outdoors""",Dan Akyroyd,General,"Toothpaste Was Famously The First Advert On ITV, What Was The Second ?",Drinking Chocolate -Food & Drink,What Are Scallions ,Spring Onions Or Shallots ,Sports & Leisure,In The Game Of Darts How Much Would You Have Scored If You Achieved A 'Tic Tac Toe'' ,Darts (180) ,General,Scopophobia is the fear of,Being stared at -Science & Nature,The energy which a body possesses by virtue of its motion is called ________.,Kinetic,General,Des moines is the capital of ______,Iowa,General,"William Powell and which actress played the sleuthing couple in the ""Thin Man' series of films 1934 and 1947",Myrna loy -Music,"Name The Year: ""Wuthering Heights"", Grease (Movie), Keith Moon Dies Of An Overdose",1978,General,What is a group of flamingoes,Stand,Science & Nature,What Do You Call A Group Of Kangeroos? ,A Troop  -Science & Nature, The blubber of a male __________ is considered superior to that of the sperm whale for lubricating machinery.,Elephant seal,Sports & Leisure,The Japanese martial art of fencing is called ________.,Kendo, History & Holidays,What battle of the war of 1812 wa fought after the treaty of ghent was signed ,The battle of new orleans  -General,Which Sanskrit phrase means love story,Karma Sutra,General,How many cards are there in a tarot pack?,78,Science & Nature,Your ____ holds your head to your shoulders.,Neck -Music,Reaching No.13 In The Charts What Did Secret Affair Advocate 1979 As,Time For Action,General,What is Erse,Irish Gaelic language,General,What is conway twitty's real name,Harold lloyd jenkins -General,German kids wear what round neck for good luck on New Year,Pretzels,General,Which writer created the detective Lord Peter Wimsey,Dorethy L Sayers,General,"Which opera, composed by Saint-Saens, and first performed in 1877, is set in Palestine",Samson and delilah -General,"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,General,In which town does the famous 'running of the bulls' take place?,Pamplona,Geography,Which Country Has The Most Donkeys In The World ,China  -General,What ailment kills the most fruit flies,Constipation,General,Apart from a brand name what is a Reebok,An Antelope,General,What unit of length is equal to ten raised to the negative ten meter,Angstrom -Food & Drink,Who released the following 'edible' album 'Burnt weeny sandwich' ,Frank Zappa , History & Holidays,Which Small Car Did Austin And Morris Launch In 1959? ,Mini , History & Holidays,Who Was The 3rd Wife Of Henry Viii ,Jane Seymour  -General,Who Has An In-House Magazine Called Aerial?,The BBC, Language,What does 'shogun' mean in English?,Military governor,General,Sheet or ring of rubber to seal joint between metal surfaces,Gasket -General,"Who said ""Losing my virginity was a career move""",Madonna,General,"Which historian wrote ""The Lays of Ancient Rome""",Macaulay,General,Who was the author of the anthropological work 'Coming of Age in Samoa',Margaret Mead -General,There are more than 1500 varieties of what food,Rice,General,On Quaker Oats what word is written on the scroll on the box,Pure,General,"93 percent of U.S. homes have at least one, & the Thomas Nelson Company sells 8 million of them a year. What are they",Bibles -General,When introduced they were pockets for men only - what were,Handbags,General,Tasseomancy is fortune telling using what,Tea Leaves,General,What is the name of the river on the Isle of Wight which virtually cuts it in half?,Medina - History & Holidays,What band got their name from the sixties movie Barbarella? ,Duran Duran ,Music,"""She"" Was A Hit For Who In The Mid 70's",Charles Aznavour, History & Holidays,Which Footballer Was Sent home From The 1978 Football World Cup For Taking Illegal Substances ,Willie Johnston  -General,If You were drinking Rolling Rock lager what US state are you in,Pennsylvania,Geography,What is the official language of Egypt,Arabic,General,What chief justice headed the commission that declared 'lee harvey oswald___acted alone'¿,Earl warren -Science & Nature,What does the 'c' in the equation e=mc^2 stand for?,Speed of light,General,The Stutz_Bearcat is this type of car.,Sports,Geography,Which Country Boasts The Most Goats In The World ,India  -Science & Nature, Goldfish have four color recepectors in their __________ compared to our three _ the mantis shrimp has ten color receptors.,Eyes,General,Which Film Studio Got Its Name From The First Name Of The Parents Of It's 2 Founders,"MIRAMAX, (Mirianda & Maxwell)",General,Who wrote the opera 'the masked ball',Guiseppe verdi -Sports & Leisure,In Bowling What Is The Term For Knocking Down All Ten Pins With 2 Consecutive Balls ,A Spare ,Science & Nature,What is a group of peacocks called,Muster,Science & Nature, The white elephant is the sacred animal of __________,Thailand -General,Which TV show portrayed the lives of performing arts high school students,Fame, Geography,What is the capital of France ?,Paris, Geography,What is the basic unit of currency for Russia ?,Rouble - Geography,What is the basic unit of currency for Nauru ?,Dollar,General,Who coined the theory that the earth revolves around the sun,Nicolaus,General,Theodore Roosevelt received the 1906 Nobel Peace prize for his work to end which conflict?,Ruso-Japanese War -General,Name the legendary Hollywood cowboy who was born as Leonard Slye in 1912,Roy rogers,General,In Dallas Texas it is illegal to possess a realistic what,Dildo,Music,Who Was The Oldest Member Of The Beatles,Ringo Starr -General,How many stars are there on Brazil's flag?,23,General,To what do the tendons attach the muscles,Bones or cartilage,General,Who was the first newspaper owner to give staff a paid holiday,Joseph Pulitzer -General,General sherman burned this city in 1864,Atlanta,General,Demetria Gene Guynes became famous as who,Demi Moore,General,"American mathematician & founder of cybernetics, the study of control & communication in machines, animals, & organizations",Wiener -General,Dick Brams And Advertising Consultant From Missouri Is Responsible For Marketing Which Famous Edible Item,The Happy Meal,General,What peace treaty ended WWI,Treaty of versailles,General,Who were Curier Ellis and Acton Bell,Bronte sisters – pen names -Music,"Which US Songwriting Team Produced The Hits ""Searchin, Yakety Yak, Charlie Brown, & Poison Ivy"" For The Coasters",Jerry Leiber & Mike Stoller,General,Who created 'the saint',Leslie charteris,General,Rich Duncan Robert Whittle Thomas Suchanek champs sport,Hang Gliding -General,Who wrote the poem Anthem for Doomed Youth,Wilfred owen,General,Collective nouns - what's a group of donkeys,A Herd,General,What is the worlds longest insect,Borneo stick insect -General,Devon is the only county in Great Britain to have two ______,Coasts,General,Which author introduced the phrase 'the Beat Generation' in his novel entitled On The Road,Jack kerouac,Geography,What is the capital of Bulgaria,Sofia -Sports & Leisure,"Who Scored AS Record 11,174 Cricket Test Runs For Australia ",Alan Border ,General,Who is olive oyl's boyfriend,Popeye,General,Which heraldic term means flying,Volant -General,Who entertained the colonists by doing cartwheels in the nude,Pocahontas,General,In the rhyme who married The Owl and the Pussycat,The Turkey,General,If you saw a hummock off your port bow what are you looking at,Ice broken from berg -General,Which Beatles song did The Overlanders take to number one,Michelle,General,Who played Dwight D. Eisenhower in the mini series IKE,Robert duvall,Music,"Only 1 Artist Had 2 Records Named By ""Melody Maker"" As Album Of The Year During The 1970's Who Was He",David Bowie -People & Places,Which Actress Was Sued For Not Acting In Boxing Helena ,Kim Bassinger ,General,"Which Politician Did Neil Kinnock Describe As ""A Dither, A Dodger, A Ducker And A Weaver""",John Major,General,Who is the voice of 'phil' in the film 'hercules',Danny devito -General,What is phonetic alphabet word for U,Uniform,General,In what Australian state would you find Orange,New south wales nsw,General,Who said A computer will never need more than 640k of memory in 1982?,Bill Gates -General,Well known phrase Mad as a Hatter - but what made them mad,Mercury Poisoning,General,BSE was identified in Britain in which year,1986,General,Which world-famous concert pianist became President of Poland in 1940,Paderewski -General,"Which John Wayne Western was described by a critic as, 'Grand Hotel on Wheels'",Stagecoach,Food & Drink,What does it mean about the taste if a wine is described as 'brut'? ,Very Dry ,General,"In the book '1984', who is watching",Big brother -General,The great warrior _______________ died in bed while having sex,Ghenghis khan,General,"The current line-up of which POP group includes John McVie, Christine McVie, Stevie Nicks and Lindsay Buckingham",Fleetwood mac,Sports & Leisure,Which Team Joined Formula 1 Racing In 1991? ,Jordan  -General,In which film is danny devito the voice of 'phil',Hercules,General,What is the metal part of a lamp surrounding the bulb and supporting the shade called?,Harp,General,In The film Reservoir Dogs what song was discussed at the start,Like a Virgin – Madonna -General,Who conquered the matterhorn in 1865,Edward whymper,General,"What is the name of the central tower of a castle, the innermost and strongest part",Keep,General,Ishtar is the babylonian goddesss of ______,Love and fertility -General,Who founded the salvation army,William booth, Geography,What is the largest natural lake found in Africa?,Lake Victoria,General,What is the name of Superman's Supercat,Streaky - History & Holidays,At which battle did Nelson famously (turn a blind eye) to orders to disengage? ,The Battle of Copenhagen ,General,Woollen covering for head and neck,Balaclava helmet,Music,Under What Name Did Freddie Mercury Release His Early Singles Under,Larry Lurex - History & Holidays,"In The Ukraine what does it mean if find a spiders web In your house Christmas morning is it, good luck , bad luck, winter will be unusually cold ",Good Luck ,General,Gnu is the three letter term for which animal,Wildebeest,General,Kenny g is the best-selling ______,Saxophonist -Entertainment,An alien creature in a funny hat has opposed both Bugs Bunny and Daffy Duck. Where is he from?,Mars,Entertainment,Who is Scooby Doo's son,Scrappy doo,Mathematics,How many corners are there in a cube?,Eight -General,What number is on the opposite side of the 'five' on dice,Two,General,What is the national dish of the Faeroe Islands,Puffin stuffed with Rhubarb,Music,How Many Semi Quavers Are There In A Crotchet,4 -Entertainment,Forrest ____ liked shrimp.,Gump,General,"Who said ""Come up and see me sometime""?",Mae West,General,What is an 'octothorpe',Pound or number symbol -General,"Largest island of the continental United States, southeastern New York",Long,General,On which other animals does the pill work,Gorillas,General,What is the term for a fine mist or fog which is dispersed in and carried by a gas,Aerosol -Sports & Leisure,Who Was The First Boxer To Defeat Frank Bruno In A Professional Fight? ,James Bonecrusher Smith ,Music,"Who Had Chart Success With ""Set You Free"" In The Mid 90's",N Trance,General,Rod Taylor starred in a 1960 version of which HG Wells story,The Time Machine - Geography,What is the basic unit of currency for Sudan ?,Dinar,General,"What is the meaning of the title of Adolf Hitler's book ""Mein Kampf'",My struggle,General,What sport features a railroad split,Bowling -General,"Branch of mathematics concerned with the study of such concepts as the rate of change of one variable quantity with respect to another, the slope of a curve at a prescribed point, and the computation of the maximum and minimum values of functions",Calculus,General,In Which Sport Will You Find The Corridoor Of Uncertainty,Cricket,Sports & Leisure,Which Football Clubs Motto 'Superbia In Proelio'' Translates Into English As Pride In Battle ,Manchester City  -Sports & Leisure,How many points win a game in badminton? ,15 ,Music,Which musician took Vivaldi's The Four Seasons into the charts?,Nigel Kennedy, History & Holidays,"In 1902 this volcano erupted, killing 30,000.",Pelee -General,Who won the world soccer championship in 1958,Brazil,General,Underground cemetry,Catacomb,General,"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 -Music,From Which Film Did Duran Duran Take Their Name,Barbarella,General,The Straits of Malacca separate Malaysia from which country,Indonesia,Geography,Which capital city stands on the Potomac River? ,Washington D.C.  -General,What was invented by Garnet Carter of Chattanooga in 1926,Miniature Golf,General,Where was the colossus of rhodes,Rhodes harbour,General,"Who Was The Fist Person Ever To Be Handed The ""This Is You're Life"" Red Book By Eamon Andrews",Ray Reardon -Art & Literature,Who Wrote The Famous Book 'A Brief History Of Time'' In 1988? ,Stephen Hawking ,People & Places,Which aviator was Time magazine's first Man Of The Year in 1927? ,Charles Lindenbergh , History & Holidays,In what year was the first Christmas card produced? ,1846  -General,Which is the most abundant element in the universe,Hydrogen,General,In America they are called Mutual Funds how are they known here,Unit trusts,General,"Which character from Dickens' ""Great Expectations"" had been jilted on her wedding day",Miss havisham -General,What is the world's largest sea,Mediterranean,Geography,Name the capital city of massachusetts. ,Boston ,General,How many lanes are there in an olympic swimming pool,Eight -General,What is Alice Cooper's real name?,Vincent Furnier,General,Who gave a piano concert in Moscow in April 1986 having left Russia 61 years earlier,Vladimir horowitz,General,What is the surname of u.s president herbert c ______,Hoover -General,What award did washington create in 1782 as a decoration to recognize merit in enlisted men and non-commissioned officers,Purple heart,General,What is the fear of the color black known as,Melanophobia,General,"In which Charles Dickens' novel do the characters, Mrs Pardiggle and the Jarndyce family appear",Bleak house -General,Who was the 15th president of the U.S.,James buchanan,General,French novelist - nearly 100 books all La Comedie Humaine,Honor'e de Balzac,General,"In the original version of 'romeo and juliet', who played juliet",Olivia -Music,"Name The Geordie ""Hard Man"" And His No.1 From July 1992",Jimmy Nail / Aint No Doubt,General,Where are the Hausa and Ibo tribes?,Nigeria,General,"The well-known aria ""La Donna e Mobile"" features in which Verdi opera about a court jester",Rigoletto -General,In Mexico it is illegal for the police to sell what,Their Guns, History & Holidays,Which shop in Regent St is the largest toy store in the world ,Hamley's ,General,This russian scientist used dogs to study conditioned reflexes,Ivan pavlov -General,"Libya is the only country in the world with a solid, single-colored flag __ what color is it",Green,General,Who invented popsicles?,Frank Epperson,General,What kind of juice goes in a salty dog,Grapefruit -Science & Nature,"In 1447 Johannes Gutenberg Invented The Printing Press, What Was The First Book He Produced ",A Latin Edition Of The Bible ,General,What did Paceard and Balmat conquer in 1786,Mont Blanc,General,The liqueur crème de cassis is made from what,Blackcurrants -Sports & Leisure,Who Became The Oldest Boxer To Retain The Heavyweight Title At The Age Of 45 ,George Foreman ,Music,Who Was The First Western Band To Play A Concert Venue In China,Wham,General,"How would one say the month ""April"" in french",Avril -Entertainment,This was the first cartoon talking picture.,Steamboat Willie,Music,"Which 1961 Movie Directed By Brian Forbes & Starring Hayley Mills & Alan Bates, Provided The Inspiration For Andrew Lloyd Webbers Last Musical Of 20th Century",Whistle Down The Wind,General,"What word did Dan Quayle devote an entire chapter to, in his book of memoirs",Potato -General,The IAAF finally recognised women in which sport in 1995,Pole Vault,Science & Nature,"What Can Be African, Chinstrap, King Or Emperor? ",Penguins , History & Holidays,Which actress starred in the movie The Grudge? ,Sarah Michelle Gellar  -General,Bohea is a type of what,Tea,General,Collective nouns - A glint of what,Goldfish,General,What was Acadia,Nova Scotia (French Name) -General,"If a dish is served A la Chantilly, what would be its main ingredient",Whipped cream,General,What young animal is an offspring of a nanny & a billy,Kid,General,The Emperor Augustus banned his men wearing silk - why,It was Effeminate -General,"Who wrote the original story ""The Lost World""?",Sir Arthur Conan Doyle,General,What divides the American north from the south,Mason dixon line, History & Holidays,What colour was added to the French flag during the French revolution?,White -General,What continent is submerged,Atlantis,General,John de Lancie played which character in the Star Trek series,Q,General,Sacrofricosis is what sort of sexual behaviour,Pocket holes public masturbation -General,What relation was William the Conqueror to Stephen (1096-1154),Grandfather,Toys & Games,Tic-Tac-Toe is based on which game ?,Nine men morris,General,"If a robin's egg is put in vinegar for thirty days, what colour does it become",Yellow -General,"Who sent the brief message ""i came, i saw, i conquered""",Julius caesar,General,Where is the most sensitive cluster of nerves,Base of the spine,General,"What musical instrument has gourd, shoulder, nut and leaves",A Sitar -General,What is the fear of one thing known as,Monophobia,General,What river provided water to feed the Hanging Gardens of Babylon?,The Euphrates,General,Steven the 1st founded what country in 1000 ad,Hungary -Music,Which Rock Star is Nicknamed Slowhand?,Eric Clapton,Sports & Leisure,What Sport is Played On The Back Of a Ten Pound Note ,Cricket ,General,As what is Minnesota also known,Gopher state -General,Eileen Collins was the first _______ on a space shuttle mission.,Female captain,General,What was the first shoe brand name to go into Oxford dictionary,Dr Martins,General,"In which sporting activity are the manoeuvres Fliffus, Miller, Adolph and Barani executed",Trampolining -General,What ingredient must French ice cream contain by law,Eggs,General,What is an 'armsaye' in clothing,Armhole,General,Which of the seven wonders of the ancient world was alive,The hanging gardens of babylon -General,Which country was the first to legalise abortion,Iceland,General,What is the fear of virgins or young girls known as,Parthenophobia,General,What do nine pennies weigh,1 ounce -General,Caer-Lud was the former name of what capitol city,London,General,How many red stripes are there on the national flag of the U.S.A.,Seven,General,The name for which body organ translates as all flesh,Pancreas -General,In Massachusetts it's illegal to wear what without a licence,Goatee,Mathematics,What is the minimum number of integer degrees in a reflex angle?,181,Music,Name The Thrash Metal Kings Headed By Guitarist Dave Mustaine,Megadeath -Food & Drink,With what is champagne mixed to produce `Buck's Fizz'? ,Orange Juice ,General,For what was black the most common colour in the depression,Automobiles, History & Holidays,In what year was 'Dirty Dancing' released? ,1987  -General,Who comes on stage before conductor and tunes orchestra,Concert Master / Mistress 1st violin,General,Marley Who still receives an estimated 25 pieces of junk mail per year at Walden Pond,Thoreau,General,What's a person who does not eat meat called,Vegetarian - Geography,What is the capital of Tunisia ?,Tunis,General,Action Comics 720 after 58 years who returned engage ring,Lois Lane to Superman,Geography,Where is Westminster Abbey located,London -General,A person at his wit's end is said to be losing his what,Marbles,General,What's a funambulist,Tightrope walker,General,Who was the first director of Britain's National Theatre,Laurence olivier -General,In Wyoming in June it is illegal to take a picture of what,A Rabbit,General,What does a chronometer measure?,Time,Science & Nature,"The four Galilean moons of Jupiter are: Callisto, Io, Ganymede, and _________",Europa -Music,Who Sang The Theme Tune To The Bond Movie The Spy Who Loved Me?,Carly Simon, History & Holidays,Which Household Cleaning Product What Launched At The Savoy Hotel In 1960 And By The 1970's Was Being Used In 6 Out Of 10 UK Households ,Fairy Liquid ,Entertainment,"In ""Gone With the Wind"", Scarlett regains her wealth by investing in what type of business?",Sawmill -General,In AFTs top 100 movies only 2 sequels - Godfather and what,French Connection II, History & Holidays,Who Released The 70's Album Entitled Innervisions ,Stevie Wonder ,Music,"What Is The Method Of Playing A Note By Shortening It's Time Value, So That It Is Detached From Subsequent Notes",Staccato -Music,"""Brass In Pocket"" Was A Hit For Which Band",The Pretenders,Food & Drink,Which cake is traditionally eaten on 5th november to commemorate guy fawkes? ,Parkin ,Religion & Mythology,Who killed a dragon in ancient mythology?,St. George - History & Holidays,Who Invented The Christmas Cracker ,Thomas Smith ,General,Oakley what are large snow bumps known as in skiing terms,Moguls,General,What is a group of this animal called: Stork,Mustering -General,"Who, according to a song, damaged her foot on a piece of wood and fell into a raging torrent?",Clementine,Geography,Which Is The 2nd Largest Country In The World ,Canada ,General,Who coined the word sociology,Auguste comte -General,Who coined the term 'proletariat',Karl marx,General,"Name the female comedy star who once had a show on Fox, that had a pop hit in the early eighties.",Tracy Ullman,General,Like what can a fully ripened cranberry be dribbled,Basketball -General,Who played Andy Capp on television in 1988,James bolam,Sports & Leisure,Which Goal Keeper Was Beaten By Maradona's 'Hand Of God'' Goal? ,Peter Shilton ,Entertainment,What city's police force did Charlie Chan work with?,Honolulu -General,Who was the founder of the 'epicurean' philosophy,Epicurus,General,And what's the top annoyance among wives,Untidiness,General,Name only boxer to win a world title who never had a manager,Jake La Motta -General,In Shakespeare's Merchant of Venice name Shylocks wife,Leah,Music,What Were The First Names Of The 3 Original Members Of Bananarama,"Siobhan, Sara, Keren",General,Tanjong Panger Container Terminal where worlds largest con port,Singapore -General,Collective nouns - A group of beavers is what,Colony,General,What is the average lifespan of a tastebud,Ten days,General,The highest mountain in North America,Mount mckinley -General,"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,General,Which Shakespeare play was originally entitled What You Will,Twelfth Night,General,A 'gam' is a collection of which creatures,Whales -General,What was the name of Joan Fontaine's actress sister with whom she had a notoriously bad relationship,Olivia de havilland,Art & Literature,The rendering of light and shade in painting; the subtle graduations and marked variations of light and shade for dramatic effect. ,Chiaroscuro,Art & Literature,"The technique of producing printed designs through various methods of incising on wood or metal blocks, which are then inked and printed. ",Etching -General,"What's the most valuable crop in burma, laos and thailand",Poppy,General,"If one angle in an isosceles triangle is 100 degrees, what is each of the other two",Forty degrees,Science & Nature,What name is used to describe permanently_frozen subsoil,Permafrost -General,"Which Football Club Play Their Home Games At ""The Home Depot Centre""",La Galaxy,General,The Andaman Islands are in which bay,The Bay of Bengal,General,What name is given to a breed of cat which results from cross-breeding between Siamese and Burmese cats?,Tonkinese Cats -Sports & Leisure,Which Woman Won The Wimbledon Singles Title For The Last Time In 1975? ,Billy Jean King ,General,What is the season before Christmas called,Advent,General,What does the angora cat enjoy,Swimming -General,Which country was the first to make seat belts compulsory,Czechoslovakia,General,What is the earth's outer layer of surface soil or crust,Lithosphere,Music,What Was Barry Whites Only no.1 Single In The 1970's,"You're The First , The Last My Everything" -General,Name The First Foreign Company To Open A Factory In The USA,Volkswagen,General,"Who in the 20th century is credited with building the first successful helicopter, which flew in 1939",Igor sikorsky,Geography,Of Which Country Is Rangoon The Capital ,Burma  -Religion & Mythology,What's heaven to fallen Norse warriors?,Valhalla,General,A horses height is measured from the ground to what part,Withers - base of neck crest line,General,What does uranus circle every 84 years,Sun -General,Who was the first non human to win an Oscar,Mickey mouse,Science & Nature,What type of animal lives in a formicary,Ants,General,What is Rapec,Type of snuff -General,What sport did andre agassi's dad compete in,Boxing,General,What's the maximum number of players in a game of Chinese chequers,Six,General,What do you call hair like or feathery clouds,Cirrus -General,Pax is the roman goddess of ______,Peace,Science & Nature," The world's largest mammal, the blue whale, weighs 50 tons at birth. Fully grown, it weighs as much as __________ tons",150,General,Male voice above normal range,Falsetto -General,What Number Is Written On The Back Of David Beckham's Shirt When He Played For Real Madrid ?,23,General,What marx brother had real name milton,Gummo, Geography,What is the capital of Maine?,Augusta -Science & Nature, The average elephant produces 50 pounds of __________ each day.,Dung shit,General,Army Greatcoat Horn of Plenty Diamond Kimono types of what,Napkin Folds,General,Which actor portrayed head of Tommy Lee Jones department in the film Men In Black,Rip torn -General,What animal does the adjective 'pardine' refer to,Leopard,Religion & Mythology,Who is the Norse god of poetry,Bragi,General,In the Old Testament whose name means Gods with us,Emanuel -Art & Literature,"In one of Donald Horne's novels, as what was Australia dubbed?",The lucky country,General,Name the first storm 19 June 1978 called after a man,Bud,General,What is the highest lake in the world,Lake titicaca -Music,"Which Solo Artist Sang Backing Vocals On The Dire Straits Hit ""Money For Nothing""",Sting,General,Rhoda was a spinoff from what other popular tv show,Mary tyler moore show,General,The average person does what 16 times a day,Swear -General,What bird makes an excellent watchdog,Goose,General,What do the EPPY awards honour,Electronic editions of newspapers,General,What was the license number on the Ghostbusters' car?,ECTO-1 - History & Holidays,What was the first product to have a barcode?,Wrigley's gum,General,U.S. captials Wyoming,Cheyenne,General,"Who said ""power is the ultimate aphrodisiac""",Henry kissinger -General,"Four thirds multiplied by pi multiplied by the radius cubed, gives you the volume of what geometric object",Sphere, Geography,What is the basic unit of currency for Angola ?,Kwanza,General,Who released the album Invincible,Michael Jackson -General,Sikorsky what jerry van dyke sitcom is widely hailed as the worst in tv history,My,General,What basketballer was dubbed the NBA's Identified Flying Object,Julius,General,Who first suggested the idea of Daylight Saving Time in an essay he wrote in 1784?,Benjamin Franklin -General,"What Nationality Was The The Musician & Composer ""James Last""",German,General,What is the study of heredity,Genetics, Geography,What river separates the city of Florence?,Arno -General,Who was the Phoenician Goddess of love,Astarte,Science & Nature,What Is The Coloured Part Of The Eye Better Known As ,The Iris ,General,"Football Team, chicago ______",Bears -Sports & Leisure,How Many Tournaments make up a Grand Slam In Golf ,4 ,General,In what sport are ten pieces of wood separated by a chain,Cricket,General,Roman God of love,Cupid -Science & Nature,Ascorbic acid is commonly reffered to as Vitamin - ?,C, Geography,What is the capital of Malaysia ?,Kuala Lumpur,General,In The Lion the Witch and the Wardrobe whets the Lions name,Assan -General,Whose brother wrote seven songs for the movie staying alive,Sylvester,General,Fanny Crosby wrote over 8000 of these - what,Hymns,General,What brand of footwear was invented by Adolf Dassler,Adidas -General,Doraphobia is the fear of _________,Fur,General,"What product is known for sponsoring the ""rotten sneaker contest",Odor eater,General,"A style that flourished in the seventeenth and early eighteenth centuries, characterized by exuberant decoration, curvaceous forms, and a grand scale generating a sense of movement; later developments within the movement show more restraint. ",Baroque -General,The Mason-Dixon line ran between Maryland and which other American State,Pennsylvan1a,General,What are religious ascetics who practise scourging or mutual whipping for bodily discipline or penance,Flagellants,General,The A1 is the longest trunk road in the UK between what 2 cities,London - Edinburgh -General,A beast of prey sometimes called a glutton - what is it,Wolverine, History & Holidays,She was the first First Lady to be received privately by the Pope.,Jackie kennedy,General,What was the first boxed cereal,Shredded wheat -General,In which African country would you find the towns of Kumasi and Cape,Ghana,General,"What's the international radio code word for the letter ""L""",Lima,General,What country calls themselves Magyar?,Hungary -General,The word Utopia from Greek means what,Nowhere,Music,"Who Had A Hit With The Song ""Celebration""",Kool & The Gang,General,What is the art of composing dances,Choreography -General,"In ballet, a step done off the ground.",En l'air,General,James l succeeded to the throne of England in which year,1603,General,Who are the only brothers to win the pga tournament?,Lionel & jay hebert -Entertainment,"When danger appeared, Quick Draw McGraw became which super hero",El kabong,General,What is the latin phrase meaning 'in the original arrangement',In situ,General,What US city hosted the final of the 1994 football world cup,Pasadena -Sports & Leisure,Which Cricketer Captained England In 23 Test Matches Between 1986 And 1988? ,Mike Gatting ,General,How many wives was Mormon leader Brigham Young said to have,27,General,What is the main ingredient of most shampoos,Water -Geography,Which city is known as Motown,Detroit,General,What is the only female animal that has antlers,Caribou,General,Who uses a signalling system known as tick tack,Bookmakers -General,Where do 'open-collar workers' work,Home,General,What famous person was born in Ahmaddnagar India,Spike Milligan,General,Necrophobia is a fear of ______,Dead things -General,Who had a 30 year love affair with Lillian Hellman,Dashiel hammett,General,"What's the international radio code word for the letter ""Q""",Quebec,General,The Chinese scattered firecrackers around the house - why,Fire Alarms -General,Assassin Magazine and Sofa come from which language,Arabic,General,Which film won the best special effects Oscar in 1961,The Guns of Naverone,General,"Where were 'foul lane', 'stinking lane' and 'bladder street'",London -Music,What Is The Best Selling Classical Album Of All Time,Essential Pavarotti,Music,"Who came up with the title for ""A Hard Day's Night""?",Ringo, History & Holidays,In Which Movie Did Jim Carey Play Lloyd Christmas ,Dumb & Dumber  -General,Short legged breed of Welsh dog,Corgi,General,What is the fear of death known as,Necrophobia,Music,Which Artist Went Straight Into The No.1 Slot In July 2007 With The Album “One Chance”?,Paul Potts -General,In the Rocky films what was the name of Rocky's wife,Adrian,General,In Saudi Arabia by law women may not become what,A Doctor,General,The rate of change of velocity is known as _________,Acceleration -General,When did richard burton finish his last film,1984,General,Ncaa: in what year was the heisman memorial trophy first awarded,1935,Geography,Bridgetown is the capital of Where ,Barbados  -General,What do you get by mixing gin and vermouth,Martini,General,"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,General,What is the Decalogue normally called?,Ten Commandments -General,What is a leech a type of,Worm,General,Good rhine wines are bottled in what colour bottles,Brown,General,Sport is played on a variable ground 50x100yd min 100x130 max,Association Football (soccer) -Science & Nature,What Vehicular Safety Device Was First Pantented By Ej Claghorn ,Seat Belt , Geography,Malabo is the capital of ______?,Equatorial Guinea,General,Eglantine Jebb founded which charitable organisation,Save the children fund -Music,"What Song Features The Lyric ""Giant Steps Are What You Take""",Walking On The Moon,General,Which great battle took place from July 1st to November 18th 1916,The Battle,General,What animal's shell is used to make jewellery,Abalone -General,What do the STP Corporation's initials stand for?,Scientifically Tested Products,General,How many Jews were saved on Schindler's List,1100,Sports & Leisure,Ignoring the Words 'Football'' And 'Club'' Which Is The Only Team In The 2006/2007 Premiership League Whose Name Contains All The Letters From The Phrase 'Red Card''? ,Manchester United  -General,If you had canitis what have you got,Grey hair,Sports & Leisure,What is the white ball called in bowls? ,The Jack ,General,Circuits can be wired in series or ______,Parallel -Music,John Elliot Was A Member Of Which Band,Def Leppard,General,Which sea route connects the North Atlantic with the Beaufort Sea and the Pacific Ocean,The northwest passage,Music,"Who Performed The Theme Song to The James Bond Film ""The Living Daylights""",Aha -Geography,Which Bridge In London Was Officially Named William Pitt Bridge In 1769 ,Blackfriars Bridge London ,Art & Literature,A group of American painters who united out of opposition to academic standards in the early twentieth century. ,The eight,General,Which animals kill 275 million creature in UK annually,Domestic cats -Science & Nature,With what body part is otology involved?,Ear,General,This animal is found at the beginning of an encyclopedia,Aardvark,General,"What three categories are rocks divided, according to their formation",Igneous sedimentary metamorphic -Science & Nature,For What Illness Did Louis Pasteur Develop A Cure? ,Rabies ,General,What is Nelson Mandela's middle name,Rolihlahla,General,What county has the largest army in the world,China -General,Anne Boleyn lost her head over this guy,Henry viii,General,Mancha who wrote 'don quixote',Cervantes,General,"What links - Sarte, Neitzsche, Russell and Decartes",Philosophers -General,Tchaikovsky died of which disease,Cholera,General,"In California 22 "" is the minimum legal length of saleable what",Halibut, Geography,What is the current name for south-west Africa?,Namibia -General,"Disgusting question - longest verified American one 12' 2"" what",Turd - over 2hrs 12 minutes,Science & Nature,What is the number of blue razor blades a given beam can puncture?,Gillette,General,What is a pyrotechnic display,Fireworks -General,Zoologist and writer Gerald Durrell spent part of his childhood on which Greek island,Corfu,Science & Nature,What is a skin specialist called?,Dermatologist,General,Who was the third king of israel,Solomon -General,What is the Latin word for poison,Virus,General,What is the fear of small things known as,Microphobia,General,Cecil B De Mille the film director had what middle name,Blount -Music,"What Connects The Lightning Seeds, Cilla black , Space",Liverpool,General,What do callipygian people have,Prettily shaped buttocks,General,Which city did Crocket and Tubbs spend most of their time in?,Miami Vice -General,What did the S stand for in Harry S Truman,Nothing,General,Mildrid Harris Lita Grey Paulette Goddard Oona O Neil - Link,Charlie Chaplains wives, History & Holidays,Who Released The 70's Album Entitled Deja Vu ,CSNY  -General,Cleopatra sometimes wore a fake what,Beard – for Official Duties,General,Bentlet Drummle appears in which Dickens novel,Great Expectations,General,Which feature of the night sky is also known as a 'shooting star',Meteor -Sports & Leisure,In Which Athletic Event Was Colin Jackson A Dominant Figure ,110m Hurdles ,General,And who was his original voice,Clarence Nash,General,What motto ends merrie melodies cartoons,That's all folks -General,What is the English title of Voyna i Mir,War and Peace,General,Benazir Bhutto regained power in 1993 after being ousted how many years before,Three,General,What us state includes the telephone area code 612,Minnesota -General,In which U.S. state was the world's first 'silicon valley',California,Science & Nature,Which chemical element is represented by the symbol Pa?,Protactinium,General,What English philosopher was one of the founders of utilitarianism,John bentham -Music,"Which Famous Pop Group Did Brothers Brian, Carl & Dennis Form In 1961 Joined By Cousin Mike & Friend Al",The Beach Boys,General,Capital cities: Ethiopia,Addis ababa,General,What u.s. vice-president said 'some newspapers dispose of their garbage by printing it',Spiro agnew -Science & Nature,He discovered the process of vaccination for prevention of smallpox.,Edward Jenner,General,In some areas of Paris what is provided for dogs,Private flush toilets,General,What was classical composer Mussorgsky's first name,Modest -Music,Which Group Features Tommy Lee As Drummer,Motley Crue,General,11 am In military time is how many hours,1100,General,Embankment built to prevent flooding,Dyke -People & Places,Which Famous Tv Presenters Are Former MP's ,"Brian Walden, Robert Kilroy Silk ",Music,"Who had his first UK top 10 single in ten years in 2004 with Irish Blood, English Heart?",Morrissey,General,Kitty the most common cats name in US what's the second,Smokey - History & Holidays,In what year was Band-Aid's Do They Know It's Christmas the UK Christmas chart-topping record? ,1984 ,General,Bartolomeo Diaz called it the Cape of Storms. What is it called now,The cape of good hope,General,Numerophobia is a fear of ______,Numbers -General,What was the name of Juliet's cousin killed by Benvolio in R+J,Tynbalt,Music,"He Was Killed When A Car Driven By His Girlfriend ""Gloria Jones"" Crashed Into A Tree On Barnes Common Name Him",Marc Bolan,General,Of what is dendrology the study,Trees - Geography,Which is the Earth's second smallest continent ?,Europe,Science & Nature,What Term Is Given To The Annual Marking Of Swans On The Thames? ,Swan Upping ,Science & Nature,What is the heaviest of the naturally occuring Noble gases?,Radon -Geography,In which state are the Finger Lakes,New york,General,Which actress's real name was Jane Peters,Carole lombard,Music,What Was The Name Of Robson & Jeromes 1996 Chart Topping Album,Take Two -General,What is the fear of clouds known as,Nephophobia,General,"Who would ""never forget a face but in your case i'll make an exception""",Groucho marx,Food & Drink,Where Exactly Were Cornflakes Invented ,Battle Creek Sanitarium  - History & Holidays,"He was the captain of the ""Mayflower"".",Standish,General,What country had three presidents - in the same day,Mexico,Geography,What is the capital of Trinidad and Tobago,Port_of_spain -General,What does brb mean,Be right back,General,What is a group of this animal called: Lark,Ascension exaultation,Sports & Leisure,"In Which Sport Would You Encounter A Bedpost, A Six Pack, A Blow & A Cherry ",Tenpin Bowling  -General,Ethernet is a registered trademark of what company,Xerox,Science & Nature,What Part Of The Brain Is Affected In A Lobotomy ,The Frontal Lobe ,General,What drug can be found in tonic water?,Quinine -Music,Which Band did Mick Talbot & Paul Weller Form In 1983,The Style Council,General,In which city is the oldest Zoo in the world still in use,London,General,"What is the last name of the family ""lost in space""",Robinson -Art & Literature,"Three main types of Greek columns are Doric, Ionic, and __________.",Corinthian,Music,Who Used His Wife's Compensation Money From A Car Crash To Take Up Music Full Time,Howard Jones,General,What is the state bird of Texas,Mockingbird -General,"Spear, apple and pepper are types of which plant",Mint,General,How many of the 150 psalms are attributed to moses,One - psalm 90,General,"Which Brand Common In A Variety Of Products Often Found In A Kitchen Was Invented By ""Eugene Sullivan & William Taylor""",Pyrex -Music,"Which Musician Was Once A Member Of Depeche Mode, Yazoo & Erasure",Vince Clark,General,What is an ecdysiast,Stripper,General,What is a small fertile area in a desert called,Oasis -General,A Spanish dance in ¾ time or 3/8 time with castanets.,Cachucha ,General,It's illegal in the USA for any citizens to have contact with who,Extraterrestrials or their vehicles,General,Where in the United States would you find the country's only royal palace,Hawaii -General,What was Bugs Bunnies original name,Happy Rabbit,General,"Gaur, Gayal, Banteng and Kouprey are types of what",Wild Cattle,Art & Literature,"In sculpture, the building up of form using a soft medium such as clay or wax, as distinguished from carving. In painting and drawing, using color and lighting variations to produce a three-dimensional effect. ",Modeling -General,80% of restaurant diners don’t do what,Eat dessert,General,9% of divorced people say they still do what,Have sex together,Technology & Video Games,"What number is the Pokémon ""Scyther"" in the Pokémon GameBoy games? ",123 -General,Ajax was the trade mark of the worlds first what,Flush lavatory,General,What is a group of this animal called: Peep,Litter,Science & Nature,What does the Binet test measure?,Intelligence -Music,What Was The First Top Twenty Hit In The Uk For Stevie Wonder,Uptight (Everythings Alright),General,This city is the capital of Australian Capital Territorry?,Canberra,General,What is a sleepwalker,Somnambulist -General,First division of the Paleozoic Era,Cambrian Period,General,Away we Go was the original 1942 title what musical show/film,Oaklahoma,General,What is a group of this animal called: Chicken,Brood peep -Sports & Leisure,Which Liverpudlian Won The WBC Light Heavyweight Title In 1974 ,John Conteh ,General,Terra Psittacorum was an early name for which country,Australia,General,Name the most famous English artist who painted mostly horses,George Stubbs -General,What car company made the first glass fibre racing car,Lotus,General,"What name is given to the traditional, charcoal heated, Russian tea urn",Samovar,Music,Aretha Franklin Was The First woman Inducted Into What,The Rock & Roll Hall Of Fame -Science & Nature,For What Substance Is K The Chemical Notation ,Potassium ,General,What is the proffesion of Jorge Amado,Author,People & Places,Who Made A Controversioal Speach Concerning 'Rivers Of Blood' ,Enoch Powell  -General,What is ix,9,General,Who received the Nobel Physics prize jointly with the Curies in 1913 for their work on radioactivity,Antoine becouerel,General,What musical term means playing with each note detached,Staccato -General,What did The Chief nickname Starsky's car on Stasky and Hutch??,The Striped Tomato,General,Which John Updike novel features three divorcees on the make who are seduced by the devil,The witches of eastwick,General,A wheel turns or spins on an _____,Axle -Tech & Video Games,Which was the first manned aircraft to exceed the speed of sound ?,Bell X-1,General,What is the common name of the plant Calluna,Heather erica ling,General,Mark Mishon ate 61 of these in 7 minutes at The Obelix Creperie.,Pancakes -General,"Anatomically speaking, what is the axilla better known as",Armpit,General,Collective nouns - what is a group of swans,Herd or Bevy,General,These animals were once used to bleed the sick,Leeches -Music,Who Released An Album In 1982 Called Simply,Status Quo,Music,How Many Tears Did The Goombay Dance Band Have,Seven, Geography,What is the basic unit of currency for Malaysia ?,Ringgit -General,What printing system utilizes tiny dots,Dot matrix,General,What's the currency in algeria,Dinar,General,An archangel cat has what colour coat,Blue -General,The Average American does what 22 times a day,Opens Fridge,General,What's the capital of Liberia,Monrovia,General,What was the name of the operatic diva who gave her name to a peach dessert,Dame nellie melba -General,Who made his first appearance as Sherlock Holmes in the 1939 film The Hound of the Baskervilles,Basil rathbone,General,How much playing time is there in a football game,60 minutes,Geography,"_____________ has the highest per capita income in the world, except for the oil sheikdoms.",Bermuda -General,What does the ureter carry,Urine,Geography,What is the capital of Alaska,Juneau,General,Who wrote Of Human Bondage and The Moon and Sixpence,Somerset Maugham -Music,Who Was Responsible For The Assassination Of John Lennon,Mark David Chapman,General,Which Hollywood legend won an Oscar for her starring role in Jezebel,Bette davis,Entertainment,Juliette Binoche won an academy award for best supporting role in which film?,English Patient -General,Collective nouns - a leash of what,Greyhounds,General,What kind of poisoning is known as plumbism,Lead,General,What's belgium's main port,Antwerp -General,"Who said ""To many of our imports are from abroad""",George Bush,General,Who won the Superbowl in 1987,New York Giants,Science & Nature,What features of the african elephant are larger that those of an indian elephant ,The ears  -General,If you suffered from pyrexia what have you got,Fever,General,A man has first at 18 then every day spent 106 days by 60 what,Shaving,General,In 1956 Irme Nagy lead a revolt in which country,Hungary against Russia - Stalin -General,Which Lombardy town is famed for its cheese,Gorgonzola, History & Holidays,"What did presidents Madison, Monroe, Polk, and Garfield have in common?","The first name ""James""",General,Chicago Transit Authority is now known as which group?,Chicago -General,Name Lois Lanes stewardess sister,Lucy Lane,General,What word can go before Work Yard Laying Bat to make others,Brick,General,Which Fijian golfer won the 1998 U.S. Masters,Vijay singh -Geography,What is the capital of Saint Vincent,Kingstown,General,What is the usual term for Scotoma?,Blind Spot,Geography,In which continent would you find the amazon river ,South america  -General,On an average day in USA 40 people are hurt doing what,Trampolining,General,In Hartford Connecticut its illegal to do what to wife on Sunday,Kiss her,Sports & Leisure,What Are The Only Two Fences Not Jumped Twice In The Aintree Grand National? (PFE) ,The Water Jump & The Chair  -General,"Eskimo ice cream is neither icy, nor ______",Creamy,General,What is a catalogue of languages,Ethnologue,General,Who invented the ice cream soda,Robert green -General,EAU international car registration plate which country,Uganda,General,What does the Australian slang word Hooroo mean,Good bye, Geography,What is the basic unit of currency for Maldives ?,Rufiyaa -Music,What was George's first composition on the A Side of a Beatles single?,Something,General,"Sharing his name with a former manager of Arsenal FC, who was the inventor of the orrery, a device used to represent the Solar System?",George Graham,Geography,The sun sets in the ____,West -General,What does a pulsar emit,Radio waves,Music,What Was Frank Zappa's Backing Band,The Mothers Of Invention,General,In which country is the largest gold refinery?,South Africa -Music,"Can You Name ""Tears For Fears"" Debut Album",The Hurting,General,What is God called in the Muslim faith,Allah,Science & Nature,What is measured by a Geiger counter?,Radioactivity -Music,In which area of London are the Abbey Road studios located?,St. John's Wood,Entertainment,In 'The Shining' what was the child's imaginary friend's name (the one who told him things that were going to happen)?,Tony,Entertainment,Who runs Andy Capp's favorite pub?,Jack and Jill -General,"What russian city was formerly known as st petersburg, then petrograd, and until 1918 was the capital of the country",Leningrad,General,Shamanism is the religion of which people,Inuit or Eskimos,Food & Drink,Who released the following 'edible' album Pies 'Descalzos' ,Shakira  -Science & Nature,What Would You Suffer From With Hypotension ,Low Blood Pressure ,General,The Bahamas lie off which U.S. state,Florida,General,Where is Dam Square,Amsterdam -General,At what address did the TV family 'The Addams Family' live?,001 Cemetery Lane,General,What is the final event in the modern pentathlon,Horse riding,General,"Who is known as the ""Father of Modern Economics"" ?",Adam Smith - History & Holidays,In What Century was St Nicholas first Mentioned ,4th ,General,Name European Cathedral known as the coronation cathedral,Rheims, Geography,What is the capital of Papua New Guinea?,Port Moresby -Geography,What U.S. city is known as Insurance City,Hartford,General,What profession receives the Pritzker prize,Architects,General,Ncaa: who was the mvp in the men's basketball championship game in 1976,Kent benson -Art & Literature,What Are The March Sisters Names In Louisa M Alcotts (Little Woman) ,"Jo, Meg Beth & Amy ",General,Casanova ate fifty each morning to increase potency 50 what,Oysters,Music,"Who Saw Nothing Wrong In A Little ""Bump And Grind"" In The 90's",R Kelly -Mathematics,How many nickles are there in $2.25,45,Entertainment,"On 'The Lucy Show', who played Vivian Bagley?",Vivian Vance,Science & Nature,What constellation is represented by scales?,Libra -General,Confederate General William Smith carried what into battle,A Blue Parasol,General,Leaves forming the protective case of a flower bud,Calyx,General,"From what ""black metal"" did blacksmith's take their name",Iron -General,An average of 708 what in the USA each year,Tornados,Geography,In which country would you find the yucatan peninsula ,Mexico ,General,What is the main ingredient of the Indian dish 'dhal',Pulses - History & Holidays,Who played the Spirit of Christmas in the 1988 TV film 'Blackadder's Christmas Carol'' ,Robbie Coltrane ,Music,Alex Gifford & Will White Were Joined By Shirley Bassey On Their Single History Repeating By What Name Are They Known Collectively,Propellerheads,General,John Tenniel drew the illustrations for what famous book,Alice in Wonderland -General,Which planet has a year lasting approx. 88 earth days,Mercury,General,What is chorizo,Spanish salami,General,"A passageway of a Christian Church or a Roman basilica running paralell to the nave, separated from it by an arcade or colonnade. ",Aisle -Entertainment,What film was the last featuring Mel Blanc's voice?,Jetsons,General,What country drinks the most beer,Germany,General,"This instrument is used for measuring the distance between two points, on a curved surface.",Calliper -General,Pneumatiphobia is the fear of,Spirits,General,What was the first zeppelin made of,Aluminum,Art & Literature,Which member of the Monty Python Team wrote children's books about 'Erik The Viking''? ,Terry Jones  -General,Raquel Welch was once a what,Weathergirl,General,What breakfast dish was ordered by a writer as a hangover cure,Eggs benedict,General,"What singer who had his one and only hit song in 1991 play a high school jock named Ricky in the 1987 movie ""Can't Buy Me Love""?",Gerardo Mejia -General,Cab is a shortened version of what word,Cabriolet,General,"Who composed ""Night on the Bare Mountain"" in 1867",Moussorgsky,Sports & Leisure,What Is The Maximum Number Of Horses Allowed To Run In The Grand National? ,40  -General,What title is reserved for the leader of the entire Ku Klux Klan,Grand wizard, History & Holidays,Which band member was Boy George allegedly seeing in Culture Club during the 80's? (Just name instrument he plays) ,The Drummer ,Entertainment,What was the first film directed by Robert Redford?,Ordinary People -Music,"From 1994 What Was ""All For Ones"" Biggest Hit",I Swear,General,"In the movie ""Rain Man"" (1988), she stared with Tom Cruise and Dustin Hoffman",Valeria golino,General,"With Which 80's Band Is Was ""Martin Fry"" The Lead Singer",ABC -General,"What is the full name of the creator of ""Jeeves & Wooster""",Pelham grenville wodehouse,Sports & Leisure,How many games must you win to win a normal set in tennis?,Six,General,What is the world's tallest grass,Bamboo -Geography,What is the capital of Mauritania,Nouakchott,General,Who was the male lead in the 1965 film the war lord,Charlton heston,General,Psyscrophillia is sexual arousal by what,Cold -Food & Drink,"What soft drink is advertised with the slogan, What's the worst that could happen? ",Dr Pepper ,General,Who discovered florida,Ponce de leon,General,To what family of vegetables does the popular Zucchini or Courgette belong,Gourd or squash -General,In France if you were served le miel what would you eat,Honey,General,41% of American women believe what nationality best husbands,Canadian,General,"What makes Argon, Neon and Helium unique in chemistry",No compounds -Science & Nature,This term means 'cone_bearing trees'.,Conifers,Music,Ruth Ann Boyle was the lead singer of which band who had a UK Number One single in 1997 with “You're Not Alone”?,Olive,General,"What show was ""Whatcha talkin' 'bout Willis?"" a standard catch phrase?",Different Strokes -General,Which was the second japanese city bombed in 1945,Nagasaki,Music,Name The Lead Singer With The Bangles?,Susanna Hoffs,Food & Drink,"What is the common name for goobers, pindars, groundnuts, or grass nuts? ",Peanuts  -General,The Korat plateau in Thailand gives its name to what kind of animal,Cat,General,Pluviophobia is the fear of,Rain,General,"Dogs bark and cows moo, but what does a Khaki Campbell do",Quack -General,How many legs does a lobster have,Ten,General,"What, according to Hilaire Belloc's cautionary verse, was Matilda's problem",She told such dreadful lies,Sports & Leisure,Which Boxer Was Nicknamed 'The Clones Cyclone''? ,Barry McGuigan  -Sports & Leisure,How Many People Are In Each Of The Crews For The Oxford & Cambridge Boat Race? ,9 = 8 Rowers & 1 Cox , Geography,What is the capital of Bolivia ?,La Paz,General,Mary Cathering Collins became famous as who,Bo Derek - History & Holidays,Cleopatra's slaves often died because she tested this on them,Poison,Geography,What Countries Flag Has Only One Colour (Green) ,Libya ,General,What us general was known as old blood and guts,George s patton jr -Geography,Which Was The First Suspension Bridge In London ,Hammersmith Bridge ,General,Who invented the radio?,Guglielmo Marconi, History & Holidays,In the Christmas song what was 'Roasting on an Open Fire' ,Chestnuts  -General,Who is Olive Oyls brother,Castor Oyl,General,What was a sheriff during feudal rule in england,Reeve,General,What is another term for the instrument sometimes called a 'mouth organ',Harmonica - History & Holidays,Which country did Idi Amin invade in 1978? ,Tanzania ,Science & Nature,What element has the periodic table name Na ?,Sodium,General,Which major river flows through gloucester,Severn -Music,Which Was The First Single Released By The Beatles On The Apple Label,Hey Jude,General,What company makes Pampers disposable diapers?,Proctor & Gamble,General,What was Marie Osmonds only solo hit,Paper Roses -General,Honi soit qui mal y pence is the motto of what organisation,Order of the Garter,General,What kind of pain is a migraine,Headache,General,"American applied mathematician & electrical engineer, noted for his development of the theory of communication now known as information theory",Shannon -General,Denis Gabor of Hungary 1971 Nobel prize for what invention,Holograms,General,"Who said ""necessity is the mother of invention""",Ovid,General,From what words is dublin derived,Dubh linn -General,What is the only insect that can turn its head,The praying mantis,General,In Welsh Cwrw pronounced koo roo is what,Beer,General,What breakfast cereal was invented at battle creek sanitarium,Cornflakes -General,The 'love apple' is more commonly known as what,Tomato,General,Where were the first winter Olympics held in 1924,Charmonix France,Technology & Video Games,"Which RPG series features a line of inventors of the name ""Shaia?"" ",Lufia -Science & Nature,Gastritis affects the __________.,Stomach,Art & Literature,Which Celebration Of The Arts In Held In Wales ,The Eisteddfod ,General,What is the flowering shrub Syringa usually called,Lilac -General,What country saw the origin of lawn tennis,England, History & Holidays,"Which toy, with a name meaning 'play well'' was launched by Danish toymakers Ole and Godtfred Kristiansen in 1958 ",Lego ,General,In what new york city club did many famous vocalists get their start,Continental baths -General,"Who started on the san francisco scene with 'oh well', but are probably best known for their album 'rumors'",Fleetwood mac,General,Whose picture was on the first adhesive nickel postage stamp in the US?,Benjamin Franklin,General,What capital city began as the village of Edo,Tokyo -Sports & Leisure,How Many Players Are In A Polo Team? ,4 ,Science & Nature," 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,General,Which German Company Developed The First (ABS) Breaking System?,Bosch -General,What was the name of He-Man's magician sidekick?,Orko,General,Who wrote Ode to a Nightingale,Keats,General,What are jackrabbits,Hares -Music,Where Did The Beatles Appear On The 30th January 1969,"Roof Of The Apple Offices ""Saville Row, London""",General,"In ballet, a position of the arms above the head.",En haut,Music,"Which Girl Group Had Hits With ""Give It Up, Turn It Loose, Whatta Man , & Don't Let Go Love""",En Vogue -General,What bird has the most feathers per square inch,Penguin,Sports & Leisure,Who wore a cabbage leaf under his cap?,Babe Ruth,General,What Does It Say Under The Lion On The MGM Symbol,Art For Arts Sake -Entertainment,"What film starred Helen Hunt, Cary Elwes and Bill Paxton?",Twister,Science & Nature,What Is The Correct Name For The Adam's Apple ,The Larynx ,General,What play is set in Venice and Cyprus,Othello - Shakespeare -General,Autophobia is a fear of ______,Being alone,General,Which department is the ITU in a hospital,Intensive therapy unit,General,What is a Rhodesian Ridgeback,Dog -Science & Nature,Who Was The First Animal In Space ,Laika The Dog ,General,Towards which direction does the Tower of Pisa lean?,South,Music,Name The Instrument Played By Larry Adler,Harmonica -Geography,Name the second largest country in Africa.,Algeria,General,Insectophobia is a fear of ______,Insects,Science & Nature,Which planet is covered in thick clouds of carbon dioxide and sulphuric acid ?,Venus -General,What is the Capital of: Korea South,Seoul,Art & Literature,In Which Shakespearean Tragedy Does Laertes Appear ,Hamlet ,General,"""Antananarivo"" Is The Capital City Of Which Country",Madagascar -General,What is the fear of one's own fears known as,Phobophobia,General,"Of which piece of music is ""The Great Gate at Kiev"" a part",Pictures at an exhibition,Science & Nature," A mated pair of __________ can produce up to 15,000 babies in one year.",Rats -General,What is the name of the capital of Quebec (Canada),Quebec city,Music,In Which American City Did The Beatles Play Their Last Concert In 1966 Vowing Never To Tour Again,San Francisco,General,The British Raj in India lasted 90 years what's it literally mean,Rule -General,Neophobia is the fear of,Anything new,Music,Who was the first American-born principal conductor of the New York Philharmonic Orchestra?,Leonard Bernstein,General,In which town or city in the north-west is the Rylands Library,Manchester -Art & Literature,In which book did four ghosts visit Scrooge?,A Christmas Carol,Music,Which Musical Featured A Giant Faberge Egg Containing A Hologram Of Laurence Olivier's Head,Daves Clark's Time In 1986,General,What did the name 'battenberg' become,Mountbatten -General,What artist cut off his right ear,Vincent van gogh,General,Which is the longest river in the western hemisphere,Amazon,Entertainment,What was the first cartoon character called?,Oswald the Rabbit -General,Which character from beavis and Butthead has their own show?,Daria,General,What would an anemometer measure,Wind Speed,Entertainment,What composer was working on his 10th symphony at the time of his death?,Ludwig van Beethoven - Geography,Which country has Budapest as its capital?,Hungary,Science & Nature,By What Abbreviated Term Is The Group Of Eight Industrialized Nations Known ,G8 (G8 Sumit) ,General,Which baltic seaport was the german rocket centre during wwii,Peenemunde -General,Haiphong is the third largest city in which south-east Asian country,Vietnam,Sports & Leisure,Who Did Forbes Magazine Name As The Highest Earning Sportsman Of 2006? ,Michael Schumacher ,Science & Nature,What is the meaning of the name of the constellation Delphinus ?,Dolphin - History & Holidays,What Are The first Names Of The Everly Bros ,Don & Phil ,General,Which computerized diagnostic technique is Godfrey Hounsfield credited with inventing,Cat scan,Music,As Of 2009 Who Is The Only Non British Band To Perform On A James Bond Theme,Aha -General,Pluto (the Planet) was almost called what name,Zeus,Music,Who Did Spice Girl Mel B Marry In 1998,Jimmy Gulzar,General,Buenos Aires is the capital of ______,Argentina -General,Name (in the US) Denis the Menaces cat,Hot Dog,General,In which Royal residence did both George V and George VI die,Sandringham,General,Who started the second punic war,Carthage - History & Holidays,Who sang the theme song to the 'Breakfast Club'? ,Simple Minds ,Food & Drink,What is special about Porcini mushrooms ,They Are Dried ,General,What ws Balki Bartokamus' occupation when he lived in Mypos?,Sheep Herder -General,Name the companion of the cartoon character Secret Squirrel,Morocco Mole,General,Most people wear a watch on their ____ wrist.,Left,General,In 1887 who solved his first case,Sherlock Holmes -Science & Nature, Camel milk is the only milk that doesn't curdle when __________,Boiled,General,King Faisal was assassinated in 1975. Of which country was he king,Saudi arabia,General,"Which television western series always ended with the words 'Head 'em up, move 'em out'",Rawhide -Sports & Leisure,What Does The C Stand For On A Netball Team? ,Centre ,General,Another name for a villain or scoundrel,Blackguard,General,In what form of government do paid officials exercise controlling influence,Bureaucracy - History & Holidays,Where were Anne Boleyn and Catherine Howard both executed? ,The Tower Of London ,Geography,What is the capital of Finland,Helsinki,General,Who wrote David Copperfield,Charles dickens -General,Of which metal is sperrylite the ore,Platinum, History & Holidays,Who wrote The Strange Case of Dr Jeckyll and Mr Hyde ,Robert Louis Stevenson ,General,The constellation Norma has what English name,Level -General,Which leader sits on the 'Lion Throne'?,Dalai Lama,Sports & Leisure,In which year did Eddie the Eagle Edwards represent England ? ,1988 ,General,In Fargo North Dakota you can be jailed for dancing with what,Your Hat on -Entertainment,"In the TV series 'The Fall Guy', who did Lee Majors play?",Colt Seavers,General,Who built the 'cherokee' and 'commanche' aircraft,Piper,General,What title did Zola give to the letter he wrote to the newspaper L'Aurore in 1898,J'accuse -Music,In which year was the Summer Of Love?,1967,General,A cow gives nearly how many glasses of milk in her lifetime,"200,000",General,The Alaska highway terminal is in,Edmonton -General,What canal parts redesigned by Leonardo da Vinci in 1497 are still in use today,Locks,General,The first president to ride in an auto; he didn't care for it much.,Theodore roosevelt,Art & Literature,What Did A E Housemans Initials Stand For ,Alfred Edward  -Food & Drink,What do Americans call what the British call an iced-lolly? ,Popsicle ,Science & Nature," 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,General,What country which has the same name as a bird,Turkey -General,Who wrote the opera Madame Butterfly,Puccini,Music,What Instrument Was Played By King Curtis,Saxophone,General,As mad as a _______,Wet hen -Geography,"With about 865 people per square mile, the island of _____________ is one of Europe's most densely populated regions.",Madeira,Music,What were Madonna's book and 1992 album called?,Sex,Science & Nature,Which Animal Has The Longest Gestation Period? ,The African Elephant  -General,On what common object could you find a gate and a claw,Camera,General,What does an oologist study,Bird's eggs,General,Princeton University is in which state,New jersey -Science & Nature," Very unusual for carnivores, hyena clans are dominated by __________",Females,Sports & Leisure,In The 1990's Which Player Played Both For And Against Chelsea In F.A Cup Finals? ,Mark Hughes ,General,"Who was kidnaped on the night of March 1, 1932",Charles Lindbergh -General,What precious metal does the U.S. store in fort knox,Gold,General,In the US civil war what pet did Robert E Lee have,A Hen,Geography,In which country is the calabria region ,Italy  -General,What is the penalty for drunk driving in Sumatra,Loss of a hand,General,Who played nick nack & came rolling home,This old man,General,What kind of machine is built to be 'booted',Computer -General,What are the Christian names of the novelist P D James,Phyllis dorothy,General,What is the name of the Paris stock exchange,Bourse,General,What is the slogan on New Hampshire license plates,Live free or die -General,Who directed the 1916 film 'intolerance',D.w griffith,General,What is the scottish equivalent of the name john,Ian,General,Who was the 31st president of the U.S.,Herbert c hoover -General,Joseph Lister - first operation antiseptic - 1867 on who,His sister,General,Who said he wouldn't pay a nickel for another patterson-liston fight,Floyd,Art & Literature,What Colour Is The Art and Literature Wedge In (Trivial Pursuit)? ,Brown  -General,In 1449 Thomas Brightfield built London's first what,Lavatory, History & Holidays,Who Released The 70's Album Entitled Physical Graffiti ,Led Zeppelin ,General,Type of Pakistani curry cooked and served in a shallow dish,Balti -General,Where does the dollar sign come from,U on S bottom U dropped out $,Sports & Leisure,In Which Olympic Games Did Steve Redgrave Win His First Gold Medal? ,Los Angeles In 1984 ,General,Which RSPB reserve is located on the River Ouse near to the junction of the three rivers at Trent Falls?,Blacktoft Sands - History & Holidays,Near which Belarus City did the biggest ever tank battle take place during WWII?,Kursk,Science & Nature,What is the name of the instrument used for measuring humidity in the air ,Hygrometer ,General,In Hamlet who is Ophelia's father,Polonius -General,Which Tv Detective Kept A Pet Alligator Named “ Elvis ”,Sonny Crocket,General,How much did seward pay russia for alaska,7.2 million dollars,Music,Which Member Of The Police Starred In The Film Quadrophenia,Sting -General,Gus Wickie Pinto Colvig William Pennell Jackson Beck - Link,Bluto in Popeye,Music,"Which Famous Singer / Drummer Played Drums On The Band Aid Single ""Do They Know It's Christmas""",Phil Collins,General,"In the U.S. comedy series Sergeant Bilko, what is Bilko's first name",Ernie -General,Who was the world's longest reigning monarch,Louis xiv of france,Science & Nature, An __________ egg can make eleven_and_a_half omelets.,Ostrich,General,"What do revelers drink at a ""pivince"" tavern in Prague",Beer -General,President Andrew Jackson's funeral 1845 who removed swearing,His Pet Parrot,General,If you were suffering from Preblysis what have you got,Premature Ejaculation,General,In what sport does herringboning take place,Skiing -General,Who made a 1990's cover version of The Monkees 'I'm a Believer',Vic reeves,Music,"Who Had A Top 10 Album In 1981 With ""Mondo Bongo""",The Boomtown Rats,General,Collective nouns an erst of what creatures,Bees -General,Slang word meaning aggressively blatent or provocative,In-your-face, History & Holidays,During Which King's Reign Did The Great Fire Of London Occur? ,Charles II ,General,Florizel & Perdita are characters in which Shakespeare play,The winter's tale -General,With which group is Damon Allbarn the lead singer,Blur,General,The only #1 best selling novel in the us to be published anonymously,Inner,General,"Which creatures communicate by touch, smell and dance",Bees - History & Holidays,"Is kissing under the Mistletoe, a Roman, Druid, or Celtic custom ",Druid ,General,What is the more familiar name to the British of the Swiss lake Vierwaldstattersee,Lake lucerne,General,A group of partridges is called a,Covey -General,Chang 1st Wang 2nd what third most common Chinese name,Li,General,Which famous radio and television family appeared in the show 'Take It From Here',The glums,Music,Which Record Company Did Blondie Spend Their Sucessful Career With,Chrysalis -General,Pitney which is the largest planet in our solar system,Jupiter,Music,"Buddy Holly Died In A Plane Crash In 1959, Which Other Two Singers Died With Him",Ritchie Valens & The Big Bopper,Music,What's The Name Of The British Pop Sensation Comprising Of A Number Of Oap's That Released Their Debut In June 2007,The Zimmers -Food & Drink,What Type Of Foodstuff Is Traditionally Eaten On Shrove Tuesday ,Pancakes ,People & Places,Which Aussie Wicket Keeper Bet Against His Own Team At 500-1 And Won The Bet ,Rodney Marsh ,General,In Christian tradition what day is known as the festival of lights,Candlemas 2 Feb -General,Which light wood is commonly used for making aeromodels?,Balsa,General,Marley whose likeness is depicted on the purple heart,George washington,General,Which U.S. state is sometimes known as 'Seward's Folly',Alaska -General,White creame de menthe and brandy make what cocktail,Stinger,General,"In the movie Porkey's, why did they call Meat Tuperello 'Meat'?",Because of the size of his penis,General,What's one round of a polo match called,Chukkah -General,A catalogue of words and synonyms.,Thesaurus,General,The Plains of Abraham overlook which city,Quebec,Science & Nature,What is the technical name for 'falling stars'?,Meteors -General,Who was Americas first billionaire,Rockefeller,Geography,In What State Is The Grand Canyon Found ,Colorado ,General,"In The Simpsons, what is the first name of Mr Burns assistant Smithers",Waylon -General,More water flows over _____ _____every year than over any other falls on earth,Niagara falls,General,What was mozart's first name,Wolfgang, Geography,What is the basic unit of currency for Sweden ?,Krona - History & Holidays,"""Hot cockles"""" was popular at Christmas in medieval times What was it? """"A Drinking Song"""" """"A Medievil Game"""" """"A Dish Of Seafood"""" """"A Hot Spice Drink"""" "" ",A Tudor Game ,General,What short-lived sitcom featured Snow White and Prince Charming living as husband & wife?,The Charmings,General,Which comedienne's alternative persona is 'Mrs. Merton',Caroline aherne -General,Which is the largest of the Canary Islands,Tenerife,General,What sport did burt reynolds play at florida state university,Football,Entertainment,"Popeye's chief adversary has two names, Bluto and ______?",Brutus -General,Mary Read and Anne Boney had what job in common,Pirates,General,Who played tv's superman in the original series,George reeves,General,What is the small grey and brown titmouse,Bird -Science & Nature,What is a group of peacocks called?,Muster,General,"The Smithsonian Institute houses this 44 & 1/2 carat, cursed blue diamond",Hope diamond,Music,Which Roy Orbison Track Entered The Top 10 In The 90's,I Drove All Night -General,"In 'romeo and juliet', why couldn't the nurse tell juliet the news of her meeting with romeo immediately",She was out of breath,General,Jimmy Doyle died during a title fight in 1947 who was opponent,Sugar Ray Robinson,General,Which society cared - plague victims when physicians left 1665,Apothecaries -General,What is the Capital of: Vanuatu,Port-vila,General,What is the smallest state of Australia,Tasmania,General,Which country did the French know as Terra Napoleon,Australia -General,"In The World Of Science What Was Discovered By ""Clyde Tombaugh"" In The Year 1930",Pluto,General,"In 'star wars', sebastian shaw was darth vader's ______",Face,Music,According To The Lyrics Of The Eagles Classic Hotel California When Can You Check Out?,Anytime You Like -General,Poliosophobia is the fear of,Contracting poliomyelitis,Music,What Was The First Single To Sell 2 Million Copies In Great Britain,Mull Of Kintyre / Wings,General,What charles manson follower attacked a fellow inmate with a hammer,Lynette -General,U.S. captials Florida,Tallahassee,General,Leatherjackets are the larvae of which insect,Cranefly,General,Who was known as guardian of the safety of the world,Captain video -General,How was the country of Belize known prior to 1971?,British Honduras,General,What is the subject of the reference book Janes,Militaria – Ships Planes Guns etc,General,"The Portuguese capital, Lisbon, stands on which river",Tagus -General,In which country was the first soccer World Cup held,Uruguay,Science & Nature,Which Cross Eyed Lion In A 1965 Film Spawned The Dakari Television Series ,Clarence ,General,"Which Royal Property Did Prince Albert Pay 31,000 Pounds For In 1846?",Balmorral -Science & Nature," 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,General,Which was the last country to host both the Summer and the Winter Olympic Games in the same year,Germany,Music,Whe Are Were Typically Tropical Going To,Barbados -General,What do x & y chromozomes combine in making,Males,General,"In area, which is the largest Australian state",Western australia, History & Holidays,Which nation did Moshoeshoe found?,Basotho -General,By what other name is Lac Leman known,Lake geneva,General,What is the flower that stands for: warmth of sentiment,Spearmint,General,Music: This Vienese piano manufacturer includes 3 extra bass keys. It is the favorite piano of such performers as Tori Amos.,Bosendorfer -General,Charles Duff wrote the macabre Handbook of what,Hanging,General,A large oven in which pottery is fired is a ____,Kiln,General,What was the Acta Diurna introduced by Julius Caesar 59 BC,Daily News (paper) posted in forum -General,What breed of dog bites the most humans,German Shepherd – Alsatian,Entertainment,An arrangement for five performers is called a:,Quintet,General,Who Was The Very First Artist Managed By Louis Walsh To Have A Number One In the UK ?,Johnny Logan -General,What Type Of Creature Is Located On Top Of The Calcutta Cup,Elephant,Art & Literature,"Name the author of his famous and only novel 'Doctor Zhivago', which presents a panoramic view of Russian society at the time of the 1917 Revolution.",Boris Pasternak,General,Julius Caesar Hamlet Macbeth Richard III links not Obvious,All plays contain ghosts -General,Where were fortune cookies invented,United states,General,Who is the greek equivalent of vulcan,Hephaestus,General,Who was Chancellor of the Exchequer during the 1949 devaluation of the Pound,Sir stafford cripps -Science & Nature,Which substance has the chemical formula HCl?,Hydrochloric acid,General,What is another name for a sleepwalker?,Somnambulist,Music,"Whose Albums Include ""Kind Of Blue, In A Silent Way, Bitches Bru & Tutu""",Miles Davis -General,What actress wrote the autobiography Call Me Anna,Patty duke,General,"Starring Nigel Hawthorne, which 1994 film was publicised with ""His Majesty was all-knowing. But he wasn't quite all there.""",The madness of king george,General,What is the flower that stands for: sleep,White poppy -General,In which river was jesus baptised,Jordan,General,What was the name of the topless stage dancer with ample charms who often accompanied the rock band Hawkwind on stage?,Stacia,General,You have a foursome and a shag what have you done,Dance they are types of dance -Science & Nature,"How Many Legs, Including Pincers Does A Crab Have? ",Ten ,People & Places,Which Former Radio One DJ Used To Broadcast 'Our Tune' ,Simon Bates ,General,Muppet vampire enjoyed doing this.,Counting -General,"In Terry Pratchett's Discworld series, Death rides a pale horse. What is its name",Binkie,General,In Vermont it is illegal to do what under water,Whistle,General,Symbolic addmission to Christianity and name giving,Baptism -General,What Is Michael Jacksons Middle Name,Joseph,Geography,Name the largest island in the world.,Greenland,General,Mstislav Rostropovich was a maestro on what instrument,Cello -General,"In art, a form of watercolor that uses opaque pigments rather than the usual transparent watercolor pigments",Gouache, History & Holidays,"""What Did My True Love Give To Me On The """"First"""" Day Of Christmas"" ",A Partirdge In A Pear Tree ,Art & Literature,The Hardy Boys and ______?,Nancy Drew -General,Dish of food covered with alcohol and set alight,Flambe, History & Holidays,In which country do people eat noodles while listening to a bell start ringing and strike 108 times? ,Japan ,General,What is the Capital of: New Caledonia,Noumea -Geography,What is the capital of the United Arab Emirates,Abu dhabi, Geography,What is the capital of Eritrea ?,Asmara,General,When did prohibition end in the USA,1933 -General,Collective Nouns - a Convocation of what,Eagles, Geography,Where are the great Walls of Babylon located in the modern day world ?,Iraq,General,Dire straits sings that 'we're fools to make war on our ______',Brothers in -Entertainment,Tess Trueheart married which plainclothes detective,Dick tracy,Music,Who Spent Midnight In Moscow,Kenny Ball And His Jazzmen,Science & Nature,Which Flightless Bird From Mauritus Is Now Extinct ,The Dodo  -General,In Kansas City its illegal for children to buy what,Cap Guns – but shotguns are OK,General,What is the main ingredient of faggots,Liver,Sports & Leisure,For Which Formula One Team Did Both Nigel Mansell & Damon Hill Drive ,Williams  -General,What color are a zebra's stripes during the first six months of life,Brown, History & Holidays,What is the fear of Halloween called is it A Samhainophobia B Hallowphobia or is it C Druiphobia ,Samhainophobia ,General,What organisation was founded Canada by Mrs Hoodless 1897,The Women's Institute -General,If you had variola what disease have you got,Smallpox,General,"Who sang 'popsicle', 'hangin' tough', please don't go girl' and 'step by step'",New kids on the block,General,What is the birthstone for May?,Emerald - History & Holidays,What Was A Sopwith Camel? ,A Single Seater Armed Biplane Used In WWI ,General,What Is Measured Using A “ Spirometer ”,Lung Capacity,General,In Which London Building Is The Annual Lord Mayor's Banquet Held?,The Guild Hall -Science & Nature,Which is the largest aquatic bird?,Albatross,Sports & Leisure,In A Decathlon What Is The First Event ,100 Metres ,People & Places,What Do You Call A Person From Manchester ,Mancunion  -General,At the outbreak of WWI what country's airforce consisted of only 50 men?,United States,General,"On a ship, what is the plimsoll line",Loading line,General,What do trees get 90% of their nutrients from,Air -General,"What actress said ""It's better to be nude than unemployed""",Angie Dickinson,General,"What hobby uses the term ""cast on""",Knitting,Science & Nature,What do you offer someone as a peace gesture?,An Olive Branch -Science & Nature, __________ can climb trees faster than they can run on the ground.,Squirrels, History & Holidays,Which former British prime minister returned to power in 1951? ,Winston Churchill ,Music,The Housemartins Had A Caravan Of What,Love -General,Kalium. is the Latin name for which element,Potassium,Toys & Games,To what do opposite faces of a dice always add up?,Seven,General,"In the play, ""Death of a Salesman"", what was the name of the salesman",Willy loman -General,What do male butterflies like to lick,Stones - to get nutrients,General,The Stirling prize is awarded annually for which field of design,Architecture, History & Holidays,Who discovered the vaccination against smallpox in 1796? ,Edward Jenner  -General,Women do it weekly to sleep better men every two weeks what,Change sheets,General,The octal number system is based on the number _____,Eight,Music,The Sugarcubes Are From Which Country,Iceland -General,What was the print left on the car in the boat in the movie Titanic?,A handprint,General,"What's a ""group"" of toads called",Knot, History & Holidays,Four Japanese carriers were destroyed in this battle.,Midway -Food & Drink,The Process Where Food Browns During Cooking Is Known As The What ,Maillard Reaction , History & Holidays,Which 20th century American icon died on Halloween After A Night Out At The Viper Rooms ,River Phoenix ,General,What french painter was the subject of somerset maugham's 'the moon and sixpence',Gauguin -General,The Ten Commandments what was number four,Keep the Sabbath holy,General,In which house did Charles Dickens live from 1857 to his death in 1870,Gad's hill,General,"What do itchy people call the ""rhus radicans"" they were sorry they came into contact with",Poison ivy -General,In which country was Rudyard Kipling born,India,General,Cyprieunia is sex with who or what,A Prostitute,General,What system is based on the number 60,Sexagesimal -General,In which Commonwealth country is Cobra beer brewed,India,Toys & Games,"In which game or sport can a person be ""skunked""?",Cribbage,General,Which is the largest landlocked country,Mongolia -General,"Which river passes through germany, austria, slovakia, hungary, croatia, yugoslavia, romania, blugaria and ukraine before arriving at the black sea",Danube,General,With what sport is the Zimbabwean Heath Streak associated,Cricket,Entertainment,What did Hannibal Lecter like to eat with liver?,Fava Beans -General,"A ballet in which the women wear white tutus, such as the second and fourth acts of Swan Lake.",Ballet blanc,General,Name Canada's oldest incorporated city,Saint John,Science & Nature,"Corolla, filament and stigma are parts of a(n) _________.",Flower -General,The Coromandel Coast is an area which can be found in which two countries?,India or New Zealand,General,What does a heliologist study,The sun,General,Which was the first South American country to gain independence from Spain,Paraguay -General,An Ochlophilliac gets sexually aroused from what,Being in crowds,Music,"In 1922, which composer scored Mussorgsky's piano piece Pictures at an Exhibition for full orchestra?",Ravel,General,The covering on the tip of a shoelace is a(n) _____.,Aglet -Music,In The Peter Kay Video To Is This The Way To Amarillo Who Are The First 2 People To Join Peter Kay On His Journey In This Charity Video,Ken & Deirdre (Barlow),General,In the bible who authorises the Crucifixion,Pontius pilate,General,What is the oldest ship commissioned in the Royal Navy,HMS Victory from 5/7/1775 -Music,"""Safety Dance"" Was A Hit For Which Band",Men Without Hats,General,Lusaca Is The Capital Of Which Country,Zambia,General,Virginia woolf what two rivers join forces on the outskirts of st louis,Missouri and -General,Phoenix is the capital of ______,Arizona,Music,"Who Performed A 1982 No.1 Duet, Without Actually Laying Eyes On Each Other?",McCartney & Wonder,General,Pidge appeared in which Disney film,Lady and Tramp pet name Lady -General,Who wrote the humorous books on One Upmanship,Steven Potter,General,Who composed the cantata Carmina Burana,Carl orff, Geography,Is Belfast in Northern or Southern Ireland?,Northern -General,What links the Isle of Portland to the mainland coast of Dorset,Chesil bank,General,A nervous kangaroo licks its where,Forearms,General,What are the longest cells in the human body,Neurones -General,Who designed the bouncing bomb in World War II,Barnes wallis,General,How many days and nights did the Lord flood the earth while Noah and his family were safely aboard the ark,Forty 40 fourty,Science & Nature, The duckbill platypus of Australia can store up to 600 worms in its large cheek __________,Pouches -Entertainment,Who founded 'Live Aid' and 'Band Aid'?,Bob Geldof & Midge Ure,General,What is the occupation of Tom Hanks' character in Bachelor Party?,School Bus Driver, Geography,Name the strait joining the Atlantic Ocean and the Mediterranean Sea.,Gibraltar -Music,"Lou Rawls, Sam & Dave , Wilson Pickett, Otis Redding Who Is Next In Line And Why",James Brown,Entertainment,Who sang 'You Can Call Me Al'?,Paul Simon,General,Brilliant Bumper Bubbles Bigheart Boofuls Baby Bonny are who,Jelly Babies -General,What links George Patton Jayne Mansfield Margaret Mitchell,Died in car crashes,General,What does the computer acronym EFTPOS stand for,Electronic fund transfer at point of sale,General,Mastigophobia is the fear of what,Flogging -Science & Nature,What Is The Worlds Longest Manmade Waterway ,The Grand Canal In China ,General,Which city has the most homeless cats per square mile,Rome,General,Who killed jesse james,Robert ford - Geography,What is the capital of Moldova?,Kishinev,General,"What is the name of the President of Peru, very much in the news during the siege of the Japanese Embassy in Lima",Fujimori,General,How many dice are used in Backgammon,Five -General, The art of tracing designs and taking impressions of them is _______.,Lithography,General,Who were the first people to be elected into the aviation hall of fame,Wright brothers,Art & Literature,"In HG Wells ""The Time Machine,"" two races of the future are the child-like Eloi, and the underground monsters called the ____?",Morlocks -General,By Law in Massachusetts what can you not do to a pigeon,Scare it,General,Haven What was the name of Flash Gordon's girlfriend,Dale arden,Food & Drink,What Spirit Is Used To Fortify Red Wine Thereby Creating Port ,Brandy  - History & Holidays,Which bank holiday was first celebrated in Britain in 1978? ,1st May ,General,Miss Ellen Church was the worlds first what in 1930,Air Stewardess,General,What nation did 23 African countries sever relations with in 1974,Israel -General,N2O is more commonly known as what,Laughing gas,General,"Alicante, Money-maker and Ailsa Craig varieties of what",Tomatoes,General,The era that followed the Mesozoic,Cenozoic -General,On a standard rainbow what colour is on the inside of the curve,Violet,General,What is the flower that stands for: splendid beauty,Amarylis,General,Who ruled judea and had john the baptist beheaded at the request of salomen,Herod antipas -General,In what film does Steve McQueen get to race a Mustang round the streets of San Francisco,Bullitt,General,Who was the blind Norse god of who shot balder,Hoeder,General,Who was Cuisine Minceur designed for,Slimmers (Fine cooking) -General,What is the flower that stands for: charity,Turnip,General,"Where were the fighting shipes 'arizona', 'oklahoma' and 'utah' sunk",Pearl,General,What is San Francisco's equivalent to Sydney's 'City To Surf' race?,Bay to Breakers footrace - History & Holidays,"The Colosseum received its name not for its size, but for a colossal statue of who that stood close by?",Nero,General,"What's parts include barbican, oilette and donjon",A Castle,Music,Who Was Tossing & Turning In 1965,Ivy League -Science & Nature,What Is The Name Of Stephen Hawkins Famous Cosmology Book Published In 1998 ,A Brief History Of Time ,General,Phonophobia is a fear of ______,Voices,General,What is the capital of the state of West Virginia,Charleston -General,Mauritania is in which continent,Africa,General,The Owen Ford Dam one of worlds largest is in which country,Uganda,General,What is the more common title of the sovereign of the state of Vatican City,Pope -General,From pasadena Whose soldiers were the first ever to win the Nobel Peace Prize,United,General,Brasco is Australian slang for what,Toilet,General,How was Alexander the Greats body preserved,In large jar of honey -General,Under what name is thomas lanier williams better known,Tennessee williams,General,What was the first game show on Mtv?,Remote Control,General,Which musical instrument did Dizzy Gillespie play,Trumpet -General,What is a water taxi,Gondola,General,A turn while jumping straight up in the air.,Tour en l'air,General,Ben Veeren played what character in Arthur Hailey's roots,Chicken George -Geography,Acadia was the original name of which canadian province ,Nova scotia ,General,What was Hugh Hefner's jet plane called,Big Bunny,General,In which country did the Gallipoli Campaign take place,Turkey -Science & Nature,"The ""canebrake"", ""timber"" and ""pygmy"" are types of what?",Rattlesnake,General,Randy Newman said short people don’t have what,Reason to Live,General,How is something cooked if done en papillote,In Paper -General,Who wrote the Prisoner of Zenda?,Anthony Hope, History & Holidays,Which shipbuilding company constructed the Titanic? ,Harland & Wolff ,General,What animal could be Siberian or Caspian,Tiger -General,Every ship in the Royal Navy have customised what,Zippo Lighters,General,What species of mammal can come in fairy or giant size,Banded Armadillo,General,Who was sports illustrateds sportsman of the year in 1954,Roger bannister -General,"Measured from base to summit, what is the highest mountain",Mauna kea,Food & Drink,This is a common nickname for McDonalds(singular),Micky d,General,What does the girls name Zoe mean,Life -General,Kuwait is the capital of ______,Kuwait,Sports & Leisure,In What Sport Would You (Catch A Crab) ,Rowing ,General,What is the official language of Ethiopia,Amharic -General,Arched or domed recess at the end of a church,Apse,General,What did J Edgar Hoover bar people from walking on,His Shadow,General,Who had an acting career in the u.k and got his first break in music when he was chosedn to be a replacement drummer in genesis in 1970,Phil collins -General,What European city is nicknamed Auld Reekie,Edinburgh,General,Which song did robin luke write about his 5 year old sister,Susie darlin',General,Graham McPherson changed his name to what,Suggs from Madness -Geography,If You Drove In A Straight Line From Moscow To Madrid How Many Countries Would You Drive In All Together ,"Eight (Russia, Belarus, Poland, Czech Republic, Germany, Switzerland, France & Spain ",General,"In 'startrek', who played captain james t kirk",William shatner, History & Holidays,What was the name of Elizabeth Taylor's character in 'Cat on a Hot Tin Roof'? ,Margaret Pollitt 'Maggie the Cat''  -General,A person who works with iron,Blacksmith, Geography,"Mayfair, London is a district of little streets near ______?",Hyde Park,General,Linonophobia is the fear of,String -Food & Drink,What Is The Principle Ingredient Of The Indian Dish Biryani ,Rice ,General,The Egyptian godess Bastet was depicted with the head of which creature,Cat, History & Holidays,What Was The Name Of Dustin Hoffman's Character In The 1967 Film The Graduate ,Ben Braddock  -General,What European country has no head of state,Switzerland,Music,"In Which Year Did The Beach Boys Release ""Good Vibrations"" & ""Sloop John B""",1966,Music,Scary Spice Wed In 1998 But Where Was The Wedding Held,Little Marlow In Buckinghamshire -Geography,What Is The 3rd Most Populous Country On Earth ,The Usa ,General,Gillan Music: Who re-recorded 'Secret Agent Man' in 1979,Devo,General,Elsinore Castle is the setting for which of Shakespeare's plays,Hamlet -General,"Of the 266 popes, how many died violently",Thirty three,General,In The Arabian Nights what was Ali Babas job,Woodcutter,General,Gynecomania is what compulsion,Female sex partners -General,What is the correct name for a virgin (uncalfed) cow,Heifer,General,Who wrote Les Miserable,Victor Hugo,General,Graham bell His ship was the H.M.S. Beagle,Charles darwin -General,What is the flower that stands for: concealed love,Motherwort,Technology & Video Games,What was Fortran designed for ?,Formula Translation,General,In 1939 in the US what was the first patented plant,New Dawn Rose -General,Guru Nanak founded which religion,Sikhism,Science & Nature,What Element Is Used In The Process Of Galvanisation ,Zinc ,General,What is on a 5000 acre landfill at the head of Jamaica Bay near New York City?,John F. Kennedy Airport - History & Holidays,What was the capital of East Germany?,East Berlin,General,On which racecourse is the Lincoln Handicap run,Doncaster,Entertainment,Who was 'hooked on a feeling'?,Blue Suede -Art & Literature,What Is The Name Of The Russian National Ballet ,The Kirov Ballet ,Music,Footballer Jamie Redknapp Is Married To Which Pop Star,Louise,Music,"What Was Singing Duo ""Chan N Dave's"" First UK Top Ten Hit",Rabbit -Music,"Which Regard To The Po Boyband ""JLS"" What Do The Initials JLS Stand For",Jack The Lad Swing, History & Holidays,"In 1976 which computer company was set up by Steven Jobs and Stephen Wozniak, marketing the first open system machine in 1977? ",Apple ,General,What year was The Bible printed using moveable type,1455 -General,In which month is the Earth nearest the Sun ?,January,General,What would you expect to find in a binnacle,Ships compass,General,What ball contains 216 stitches,Official baseball -Music,Rod Stewart's first album was called after whiuch alley?,Gasoline Alley,General,"Common name for a family of mostly woody flowering plants, and for one of its important genera",Tea,Entertainment,"Who is the elder statesman of 'british blues', and fronted 'The Bluesbreakers'?",John Mayall - History & Holidays,"In the fairy tale 'Cinderella'', which slipper did she lose, the left or the right ",Left ,General,What did Archie Bunker call his son-in-law?,Meathead,General,What is viewed by a stroboscope,Rapidly moving objects - History & Holidays,Who Released The 70's Album Entitled Gasoline Alley ,Rod Stewart ,General,The book 'One Hundred Years of Solitude' won the Nobel Prize for Literature in what year,1982,General,"What type of men's jacket featured it's name on the outer breast pocket,and epaulets on the shoulders?",Member's Only -General,What is the name of the pig that Jim Davis draws,Orson,Sports & Leisure,What sport was first introduced into the Olympics in 2000? ,Trampoline ,Science & Nature,What is the proper name for falling stars?,Meteors - History & Holidays,Which Card Appeared In The UK For The Very First Time In 1963 ,American Express ,General,In Greek what (bad for your diet item) translates into solid bile,Cholesterol,General,She was the first woman to fly the atlantic solo,Amelia earhart -General,Who became Prime Minister following the assassination of Spencer Percival in 1812,Robert banks jenkinson,General,What is the science based upon the assumption that planetary influences affect human affairs,Astrology, History & Holidays,"I Love The Dead', 'Call It Evil' and 'Prince Of Darkness' are all singles released by whom ",Alice Cooper  -General,If you landed at MCO airfield where are you,Orlando Florida,General,Company what is the abbreviation for lake minnetonka,Lake tonka,General,Name the superspy man from Z.O.W.I.E. played James Coburn,Our Man Flint -General,Jeff Lynne - Roy Wood - Bev Bevan - what pop group,Electric Light Orchestra,General,What is the young of this animal called: Frog,Tadpole,General,Sergey Bubka broke world record over 30 times in which event,Pole Vault -General,International dialling codes - what country has 61 as code,Australia,General,Badderlocks is a form of___.,Seaweed,General,Collective nouns - a Trip of what,Goats -General,The film The Madness of King George III Dropped III - why,So Americans don’t think it’s a sequel,Sports & Leisure,How Many Hurdles Are Jumped Over In A 110-Metre Men's Hurdles Race? ,10 ,General,What's the largest & most powerful of the American cats,Jaguar -General,What is a roker,A foot long ruler,General,"Moving anti-clockwise on a dartboard, what is the number next to '4'",Eighteen,General,Where is the lowest point in south america,Argentina -General,"In October 1999, who replaced Frank Dobson as Secretary of State for Health",Alan milburn,General,Scrambled Eggs was the working title of which Beatles song,Yesterday,Art & Literature,Group of American artists from 1908 to 1918. Their work featured scenes of urban realism.,Ash Can School -General,What is the top New Years Resolution,Lose weight, History & Holidays,`Witchy Woman' was a hit for which American group in the 1970s ,Eagles ,Art & Literature,With What Art Movement Was (Salvador Dali) Associated ,Surrealism  -General,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,Food & Drink,What Is The Meaning Of The Term Julienne ,Cut Into Thin Strips ,Entertainment,What is Cher's maiden name?,Sarkassian -General,"""Louis, 1 think this is the beginning of a beautiful friendship"" are the last words of which film",Casablanca,General,The first trees to move into a newly cleared forest area are called,Pioneer,General,What is the collective name for a group of hummingbirds,Charm -General,What is the flower that stands for: cleanliness,Hyssop,General,What's the light sensitive layer on photographic film called,Emulsion,General,"Shakespeare - Antony, Romeo, Othello - what in common",Suicide -Music,Which Shakespeare play shares it's title with a 1981 Dire Straits hit,Romeo & Juliet,General,What flavour is added to LAMBIC beers to make them into KRIEK,Cherry,Entertainment,A __________ helps to set and maintain your tempo while playing.,Metronome -General,How long can a bedbug live without food,One Year,General,Which French word is used to describe a restaurant wine specialist?,Sommelier,General,Of which Spanish province is Santander the capital city,Cantabria - Geography,Which is the only musical bird that can fly backwards?,Hummingbird,General,Which sport featured in the 1968 film 'Fat City'?,Boxing,Geography,Which City Is The Capital Of New Zealand ,Wellington  -People & Places,Which Liberal Leader Was Aquitted Of Attempted Murder ,Jeremy Thorpe ,General,What make of car is an 'Espace'?,Renault,Sports & Leisure,What nationality was formula one driver Ayrton Senna? ,Brazilian  -General,Bell's palsy results in numbness in which area,Face,General,Fluid produced in the lacrimal glands above the outside corner of each eye,Tears,Geography,Where is the Parthenon located,Athens -General,Which phrase means computer simulation that seems life like,Virtual reality,General,Who invented the ballpoint pen,Georgo and laszlo biro,General,Who replaced the assassinated Giacomo Matteotti in 1924,Benito -General,Slugs have four of them - what,Noses,General,In old English what is a Bellibone - From French Belle Bonne,Fair Maiden,Music,"Which Soft Cell Single Was Dismissed In A Melody Maker Review As ""Some Of The Most Appallingly Limp Music It's Ever Been My Misfortune To Hear""",Soft Cell / Tainted Love -General,In Japan what is Yomiyuri Shimbun,Newspaper – worlds best seller,General,"In 1543, who published a theory that planets revolve around the sun",Copernicus,General,What is grimace of the Mcdonald's characters,Tastebud -General,Fill in the blank: when you ____ upon a star,Wish,General,There are three parks in the USA dedicated to what,Butterflies,General,If you Absterse something what do you do,Clean it -General,The first US copyrighted film showed what in 1894,A man sneezing,General,"In which American state are the towns of Anaconda, Moscow and also the Salmon river",Idaho,General,Zero on a roulette wheel is what colour,Green -Science & Nature,What is the name of the layer between the Earth's crust and the Earth's core ?,Mantle,General,Which everyday labour-saving device was patented by Cecil Booth in 1901,Vacuum cleaner,Science & Nature,Which Is The Fastest Growing Plant? ,Bamboo (15 Inches A Day)  -Food & Drink,"Booze Name: Vodka, consomme, lemon, tabasco sauce, salt, pepper, celery salt.",Bullshot,General,Middle ages it was believed birds picked mates what Saints day,14th February – Saint Valentine,General,The ELO system is used to rate players of which board game,Chess -General,Who plays Auntie Wainwright in Last Of The Summer Wine,Jean alexander,General,Which class of racing yacht has the same name as a Wagner opera,Flying dutchman,General, A sun_dried grape is known as a(n) ___________.,Raisin -General,In Greek mythology Penthesilea was the queen of which people,Amazons,General,What drink is also known as Adam's Ale,Water,General,Name Def Leopards one armed drummer,Rick Allen -General,What was the annihilation of the jews in wwii called,Holocaust,General,What shape is a goat's pupil,Rectangular,General,Which planet has a moon called Europa,Jupiter -General,Baseball: the st louis ______,Cardinals,General,St Brigit of Ireland could do what amazing trick for visitors,Bathwater into Beer,General,Name the first king to ever make an official visit to communist China?,Juan Carlos -General,"Translate ""january river"" into portuguese",Rio de janeiro,General,Where were the worlds first paved streets,Rome 170 bc,General,Turkish city and port on the Bosporus,Istanbul -Music,Name The 4 Members Of The Travelling Wilburys PFE,"George Harrison, Roy Orbison, Tom Petty, Bob Dylan",General,What type of creature was 'Mang' in Kipling's 'Jungle Book'?,Bat,General,What Scottish city does a Glaswegian call home,Glasgow -General,What is biltong,Dried meat,General,What's the gaelic name for Dublin,Baile atha cliath,Art & Literature,Which Science Fiction Story Centres Around Alien Children In A Village ,The Midwitch Cuckoos  -General,Any of a group of composite organisms made up of a fungus & an alga living in symbiotic association (symbiosis),Lichen,Sports & Leisure,Which Moroccan Athlete Became The first Man To Run 5000 m In Under 13 Minutes ,Said Aouita ,General,Paramount Pictures logo has 22 what,Stars -General,What's the only city today split in two by a wall,Nicosia Cyprus,General,Who recorded left overture in 1976,Kansas,Music,Which duo wrote the musicals Brigadoon and My Fair Lady?,Alan Lerner and Fredric Loewe -General,What battle does the French Legion Celebrate Annually,Camerone - A Defeat,General,Louis the XVI France only two (recorded) what in his lifetime,Baths,People & Places,"In Which State Is Fort Knox, The Location Of The USA's Gold Reserves To Be Found? ",Kentucky  -General,Reuben Tice died trying to invent a machine to do what,Dewrinkle prunes, Geography,In what US state is Panama City?,Florida,General,What actress played mrs margaret williams in the danny thomas show?,Jean hagen -General,What kind of animal is Beatrix Potters Mrs Tiggy Winkle,Hedgehog,Religion & Mythology,Who was Hercules' father?,Zeus,General,George W Trendle and Fran Striker created what Western hero,The Lone Ranger -Tech & Video Games,The Sega Genesis game about two lost aliens looking for their spaceship was called what? ,ToeJam and Earl,Science & Nature,What Can Babies Do That Adults Cannot ,Breathe And Swallow At The Same Time ,General,What is the flower that stands for: ardent love,Balsam -General,Who sailed in a ship called the Argo,Jason,General,Sir Christopher Wren Who Designed St Pauls Cathedral Was A Professor In Which Scientific Field,Astronomy,General,What is mixed with kahlua to make a 'black russian',Vodka - Geography,To what country does the Gaza Strip belong?,Egypt,Music,How Are Messrs Moor & Prater Better Known,Sam & Dave,General,"What famous airborne event occurred May 21, 1927",Lindbergh flight -General,Ben Franklin invented it - Britain tried it in 1916 - What,Daylight saving Time,Science & Nature,What Is V = IR Better Known As ,Ohm's Law ,Science & Nature,"What are Petrol, Naphta, Kerosine, Diesel and Oil ?",Hydrocarbons -General,What was the first credit card,Diners Club,Sports & Leisure,"Which Sporting Milestone Occurred At Iffley Road, Oxford In May 1954? ",Roger Bannister Ran The First 4 Minute Mile ,General,In DC comics Linda Lee Danvers is whose alter ego,Supergirl -General,What country would a Bulgarian with a good sense of direction walk through to reach Armenia by foot,Turkey,General,What was the Troggs most famous hit,Wild Thing,General,Who were believed to celebrate Walpurgis Night on the eve of May Day,Witches -Entertainment,Who is Scooby Doo's nephew??,Scrappy Doo,General,Who is on a u.s. $100 bill?,Benjamin franklin,General,Who pulled the thorn from the lion's paw?,Androcles -Geography,Name the largest city in canada ,Toronto ,General,How many 'tarsal' bones do we have in each foot,Seven,General,The term red herring comes from what activity,Foxhunting -General,Who was the youngest world heavyweight boxing champion,Floyd patterson,Music,Of Which Group Was Suggs A Member,Madness,General,What creatures sex act lasts exactly two seconds,Mosquito -General,The only member of the band zz top without a beard has what last name?,Beard,Music,"Which Singer Recorded The Album ""No Angel"" Which First Charted In 2000",Dido,General,April fool's day came from ________ when the Gregorian calendar was adopted.,France -General,Which Platinum Selling Recording Artist Survived An Assassination Attempt In 1976,Bob Marley,Entertainment,"Who played the lead in the movie ""Erin Brokovich""?",Julia Roberts, History & Holidays,Who directed the 1968 film Rosemarys Baby ,Roman Polanski  - History & Holidays,"Which classic 1946 Christmas film features the line 'Daddy, every-time a bell rings, an angel gets its wings'' ",It's a Wonderful Life ,General,"Who sang 'forever and ever, amen'",Randy travis,General,For what sport is the Camanachd cup contested,Shinty -General,What is a group of this animal called: Owls,Parliament,Art & Literature,What shakespearean play refers to the date of epiphany?,Twelfth Night,Music,With Which European City Is Ultravox Linked Songwise,Vienna -General,What is the name of the Dukes of Hazzards car?,General Lee,General,What does aka stand for,Also known as,General,Someone who dibbles is drinking like what,A Duck -General,The volume of which solid is given by the formula 4/3(pi)r^3?,Sphere,General,What do the Germans now celebrate on October 3rd,Unity day,General,What is the flower that stands for: come down,Jacob's ladder -General,"Who said ""A Single death is a tragedy a million a statistic""",Joseph Stalin,General,French German Italian 3 official languages Switzerland what 4th,Romansch,General,"What company is dubbed ""BUD"" on a stock exchange ticker tape",Anheuser busch anheuser busch -General,What name is given to twins who are joined together by some part of their anatomy,Siamese,General,What lifeboat gets launched from the coast of cornwall,Padstow lifeboat,General,Duran Duran were the 'wild boys' of which year,1984 -Music,"The Lee Dorsey Song ""Working In A Coal Mine"" Was Later Covered By Which Quirky Band",Devo,General,A pigs penis is shaped like what,Corkscrew,General,We know who Darth Vader is but what's Vader mean in Dutch,Father - History & Holidays,"What is Myrrh? Is it a herb, a gum resin or an essence distilled from orchids ",Gum resin , History & Holidays,Who is identified with the word 'eureka'?,Archimedes,General,There must be 15 banked turns on what sporting course,Championship Bobsleigh -Food & Drink,Laetrile is associated with the pit of which fruit ,Apricot ,General,In MASH what was the character Radars full name,Walter O'Reilly,General,Halcyon is a poetic name used for what bird,Kingfisher -General,Thomas Harris created what character,Hannibal Lector,General,A puggle is a baby what,Echidna,General,"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.",10000 -General,What was known as Arabian Wine,Coffee,General,Who had a best selling single in 1972 with 'Amazing Grace,Royal scots dragoon guards,General,What are falling stars,Meteors -General,What is the capital of north carolina,Raleigh,General,By what is the hudson river spanned,George washington bridge,General,An unfolding of the leg in the air.,Développé -General,"Who claimed that in the garden of eden god spoke swedish, adam spoke danish, and the serpent spoke french",Swedish philologist,General,What's the christian penitential season from end of november to christmas,Advent,General,The sweetener saccharin is made from what,Coal Tar -General,"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,General,Queen Alexandria's is the worlds largest what,Butterfly 1 foot wing, History & Holidays,"What were the B-52's named after? (Hint, it's not a plane) ",Beehive  -General,"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,General,This is the fear of enclosed spaces,Claustrophobia, Geography,Lansing is the capital of ______?,Michigan -General,Tracey and Hepburn first film in 1942 was what,Woman of the Year,Music,Which Band Were Saving All Their Kisses In 1976,The Brotherhood Of Man,General,What is the term for precipitation that has been polluted by sulfur dioxide & nitrogen oxides,Acid rain -Science & Nature,How Many Hearts Does An Octopus Have? ,Three Hearts ,General,On which island are the Troodos mountains,Cyprus,General,Which Actor Voices Homer Simpsons Brother “Herb” In The Simpsons ?,Danny De Vito -General,Property of a fluid that tends to prevent it from flowing when subjected to an applied force,Viscosity,General,Humphry Bogart played Rick in Casablanca - Rick Who,Fleming,General,Indiana smoking banned in the legislature building except when,Building is being used -General,The nest of an eagle or bird of prey is an,Eyrie,General,Basketball: the new york _________,Knickerbockers,General,"Which word comes from the Roman ""where three roads meet"" as a place where messages were left",Trivia -General,Filo pastry stuffed with chopped nuts and honey,Baklava,General,Name surveyors symbol that looks like a broad arrow with a bar,Benchmark,General,There are five stars on the flag of which country,Peoples republic of China -Art & Literature,"In 'Romeo and Juliet', about what was Mercutio's long monologue?",Queen Mab,General,Which American State Drinks The Most Alcohol Per Person,Nevada,Science & Nature,"Cocci, Spirilla, and Streptococci are types of ________.",Bacteria -General,What is the flower that stands for: call me not beautiful,Unique rose,Entertainment,"What does the Italian term ""poco a poco"" mean?",Little by little,General,Capital cities: Jamaica,Kingston -General,In what country is the town of Liege,Belgium,General,Sailors lacking vitamin c would contract which disease,Scurvy,Music,"In Which Film Did Doris Day Sing The Oscar Winning Song ""Secret Love""",Calamity Jane -General,In which film was the best supporting actor Oscar won in 1975,The Sunshine Boys George Burns,Geography,Bridgetown is the capital of ________.,Barbados,General,What kind of biscuits were named after Australian & New Zealand soldiers,Anzac biscuits -General,34% of Californian Male students 10% of Female lied to get what,Sexual Partner,People & Places,Which saint was known as the apostles of Northumbria? ,St Aidan ,General,Where are the 'wallops',Hampshire -Science & Nature,A scientist who studies reptiles and amphibians is known as a:,Herpetologist,Geography,What is the capital of Sierra Leone,Freetown,General,Who betrayed king arthur by sleeping with his wife guinevere,Sir lancelot -General,International Phonetice Alphabet: N,November,Science & Nature, The penculine __________ of Africa builds its home in such a sturdy manner that Masai tribesman use their nests for purses and carrying cases.,Titmouse,Science & Nature,Who Invented Tthe Aqua Lung ,Jacques Cousteau & (Emil Gagnan)  -General,"Two of the permanent residents of Fawlty Towers were old ladies. One is Miss Tibbs, what is the name of the other",Miss gatsby,General,What is the Capital of: Croatia,Zagreb,Music,What Couldn't REO Speedwagon Fight,This Feeling -General,If silver is stamped with a leopard in which city was it assayed,London,General,What is the flower that stands for: relieve my anxiety,Christmas rose,General,Which Descriptive Term Is Applied To “Force 11” On The Beaufort Scale,Violent Storm -General,Who invented Coca Cola,Dr john pemberton,General,Who discovered oxygen,Joseph priestley,General,His ship was the H.M.S. Beagle,Charles darwin -General,"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,General,What is the fear of philosophy known as,Philosophobia,General,In Florida its illegal for a housewife to do what more 3 times daily,Break a dish -General,What model of automobile is known for its water-tight characteristics,Volkswagen beetle,General,What countries dialects has varieties called Twi and Fanti,Ghana,Music,"Who Claimed He Was ""An Innocent Man""",Billy Joel -General, Bibliophobia is a fear of __________.,Books,Music,Written By Billy Strayhorn What Was The Signature Tune Of The Duke Ellington Band,"Take The ""A"" Train",General,What is a peanut if it is not a pea or a nut,Legume -General,"In the movie snow white, what instrument did sneezy play",Accordian,General,"In Greek mythology, what is the alternate name for pollux",Polydeuces,Art & Literature,Eliza Doolittle Appears In Which Play ,Pygmalion/My Fair Lady  -Science & Nature,As what is the North Star also known?,Polaris,General,Which plant of the daisy family provides a medicine used for the treatment of bruises,Arnica,General,What is the national flower of Spain?,Carnation (Red) -General,Who was the dictator of Uganda from 1971 to 1979,Idi amin,Science & Nature," An adult lion's roar can be heard up to five miles away, and warns off intruders or reunites scattered members of the __________",Pride,General,How many bonus points in Scrabble if all seven tiles played at once,Fifty 50 -General,The ionian and cyclades are island groups of which country,Greece,General,What type of level is used for measuring the angle of a slope,Abney,General,In Gustav Holsts Planets suite which planet represents old age,Saturn -Music,The Scottish Band The Soup Dragons Got Their Name From Which Childrens TV Show,The Clangers,General,What is the proper name for a moving stairway,Escalator,General,What animal can hop as fast as 40 mph,Kangaroo -General,What is the hobby of a 'twitcher',Bird watching,General,In the song Waltzing Matilda - What is a Jumbuck,Sheep,General,What U.S. state is the golden state,California -General,Jack Haley played the Tin Man what was the Tin Mans name,Hickory Twicker,General,Which Puccini opera featured Nessun Dorma,Turendot,General,"What part of a face, according to research, do infants like most to look at",Eyes -General,"In dentistry, what are ""angle irons"" and 'rolex'",Braces,General,Canada is an Indian word meaning what,Big Village,General,Who had the UK Christmas NO 1 single in 1995 with Earth Song,Michael jackson -General,"To ""testify"" was based on men in the Roman court swearing to a statement made by swearing on what",Their testicles,General,60% of women say they have eleven a day - 11 what,Emails,Music,"In The Beatles Song ""I Am The Walrus"", who were they kicking?",Edgar Allen Poe -General,What legendary character is rooted in U.S. pioneer John Chapman,Johnny appleseed,General,What's missing from ale that’s included in beer,Hops,General,What holiday does Japan celebrate on December 23?,Birthday of the Emperor - History & Holidays,"""Which former star of 'Crossroads'' Played """"Meg Richardson"""" And was born on 25th December,1923"" ",Noel Gordon ,General,"Which American state was the first, in 1780, to abolish slavery",Pennsylvania,Geography,Which state has Cape Hatteras,North carolina -General,Which Famous Artists Designed The Chupa Chups Logo In 1969,Salvador Dahli,General,What animal appears on an australian 5 cent coin?,Echidna,General,Operation Market Garden WW2 involved the invasion of where,Arnham -Science & Nature,How Many Ribs Do You Have ,24 Ribs ,General,What police resource was first used in the Jack the Ripper case,Bloodhounds,General,Who was the pilot in the first fatal air crash,Orville Wright -Sports & Leisure,What is the only English football team without a vowel in the first five letters of it`s name? ,Crystal Palace ,General,This frontiersman & politician was killed at the Alamo,Davey crockett,General,Italy's equivalant to the dollar is the ______?,Lira -General,What do ladybugs do in the winter,Hibernate,Science & Nature,What Is The Name For A Baby Hare? ,A Leveret ,General,"What means of transport was invented in Marin County, California, in the 1970s",Mountain bike -General,What 3 flags does the Union Jack comprise of?,England Scotland Ireland,Art & Literature,Who Wrote The Novel 'Silence Of The Lambs''? ,Thomas Harris ,General,Which toilet fittings name comes from baggage laden pony,Bidet -General,What is the official sport of Maryland,Jousting,General,Lucille LeSueur was the real name of which famous actress?,Joan Crawford,General,What other name is Mellor’s famously known by,Lady Chatterlys Lover -Science & Nature," The __________ has only two toes, unlike most birds, which have three or four.",Ostrich, History & Holidays,What Is Bob Dylan's Real Name ,Robert Zimmerman ,General,What shape were the sailors plates in Nelsons navy,Square Thus Square Meal -General,What kind of book did dr seuss pen five of ten best-sellers in u.s history by 1994,Children's books,General,What is alfred e neuman's motto,"Whta, me worry",Music,"Complete the Lyrics To The Following “I am the eggman, they are the Eggmen, I am… (2 Words)",The Walrus -Science & Nature,What is the name for a group of stars,Constellation,General,Who made the first solo transatlantic flight in 1927,Charles lindbergh,Geography,Which famous country park surrounds the village of Edwinstowe in Nottinghamsire? ,Sherwood Forest  -General,What does MTA stand for among Frisbee freaks,Maximum time aloft,Music,The Pop Duo The Carpenters Had A Lot Of Hits In The 70's But What Are Their Actual First Names PFE?,Karen & Richard,General,Who is the only South African driver to have won the World Formula One Championship?,Jody Scheckter -General,The word 'batrachian' describes which animals,Frogs & toads,General,"On Night Court,Harry had a ""statue"" of what animal in his office?",Armidillo,General,Who was the first man to win the 1500m swimming back to back at 2 olympics,Kieren perkins -General,Who sang the title song to 'goldfinger',Shirley bassey,Science & Nature,Name the most venomous spider.,Black widow,Technology & Video Games,"In Dead or Alive 2, Hayabusa informs you that ""If your soul is imperfect,"" what? ",Living will be difficult -General,"In popular culture, what is a 'Tamagotchi'",Virtual pet,General,Where did the word 'biscuit' originate,France,Sports & Leisure,What Is The Pitch Called In American Football ,The Grid Iron  -General,What asian country is bordered by the soviet union and china,Mongolia,General,Film title 'the last days of ______',Pompeii,General,"Where did Ronald and Cindy go on there last date together in the movie ""Can't Buy Me Love""?",Airplane junkyard -General,Who is known as big mama in ladies pro golf,Joanne carner,General,Medina is located in what country,Saudi arabia,General,"The word ""cumulus"" refers to a type of ___________.",Cloud -General,Only female humans and what have hymens,Horses, History & Holidays,Who Assassinated Robert Kennedy? ,Sirhan Bishara Sirhan ,General,Who was the first person inducted into the u.s. swimming hall of fame,Johnny -General,In which country was the Pahlavi family a ruling dynasty,Iran,Food & Drink,What Country Does Bacardi Originate ,Cuba ,General,"These are words in different languages that have the same original source, eg: ""water"" (english) and ""wasser"" (german)?",Cognates -General,What do tendons join to bones,Muscles,General,What is a coho a type of,Fish,Science & Nature,Water freezes at _ degrees Celcius.,0 -Music,Which Chicago Club Gave House Music It's Name,The Warehouse Club,General,Merrylegs was a performing circus dog in which Dickens novel,Hard Times,General,Whats the largest library in the world,The library of congress -General,1938 marked the introduction of this Volkswagen car.,Beetle,Music,"Whose 1996 Debut Album Was Entitled ""First Band On The Moon""",The Cardigans,General,This is the sandy area nearest the ocean.,Beach - Geography,What is the basic unit of currency for Brunei ?,Dollar,Food & Drink,What is France's oldest type of brandy? ,Armagnac ,General,Mr Spocks blood was green - but what group,T - Negative -General,Which vegetable is used if a dish is described as 'a la Crecy',Carrots,General,"Of indian affairs Branch of mathematics concerned with the study of such concepts as the rate of change of one variable quantity with respect to another, the slope of a curve at a prescribed point, and the computation of the maximum and minimum values of functions",Calculus,Entertainment,Actor: __________ Nimoy.,Leonard -General,What kind of hat is depicted on lee trevino's golf cap,A sombrero,General,What are young rats called,Pups,General,A non_cancerous tumor is said to be _______.,Benign -Sports & Leisure,Who Made The First 147 Break At The Snooker World Championships ,Cliff Thorburn ,Science & Nature,Which Shiny Insect Feeds On Such Materials As Wallpaper Paste And Bookbindings ,The Silverfish ,General,Miso a traditional Japanese cooking ingredient is what,Soybean Paste -Science & Nature, The mouse is the most common mammal in the __________,United states,General,Two out of 3 visits to an American doctor are for what problems,Stress Related,General,What country excludes women from the graveside rituals,China -General,What does a 'postman' normally receive in kids' party games,Kisses,General,According to the saying where does charity begin,At home,General,What colours are on the Belgian flag?,"Yellow, black and red" -Music,John's first published book was called:,In His Own Write,People & Places,Whom did Mervyn King replace as Governer of the Bank of England in 2003? ,Eddie George ,General,Which Australian city is named after William IV's Queen,Adelaide -General,"In the tv series 'the dukes of hazard', what was painted on the top of their car",Confederate flag,General,Fescue is a generic type of what,Grass,Geography,Native American Indians are of which human subrace? (e.g. Caucasian),Mongoloid -Science & Nature, A South African __________ can grow to be 35 inches (90 cm) in length _ longer than your arm.,Bullfrog,General,In which country is the city of Mandalay,Burma,Music,On Which Shakespeare Play Was Kiss Me Kate Based,The Taming Of The Shrew -General,What is the capital of Montenegro?,Podgorica,General,Rathbone what was tarzan's true identity,Lord greystoke,General,Collective nouns - which creatures are a clamour or building,Rooks in a rookery -Science & Nature,"What are these: Ceres, Juno, Iris, and Flora",Asteroid,General,Murphy's Oil soap is most often used to clean what,Elephants,General,Although He Never Set Foot Here Which Elvis Presley Movie Is Actually Set In England,Double Trouble -General,What is divided into 114 surahs,The Koran - Surah = chapter,General,What does roulette literally mean,Little Wheel,Entertainment,Which large tuned orchestral drum is also known as a kettledrum?,Tympani -General,What country has the biggest population,China,General,"Which book was the sequel to ""Little Women""",Good wives,General,"Japheth, Shem and Ham were sons of which biblical man",Noah -General,Port Said lies on which waterway,The suez canal,Music,What Was Unusual About The American Top 100 Singles Charts In June 1983,It Contained More Records By Foreigners Than Americans For The First Time,Entertainment,"In late 1957, Buddy Holly's solo release 'Peggy Sue' challenged which song recorded with The Crickets?",Oh Boy -General,"Optiphone, Lustreer and Mirascope early names for which item",Television,General,According to Samuel Johnson what is the drink for heroes,Brandy,General,The raised reflective dots in the middle of highways are called what,Botz dots -General,The Mbuti tribe in Africa are the worlds what,Shortest race,Entertainment,What actress's real name was Frances Gumm?,Judy Garland,General,What colour would one associate with the Spanish volunteer force on the eastern front in the WWII,Blue -General,What does a botanist study,Plants,General,What is the 30th longest river in the world ?,The Thames,General,In which state of the U.S.A. would you find Mount Rushmore,South dakota -Sports & Leisure,Which crew sank in the 1978 boat race? ,Cambridge ,Geography,The Arctic ocean is the smallest and _____________,Shallowest, History & Holidays,"""What Did My True Love Give To Me On The """"Eighth"""" Day Of Christmas"" ",8 Maids A Milking  -General,1979 at Clifton suspension bridge Britain's first what happened,Bungee Jump,General,Zimbabwe won its first ever Olympic gold in 1980 in what event,Women's Hockey,Music,Route 66 Composer Bobby Troup Was Married To Which Sultry Singer,Julie London -General,What in Arthurian legend was the Siege Perilous,Empty Chair for grail finder,General,In nautical terms what five letter word means duty at the helm,Trick,General,On which scale are there 180 degrees between freezing point and boiling point,Fahrenheit scale -Food & Drink,How would you say 'house wine' in 'French' ,Vin (de la) maison ,General,"Which character in Bond films has been played by Donald Pleasance, Telly Savalas, and Charles Gray",Blofeld, History & Holidays,Henry The 8 th Had A Bit Of Bad Rep When It Comes To His Wives But He Only Executed 2 (PFE) ,"Anne Boleyn, Katheryn Howard " -General,"The cocktail ""Margarita"" contains cointreau, lime and which spirit",Tequila,General,What does f.b.i. stand for,Federal bureau of investigation,General,Give a year in the life of the painter Frans Hals.,1580-1666 -General,"Which Very Successful Pop Duo Consist Of ""Roland Orzabal & Curt Smith""",Tears For Fears,General,What was the name of george of the jungle's ape friend,Ape,Science & Nature, There is just one known species of __________ in the world _ it is in the order of Struthioniformes.,Ostrich -Entertainment,"What hardcore rock group sings, 'Blind' and 'Clown'?",Korn,General,What compound might you expect to find in diet soft drinks,Aspartame,General,Which Female Minister Of Transport Introduced The Breathalyzer?,Barbara Castle -General,What are the only canines whose hair has a hook (or barb) on each individual follicle,Dalmatians,General,Idi Amin of Uganda excelled at what sport,Rugby, Geography,Which country is the smallest population ?,Vatican City -General,U.S. Captials - Missouri,Jefferson City,General,The wingspan of a ______ ___ jet is longer than the Wright Brothers' first flight,Boeing 747,Food & Drink,What is a lift for food in a restaurant known as? ,A dumb waiter  -General,"Which TV Personality Had A Cameo Role In The Movie ""Bedknobs & Broomsticks""",Bruce Forsythe,General,What's the name of the large prominent vein in the side of your neck,Jugular vein jugular,General,Who was Abraham Lincoln's first choice to lead the Union Army,Robert e lee robert e. lee -General,Who did Nathuram Godsay Murder in 1948?,Mahatma Gandhi,Music,Which sixties pop group were the first to have 3 No.1 UK hits with their first 3 singles?,Gerry And The Pacemakers,General,What is used in the game of Bettle Drive?,Dice -Music,What Numeric Link Did Bros Have In Common With Tears For Fears,Each Group Had 2 Members (Twins),General,Michigan State University is located in what city,East lansing, Geography,Which river produces the most sediment?,Yellow River -General,What Was Walt Disney's Middle Name,Elias,General,Shellac dissolved in alcohol makes what type of varnish,French Polish,People & Places,Who is known as 'The Big Yin'? ,Billy Connolly  -General,What does a philatelist collect,Stamps,Sports & Leisure,At Which Event Has Steve Backley Won Olympic Bronze & Silver Medals ,Javelin ,Science & Nature,What Is Spains Largest Port ,Barcelona  -General,The name of this animal translates as ghost what is it,The Lemur,General,The most northerly point of mainland Africa is in which country,Tunisia,General,What name is given to the tidal wave which travels up to 800km upstream on the Amazon with waves up to 4 metres high?,Pororoca -General,"What was the name of the ""fake"" evolutionary missing link found in Sussex, England ?",Piltdown Man,Entertainment,What expression did Clark Kent's newspaper boss like to use?,Great Caesar's ghost!,General,U.S. captials Colorado,Denver -General,What countries national anthem is The Patriotic Song,Russia,General,What sport is often called 'ping pong',Table tennis,General,Which countries men use the most deodorant,Japan -General,Who wrote the 'noddy' books,Enid blyton,General,Who played Judge Roy Bean on film in 1972,Paul newman,General,In Huston its illegal to sell what on Sunday,Limburger Cheese -General,What's the Malayan sun bear's main claim to fame,Smallest bear,Science & Nature,How Many Vertebrae Does The Average Human Possess ,33 Vertibrae ,General,Which is the last of the year's four quarter days,Christmas day -Science & Nature,As Their Names Would Suggest Where Were The Mamenchisaurus & The Tuojiangosaurus Found ,China ,General,What was 1993s biggest selling single,Ill do anything for love,General,What can withstand hundreds of bee stings,Honey badger -Sports & Leisure,Baseball: The St. Louis ______?,Cardinals,Science & Nature,How many tons of gem diamonds are mined every year ,Two ,Music,Who Was the First African American Group To Reach No.1 In the Singles Charts,The Platters -General,What name is given to a year with 366 days,Leap, History & Holidays,"In 'Sixteen Candles', what did the geek need to get to prove he had sex (which he got from Molly Ringwald)? ",Underpants ,General,"Who was the author of ""The Moor's Last Sigh""",Salman rushdie -General,India has the largest Hindu population what country has second,Nepal,General,Which world-wide organisation was founded in 1865 as the Christian Mission,Salvation army,General,What kind of craft was the mast atop the Empire State Building intended to moor,Dirigibles dirigible -General,Parasitophobia is the fear of,Parasites,General,Who won the first Oscar for a musical in 1943,James Cagney,Music,"Who Sang The Hit ""Take My Breath Away"" From the Movie Top Gun",Berlin -General,Which city's airport is the home base for Cathay Pacific Airlines,Hong kong,General,Name the nursery rhyme mother whos last name is that of a bird?,Goose,Geography,Frankfort is the capital of which state ,Kentucky  -General,What is the only n.y.c borough that is not on an island,Bronx,General,Which US sportsman is mentioned in The Old Man and the Sea,Joe De Maggio,General,How many feet tall is London's monument to the Great Fire known simply as 'The Monument'?,202 Feet -General,What does Israel call its parliament?,Knesset,Music,Who wrote a book titled The Adventures of Lord Iffy Boatrace?,Bruce Dickinson,Music,Who Was The Lead Singer Of The Group TA-PAU,Carol Decker - History & Holidays,How Many Colonies Signed The American Declaration Of Independence? ,13 Colonies ,General,Hazel was the maid for what family,Baxters, History & Holidays,Who Released The 70's Album Entitled Tea for the Tillerman ,Cat Stevens  -General,Yvon Petra 1946 was the last Wimbledon champion to do what,Wear Trousers,Music,Father Abraham Was The Guiding Light For Which Hit Making Figures,The Smurfs,General,In Which European Countrv Will You Find The Headquarters Of Greenpeace,Amsterdam -Toys & Games,"In pool, what color is the eight ball?",Black,General,Archaeopteryx was the first what,Bird,General,What is the Maths equivalent of the Nobel prize ?,Fields Medal -General,In Palding Ohio police officers can legally do what to dogs,Bite them to quiet,General,What two countries were known as 'The Yellow Peril' in then 1890's?,China and Japan,General,Every day 2700 Americans find out what,They have gonorrhoea -General,What is another name for a tomato,Love apple,General,"Who released 'she's so unusual' in 1984, and won a grammy for best new artist",Cyndi lauper,General,What job Michael Cane Uma Thurman Sidney Poitier common,Dish washers -General,"The French Physician ""Laennec"" Was Responsible For Inventing Which Medical Aid",Stethoscope,Sports & Leisure,What are large snow bumps known as in skiing terms?,Moguls,General,"What Ray Charles song pines: ""I'll just live my life in dreams of yesterday""",I can't stop loving you -General,What name is given to the control column of an aircraft,Joystick,General,Small pieces of bread or crackers with a savoury topping are called what,Canapes,General,The architect Edwin Lutyens is best known for his plans for which capital city,New delhi -General,"In ballet, the position of the torso from the waist up.",Épaulement,General,What do English speakers call the city that ltalians call Torino,Turin,General,What 1942 movie did the song white christmas come from,Holiday inn -Food & Drink,What Is Albumen The Correct Term For ,Egg White ,General,The agave cactus is the source of which liquor?,Tequila,Science & Nature,What muscles move the ears?,Auricularis -General,His campaign slogan was vote for AuH20 whats his name,Barry Goldwater,General,What was the real name of Boris Karloff,William henry pratt,General,What play has line - Shall there be no more cakes and ale,Twelfth Night -General,Give the name of Elizabeth Barrett Browning's dog,Flush, Geography,What is known as the graveyard of the Atlantic ?,Sable Island,Art & Literature,What was the name of Mother Goose's son,Jack -General,What does the Campbell-Stokes recorder measure,Duration of sunshine,General,In Paris what has been defined as a deadly weapon,Ashtray,General,What Gilbert & Sullivan operetta was subtitled Bunthorns Bride,Patience -General,"How Are The Musical Duo Of ""Martha Wash & Izora Armstead"" More Commonly Known",The Weathergirls,Sports & Leisure,Who Did Muhammed Ali Fight In 'The Rumble In The Jungle''? ,George Foreman ,General,Who was born Anne Frances Robbins?,Nancy Davis Reagan -General,"""Poppy Field"" and ""Water Lilies"" were painted by which artist",Claude monet, Geography,What is the basic unit of currency for Bolivia ?,Boliviano,General,In which Chinese city is the tomb of Sun Yat Sen,Nanking -General,What does israel call its parliament,Knesset,General,What zodiacal sign is represented by fish,Pisces,General,The average automatic dishwasher uses how many litres of water per wash cycle,68 -General,Tests on drugs and poisons determine the LD-50 dose. What does LD stand for,Lethal dose,Food & Drink,Which tuber is sometimes called the 'Black Diamond' ? ,Truffles ,General,What is the technical term for the bones in the fingers and toes,Phalanges -Music,Who Is The Youngest Member Of Boyzone,Ronan Keating,Entertainment,"Who played the lead in the movie ""The Matrix""?",Keanu Reeves,General,What did Mege-Mouries invent in 1870 winning a Napoleon prize,Margarine -General,What Country-Pop artist was once a cheerleader alongside classmate Brenda Lee at Maplewood High School in Nashville,Rita coolidge,General,Roman orator Marcus Tillius nicknamed what for wart on nose,Cicero,General," A flat, round hat sometimes worn by soldiers is a _________.",Beret -General,"Whose last words were - ""That was the best soda I ever tasted""",Lou Costello,General,Who launched a Cultural Revolution in April 1966,Mao tse-tung,Music,"""When I Need You"" Was A No.1 Hit For Which Singer",Leo Sayer -Food & Drink,What did Martin Stone invent in 1888 that millions of suckers use every day? ,The Drinking Straw ,Music,Who covered the Diana Ross & The Supremes song “You Can't Hurry Love” in 1983,Phil Collins,General,How many times have the olympic games been cancelled due to war,Three -General,The name of what product - German water Greek olive Oil,Vaseline Wasser Elaion, History & Holidays,Who sang Happy Birthday to John F. Kennedy for his 45th,Marilyn monroe,Geography,Hanoi Is The Capital Of Which Country ,Cuba  -General,Which instrument did Paganini play,Violin,General,Old Dominion was a nickname of which US state,Virginia,General,What Shakespeare King was killed at Pontefract Castle,King Richard III -General,Which film actor is known as 'The muscles from Brussels',Jean claude van damme,General,In 1900 Persian soldiers were paid with what,Donkeys,General,Which country lies between Tunisia and Egypt,Libya -General,At the Festival of the Cleaver Spartans nailed what to the wall,Sausages for older men to gnaw,Food & Drink,The Marine Snail Is Better Known As What ,Whelk ,General,A group of deer is called a,Herd -General,The word bungalow comes from which language,Hindi,General,In which country was cricketer Ted Dexter born?,Italy,General,A husband and wife won gold medals 1952 Olympics who,Emile Dana Zatopek marathon javelin -Science & Nature,"Which Variety Of Pine Tree, Alive Today, Was A Sapling During The Life Of Christ/ ",The Bristlecone Pine ,General,Who is the Patron Saint of Gout,Saint Andrew,General,What 1970's tv series gave larry hagman his start,I dream of genie -Sports & Leisure,"In which sport is the term, ""Hang ten"" used?",Surfing,Science & Nature," 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,Sports & Leisure,In Which Game Might You Castle ,Chess  -General,What does the computer acronym IKBS stand for,Intelligent knowledge based system,General,What is the largest desert in the world,Sahara,Science & Nature," 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 -General,Isms: Exalting one's country above all others,Nationalism,General,Thomas Jefferson's home has a hidden what? illegal in his time,Billiard Table in Virginia,Geography,What is the capital of Azerbaijan,Baku - History & Holidays,What was Alexander The Great's wife's name?,Roxana,General,Which country contains every type of climate in the world,New Zealand,General,"What links Humphry Davie, Michael Faraday, Madam Curie",Poisoned by chemicals work - Language,What ONE word fits? ____stream; ____hill; _____pour.,Down,General,What US President said I Promise instead of I swear inaugurate,Richard M Nixon,General,Which Group Used To Be Called The Primettes?,The Supremes -General,Strine is the vernacular language spoken in which country,Australia,General,How many laps make up the Indianapolis 500,200, History & Holidays,"What was the nickname of Charlene Tilton, who played Lucy Ewing in Dallas? ",Poison Dwarf  -General,At which weight was boxer Freddie Mills World Champion,Light heavyweight,General,"The Greek Words for Beautiful, Appearance And I Behold Converge to give us which word",Kaleidoscope, History & Holidays,What was the pen name of author Charles Lutwidge Dodgson ,Lewis Carrol  -General,What was the only horror film nominated best film Oscar,The Exorcist in 1973,Entertainment,What did TVs IMF stand for?,Impossible Mission Forces,Geography,What river is known as china's sorrow because of its flooding ,The yellow river  -Food & Drink,Rioja Wine Comes From Which Country ,Spain ,General,Which Vatican building was built for Pope Sixtus lV,The sistine chapel,General,What is the name of the Buckinghamshire estate where the German Enigma codes were cracked during World War 2,Bletchley park -Music,Instrumental Band B Bumble & The Stingers Had A No.1 Hit In 1960 With A Single Based On A Tchaikovsky Tune What Was The Song,Nut Rocker,General,Name the first actor to get best actor Oscar for repeating a role,Paul Newman – Colour of Money,General,Which male Christian name derives from the Gaelic word for 'handsome',Kenneth -General,What is the Capital of: Belgium,Brussels,General,In UK tennis where is the Stella Artois tournament held,Queens,General,"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 -General,What actor began his career doing Doctor Pepper commercials,Bruce Willis,General,What nationality was Saint Paul of Tarsus,Turkish,Science & Nature,"Cows Come In Herds, What Do Geese Come In? ",Gaggles or Skeins  -General,"Which female singer collaborated with Eminem with the song ""Stan""?",Dido,General,What is the Capital of: Ecuador,Quito,General,What is the Capital of: Central African Republic,Bangui -Food & Drink,What would you buy from a Bodega? ,Wine ,Art & Literature,How many lines are in a sonnet,14, Geography,The island of Hispaniola consists of the Dominican Republic and this country.,Haiti -General,Venation is used to describe what item,Leaves,General,Where is the Lubianka prison located?,Moscow,General,Collective nouns - A Down or Husk of what animals,Hares -Sports & Leisure,Who Scored England's Last Minute Winning Goal Against Belgium In The 1990 Football World Cup? ,David Platt ,Music,"Which British Blues Rock Trio released The Albums ""Undead"" & ""Stonedhenge""",Ten Years After,Geography,In which city is Wembley Stadium,London -General,In which USA state is Frankfort the capital,Kentucky,General,In what country are the Painted Lakes,Indonesia,Entertainment,Where does George Jetson work?,Spacely Sprockets -General,What US State flag has a UK Union Flag on it,Hawaii,General,In what Italian town can you find the Piazza del Erbe,Verona,Geography,Where Is Cape Horn ,Bottom Of South America  -General,What does amd stand for,Advanced micro devices,General,What part of the body ages the fastest,The Hands,General,"Creek what position has been held by 266 men, 33 of whom have died violently",Pope -Science & Nature," 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,General,"A solemn court dance usually in duple time, popular in the fifteenth and sixteenth centuries.",Basse danse,General,What measures blood pressure,Sphygmomanometer -General,What is the name of the disease which is considered the human form of 'Mad Cow's Disease'?,Creutzfeldt -Jakobs Disease,Science & Nature,The sulphate of which metal is used to render the alimentary canal opaque to X-rays (symbol Ba)?,Barium, Geography,What is the basic unit of currency for Botswana ?,Pula -General,Which novel by Louis de Bernieres is set in Cephalonia,Captain corelli's mandolin,Toys & Games,What is another name for the card game 'Blackjack'?,21,Sports & Leisure,Who Was Disqualified After Winning The Men's 100m At The 1988 Olympic Games ,Ben Johnson  -General,For how much did an American urologist buy Napoleon's penis? (US Dollars),"$3,800 ",General,What aid to archaeologists from 197 bc was found in Egypt 1799,Rosetta Stone,General,What is a Digamy?,A Second Legal Marriage -General,John Ruskin - Art Critic - Marriage collapsed when wife had what,Pubic Hair,General,What was the name of James Bonds housekeeper,May,General,"Who was the last British general who surrendered near Jamestown, Virginia",Cornwallis -General,Which gas has the characteristic smell of rotten eggs,Hydrogen sulphide,Music,In 2005 who sang a duet with ex westlife member Brian Mcfaddden?,Delta Goodrum,Music,What Was The Two-Word Title Of The England World Cup Team's 1970's Official Song?,Back Home -General,Arturo Toscanini played what instrument before conducting,The Cello, History & Holidays,Who Was The British Prime Minister Between 1964 & 1969 ,Harold Wilson ,General,What traditional Maori insult was seen in the film Braveheart,Mooning -General,Marion Barry - Mayor of Washington arrested for what,Possession of Crack,General,Who played deanna troi in 'star trek the next generation',Marina sirtis,General,Where would you find the Sea of Tranquillity,On the moon -General,"What common item has a coil, point, sheath and two shafts",Safety Pin,General,What famous battle was fought at Pancenoit,Waterloo - (four miles away),General,Narrow trench made by a plough,Furrow -General,Who was the oldest man ever to play Test cricket when he represented England against West Indies in 1930 aged 52,Wilfred rhodes,General,When did prohibition in the U.S. come to an end,1933, History & Holidays,Who banned Christmas in England between 1647 and 1660? ,Oliver Cromwell  -General,What season should you head to the pond to look for tadpoles,Spring,Science & Nature,What is the heaviest naturally occuring element?,Uranium,Food & Drink,How or when can one eat angel hair or bridegrooms? ,When eating pasta  -Entertainment,What city do Batman and Robin patrol?,Gotham City,Entertainment,Who is Donald Duck's uncle?,Scrooge,General,Who sang Come on Eileen,Dexies Midnight Runners - Geography,What is the basic unit of currency for Afghanistan ?,Afghani,Science & Nature,Do Butterflies Usually Rest With Their Wings Together Or Open ,Together ,General,Where is the largest volcano,Ecuador -Science & Nature,What is the small irregular white cloud that zips around Neptune approximately every 16 hours called?,Scooter,Music,"""Dancing On The Ceiling"" Was A Hit For You",Lionel Richie,General,What is new york city's 'street of forgotten men',Bowery -People & Places,Which European City Is Famous For Its Latin Quarter ,Paris ,Science & Nature,Doctors often have this instrument around their neck.,Stethoscope,Music,"Who In The World Of Music Has The Real Name ""Marshal Mathers""",Eminem -General,What flag flies over gibraltar,Union jack,Music,"Whose 'Variations On a Theme by Paganini"" is a standard part of the piano repertoire?",Rachmaninoff, Geography,San Francisco Bay is located near what city?,San Francisco -General,Which famous author also writes under the name pen name of Richard Bachman?,Steven King,Music,And What War Was His 1969 Hit 2 Little Boys About,The American Civil War,General,"Thor Heyerdahl vessels were Kon Tiki, Ra and what",Tigris -Sports & Leisure,Who Won The First University Boat Race Between Oxford And Cambridge? ,Oxford ,General,Janet Jackson had a starring role in which TV series,Fame,General,Process by what an organism becomes better adapted to exist in an environment different from the one to what it was indigenous,Acclimatization -General,"Which French artist painted 'The Bridge at Argenteuil', and 'The Magpie'",Claude monet, History & Holidays,In which country did this practice of 'Trick Or Treating' originate ,"The United Kingdom, surprisingly ",General,Who was the first Plantagenet monarch of England 1154 to 89,Henry II -General,Which Old Testament King was succeeded by his son Rehoboam,Solomon,General,How many points does a backgammon board have,24,General,What does a craftsman called a bodger make,Chair parts -General,What sequence is this the start of: 2 4 6 8 10 12 14,Even numbers,General,Who starred in the film Sixth Sense,Bruce Willis,Science & Nature,Which Metal is Also Known As Quicksilver? ,Mercury  -General,What form modern sculpture invented Calder named Dechamp,The Mobile,General,Who was acquired from the Daisy Hill Puppy Farm,Snoopy,General,If you were watching cricket at The Outer in which city are you,Melbourne Australia - History & Holidays,"In what country did ""Sepoy Mutiny"" occur?",India,General,"What name was given to the 17 1h century chair with shafts, borne by two servants",Sedan chair,General,Humans lose 27 what a day,Moulted Pubic Hairs -General,In Baltimore it is illegal to scrub or wash what,A Sink,General,In Tremonton Utah illegal for a woman not man what in ambulance,Have sex,General,What is the most popular participation sport in Britain,Darts -General,Lilongwe is the capital of ______,Malawi,General,What is the name of Oprah Winfrey's production company,Harpo,General,A bilateral chips pact between the U.S. and this country expires July/1996,Japan -General,What is the service ceiling of an f-14a tomcat,68900 feet,General,Which Italian composer's funeral in 1924 reputedly 'brought Italy to a standstill,Puccini,General,In what country are the ports Oran and Bone,Algeria -Music,What Was Ray Stevens 1974 Hit Based On The Phenomenon That Was Occuring At Sports Events Of The Time,The Streak,Music,What Was The Best Selling Album Of The 1980's In The UK,Dire Straits / Brothers In Arms,General,What was sharkskin once used as,Sandpaper -General,In 1895 the world's first disposable item made - what was it,Razor Blade – King Camp Gillette,General,48 Extra's Died That Appeared In What Oscar Making Movie Within A Year Of It's Release Name The Film,Babe,General,In Which English County Are The Clee Hills,Shropshire -Geography,What Is The Scirocco ,A Wind ,Art & Literature,"A composition made of cut and pasted pieces of materials, sometimes with images added by the artist. ",Collage,Toys & Games,"Originally an exercise ring, Indonesia banned it as ""might stimulate passion"".",Hula hoop -General,Which famous artist lost an ear,Vincent van goch,General,What is a group of crows,Horde,General,Which country is the world's largest producer and exporter of Cobalt?,Zaire -General,What mountain range is in New York state,Adirondack mountains,General,Which game is played on an oval with 18 player per team,Australian football,General,Where is selfridges,"Oxford street, london" -General,"In Greek mythology, who was paris' wife before he was smitten by helen",Oenone,General,What is the fear of writing in public known as,Scriptophobia, Geography,What does the George Washington Bridge span?,Hudson River -Music,"Who Wrote And Performed ""Informer""",Snow, History & Holidays,In What Year Did World War I End ,1918 ,General,How did King Arthur acquire the round table,A Wedding gift -Food & Drink,"Wine vinegar, egg white and what other ingredient goes into making hollandaise sauce? ",Butter ,Music,Who Had A Hit With Millenium,Robbie Williams,General,Halcyon is the poetic name for which bird,Kingfisher -Sports & Leisure,In the world of sport what is 62 feet and 10 inches long and 42 inches wide? ,Ten Pin Bowling Alley ,General,What parts of people's bodies contain their femurs,Legs,General,Which dog was originally bred to hunt badgers,Dachshund -General,"The actor who played captain sisko in 'star trek deep space nine', played ____ the 1970's series 'spencer for hire'",Hawk,General,What does a dolorimeter measure,Pain,General,What U.S. state includes the telephone area code 510,California -Science & Nature,How Many Stomachs Does A Cow Have? ,Four ,General,In what Australian state would you find Narabri,New south wales nsw,General,Who is the only American author to win both the Pulitzer & Nobel prizes,John steinbeck -General,Louis Washkansky was the first to do what in 1967,Get a heart transplant lived 18 days,General,What does ludo mean (literally),I Play,Music,"What was the on flip side of the 45 of ""She Loves You""?",I'll Get You -General,What city has the fictional zipcode 90210,Beverly hills,Sports & Leisure,NICE TEAM THUNDERS Is An Anagram Of Which Football Club? ,Manchester United ,General,Who was the mistress of D.H. Lawrence's Wragley Hall,Lady chatterley -General,What is the wife of a duke called,Duchess,General,What sports name translates as Little Game of War,Lacrosse,General,What nationality is Gerhard Berger,Austrian -General,Where is charlottetown,Prince edward island,Music,What Form Of Transport Featured On A 1992 Manics Single,Motorcycle (Motorcycle Emptiness),General,Fill in the blank: ____ & shine,Rise -General,A depilatory is a substance used for removing ____.,Hair,General,The Nitty Gritty Dirt Band first USA group to do what 1977,Tour USSR,General,What is the flower that stands for: changeable disposition,Rye grass -General,"From 1979 to 2000, which will be the most distant planet earth",Neptune,Sports & Leisure,At which sporting venue are the Grace Gates? ,Lord's ,General,Bovine is cow like but what does hircine refer to,Goat -General,Who was the 35th president of the U.S.,John f kennedy,General,What is the currency of Slovenia?,Tolar,General,Saint Augustine first argued for what,Missionary position only in sex -General,Collective nouns - A Business of what,Flies and Ferrets,General,Widespread occurrence of a disease,Epidemic,General,A shy retiring person is known as a shrinking what,Violet -General,"What is the term for a wolf's home""",Den,General,Marie Tussaud was born in what country,Switzerland,General,What Radio Program Did Roy Plomley Dream Up,Desert Island Discs - History & Holidays,Which Apollo mission carried Neil Armstrong and his cohorts to the moon? ,Apollo 11 ,Science & Nature, A giant Pacific __________ can fit its entire body through an opening no bigger than the size of its beak.,Octopus,Toys & Games,Term for any number between one & 18 in Roulette,Manque -General,What did captain matthew webb swim first,English channel,Science & Nature, A marine catfish can taste with any part of its body. The female marine catfish hatches her eggs in her __________,Mouth,General,Tosk is a dialect of which country,Albania -General,The Spinet is another name for what old musical instrument,The Virginal,General,What film star role was played by over 48 different animals,Babe the Pig,Sports & Leisure,"In which sport is the term ""love"" used?",Tennis -General,"Flattened, pear-shaped, hollow organ in the pelvis of the human female & most other mammals",Uterus,General,What does a pluviomoter measure,Rainfall,Geography,The islands of _____________ have no rivers or lakes. The inhabitants must use rain for water.,Bermuda -Geography,What is London's largest park? ,Hyde Park ,General,What sport do you rack your balls in,Billiards pool, Geography,What is the basic unit of currency for Bangladesh ?,Taka -Geography,In what city is the Leaning Tower,Pisa,Music,"Who Recorded The Albums ""Tango In The Night"" & ""The Mask""",Fleetwood Mac,General,"On TV How Is The Modern Day Prankster ""Kavan Novak"" Better Known",The Phonejacker -General,The State Duma is the lower house of assembly in the parliament of which country,Russia,General,What direction does the Tower of London face across the Thames,South west,General,What is the most extensively grown and eaten food,Wheat -General,What kind of animal is a lurcher,Dog,General,In which North Italian city is a world renowned opera season held annually in the Roman arena during July and August,Verona,General,If you had hemicrania what would you be suffering from,Migraine -General,Shoot the moon is a term used in which card game,Hearts - win all,General,Hydrophobia is a fear of ______,Water,Music,Joan Jett Was Once A Member Of The All Girl Group The Go's-Go's Or The Runaways,The Runaways -Entertainment,What did Dorothy's house land on in 'The Wizard Of Oz'?,The Wicked Witch of the West, History & Holidays,What is the popular name for little baked sausages wrapped in rashers of streaky bacon? ,Pigs in blankets ,General,Sardines are the young of which fish,Pilchard -General,The England World Cup team released a song called Back Home in which year,1970, History & Holidays,Which James Bond Movie Is Set During The Christmas Period ,On Her Majestys Secret Service ,General,What is a group of this animal called: Cobra,Quiver -General,What does lager literally mean in German,Storage,General,What is the most venomous snake,King cobra,Geography,What Is The Official Language Of Israel ,Hebrew  -Entertainment,Who is the lead singer of the Rolling Stones?,Mick Jagger,General,What New World mammal did Columbus say resembled mermaids,The manatee,Music,Who Sang About A Strange Little Girl In 1980,Sad Cafe -General,Sinistrophobia is the fear of,Things to the left left-handed,Geography,"What country was the setting for ""Casablanca""",Morocco,General,Gathering in of a seasons crops,Harvest -General,What is another term for the sternum,Breastbone,General,Sumo cant be Olympic because it bans women - why,Menstrual cycle offends Gods,General,What is the young of this animal called: Cow,Calf -General,At the battle of Actium who beat Mark Anthony and Cleopatra,Octavian - Emperor Augustus,Science & Nature,Name the second-largest planet in the solar system.,Saturn,General,Which country did the allies invade in 'Operation Avalanche',Italy -General,Who Was The First Female To Be Inducted Into The Rock N Roll Hall Of Fame,Aretha Franklin,Geography,What is the capital of Syria,Damascus,General,Who played juliet in zeffirelli's romeo and juliet,Olivia hussey -General,"What tree can be English, American or Eurasian",Elm,Science & Nature,What Is A Marmoset? ,A Monkey ,General,"What's the international radio code word for the letter ""K""",Kilo -General,Edith Smith Became The First Ever Female What In 1914,Police Woman,Sports & Leisure,Sergei Bubka From The Ukraine Is Often Regarded As The Greatest Ever Athlete In Which Field Event ,Pole Vault ,General,Who was the tallest of Robin Hood's men?,Little John -General,In Old English what is a frieosan,A Sneeze,General,Pluviophobia is a fear of ______,Rain,General,What creature gets its name for the Spanish for slowly,Remora -General,Hit parade 1992 - What movie has Meg Ryan switching identities with an elderly man,Prelude to a kiss,General,The lowest part of an entablature resting on the capital of a column. ,Architrave,Entertainment,"Name the band - songs include ""Mystify, Listen Like Thieves, Original Sin""?",INXS -General,What is the most frequent cause of business errors,Illegible handwriting,Sports & Leisure,On What Would You See A Person Perform A Cocked Hat Double ,Snooker Table ,General,The Maori are native to what country,New zealand -General,Thomas Cook the travel agent was born in what year,1808,General,Portland Rosebuds were the first US team to do what,Compete Stanley cup, Geography,Where is Cape Hatteras?,North Carolina -Music,How Many Members Are There Of The Band “The Pussy Cat Dolls”,7,Music,What Was The First UK No.1 In Which The Entire Title Actually Posed A Question,How Much Is That Doggy In The Window,General,Name the Oscar-winning actor who played Ron Jenkins in TVs Coronation Street?,Ben Kingsley -General,Sakhmet was the egyptian god of ______,War and divine vengeance,Music,"The Rolling Stones Haven't Topped The UK Charts Since 1969 , What Was The Name Of Their Last Charttopper",Honky Tonk Woman,General,What Did Harry Beck Design In The Late 1930's?,The London Underground Map -Music,Now That We've Caressed And Kissed So Warm And Tender I Cant Wait,Johnny Bristol / Hang On In There Baby,Sports & Leisure,Which football country plays in red and white checked shirts? ,Croatia ,Music,"Which Hit Features The Line ""Hop In My Chrysler It's As Big As A Whale And It's About To Set Sale ""?",Loveshack (B52's) - History & Holidays,Who fixed the date of the Christian festival 'Easter'?,Council of Nicaea,General,In Oregon it is illegal to wear what on clothing in public,The Number 69, History & Holidays,What very Famous Link To Christmas Does Irving Berlin Have ,He Wrote White Christmas  -General,One of the five special senses (sense organs) by what odors are perceived,Smell,Sports & Leisure,What 3 Letter Word It The Name Given To A Replayed Point In Tennis ,Let ,General,The river Po flows into which sea,Adriatic -General,What does atp stand for,Adenine triphosphate,Science & Nature,Apart From Potassium Nitrate What Else Is In Gunpowder ,Sulphur & Charcoal ,General,Who calls its parliament 'the knesset',Israel -General,In 1840 London Sweet Maker Tom Smith Came Up An Invention Still Hugely Popular Today What Was It?,The Christmas Cracker,Entertainment,What is the Pink panter in the Pink Pather film?,A Diamond,General,In Roman mythology Faunus was the god of what,Prophecy -General,If you have Acute hasopharyngitis what's wrong,You got a cold,General,What is the name given to jealousy shown towards a new baby by an older brother or sister?,Sibling Rivalry,General,Construction hard hats were first used on what project in 1933,Hoover Dam -Geography,"The _____________ is the world's smallest ocean. It is mostly covered by solid ice, ice floes, and icebergs.",Arctic ocean,Science & Nature, The leech has 32 brains _ 31 more than a __________,Human,General,Which brand of sportswear takes its nape from a South African gazelle,Reebok -General,In what sport does a player win when they get 15 points,Badminton,General,"After his vision, who was Saul known as",Paul,General,U.S. Captials - Utah,Salt Lake City -General,Whose second album was the chart-topping 'no need to argue',Cranberries,Sports & Leisure,Fighting With Gloves Became Standard In 1867 After The Formulation Of Which Set Of Rules ,The Queensbury Rules ,General,Where did venetian blinds originate?,Japan -General,What was the only dummy awarded an academy award,Charlie mccarthy,Food & Drink,From what is American Bourbon distilled? ,Corn mash and malted barley ,Music,Which Pop Singer Married Jamie Redknap In 1998,Louise Nerding -General,"The popular character of __________ was not created by Carolyn Keene, but was actually created by a man named Edward Stratemeyer",Nancy drew,General,Kier Auro is good morning in what language,Maori,Music,Average length of a Beatles concert in their first American tour,28 Mins -General,What was Winston Churchill's codename during WW2,Agent,General,"Dasher, prancer and vixen what is god called in the muslim faith",Allah,General,What is the name given to a fox's tail,Brush -Music,Who Is Placebo's Outrageous Lead Singer,Brian Molko,General,What's nm to a sailor,Nautical mile,Science & Nature,How Much Does One Million Equal In Binary ,64  -Science & Nature," Just like people, mother __________ often develop lifelong relationships with their offspring.",Chimpanzees,General,In 1901 Dr Dausand demonstrated what that never caught on,Silent Cinema – for the blind,General,Chinchillas bathe in what seemingly paradoxic substance?,Dust -General,"Marble sized, vanilla flavored, chewy caramels covered with milk choclate.",Milk duds, History & Holidays,"Which Family Live At 1313 Mockingbird Lane, Mockingbird Heights ",The Munsters ,General,"At darts, what is a score of 26 called",Bed & breakfast -General,On what number is the decimal system based,Ten,Science & Nature,What is the ocean of air around the earth called,Atmosphere,Science & Nature, The American __________ weighs approximately one pound when fully grown.,Crow -General,Name marc bolan's first single,Teenage dream,General,Who was Oberon's wife?,Titania,Art & Literature,"Works of a culturally homogenous people without formal training, generally according to regional traditions and involving crafts.",Folk art -General,What Was The Unlikely Former Job Of EX US President “ Gerald Ford ”,Male Model,General,What sport was deemed to violate civil rights banned New York,Dwarf Throwing – From Aus 16 feet,General,"What cocktail is made from whiskey, hot coffee and whipped cream",Irish -General,What city is famed for its rive gauche,Paris,General,What is a group of jays,Party,General,Which city in Rajasthan has riding breeches named after it,Jodhpur -General,What famous trials were held in 1692,Salem witch trials,General,In Michigan illegal woman do what without husband permission,Cut her hair,General,"Characters such as those in chinese in which a word is represented by a picture, are called:",Ideograms -Music,Who led the Crazy World?,Arthur Brown,General,The main square in Venice is named after this saint,Mark,Science & Nature,What Is The Main Constituent In The Manufacture Of Glass ,Sand  -General,The vernal equinox is the beginning of ________,Spring,General,What's the oldest fraternity in america,Phi beta kappa,General,"Belgium, the Netherlands and Luxembourg came together in 1948 to form an economic union, known as what",Benelux -General,What did a Cordwainer make,Shoes,General,What is the southernmost country,Chile,Science & Nature, More people are killed in Africa by crocodiles than by __________,Lions -General,"In the anglo-saxon poem, who killed grendel",Beowolf, Geography,What is the basic unit of currency for Chad ?,Franc,Science & Nature,What Type Of Engine Was Invented By German Felix Wankel In The Mid 1950's ,Rotary Internal Combustion Engine  -General,What is the billionth digit of 'pi',Nine,General,What is the most common name in the world,Mohammed.,General,Who sang the title theme of the James Bond film The Living Daylights,Aha -General,Vivaldi composed The Four Seasons - what's his first name,Antonio, Geography,Where is the Holy Kaaba?,Mecca,General,"What, in knitting, do 'cable', 'purl' & 'popcorn' refer to",Stitches -General,The average human body contains enough fat to make how many bars of soap,7,General,Who drives a car licensed 6YZ643,Fred Flintstone,General,Who was the last chairman of the k.g.b,Vadim viktorovich bakatin -General,In a survey 4% of US employees never do what at work,Laugh,General,Which famous whore said - God is love but get it in writing,Gypsy Rose Lee,General,Which King of England died in 1910,Edward vii -General,For Red October What African republic's name was inspired by its thriving elephant tusk trade,The Ivory Coast,Music,With Which Band Did Norman Cook Have A Number One In 1990,Beats International,General,"What colourless, odourless light gas is used to lift airships",Helium -Geography,In which country is the Dalai Lama's palace,Tibet,General,In Japan what would you find in a Heya,Sumo wrestlers,General,"The most common phobia, arachnephobia, is a phobia of?",Spiders -General,What are the young of seals called,Pups,General,What is another term for a police informer,Nark, History & Holidays,The Wars of the Roses (1455-85) were fought between which two houses of England? ,York and Lancaster  -General,Who composed The Carnival of the Animals,Saint saens,General,Something Happened 74 Picture This 88 Closing Time 94 author,Joseph Heller,General,What was the British nickname given to the Lorenz Cipher machine used by the Germans in World War II?,Tunny -General,What independent states name has 10 letters only one vowel,Kyrgystan,General,What is the second largest continent,Africa,General,Hey Big Spender comes from what musical,Sweet Charity -Geography,What is the capital of Egypt,Cairo, Geography,What is the capital of Israel ?,Jerusalem,General,What is a group of cormorants,Solitude - Geography,What is the capital of Bhutan ?,Thimphu,General,Scriptophobia is a fear of ______,Writing in public,General,"What Was The Name Of The Brothel In The 1982 Dolly Parton / Burt Reynolds Movie ""The Best Little Whorehouse In Texas""",The Chicken Ranch -Science & Nature,What word is used for a male deer?,Buck,General,How many muscles are in a human ?,639,General,"If you had chronic regional ileitis, what eponymous disease would you have",Crohn's -General,Name Eddie Murphy's skit about vocabulary on Saturday Night Live.,Mr. Robinson's Neighborhood,General,What song did Marilyn Munroe sing in the film Bus Stop,That Old Black Magic,Music,Amount that's generated on Beatles bootlegs yearly,$2.7 million -General,The Venice Cup is for women only playing what,Bridge,General,What Canadian province has been virtually rat free since 1905,Alberta,General,Who played eddie in the pop-culture film 'rocky horro picture show,Meatloaf -General,"Countries of the world:landlocked country in southern Africa, the capital is Harare",Zimbabwe,General,At the beginning of a game of draughts how many pieces does each player have,12,Science & Nature,Which of the six noble gases comes first alphabetically? ,Argon  -General,The Nuffield Radio Astronomy Laboratories are more usually known by what name,Jodrell bank,Science & Nature,What is the atomic number for thalium?,81,General,What started in 1935 when a doctor and a stockbroker met,Alcoholics Anonymous -General,Canada is the world leader in the production of,Newsprint,General,In the Dr Dolittle stories what type of creature was Too-Too,Owl,General,Kingston the capital of ______,Jamaica -Music,"""Rollin"" And ""Once Upon A Star"" Were No.1 Albums For Which 70's Sensation",The Bay City Rollers,General,What is Mo Mowlam's first name,Marjorie,General,What is a siesta,Mexican afternoon nap -General,What ancient measure was the distance from the elbow to the tip of the middle finger,Cubit,General,What was the name of the funky van Scooby Doo and friends rode in?,The Mystery Machine,General,How many American voyages did Christopher Columbus make,Four -Tech & Video Games,Who is the main character from Nintendo's 'Earthbound'? ,Ness,General,Where would you find a gemshorn,On an Organ,General,Which American state is nicknamed The Diamond State,Delaware -General,Capital of Azerbaijan,Baku,General,What is the name given to stoats when they have their winter coats,Ermine,General,Eight bells on board a ship means what,End of a watch -General,"What do the dodo, moa and great auk have in common",They are extinct,Geography,What volcano showers ash on Sicily,Etna,Music,"Who Was ""Standing In The Shadows Of Love"" In 1964",Four Tops -Music,What was Britain's first winning entry in The Eurovision Song Contest (name The Song),Sandie Shaw / Puppet On A String,General,"Mineral & the most abundant ore of iron, composed of ferric oxide, fe2o3",Hematite,General,Nathan Bedford Forest a confederate general was the first what,Grand Wizard KKK -Science & Nature,Which Large Animals Did Hannibal Bring With Him Across The Alps ,Elephants ,General,Which cartoon character was originally pink and called Orsen,Tweety Pie,General,What children's book did Forrest Gump keep in his suitcase,Curious George -General,Which car company was founded by Sir William Lyons in 1922,Jaguar,Music,Do You Remember Who Was Flying High To His Music In The Mid 70's,John Miles,Sports & Leisure,In which sport would you compete for the Waterloo Cup? ,Crown Green Bowls  - History & Holidays,"In the 1946 film, It's a Wonderful Life, what's the name of George Bailey's guardian angel? ",Clarence (Oddbody) ,Geography,Which County Is Basingstoke In? ,Hampshire ,Art & Literature,"Refers to art that uses emphasis and distortion to communicate emotion. More specifically, it refers to early twentieth-century northern European art, especially in Germany c. 1905-23. ",Expressionism -General,For what are allen and wright famous,Root beer, History & Holidays,What Disaster Hit London In 1666? ,The Great Fire ,General,Which competition was organised by Mecca Ltd. to coincide with the 1951 Festival of Britain,Miss world -General,What did American Harland D. Sanders give to the world in 1939,Kentucky fried chicken,General,Where is the hockey hall of fame,Toronto,General,"What does the abbreviation ""i.o.u."" Really stand for",I owe unto -General,"In Greek mythology, who hired daedalus to construct the labyrinth",Minos,General,Biblical city was the code for RAF bombings of Hamburg WW2,Gomorrah,General,What seven letter word do all Americans pronounce wrongly,Wrongly - Geography,What is the basic unit of currency for Panama ?,Balboa,General,What is the only english word that ends in the letters 'mt',Dreamt,Food & Drink,In The Dish 'Devils On Horseback' Of What Are The Devils Made ,Prunes  -Sports & Leisure,"Which football team was nicknamed the ""Orange Crush""",The denver broncos,General,Who is President of the European Commission,Jacques santer,Music,Which Famous Group Was Denny Laine In Before He Joined Wings,The Moody Blue -General,Who is known for the 'theory of evolution',Charles darwin,Art & Literature,Who Drew Drawings Of Absurd Mechanical Contrivances ,William Heath Robinson ,General,A Gandy Dancer has what job,Railroad repair gang -General,Name the first president of the american red cross,Clara barton,General,Who works from home,Open-collar workers,General,What nba team chose Dominique Wilkins as their first round draft pick,Utah jazz -General,Orienteering began in which country,Sweden,General,As what was tomato ketchup once sold,Medicine,General,When was the incandescent lamp invented,1879 - Geography,Where is the world's largest desert?,North Africa,Science & Nature,Who Invented Nylon ,An American Chemist Named William H Carothers , Geography,In which state is Hoover Dam?,Arizona -Music,What Vehicle Drove Natalie Cole Into The Top Ten In 1988,Pink Cadilac,General,Who taught alexander the great,Aristotle,General,"Who sang the 1963 hit ""it's my party""",Lesley gore - History & Holidays,"Who Was A Tory, then Became A Labour MP And Finally Lead The British Facist Party? ",Oswald Mosley ,Science & Nature,"When traces of a calcium compound are held in a bunsen flame, the colour of the flame changes to ___?",Red,Mathematics,How many different letters are used in the roman numeral system?,Seven -Music,Who recorded 'In the Air Tonight' in 1981?,Phil Collins,Entertainment,What was the original name Charles Schultz had for Peanuts,Li'l folk s,General,What is Linus last name in the Peanuts cartoons,Van Pelt -General,Generally cornflowers are what colour,Blue,General,What is the substance obtained from acacia trees that is used in medicine,Gum arabic,General,What is roasted in South Africa and eaten like popcorn,Termites -Music,Who Joined Queen in their 1981 hit Under Pressure,David Bowie,Music,"Which British Pop Band Had A Hit Album In 1967 With ""If Music Be The Food Of Love..Prepare For Indigestion""","Dave Dee, Dozy, Beaky, Mick & Tich",Food & Drink,From What Country Does Advocaat Originate ,Holland  -General,Buddy Rich's real first name was what,Bernard,General,What is a group of this animal called: Peacock,Muster ostentation,General,Who was the Greek goddess of love & beauty,Aphrodite - History & Holidays,"I Am A Suburb Of California, I Have The Nickname (Surf City) and part of my name sounds the same as the surname as 2 Famous Hollywood Celebrities, Where Am I ",Santa Cruz ,General,What kind of bug emerges in the 1975 movie the bug?,Beetle,General,"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 -Music,Who Married Actress Julia Roberts In 1993,Lyle Lovett,Entertainment,"What is the name of the rabbit in the film, ""Bambi""?",Thumper,General,Who was dropped by 20th cent Fox for being too ugly,Marilyn Munroe by Darryl Zanuck -General,As what is Krung Thep is more commonly known,Bangkok,General,What heisman trophy winner returned his first nfl kickoff for a touchdown?,Tim brown,General,In ancient Greece aristocratic women were deflowered with what,Stone Penis -General,Who was shaka's successor,Dingaan,General,The word stymie originated in what sport,Golf ball blocking you,General,Hundred and ninety two khartoum is the capital of ______,Sudan -General,"After the end of the Vietnam War, to what was Saigon's name changed",H0 chi min city,Music,"Who Had A Hit With ""Higher Love""",Steve Winwood,General,"Cytosine, Adenine, Thymine And Guanine Are The Basic Requirements For Which Compound",DNA -People & Places,What Is Princess Diana's Madien Name ? ,Spencer ,General,What creature acts as a carrier of the diseae bilharzia,Freshwater snail,Music,"Who Recorded The Aptly Named Album ""Have Twangy Guitar, Will Travel""",Duane Eddy -General,"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,Science & Nature,Which Nationality Was The Man Who Built The First Bicycle Propelled By Pedals ,Scottish Kirkpatrick Macmillan 1840 ,General,What does 'int' stand for in the C programming language?,Integer -General,You can do a degree in brewing at Heriot-Watt University where,Edinburgh,Art & Literature,Douglas Adams is famous for writing what ?,The hitchhiker's guide to the galaxy,General,Who was Hitler's propaganda minister,Goebbels -Entertainment,Who is Gordon Sumner better known as?,Sting,General,What colour is vermilion a shade of,Red, History & Holidays,"The two crooks in the 1990 film 'Home Alone'', one was Daniel Stern, who was the other ",Joe Pesci  - History & Holidays,In Which Year Was The Berlin Wall Constructed ,1961 ,General,Who was Adam & Eve's third child,Seth,Science & Nature,"Of Stalactites And Stalagmites, Which Grow Upwards? ",Stalagmites  -General,"What is the creature that is half eagle, half lion",Griffin,General,In which ruins was the first known written advertisement found?,Thebes,General,Baklava is a form of___.,Dessert -General,"What is the nickname for Reading, Pennsylvania.",Pretzel city,General,Chlorine is derived from the Greek word meaning what,Green,General,What mountain range includes the siwaliks & karakorams,Himalaya -Entertainment,Who played Clyde to Faye Dunaway's Bonnie?,Warren Beatty,General,"Who wrote the book 'The Lion, The Witch and The Wardrobe'",C.s. lewis,General,Bargasse is what type of vegetable matter,Sugar Cane Pulp -Food & Drink,What Is The Italian Name For Squid In A Restaurant? ,Calamari ,General,The Hula Hoop was illegal in what country,Finland,General,Which 19th century Australian ruffians were noted for broad-rimmed hats and bell bottom trousers?,Larrikins -Entertainment,"Name the band - songs include ""Light My Fire, Love Her Madly""?",The Doors,Music,"He Flew His Own Single Engine Aircraft But Crashed Into Monterey Bay In October 1997. What Was The Stage Name Of The Man Born ""Henry John Deutschendorf Jr""",John Denver,Music,What Is The Name Given To A Piano That Plays Mechanically,A Pianola -People & Places,In Which Country Was Paper Magnate Robert Maxwell Born ? ,Czechoslovakia ,General,What disney character's picture did the N Y Times wrongly call goofy,Pluto,General,Richard Penniman became famous as who,Little Richard -Science & Nature,How many colored squares has a rubiks cube ,54 ,General,What is the more common term for enuresis,Bed wetting,Science & Nature,Sodium bicarbonate is better known as _________.,Baking soda -General,Who was nicknamed Impeesa (no sleep wolf) by Matabele tribe,Baden Powell,Geography,What is the capital of Tanzania,Dar es salaam,General,Name the organisation for which Jim Bergerac worked,Bureau des etrangers -Music,"What Did Ron Pigpen McKernan, Keith Godcheaux & Brent Myland All Have In Common",All Keyboardists Who Died While With The Grateful Dead,General,What does michelle remeber the formula for in Romy and Michelle's High School Renuion?,Post-it glue,General,Only two north American Indian tribes with 3 letters Wea and what,Fox - History & Holidays,The Character Of Mike Myers Features Heavily In Which Series Of Horror Movies ,Halloween ,General,"What did AOL claim had been found, on April Fool's Day in 1996 ?",Life on Jupiter,General,In which sphere of industry or commerce is the name of Arthur Maiden famous,Advertising -General,Florence Nightingale took what cos she was around young men,Bromide,General,"According to superstition, what do you do when yoU.S.tub the toes on your right foot",Make a wish,Science & Nature,What is the fastest growing species of grass ?,Bamboo -General,Mount Athos is famous for its many monasteries of which religion,Greek orthodox,General,"What links Alex, Ben, Chrissie and Quint",Eaten by Jaws,General,What makes a solution saline,Salt -General,A line that touches a circle at only one point is called a ______. ?,Tangent,General,What Musical Act Had The Last UK No.1 Of The Millenium,Westlife,General,Susannah Yolanda Fletcher became famous as who,Susannah York -Science & Nature,Which Acid Is Present In Your Stomach ,Hydrochloric Acid ,General,Laurence Tureaud became more famous as who,Mr T,General,How many westerns were directed by a woman,One -General,Who drinks the most tea per capita,Ireland,General,What is the largest wild animal in the UK,The Scottish red deer,General,"Who was the first British Prime Minister, although he did not use the title",Sir robert walpole -General,What is Pennsylvania's main agricultural export,Mushrooms,Food & Drink,Whose 'how to cheat' cookbook was heavily criticized when it was launched in 2008 ,Delia Smith ,General,What name is given to the drink which is composed of equal parts of beer and stout,Black and tan -General,When was the first credit card issued,1900,General,Carom is a form of what sport / game,Billiards,General,On What Type Of Object Did The Queen Sign Her Autograph On A Tour O Kuala Lumpur In 1998,A Football -General,"Who was the son of Saturn and Ops, and the husband of Juno",Jupiter,Music,What Was The Name Of George Michael & Andrew Ridgeley's First Band,Executive,General,What bird can see the colour blue,An Owl -General,What Is The Full Address Of The Simpsons In The Cartoon Series (Number Worth Jackpot),742 Evergreen Terrace,General,"What golfing accessory was patented by George Grant on december 12th, 1899",Tee,Science & Nature,What is the biological name for the shin bone?,Tibia -Geography,In which state is Mount Vernon,Virginia,General,If you were taking a class in pistology what are you studying,Faith,General,Who played the Uncle on Family Ties?,Tom Hanks -General,"Excluding Rudolph, how many reindeer pull Santa's sleigh",Eight,General,Which country began the tradition of exchanging Xmas gifts,Italy,General,What animals name translates as water horse,Hippopotamus - History & Holidays,Which Food Of The Gods Was Said To Give Humans Immortality? ,Ambrosia ,General,"Belgian Joseph Merlin invented this form of ""transportation"" in 1760",Roller skate,Geography,What American state is the 'Hoosier State'?,Indiana -General,In what stage show does Frank N Furter appear,The Rocky Horror Picture Show,General,Which cookery dish is named after a Napoleonic battle,Chicken marengo,General,What Italian city is considered the fashion capital,Milan -Geography,This country is home to the world's oldest continuous local democracy.,Iceland,Science & Nature, The grizzly bear is capable of running as fast as the average __________,Horse,Science & Nature,Osteomyelitis affects the _________.,Bones -General,In which large bay would you find the Belcher Islands,Hudson bay,Art & Literature,At which railway station does Harry Potter catch the Hogwart's Express at platform 9 and 3 quarters? ,King's Cross ,General,What brass instrument is thought to be the most difficult to play,The French Horn -General,What is the fear of definite plans known as,Teleophobia,General,This island was ulysses' home,Ithaca,General,William Manson And Thomas Woods Became Partners In Which Famous London Business In The 19th Century,Christies Auction House -General,83% of all Americans purchase what product,Peanut Butter,General,What is the largest country in Africa,Sudan,General,When was the electromagnet invented,1828 -General,"Who was the last president of the U.S., as of 1998, to die in office",John kennedy,Art & Literature,Which Shakespeare play opens with the 3 Witches? ,Macbeth ,General,On what is an espadrille worn?,Foot -General,Ncaa: who were the finalists in the men's basketball championship in 1948,Kentucky & baylor,General,Maschalophilous people get sexually aroused by what,Armpits,General,Aprosexia is the abnormal inability to do what,Concentrate -General,What country is the home of the Ashanti people,Ghana,General,Which animal lives at the highest altitude,Yak,General,According to the 2000 census in the UK what is now a religion,Jedi Knight -General,A light clear red colour,Cerise,Music,Which Soul Artist Was The Surprise Hit Of The Otherwise Flowery 1967 Monterey Pop Festival,Otis Redding,Entertainment,Photographer for Daily Planet,Jimmy olsen -General,What is the young of this animal called: Elephant seal,Weaner,General,"Of whom was it said by Gerald Ford, 'He doesn't dye his hair - he's just prematurely orange'",Ronald reagan,General,The dinosaur apatosaurus used to be called what,Brontosaurus -General,What is the best score in blackjack,21,General,"Who sang the 80's smash hit 'future's so bright, i gotta wear shades'",Timbuk,Toys & Games,Talking toy that helped you do well on Spelling tests.,Speak n spell -General,What does a manometer measure,Gas pressure,Music,Name The 4 Members Of The Band The Travelling Wilburys (PFE),"George Harrison, Roy Orbison, Tom Petty, Bob Dylan",Food & Drink,"Vodka or gin, ____ juice and sugar make a gimlet.",Lime -General,What is a moon in its first quarter,Two-bit moon,Music,"""Higher Love"" Was A Hit For Which Uk Artist",Steve Winwood,General,The process in which a solid changes directly to a gas is,Sublimation -Geography,What is the capital of Colorado,Denver,General,"Widespread disease caused by the infestation of the human body by flukes fluke commonly called blood flukes, of the genus schistosoma",Schistosomiasis,General,What is the real name of Jem from Jem and the Holograms?,Jerrica Benton -General,What's the USA's largest legal cash crop,Corn,General,Name the world's first nuclear powered merchant ship,Savannah,General,Whose dog was Gala Poochie,Rootie kazootie - Geography,Djibouti is the capital of ______?,Djibouti,General,What Austrian city was named for it's mining & trading of salt,Salzburg,General,Storehouse or place where vehicles are kept,Depot -Sports & Leisure,In What Context Did Thierry Replace Ian Who Had Previously Replaced Cliff? ,Leading All Time Goal Scorer For Arsenal ,Geography,Havana is the capital of which country ,Cuba , Geography,What is the basic unit of currency for Burundi ?,Franc -Music,"Which Group Starred ""Magical Mystery Tour""",The Beatles,General,What sort of fish is used to make an Arbroath Smokie,Smoked haddock,General,Name for a large seawater aquarium for keeping sea animals,Oceanarium -General,Whose secretary was Loelia Ponsonby,James Bond,General,"According to the Bible, what is the root of all evil",Money,General,Why was Eric Moussambani famous at the Sydney Olympic games,The slow but heroic swimmer from equatorial guinea -Science & Nature," To survive, most birds must eat at least half their own weight in food __________",Each day, History & Holidays,What 'BH' Do You Get When You Cross & Sheep With A Sweet ,Bah Humbug ,Religion & Mythology,Dionysus was the greek god of ______?,Wine -Science & Nature,Coal is predominantly made up of this element.,Carbon,Science & Nature,What Are You Deficient In If You Suffer From Scurvy ,Vitamin C ,General,Who wrote the play Amadeus,Peter Shaffer - History & Holidays,Which eighties cartoon ended with the phrase: 'And knowing is half the battle?' ,G.I.Joe ,General,In fashion correspondent and bar are types of what item,Shoe,General,A JPEG is a picture file format - what does JPEG stand for,Joint Photographic Experts Group -General,The golden lion is awarded at which film festival,Venice,General,Philemaphobia is the fear of,Kissing, History & Holidays,What was the name of the pandemic which killed over 1% of the world's population in 1918? ,Spanish Flu  -Music,Son Of My Father Is Credited As Being The First Song Ever To Feature Which Instrument,A Synthesizer,General,What are you if yoU.S.uffer from baker's leg,Knock kneed,General,In West Virginia its illegal to cook what - because of smell,Cabbage - Can go to Prison for it -General,What three letter word means 'the front of a ship',Bow,General,This Sioux indian toured with Buffalo Bill's wild west show,Sitting bull,Music,What Job Did Neil Tennant Have Before Forming The Pet Shop Boys,Music Journalist -General,Roger Bresnahan introduced what to baseball in 1907,Shin Guards,General,Name the spinoff show from Who's the Boss?,Living Dolls,General,"The olympic motto 'citius, altius, fortius' means what","Faster, higher, stronger" -Music,Which TV Talent Show Did Mary Hopkins Win,Opportunity Knocks,Music,Stairway To Heaven Was The Title For A Book About Which Band,Led Zeppelin,General,What's the offspring of a lioness & a tiger called,Liger -Sports & Leisure,What is James Naismith best known for?,Inventing Basketball, Geography,What do Americans traditionally eat on thanksgiving day?,Turkey,General,Who at Buckingham Palace wears bearskins?,Guards -General,Where were the first gambling casinos,Egypt,General,U.S. Captials - Alabama,Montgomery,Music,Which Album Cover Did Andy Warhol Design For The Rolling Stones,Sticky Fingers -General,Who was the catcher on the peanuts gang's baseball team,Schroeder, History & Holidays,"Which Christmas carol includes the lyrics '___To save us all from Satan's power, when we were gone astray..'? ",God Rest Ye Merry Gentlemen ,General,"Sandra Bullock, Kris Christophensen, Bruce Willis - Job Links",Not Acting – Bartender -General,In 1879 James Ritty invented what,Cash Register,General,Seeds of SE Asian aromatic plant used as a spice,Cardamon,General,What's capital of The Peoples Democratic Republic of Yemen,Aden -Music,Name The First Chart Entry for Guns N Roses Ranking Higher On Its Re-Release In 1988,Welcome To The Jungle,General,The cancer drug 'Taxol' is derived from which tree?,Yew Tree,General,What is the literal translation of pot-pouri,Putrid Pot -General,Which dress designer was shot dead in the summer of 1997,Gianni versace,General,What is the nickname for South Carolina,Palmetto state,General,What does 'the monument' in london commemorate,Great fire of london -General,No nfl team which plays its home games in a domed stadium has ever won a ______,Super bowl,General,Boreas Eurus Notus Zephyrus were what,Classic Winds NESW,General,What U.S. president wrote 37 books,Theodore roosevelt -Music,Which Police Track Got To No.2 On Its Re-Entry In 1979,Can't Stand Losing You,Entertainment,What did Peppermint Patty always call Charlie Brown?,Chuck,General,Weight-loss guru ___ brings his fitness ideas to the little screen,Richard - History & Holidays,When Are Werewolves Expected To Appear ,When There Is A Full Moon ,General,Which type of full moon follows a harvest moon,Hunters Moon,General,"What Part Of The Human Body Has The Medical Term ""Cillium""",The Eyelashes -General,Which sports trophy was named after Fredrick Arthur Stanley Cup,Fred is Lord Stanley,General,Who founded the London Metropolitan Police,Sir robert peel,General,Which company pioneered the first trans-Pacific passenger flights,Pan american -General,Which country's national flag has a bird and a snake depicted in combat,Mexico,General,Eve of All Saints Day,Halloween,General,From new york to where was the first commercial Boeing 747 flight,London -General,Aromatic gum resin burnt as incense,Frankincense,General,Chief monetary unit of germany,Deutschmark,General,"What name is given to the central single wedge-shaped block at the top of an arch, which is essentially a central voussoir",Keystone -General,What is the translation of the Greek name Vanessa,Butterfly,General,What's the tallest mountain in Canada,Logan,General,Which gas discovered in 1898 has a name meaning new,Neon -Food & Drink,"In which order do you drink lemon, salt & tequila? ","Salt, Tequila, Lemon ",General,Name the pet peacock on The Walton's,Rover,Art & Literature,Which 2 Brothers Wrote Fairy Sttories In Germany In The 19th Century ,The Brothers Grimm  -General,Which traditional English sweet dish consists of apples with Victoria Sponge on top?,Eve's Pudding,General,Jumping Badger was the original name of which Indian leader,Chief Sitting Bull,General,How did camerawoman Lee Lyon die while working,Charged by Elephant -General,What is the occupation of Mary Poppins,Nanny,General,Who was the first character to speak in Star Wars,C3PO,Sports & Leisure,In The World Of Motor Sports Which Sporting World Champion Was Born in Blackburn On July 1 st 1966? ,Carl Fogarty  -General,What is the name of the dish of eggs baked with spinach,Eggs florentine,General,What is the Capital of: Panama,Panama,General,Who stole the English Crown Jewels was pardoned Charles II,Colonel Blood -General,Heinrich the lion founded what city,Munich,Music,Who Played The Part Of Che Guevara In The Original London Production Of Evita,David Essex, History & Holidays,Who ran unsuccesfully against Regan in 1984? ,Walter Mondale  -General,What was the title of Kevin's byline story in St. Elmos Fire?,The Meaning Of Life,General,Who was the tallest of robin hood's men,Little john,General,Brian Gamlin of Bury is credited with what sporting invention,Numbers on Dartboard -General,Where do you find the medulla oblongata,Brain,Toys & Games,"Which game usually begins with, ""Is it animal, vegetable, or mineral?""",Twenty questions,General,The Lord of the Rings_,J.r.r. tolkien -General,What was Fonzies favourite magazine,Hot Rod,Science & Nature,The lack of this element in the diet is a cause of goitre.,Iodine,General,What voltage are most car batteries,12 -Science & Nature," The anaconda, one of the world's largest snakes, gives birth to its young instead of __________",Laying eggs,General,In 1990 When Stephen Hendry Became The Youngest Person ever To Be Crowned The World Snooker Champion Who Did He Beat In The Final,Jimmy White,General,Aromatic bitter bark of S.American tree,Angostura -General,“Right From The Start” & “Talking Point” Are Autobiographies By Whom ?,Gareth Gates,Science & Nature,What Are The 3 Divisions Of An Insects Body ,Head Thorax & Abdomen ,General,"Only Hawaii, Utah and Tennessee dont have some form of what",Legal gambling -Music,Bonnie Tyler Had A Total Eclipse Of The What,Heart,General,If a male ass is a Jackass what is a female called,Jenny, History & Holidays,Who was the ruler of the Principality of Monaco who married actress Grace Kelly in 1956 ,Prince Ranier  -General,Who invented wax paper,Thomas Edison,General,What is an antitussive medicine taken for?,Prevent Coughing,General,With what did writers replace the pouncepot,Blotting paper -Music,"Who Let His Trumpet Do The Talking With ""This Guys In Love With You""",Herb Albert,Art & Literature,Who wrote 'The Hobbit'?,J.R.R. Tolkien,General,Complete this proverb:'Listeners never hear any..',Good of themselves -General,What colour is malachite,Green,Music,N 2006 Who Became The First British Solo Artist For Eight Years To Top The US Charts?,James Blunt,Art & Literature,Where Would You Find Poets Corner ,Westminster Abbey  -Geography,Into what body of water does the danube river flow ,Black sea ,General,Instrument for measuring wind force,Anemometer,General,What do people do when they 'tie the knot',Get married -General,The okapi belongs to what family of animals,Giraffe,Science & Nature," At birth, baby __________ are only about an inch long _ no bigger than a large waterbug or a queen bee.",Kangaroos,General,What is a south african coin containing 1 troy ounce of gold,Krugerrand -Science & Nature,Which snake kills the most humans?,King cobra,General,What fruit is usually used to make Marmalade,Orange,General,What part of the human body grows to 20 times its size at birth?,Nose -General,What Is The Largest Living Land Carnivore,Grizzly Bear,General,Who played Domino in Never say Never Again,Kim Bassinger,Music,Who Launched The Rocket Record Label In 1972,Elton John -General,The Queen has what music with her breakfast,Bagpipes - Started by Victoria,General,What was the first desert rodent to spin its wheels into popular petdom,Hamster,General,How long were Jerry Seinfeld and his pals sentenced in the series finale?,One year -General,What is the Capital of: Oman,Muscat,General,Creatures of class including spiders and scorpions,Arachnid,General,Who sold Louisiana to the USA in 1803,Napoleon -General,Morbi in Gujarat is where most of the worlds what are made,Wall Clocks,General,What was the name of the bar on Dukes of Hazzard?,Boars Nest,General,The top basketball player of the decade,Michael jordan -General,National capitals: Costa Rica,San jose,Geography,What is the capital of Djibouti,Djibouti,General,Which Indonesian fruit is known for its unpleasant smell,Durian -General,Who wrote the best selling novel Polo,Jilly cooper,General,What is named after Dr Ernest Grafenberg,The G spot,Art & Literature,"""The Diary of Anne Frank"" was first published in English under what title?",The Diary of a Young Girl -General,What is the second largest bird in the world,Emu,Music,Who Was The First Beatle To Have A Solo Number One Hit,George Harrison,General,What kind of poem its keats's 'to a Nightingale',Ode -General,A average male will have 2000 what during his lifetime,Masturbated Ejaculations,Science & Nature,What is the common name for the tympanic membrane?,Eardrum,Music,In Which Year Did The Bay City Rollers Have 2 Singles In The Number One Slot,1975 -Music,Jim Morisson Was Found Dead In What,The Bath,General,Gladys Mary Smith became famous under what name,Mary Pickford,Art & Literature,A painting or drawing executed in a single color. ,Monochrome -General,What part of a frog do you rub to hypnotise it,Its belly,General,What item does Dogbert use to find empty chairs,Dowsing rod,General,The baptist What New World mammal did Columbus say resembled mermaids,The manatee -Entertainment,Hanna_Barbera rose to fame by creating what duo for MGM,Tom and jerry,Technology & Video Games,What was invented over 3000 years ago that is now considered the first 'computer'?,Abacus,General,In what kind of buildings are hops dried,Oast house -General,In which American state is Cincinnati,Ohio,General,Which Russian composer died on the same day as Josef Stalin?,Sergei Prokofiev,General,What are you doing if you performed Applejack Chaos Rev up,Line Dancing -General,Who Was Britain's First Million Pound Footballer,Trevor Fraancis,General,How long were Noah and his family confined in the ark,One year, History & Holidays,How Old Was James Dean When He Died ,24  - History & Holidays,What Was The Name Of The Character Played By Anne Bancroft In The 1967 Film 'The Graduate'' ,Mrs Robinson ,General,Apparatus mixing air with petrol vapour in an internal combustion engine,Carburettor,General,What explorer wrote the history of the word in prison in 1600s,Sir Walter Raleigh -Geography,What Is The Worlds Largest Desert Called ,The Sahara ,General,What's the primary function of two-thirds of a shark's brain,Detecting,General,What did Popeye eat for strength before spinach,Garlic -Music,"In 1981 Which British Band Had A Hit Album Entitled ""From The Tearooms Of Mars To The Hellholes Of Uranus"" And A Hit Single Called Einstein A Go Go",Landscape,Art & Literature,"This is the choice and arrangement of words and phrases in a literary work. It is the vocabulary that the author, poet or playwright uses to create style and effect in a piece of writing?",Diction,General,Who played the president of the u.s in 'air force one',Harrison ford -Science & Nature," Elephants, lions, and camels roamed __________ 12,000 years ago.",Alaska,General,"George Michael was one half of Wham!, name the other half.",Andrew Ridgley,General,What is the fear of drugs known as,Pharmacophobia -General,"Which herb whose leaves and blue flowers are both edible, is used in drinks such as 'Pimms'",Borage,General,Most effective spot to pierce a Vampire with a wooden stake.,Heart,General,What was the original name of the singer Tina Turner,Annie mae bullock -General,"What are Manhattan, Apollo, Hedwig, Cartman, Guinness",Linux versions,General,What is consumption otherwise known as,Tuberculosis,Toys & Games,Little blue cartoon figurines.,Smurfs -Sports & Leisure,Who Won The Embassy World Snooker Championships In 1998 ,John Higgins ,General,What is samian ware,Fine pottery,General,Of what does a human being lose an average of 40 to 100 per day,Hairs -General,What bird is associated with lundy island,Puffin,General,What islands name is Australian slang for a football shirt,Guernsey,General,What is 'Zulu' time?,Greenwich Mean Time -General,Who ruled rome when christ was born,Caesar augustus,Food & Drink,What name is given to a clear soup with thin strips of vegetables? ,Julienne ,General,What is a group of this animal called: Pig,Litter - History & Holidays,"Who played George III in Beau Brummell? (Robert Morely, Alec Guiness, Cardew Robinson) ",Robert Morely , History & Holidays,"Which hero, a Christmas panto favourite, marries Bedr-El-Budar? ",Aladdin ,General,"Quiz, bandlore, coblentz, disk all different names for what item",Yoyo - from Tagalog -General,"Who is on a U.S. $5,000 bill",James madison,General,In what was the strength of early lasers measured,Gillettes,General,What Is Measured By The Gay Lussac Scale,Alcohol -General,What is the national drink of Yugoslavia,Slivovitz,General,What animals are likely to die first from global warming,Polar Bears,Music,"Kimberly, Nadine, Sarah, Cheryl Who Is Missing?",Nicola Roberts (Girls Aloud) -General,What product uses the most silver,Camera Film,General,Small pieces of fried or toasted bread usually served with soup,Croutons,General,What is the capital of argentina,Buenos aires -General,Who was the egyptian god of the underworld and vegetation,Osiris,General,"What rifle accessory originated in bayonne, france, in 1641",Bayonet,Music,"What Group Consists Of Bill Berry, Peter Buck, Mike Mills, Michael Stipe",REM - Geography,Where is Gorky Park?,Moscow,General,Who was the shortest british monarch,Charles i,General,1961 who was first actress to win Oscar for a non English film,Sophia Loren -General,Sir Jack Cohen founded what,Tescos - supermarkets,General,In Biker Slang what are Giblets,Chrome add ons,General,What word is derived from the Arabic mawsim meaning season,Monsoon -General,What is the national flower of Australia,The Wattle Blossom, History & Holidays,In which country did the Boxer Rebellion take place,China,General,Where was Mark Twain born,Florida - Missouri -General,What does the name Mesopotamia mean,Between two Rivers,General,Where is mount etna,Sicily,General,What does an icthyophage do,Eats Fish -Science & Nature,What Diameter Floppy Disks Were Introduced By Ibm In 1970 ,8 Inch ,Science & Nature,Which Company Formed By Larry Paige & Sergei Brin Was Incorporated On 7 th Sep 1998 ,Google ,Science & Nature," 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 -General,Who was the first victim of the electric chair,William kemmler,Geography,Which Ancient Egyptian Burial Monuments Built During The Old & Middle Kingdom Periods Have Associations With Royal Solar & Stellar Cults ,Pyramids ,General,Which is the only work by Leoncavallo most people have ever heard of,I pagliacci - History & Holidays,Which 1992 Film Starred Goldie Hawn & Meryl Streep As 2 Woman Going To Extraordinary Lengths To Preserve Their Looks ,Death Becomes Her ,General,Which author wrote the 'Stone Diaries',Carol shields,General,What queen married 2 of her brothers,Cleopatra -Music,"Who recorded Paul's song ""Goodbye""?",Mary Hopkin,General,What is the fear of performing known as,Topophobia,General,Nancy Cartwright and Yeardley Smith provide the voices for which brother and sister on television,Bart & lisa simpson -General,On an ordinance survey map which symbol shows a battlefield,Crossed swords,General,What is a cob and a pen,Swan,General,Which writer invented the word drab,C S Lewis -General,What vitamin deficiency causes rickets,Vitamin d,General,What were the two dogs names on Magnum PI?,Apollo and Zeus,General,What continent is home to half the worlds people,Asia -General,What is Mr. Roger's first name,Fred, History & Holidays,The following is a line from which 1970's film 'Is it safe' ? ,Marathon Man ,General,A Fennec Is The Smallest Breed Of Which Mammal?,Fox - Geography,This Moslem republic in asia was formerly part of India.,Pakistan,General,What is the most popular Mexican beer in the USA,Corona,Entertainment,"Band: "" _________ And the Bad Seeds""",Nick Cave - Geography,What is the capital of Lesotho ?,Maseru,Science & Nature,To make a car go backwards you have to put it in what gear,Reverse,General,Battle of the Somme With what acid do nettles cause irritation,Formic acid - History & Holidays,"In 1978 which famous comedy returned for a second series, four years after the first had been shown ",Fawlty Towers ,General,Who is the idol of the german organization of non-commercial supporters of donaldism,Donald duck,Science & Nature,"The four stages in the life-cycle of an insect are: egg, adult, pupa, and ________.",Larva -General,Wesley Snipes and who starred in the film Money Train 1995,Woody Harrelson,Music,"Who had 1960's hits with 'Detroit City', I'm Coming Home' & 'Help Yourself'”?",Tom Jones,Food & Drink,What is 'water of life' in 'Scottish Gaelic' ,"Uisge beatha , usquebaugh (whisky) " -Science & Nature,For What Is Lepidoptera The Scientific Name? ,Butterflies & Moths ,Entertainment,What detective duo was featured in Mystery at Devil's Paw?,Hardy,General,In which city was Michael Hutchence found dead,Sydney -Music,Who Legally Adopted A Symbol To Replace His Name In 1993,Prince,Food & Drink,Which spirit is fermented and distilled from sugar cane? ,Rum ,General,Who wrote the Uncle Remus tales,Joel chandler harris -General,"In The TV Show Sesame Street What Was The First Name Of The Character ""Mr Snuffleupagus""",Aloysius,General,What is a male camel called,Bull,General,In Pueblo Colorado its illegal for what to grow in city limits,A Dandelion -General,Fife the only member of the band zz top without a beard has what last name,Beard,General,A capital D is the Roman numeral for which number,Five hundred, Geography,"Which river passes through Germany, Austria, Slovakia, Hungary, Croatia, Yugoslavia, Romania, Bulgaria and Ukraine before arriving at the Black Sea?",Danube -General,What is the fear of vehicles known as,Ochophobia,General,Countries name means Place where one struggles with God,Israel,Music,"T-Boz, Left Eye & Chilli Make Up Which Group",TLC -General,What is the name of Dennis the Menace's dog,Gnasher,Music,Who Received Damages From The Sun After Allegations About Gatecrashing A Party,George Michael,General,At epiquarian.com you would find information about what,Food or Restaurants -General,Who were UPS original customers,Department stores,General,"What film made 58 times - cartoon, porrno, operatic, ballet",Cinderella, History & Holidays,What colour was Diana Spencer's engagement photograph suit?,Blue -General,What is all hallow's eve,Halloween,General,"What type of tree has a specimen known to be 4,764 years old",Bristlecone pine,General,What feminist wrote Sexual Politics & Flying,Kate millett - Geography,"On the London Underground, which station has a different name on two of its platforms?",Bank and Monument,General,"Who won the best Actress Oscar for ""Blue Sky""",Jessica lange,General,What is the Capital of: Russia,Moscow -Music,Who Sang The First Song Ever To Be Performed On Top Of The Pops,Dusty Springfield, History & Holidays,"Which German Grand Prix circuit was used for a Formula 1 race for the last time in 1976, when Niki Lauda was almost killed? ",N?rburgring ,General,An underground layer of water filled rock is called an,Aquifer -General,Down which street is the st patrick's day parade,Fifth avenue,Geography,In which country would you find the Yucatan Peninsula,Mexico, History & Holidays,In which two continents might you find vampire bats ,North & South America  -General,"Which single word connects a Beethoven composition, a Glenn Miller melody and some Terry's chocolates",Moonlight,General,What U.S. state includes the telephone area code 703,Virginia,Food & Drink,What type of pasta resembles a bow-tie in shape ,Farfalle  -Entertainment,Who's first release was 'Talking Heads 77'?,Psycho Killer,General,Who did the USA buy the Virgin islands from,Denmark, History & Holidays,Who Was Known As Coeur De Lion? ,Richard I (The Lionheart)  -General,If you suffered from Chirospasm what have you got,Writers Cramp,General,What U.S. state includes the telephone area code 504,Louisiana,General,Sleeping sickness is carried by which insect,Tsetse fly -General,Red headed men are more likely than others to do what,Go Bald,General,For how long is the note sustained at the end of the beatles' song 'a day in the life',Forty seconds, History & Holidays,`Expletive Deleted' came into fashion as a result of the publication of the transcript of what? ,The Watergate Tapes  -General,Which comedy duo first performed together in 1926,Laurel and hardy,Food & Drink,Which drink was created when Indian army officers added quinine to soda water to help fight malaria? ,Tonic Water ,General,"In Magnum PI,what was the name of the club?",The King Kamehameha -General,Why did sailors wear tattoos,Prevent Catching Pox,General,"What number on the Richter scale, does an earthquake have to reach to be considered major",Seven,General,What is the Capital of: Lesotho,Maseru -General,Whose last words were supposed to have been 'Let not poor Nelly starve',Charles ii,General,What made two monkeys famous in 1959,Space trip,Music,"In Which Country Wwas The Beatles Track ""Can't Buy Me Love"" recorded?",France -General,What British Motor vehicle displayed at 1948 Amsterdam show,Land Rover,General,Who did the walrus and the carpenter ask to walk with them,The Oysters,Music,Who Made Their Bill Topping Debut On Sunday Night At The London Palladium In 1963,The Beatles -General,Determination of the depth of a body of water,Sounding,Geography,In what mountain range is kicking horse pass ,Rockies ,General,What was the first country in 1824 to legalise Trade Unions,Britain -General,Which tennis star wore denim shorts during matches,Andre agassi,Entertainment,Film Title: Fahrenheit ________. (a number),451,General,"What meat is most often cut into ""noisettes""",Lamb -Entertainment,What is Kermit D Frog's girlfriend's name?,Miss Piggy,General,Who wrote the 'Odyssey',Homer,General,Who rejected the Olivia Newton John role in Grease,Marie Osmond -Music,Who Sang About Patches In 1970,Clarence Carter,General,Ochlophobia is the fear of,Crowds mobs,General,"The first successful British/American space satellite was launched in April 1962, named after a character in Shakespeare's The Tempest",Ariel -General,What is the name for a painting depicting objects such as fruit and flowers,Still life,People & Places,What is Nigel Benn Known Has In The Ring ? ,The Dark Destroyer , History & Holidays,What Was Charlie Rich Looking For In The 1970's ,The Most Beautiful Girl In The World  -General,Purl Plain Fisherman's Cable types of what,Knitting stitches, History & Holidays,Who released the Pet Shop Boys song `I'm Not Scared' in 1988 ,Eighth Wonder ,General,What is a conundrum,Riddle -General,"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,General,Laurence Skikne changed his name to what and found fame,Laurence Harvey,General,Which company launched the first clone of an IBM pc in 1982,Compac -Entertainment,After who was Deana Carter named?,Dean Martin,General,A receptacle for holy water in a church is a ___.?,Font,General,Mould board Disc and Rotary are types of what,Plough - Geography,What is the basic unit of currency for Sri Lanka ?,Rupee,Music,The Assembly One Hit Wonder Was A Collaboration By Which 2 Successful Artists,Vince Clarke & Feargal Sharkey,General,What would you do with a Yashmak,Wear it - it's an Arab veil -General,How many numbers are on the spinner in 'the game of life',Ten,General,What element does the chemical symbol ca stand for,Calcium,General,What was the claymation Domino's Pizza thing to avoid?,The Noid -Music,Who Sang The Theme To The Bond Movie For Your Eyes Only,Sheena Easton,General,"The name of which musical instrument means ""sound of wood""",Xylophone,General,Mitchell what is a group of birds on the ground,Flock -People & Places,Jane Caine Has A Claim To Fame As The First Person To Do What ,Speaking Clock Voice ,Music,Which Other 80's Recording Artist Did Whitney Houston Marry,Bobby Brown,General,What is a young beaver called,Kit or sometime a Kitten -Music,What Was The Biggest Selling Album Of The 80's,Michael Jacksons (Thriller),General,Beethoven's ninth symphony is nicknamed what,The Choral,General,Which Shakespeare play ends in marriage of Benedict Beatrice,Much ado About Nothing -Science & Nature," 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,Music,Which Future Member Of Duran Duran Appeared In A Persil Advert As A Child,Simon Le Bon,General,Bombardier Billy Wells was seen on many Rank films - why,Hit Gong -Sports & Leisure,How many players are there on a water polo team,Seven,General,"What single word connects the Spanish Armada, and the two TV programmes, Danger Man and The Worker",Drake,General,Who is Shadow Chancellor of the Exchequer,Francis maude -General,According to Homer Simpson what is a feline,An Elephant,General,Who is the current monarch of the Netherlands,Beatrix, Geography,What is the oldest town in Belgium?,Tongeren -Geography,What is the capital of Senegal,Dakar,General,Where is the world's oldest belltower AD 1069,St Benedict's Church Rome,General,Semiology is the study of what,Signals -Music,From What Do The Doobie Bros Take Their Name,A Marijuana Joint Known As Doobie,General,In which sport would you find the Sag Wagon,Cycling - it picks up dropouts,General,Who hosts the monza grand prix,Italy -General,Which English brewery has the oldest patent on beer,Bass Ale,General,Stanwyck what phenomenon is caused by the gravitational attraction of the moon,Tides, History & Holidays,What Is The Name Of The Bad Guy In The Movie Halloween ,Michael Myers  -People & Places,Who was The Second Man To Set Foot On The Moon ,Buzz Aldrin ,General,Stockholm is the capital of ______,Sweden,Art & Literature,Who painted the ceiling of the Sistine Chapel ?,Michelangelo -General,Which of Dicken's novels is set during the Gordon Riots,Barnaby rudge,General,What couldn't jack sprat's wife eat,Lean, Geography,On what peninsula are Spain and Portugal located?,The Iberian peninsula -Geography,Between Which 2 Countries Would You Find Lake Olirid ,Albania & Macedonia ,General,Which car company took over Mitsubishi in March 2000,Daimler chrysler,General,Where is the Star Fleet Academy located,San Francisco -General,What is schizophrenia,Hallucinations & delusions,General,"Who played the leading role in 'the good, the bad and the ugly'",Clint,General,What do cockroaches do every fifteen minutes,Fart -General,The discovery of gold in which region of Yukon provoked a rush,Klondike,General,Strontium 90 was the original name of which band,The Police, History & Holidays,What Became America's 50th State On August 21st 1959 ,Hawaii  -General,What is the largest volcano in the solar system,Olympus mons,General,What is the first name of the French painter Monet,Claude,General,Name the sea west of alaska,Bering sea -General,Which 1998 film stars Robert Redford as a hero blessed with a gift for healing,The horse whisperer,General,Which sea area is immediately south of Ireland,Fastnet,General,Zaire diverted roads to avoid disturbing communities of what,Elves -General,The word Atom comes from the Greek meaning what,Indestructible,General,In Atlanta Georgia what is it illegal to do to a giraffe,Tie it to tel pole,General,Chicago comes from a native Indian word that means what,Place that smells bad -General,Moon Soo King has represented which country at badminton,South korea,General,Stoppered glass container for wine or spirits,Decanter, Geography,What is the smallest of the Central American countries?,El Salvador -General,Illinois second largest city and a TV detective share what name,Rockford, Geography,On what mountain are four presidents' faces carved?,Rushmore,Food & Drink,What Tradionally Can You Eat When There Is An R In The Month ,Oysters  -General,"Which garden pest, which can cause great damage to lawns, is the grub of the crane fly",Leatherjacket,General,The Caspian Java Bali what became extinct in 19th Century,Tigers,General,"What one word makes sense when it precedes top, drive & rock",Hard -General,Where is the machu picchu,Peru,General,Which sport requires stones to be 'thrown' at houses,Curling,General,Who owned Rin Tin Tin in the series,Rusty -General,In what city in Georgia is it illegal to tie a giraffe to a telephone pole or street lamp?,Atlanta,Science & Nature," Alligators and __________ have something in common, at least auditorily. They can hear notes only up to 4,000 vibrations a second.",Old people,General,Which of its products did Heinz try to squeeze out in November 1999,Salad cream -General,Playing card - Raymond Shaw trance - Manchurian Candidate,Queen Diamonds,General,What gas did Joseph Priestley discover in 1774,Oxygen,General,If you landed at Mirabel airport where are you,Montreal -General,King richard the ________,Lionheart,General,Name the ancient region that corresponds roughly to modern day Tuscany,Etruria,Music,Who Plays Guitar For Genesis,Mike Rutherford -Music,When Did Sid Vicious Join The Sex Pistols,1977,General,What eats cactus branches in the galapagos islands,Tortoise,Food & Drink,What Is Sodium Chloride Better Known As ,Salt  -General,What the W. of George W. Bush stand for?,Walker,General,Who was defeated at the battle of little bighorn,George a custer,General,Middle ages Monks denied meat on fast days ate what,Rabbit Foetuses – Said were eggs -General,Parascopisim is what sexual behaviour,Voyeurism through bedroom windows,General,What language was spoken by the ancient Romans,Latin,Food & Drink,From which fish is caviar obtained ,Sturgeon  - Language,What is 'military governor' in Japanese?,Shogun,General,Oysters can do what - according to water temperature,Change sex, History & Holidays,"In America, what became the 49th state to enter the union in 1959? ",Alaska  -General,"What links The Friend, The Tablet and The Universe",Religious publications,Music,Which Trumpet Playing Jazz Singer Was Known As Satchmo,Louis Armstrong,General,Katmandu is the capital of ______,Nepal -Music,Who Sung The Theme Tune to The Bond Movie “For You're Eyes Only”?,Sheena Easten,General,What nationality was Heitor Villa-Lobos,Brazilian,General,"What was the first personal computer: Kenbak, Scelbi, or Apple1",Kenbak -General,Two angles that total 180 degrees are called _______,Supplementary,General,What is the Capital of: Austria,Vienna,Science & Nature,What Do Alligators Lay Their Eggs In? ,Sand  - History & Holidays,In the US what was known as Armistice Day until 1954? ,Veterans Day ,Music,"What Connects Supergrass, Hurricane 1, Radiohead",Oxford,General,About which family are the 'Godfather' films,Corleone -General,What is the flower that stands for: cure,Balm of gilead,General,What does the acronym 'scuba' mean,Self-contained underwater breathing,Music,Which Non Human Had The Biggets Hit Of The Year 2000 In The Uk,Bob The Builder -Religion & Mythology,Who was the Greek god of fire?,Hephaestus,General,What was Terry's surname in the television series Minder.,Mccann, Geography,Warsaw is the capital of what country?,Poland -General,Which food item gets its name from the French for melted,Fondue, Geography,What is the basic unit of currency for Slovenia ?,Tolar,Music,"Who Was Singing About ""Macarthur Park"" In 1978",Donna Summer -General,What is the Capital of: Dominica,Roseau,General,Curtis Sliwa founded what in 1979,Guardian Angels,General,Which exponent of solidarity was awarded the 1983 Nobel Peace Prize,Lech walesa -General,What is the literal translation of aardvark,Earth pig,General,Great Brother is the Chinese translation of which drug,Viagra,General,In 1969 who formed tangerine records,Ray Charles -General,What sport is sometimes called rugger,Rugby union,General,Venus has how many moons,0, History & Holidays,What date is st. patrick's day ,March 17th  - History & Holidays,"Arnold Schwarzenegger is a father trying to get the must have toy, Turbo Man, in which 1996 film ",Jingle All The Way ,General,What is 'the soul of wit',Brevity,Science & Nature, A __________ fish can swim 100 miles in a single day.,Tuna -Sports & Leisure,How is Edson Arantes Do Nascimento better known? ,Pele ,General,Bette Midler won an Oscar nomination for playing a rock singer in the style of Janis Joplin in which 1979 film,The rose,Science & Nature,How many teats does a cow have?,Four -General,Name the first web browser publicly available,NCSA Mosaic,General,"Which Famous Vehicle Of The Movies Has The License Registration Mark ""DXJ 432""",Greased Lightning,General,In the Bible in what city did Jesus perform his first miracle,Cana - John 2:1.11 Water into wine -Sports & Leisure,Hockey: The Montreal ________.,Canadians,General,Christopher Cockerill invented what in 1955?,Hovercraft, History & Holidays,What date is St Stephen's Day? ,26th December  -General,What is a group of whales,Pod,Sports & Leisure,"In Bingo , For What Is The Call 2 Fat Ladies ",88 ,General,What colour is the artist's pigment celandine?,Yellow -General,What did Alfred Hitchcock Fear?,Eggs,General,What is the chemical formula for Ozone,3,General,The French call it Pas de Calais what do the English call it,Straits of Dover -General,What organ of the body is particularly affected by hepatitis,Liver,General,What did a scuttlebutt hold,Drinking water,General,Apart from Star Trek Kirk Scott Spock Sulu (actors) what prog,The Twilight Zone -General,What links fire escapes windshield wipers bullet proof vests,Invented by women,Art & Literature,Edgar Allen Poe wrote a famous poem about this animal.,Raven,General,USA has most airports which country has second most,Australia - History & Holidays,"Who said: when i look at my children, i say lillian you should have stayed a virgin ",Lillian carter ,General,What was the name of the home of the Care Bear Cousins?,Forest of Feelings,General,What is the currency of Iran,Rial - History & Holidays,What did the Romans call Scotland? ,Caledonia ,General,What is the most profitable section in supermarkets,1 Meat - 2 Fresh veg – 3 Pet Food,General,Alfred Butta invented what in 1941 - marketed 1948,Scrabble - Geography,Nashville is the capital of ______?,Tennessee,General,For how long was the Eiffel Tower the tallest building in the world,Forty years,Toys & Games,"In which game or sport can a person be ""skunked""",Cribbage -General,Kappelkoff is the real surname of which actress,Doris day,General,"In which country is the town originally called Angostura, a place which gave its name to a herbal bitter drink",Venezuela,General,Clyde Tonbaugh discovered what planet in 1930,Pluto -Sports & Leisure,What is the international governing board of football (soccer)?,FIFA,General,Where was the first known lighthouse,Alexandria,General,Who was the first U.S. president to be photographed at his inauguration,Abraham lincoln -General,What does Amoco stand for,American oil company,General,If you have Iantronudia what turns you on,Flashing a physician, Geography,What is the basic unit of currency for Moldova ?,Leu -General,"Which group sang the song ""Original Prankster""?",Offspring,General,Which sport has a name which literally means 'gentle way',Judo,General,Which actor has been portrayed most on screen by other actors,Charlie Chaplain -General,Building started on Westminster Abbey in which year,1050,General,Which is the only Australian state capital that is not named after a person,Perth,Science & Nature,What is the world's longest snake?,Python -General,Addis Ababa is the capital of which country,Ethiopia,General,What's shredded to make sauerkraut,Cabbage,Art & Literature,Who wrote 'A Tale Of Two Cities'?,Charles Dickens -Science & Nature,If You Were Travelling At Mach II How Fast Would You Be Moving ,Twice The Speed Of Sound ,General,"In the dr seuss books, which elephant hatched an egg",Horton,General,What is traditioinal Japanese wrestling called,Sumo -Music,Which Song Was George Harrison Accused Of Plagiarising For His Hit My Sweet Lord,He's So Fine,Sports & Leisure,Who Was Tennis Player Andre Agassi Married To Between 1997 And 1999 ,Brooke Shields ,General,Pate de foie gras is made from the liver of which bird,Goose - History & Holidays,"In which country do families dress a stuffed male doll with old clothes from each member of the family and then burn it, symbolizing forgetting all the bad things of the old year? ",Colombia ,General,What's name translates from Chinese as white vegetable,Bok choy,Music,Kelly Marie Had A Short Solo Career In The Early 80's That Included Which No.1 Hit,Feels Like Im In Love -General,How to Handle a Woman came from which stage musical,Camelot,General,What name is given to a mixture of champagne and orange juice,Buck's fizz,General,The Roman roadbuilders lacked which elementary tool,Wheelbarrow -General,"To determine the percentage of alcohol in a bottle of liquor, what is divided by two",Proof,General,Large voracious tropical sea fish,Barracuda,General,Where would u look at a Snellen Chart,Opticians -General,Air Lingus is the national airline of which country,Republic of Ireland or Eire,General,Who administers martinique,France,Music,Which Singer Is Known As The Wicked,Wilson Picket -General,Who Is Reg Dwight Otherwise Known As,Elton John,Music,"Which Canadian Born Singer Was Born ""Roberta Joan Anderson""",Joni Mitchell,Toys & Games,This is the oldest board game still played (5000 yr old boards were found),Backgammon -General,Josephine Hull best supporting actress Oscar which 1950 film,Harvey,Music,Which female singer's debut album was No Angels in 1999?,Dido,General,What did model manufacturers Airfix first make,Plastic Combs - Geography,What is the basic unit of currency for Nepal ?,Rupee,General,What is a cremnophobe afraid of,Falling down stairs,General,In ancient Rome what was the tabularium?,Public Records Office -Music,What Was The Christmas Number One In 1995,Michael Jackson / Earth Song,General,"Of what does the typical man have 13,000",Whiskers,Sports & Leisure,How many players make up a field hockey team?,Eleven -General,What type of food is Fontina?,Cheese,General,In Yiddish what is your Pupik,Belly Button,Music,Who Wrote The Wedding March,Mendelssohn -General,Which branch of science is concerned with the study of matter and energy,Physics,General,Katy Cropper Was The First Woman To Win Which TV Competition?,1 Man & His Dog,General,Richard Hannay hero of the 39 steps is which nationality,Canadian -Music,Elvis Presleys Twin Brother Died At Birth What Was His Name,Jesse Garon, History & Holidays,What Was The Given To The Period From 1919 To 1933 When Alcohol Was Banned In America ,The Prohibition ,General,"Bob, Wally, Alice and Asok can be found in which strip cartoon",Dilbert -General,Who originally designed the Washington Monument,Robert mills,General,To which family of fishes does the Tuna belong,Mackerel,General,"Actress Amy Irving divorced her producer husband in 1989, who was he",Steven spielberg -Geography,Halifax is the capital of which Canadian province,Nova scotia,General,What did Britain swap Havana for with Spain in 1763,Florida,General,The CN Tower is in which Canadian city,Toronto -General,Which Famous Duo Are Members Of The Pop Group Wild Stallions,Bill & Ted,Geography,"The only three countries in the world whose names begin with ""Z"" are Zambia, Ziare and __________, all in Africa.",Zimbabwe,General,Which Tv Soap Star Played The Role Of “Emma Jackson” In Home & Away,Danni Minogue -General,Who sings 'sweet home alabama',Lynyrd skynyrd,Science & Nature,The force that brings moving bodies to a halt is _________.,Friction, History & Holidays,Who was Margaret Thatcher? ,Prime Minister of Great Britan  -General,Who played Sarah Conner in 1984s Terminator,Linda Hamilton,Music,Which Group Recorded The 1991 Album “Stars”?,Simply Red,General,Which European country is divided into areas called Cantons,Switzerland -General,What is the largest volcano in our solar system & what planet is it on,Olympus mons on mars,General,What is the literal meaning of Kangaroo,I don’t understand,Art & Literature,Who painted 'Irises'?,Vincent Van Gogh -General,What term is given to the scientific study of all aspects of the life of fungi,Mycology,General,"What type of shoes did Run-D.M.C. sing about, which were what most rappers in the early eighties were into?",Addidas,General,Who wrote the children's story Badjelly the Witch,Spike milligan -Entertainment,What is Tina Turner's real name?,Anne Mae Bullock,General,Who is Dumbella,Donald Ducks sister,General,Dakar is the capital of ______,Senegal -General,"What does ""alopecia"" refer to",Hair loss,General,What's unusual about portrait Duke of Monmouth in Nat Gallery,Its not him,General,Which Song Was Abba's Second UK Number One Hit,Mamma Mia -General,The Koh-i-Nor is a famous diamond - what does the name mean,Mountain of Light,People & Places,Who Did Churchill Refer To As A 'Half Naked Fakir' ,Mahatma Gandhi ,General,Ipsisism is what common sexual practice,Masturbation -General,What is the meaning of Ghandi,Grocer,General,What is another name for 'okra',Ladies finger's,General,"Of which island do ireland, britain, iceland and norway dispute ownership",Rockall -Science & Nature,Which moon is the second largest satellite in our solar system?,Titan,General,Married men in France use more what than their wives,Cosmetics,General,"Who lives at 10 Downing St, London",British prime minister -General,In Morse Code Which Letter Of The Alphabet Is Represented By The Sequence “Dash Dash Dot Dot”,Z,Science & Nature,What is the smallest bone in the human body?,Stirrup bone, History & Holidays,"Considered to be the last full blooded Tasmanian aborigine, (died 1876 - aged 73), her name is_____?",Truganini -General,Collective nouns - a smuck of what,Jellyfish,General,Hokusai and Hiroshige were famous Japanese what,Artists,General,Name the Motown star shot and killed by his father in 1984,Marvin Gaye -General,"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,Entertainment,Who sang 'Islands In The Stream' with Kenny Rogers?,Dolly Parton,General,Melanophobia is the fear of,The color black -General,Which domesticated pet animal is never mentioned in the Bible,Cats,General,In the original trivial pursuit brown was what category,Geography,General,Grey and black #1 what latin word means 'little shaded area',Umbrella -General,Knickerbockers used to be the residents of where,New York,Food & Drink,In which century were bananas first sold in London? ,17th ,General,The longest section American slang dictionary what subject,Vomit -General,Which key word was removed from the Olympic charter in 1971,Amateur,General,The first American satellite was launched in which year,1958,General,According to law what must all London Taxis always carry,Bale of hay for horse -General,What slim volume began a record 161 week stint atop the hardcover fiction best sellar list in 1993,The bridges of madison county,General,When is turkey traditionally eaten in America?,Thanksgiving,Art & Literature,"Which Shakesperian play features the line ""Now is the winter of our discontent""?",Richard III - Geography,What is the capital of Moldova ?,Chisinau,General,In Portacello Idaho concealed weapons are illegal unless what,They are openly displayed,General,If you ordered Tori Udon in a Japanese restaurant you get what,Thick Noodles broth with Chicken -General,Who was the famous grandfather of Charles Darwin?,Josiah Wedgewood,General,With what type of painting was John Singer Sargent principally associated,Portraits, History & Holidays,How many years was Nelson Mandela in prison?,27 -General,What is the fear of fire known as,Pyrophobia,General,Paraskavedekatriaphobia is a fear of ______,Friday thirteenth,Music,Eddie Vedder is lead singer with which band?,Pearl Jam -General,In 1925 two men first drove round Australia in what make of car,Citroen 2 seater,General,The U.S. is made up of __ states,Fifty 50,General,"Who said ""This game is about beating the crap out of everyone""",Bears Quarterback Jim McMahon -General,Who was the English man of religion founded Society of Friends,George Fox,General,What flavours the liquor chambord,Raspberries,General,The large Hollywood sign in LA was originally?,Hollywoodland -Music,Which pop group invited you to take them “Dancing Naked In The Rain”,Blue Pearl,General,What group did earl carroll join in 1960,Coasters,General,Who owns the island of bermuda,Britain - History & Holidays,In which European city did composer Richard Wagner die in 1883? ,Venice ,General,Branch of biology concerned with the study of plants (kingdom plantae; plant),Botany,Toys & Games,How many dots are there on a pair of dice,42 -General,Sleeping sickness is carried by which insect?,Tsetse fly,General,"In the 1960s, Alan Reed and Jean Vander Pyle were the voices of which television husband and wife",Fred & wilma flintstone,Science & Nature,What Metal Is The Best Conductor Of Electricity ,Silver  -Music,Slim Whitman Stayed At No.1 In The Uk Charts For 11 Weeks With Which Ballad,Rosie Marie,General,This Canadian art-metal trio sings sci-fi themes a lot.,Rush,General,What do the broken chains at the bottom of the statue of liberty symbolise,Overthrow of tyranny -General,A wild ox,Bison,General,What religious leaders name means Sign of God,Ayatollah,General,What saint offerred jesus a handkerchief,St veronica -General,"In the film 'day of the jackal', who did edward fox play",Jackal,Music,"Who Had A Hit In 1983 With ""Hey Little Girl""",Ice Gouse, History & Holidays,Who played the monster in the 1931 film Frankenstein ,Boris Karloff  -General,Which Alan Parker film dealt with racial murders in America,Mississippi burning,General,What type of creature is the Common Darter?,Dragonfly,General,"Born In Canada In 1950 Who In The World Of Music Has The Real Name ""August Darnell""",Kid Creole (Coconuts) -General,In which forest does the River Danube rise,Black forest, History & Holidays,"In 1957, who left the music business to become a preacher. ",Little Richard ,General,On which river does Melbourne stand,Yarra -General,What is acute hasopharyngitis,A cold,General,"In ancient Greece, where were the original Olympics held?",Olympia,General,What are snacks eaten with drinks before a meal,Canapes -General,What is Dagwood's dog's name,Daisy,Science & Nature,Which Dutch Company Began Marketing Compact Disc Players In 1982 ,Philips ,General,What city is known as little havana,Miami -General,Where is area 51 generally said to be,Groom lake,General,Who owns: sprite soda,Coca-cola,General,Kakiemon is what Japanese product,Porcelain -General,Who directed the dark crystal (2 people jh fo),Jim henson frank oz,General,A Pullicologist is an expert in what,Fleas,General,In what film did the character Regan McNeil appear,The Exorcist -General,"What is the disease frequent in asia, africa and america, which is believed to result from eating polished rice",Beri beri, Geography,What is the world's second highest mountain ?,K2,General,Amomaxia is having sex where,Parked Car -General,What was Billboards hit single of the 1970s,You light up my life, History & Holidays,In 1816 which US state was admitted to the Union as the 20th state? ,Mississippi , History & Holidays,In the Christmas carol when did 'Good King Wenceslas' look out? ,Feast Of Stephen  -General,In a period of 400 years how many times does the 1st of January fall on a Sunday ?,58,General,How many red stripes are there on the American flag?,7,General,On a prescription what does QOD stand for,Take every other day -General,Haggard as what is merle haggard also known as,Okie from muskogee,General,"Who wrote ""The Naked Ape""",Desmond morris,General,When was the addressograph invented,1892 -General,What is the more common name for serigraphy,Silk screen printing,General,Most fossils are found in this type of rock,Sedimentary, History & Holidays,Which 1922 German Vampire Film Starred The Genuinely Scary Looking Max Schreck In The Title Role ,Nosferatu  -General,In Burma illegal possession of what item can mean prison,A Modem,General,What is the name for the kind of writing used by early Egyptians,Hieroglyphics,General,What type of aircraft is the p39 airacobra built by bell,Fighter -Geography,In what country is Thunder Bay,Canada,General,What does the electrical term 'dc' stand for,Direct current,Music,"Was Phil Collins ""Another Day In Paradise"" Released In 1983 Or 1989",1989 -General,What does an anemometer measure,Wind velocity,Food & Drink,Who was the roman god of wine? ,Bacchus ,People & Places,By what name is Norma Jean Baker better known as?,Marilyn Monroe -General,What is the longest river in Australia,Murray-Darling,Science & Nature,Which Insect Can Infect Humans With Malaria? ,The Mosquito ,General,Judy garland made her show business debut under what name,Baby frances - Geography,Which is the Earth's smallest continent ?,Australia,General,Where is a horses poll,Between its ears,General,In I love Lucy what was Lucy Ricardo's maiden name,McGillicuddy -General,In what Agatha Christi book does Poriot Die,Curtain,Music,"For How Many Weeks Was ""Everything I Do, I Do For You"" No.1 In The UK",16 Weeks,General,Phnom-penh is the capital of ______,Cambodia -General,In what are monocotyledon and dicotyledon terms,Botany,General,"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,General,What was the name of the once Morrissey-fronted band in the 80's?,The Smiths -General,A loofah is a type of what,Plant,General,What Country Has The Lowest Teen Pregnancy Rate In The Western World,Holland,General,The convex surface of a road,Camber -General,A duffer is Australian slang for what,Cattle Thief,General,What actor is the spokesman for the National Rifle Association,Charlton Heston, History & Holidays,Which religious group first celebrated what we've come to know as Halloween ,The Druids  -General,Richard Arkwright invented the Spinning Jenny what job had he,Barber,General,"Who wrote the line""I'll make him an offer he can't refuse""",Mario puzo,General,Where is the biggest calibre cannon?,Kremlin -General,"What are Limerick, Round Bend, Aberdeen and Octopus",Fishing Hooks,General,What was Clint Eastwood's first film as a director,Play Misty for Me,General,David Robert Hayward-Jones became famous as who,David Bowie -General,Into what ocean does the zambezi river empty,Indian ocean,Music,"From the 1980's which artists and song “So strike a pose on a Cadillac, If you want to find all the cops, They're hanging out in the donut shop, They sing and dance”?",The Bangles / Walk Like An Egyptian,Food & Drink,Where Might You Find Lactose ,In Milk  -Sports & Leisure,How Many Tournaments Constitute A Golf Grand Slam? ,4 ,General,In Japan what is a Kissaten,Coffee Shop,Science & Nature,Why Was The Psittacosaurus So Called ,It Had A Short Head With A Parrot Like Beak  -General,Who was the last astronaut to fly alone in a spacecraft,Ron evans,General,Where would you buy a Steinlager beer,New Zealand,General,Feline cats - Bovine Cows - Aquiline what,Eagle -Music,Why Does Gene Kelly Suddenly Stop In The Singing In The Rain Routine,He Notices The Policeman,Geography,"Of the twenty_five highest mountains on Earth, nineteen are in the ______________",Himalayas,Science & Nature,The smallest portion of a substance capable of existing independently and retaining its original properties is a(n) ________.,Molecule -General,"Who said ""sex appeal 50% what you got 50% they think you got""",Sophia Loren,General,What hobby was developed by the Palmer Paint company of Detriot,Painting by numbers,General,Who was the last Ferrari driver before Michael Schumaker to win the Formula 1 World Championship,Jody schechter -General,What is the square root of 65536,256,General,Quilp (A Dwarf) is a character in which Dickens novel,The Old Curiosity Shop,General,What are Australian 'Lamingtons'?,Chocolate Cakes -General,Which major U.S. city is in Dade County,Miami, Geography,What is the basic unit of currency for Colombia ?,Peso,Science & Nature, 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 -General,Who was King of Mycenae and Commander of the Greek forces in the Trojan War,Agamemnon,Sports & Leisure,How Many Cards Are You Dealt In A Game Of Gin Rummy ,10 Cards ,Science & Nature,This astronomer had a metal nose,Tycho Brahe -General,"In Battle Star Galactica,What was the name of the human leader of the Cylons?",Baltar,General,Where would you see a pilcrow,New paragraph symbol,General,What does s.o.s stand for,Save our souls -Science & Nature,What Was The Name Of Alexander The Greats Famous Horse ,BucePhalus ,General,"In Greek mythology, how many heads did hydra have",Nine,General,In Boise Idaho where by law are you not allowed to fish,From a Giraffes back -General,A skulk is a group of which animals,Foxes,General,Two under par on a hole of golf is called a(n) ________,Eagle,General,Germany was split into two zones by which agreement,Yalta agreement -Sports & Leisure,What Race Takes Place On An Annual Basis Between Putney And Mortlake? ,Oxford & Cambridge Boat Race ,General,Before tennis what drew spectators to Wimbledon,Croquet,General,Cockney rhyming slang what is elephants (trunk),Drunk -General,A long thin French type of bread,Baguette,Music,"What Was The Name Of The Supergroup That Had A Hit With ""We Are The World""",USA For Africa,General,Reddish-brown colour alluding to hair,Auburn -General,Which Italian dramatist wrote the play 'Accidental Death of an Anarchist',Dario fo,General,Who was the mouse in the Krazy Kat comics,Ignatz,General,What saint came to be known as santa claus,Saint nicholas -Religion & Mythology,What were the 'Golden Apples' in Greek myth?,Apricots,General,What is the flower of January,Carnation,General,What is the winter counterpart of estivation,Hibernation -General,"What was Tom Clancy's blockbuster first novel, published in 1984?",The Hunt for Red October, Geography,In which country would you find the spectacular rock formation known as The Three Sisters?,Australia,Geography,"The Philippines is an archipelago of 7,107 islands in the ________________",Pacific ocean -General,What is the sixth day of the week,Friday, History & Holidays,"Who was the first English monarch to have a Christmas tree? (Elizabeth I, King George II, King James VI, Queen Victoria ",Queen Victoria ,Sports & Leisure,What Is The Maximum Number Of Clubs Allowed In A Golf Bag? ,14  -General,What is the fear of dependence on others known as,Soteriophobia,General,What comedienne's baby appeared on the first cover of tv guide,Lucille ball,General,Who built the hurricane aircraft?,Hawker - History & Holidays,What do historians call the journey made by Mao to the Northwest of China after Chiang Kai-Shek had driven his forces out of the South and East?,The Long March,General,Office what is the name of the film in which steven segal's character dies,Executive decision,General,Who was the first American in outer space,Alan shepard - Geography,Which city has the largest rodeo in the world?,Calgary,General,What is Britain's largest carnivorous animal,Badger,General,Who was the architect of the new Coventry Cathedral,Basil spence -General,Who had a hit in 1983 with 'True',Spandau ballet,General,Alls Well That Ends Well the original title of which classic novel,War and Peace,Food & Drink,What Is Bombay Duck ,A Dried Fish  -General,What is the name of Marty's band that trys out for the dance in Back To The Future,The Pinheads,General,Which French town is famous for Porcelain and less famous as H.Q. of the International Bureau of Weights and Measures,Sevres,Entertainment,This was the first 3-D film.,Bwana Devil -Science & Nature,What Is The Study Of Insects Called ,Entomology ,General,What do you call marine echinoderms having 5 arms extending from a central disc,Shekel,Sports & Leisure,"In sport, what do the initials PGA stand for? ",Professional Golfer's Association  -Entertainment,"His films include: Spartacus, The Vikings, and Ulysses.",Kirk Douglas,General,What are the official languages of malta,Maltese and english,General,Who tripped Mary Decker in the 1984 Los Angeles Olympics?,Zola Budd -General,Where is The Popliteal Fossa,Back of Knee,General,The world record speed for _________ is 143.08 mph,Water skiing,Science & Nature,Which Antibiotic Was The First To Be Discovered ,Penicillin  -General,"Fishes which, as adults, lie on one side of the body with both eyes on the opposite, upward-facing side of the head",Flatfish,Food & Drink,What Are The Best Selling Sweets In The UK ,Rowntrees Fruit Pastels , Geography,The Indus River flows through which country?,Pakistan -General,Which country is also the world's largest archipelago,Indonesia,General,Percy Shaw invented what in 1934,Cats eyes,Music,Who Sang Lead On The Hits Jimmy Mack & Nowhere To Run,Martha Reeves -General,What was the first film Paul Newman directed,Rachel Rachel,General,A dealer in dress accessories and sewing goods,Haberdasher,People & Places,Which Outspoken Ex Mp Shares Her Birthday with Margaret Thatcher ,Edwina Currie  -General,The composer Berlioz married Harriet Smithson in which year,1833,General,Earl D Biggers created which oriental detective (both names),Charlie Chan,General,Which horse won the 1998 Aintree Grand National,Earth summit -Science & Nature,Which Has The Larger Ears: The African Or The Indian Elephant? ,The African ,Music,What Was Gloria Gaynor's Anthemic No.1 Disco Hit,I Will Survive,General,"Who recorded ""16 candles"" in 1959",Crest -General,Who created the animated characters Wallace and Grommet,Nick Parks,General,Who played the named character in the following films: Darby's Rangers; Mister Buddwing; and Marlowe,James garner,Science & Nature,What Is The SI Unit Of Resistance ,Ohm  -General,Who wrote the Science Fiction novel The Left Hand of Darkness,Ursula LeGuin,Science & Nature,Which meteor shower occurs on the 10th October ?,Draconids, History & Holidays,Which 60's hit started with the line 'The Taxman's Taken All My Dough''? ,Kinks/Sunny Afternoon  -General,Area in which aircraft are forbidden to fly,No-fly zone,General,Figaro in what opera did cherubino serve count almaviva,Marriage of figaro,General,What weight is the lightest in Amateur Boxing,Light Flyweight - History & Holidays,"What Opened In 1955 in Anaheim, near Los Angeles, California. ",Disneyland ,General,A vestiphobe is afraid of what,Wearing Clothes,General,Satan is Lucifer but what does Lucifer mean,The Light Bearer -General,What country used the ringgit as currency,Malaysia, History & Holidays,"Theodor Geisel published an easy reading book for kids, featuring a cat. How is he more commonly known ",Dr Seuss ,General,"Who, or what is a trogon",Tropical bird -General,Which is the fourth planet from the Sun,Mars,Science & Nature,What Disease Results In The Death Of Body Tissue ,Gangrene ,General,What country's capital is caracas,Venezuela - History & Holidays,What was the name of the witch in the tv show emu's world ,Grotbags ,General,"On the show Kight Rider,what was the name of K.I.T.T.s evil double?",K.A.R.R.,General,"Smew, garganey and shoveler are all types of what bird",Duck -General,The Jaguar missile is used as a deterrant against what type of military vehicle or weapon?,Tank,General,"What's a ""mae west""",Life preserver,General,"The Police Academy film franchise ran to seven films, what was the title of the final 1994 film",Police academy: mission to moscow -General,TVs Ben Casey started with Man Woman Birth Death and what,Infinity,General,Which flag flies over the canary islands,Spanish,General,Who did orson welles play in the film 'the third man',Harry lime -Music,"Who had A Top 20 Hit With ""Over The Hills And Far Away"" In The Mid 80's",Gary Moore,General,The first merchandise item to feature Mickey Mouse was a child's school tablet in _________ ,1929,General,What is the official language in the Republic of Yemen,Arabic -General,What is nucleomitiphobia the fear of,Nuclear bombs, History & Holidays,"Who Shot Lee Harvey Oswald, The Assassin Of John F Kennedy? ",Jack Ruby ,General,What's the capital of Comoros,Moroni -Science & Nature,What is the name for the theoretical end_product of the gravitational collapse of a massive star,Black hole,General,What is the Capital of: Holy See (Vatican City),Vatican city,Science & Nature,In Which Decade Did The Post Office Introduce The Telex Service ,1930's (1932)  - History & Holidays,What started in 1849 when gold was discovered at sutter's mill ,The california gold rush ,General,"What does 'vtec', honda's trademarked acronym mean",Variable valve timing and,General,What is the main ingredient in glass,Sand -General,The annual Hackademy awards are given for what,Smoking in films,General,The first manned balloon flight was in which year,1783,Science & Nature, The great horned owl can turn its head __________,270 degrees -General,Who won the formula 1 championship after death at Monza,Jochen Rindt - 1970,General,In What Country Did The Rather Prestigious Sport Of “ Polo ” Originate?,Iran,Entertainment,Bill Justis was a studio musician when he recorded this 'sloppy' instrumental in october 1957?,Raunchy -Science & Nature,This African animal kills the most people.,Crocodile,General,Which group were derided as The poor mans Rolling Stones,Aerosmith,General,On what british sitcom was 'all in the family' based,Steptoe and son -Music,"Who has ""hair of floating sky""?",Julia,General,"What are elementary particles originating in the sun & other stars, that continuously rain down on the earth",Cosmic rays,Geography,What state is the Golden State,California -Sports & Leisure,In Which Sport Is The Espirito Santo Trophy Contested? ,Golf ,Entertainment,Who play Captian Jean-Luc Picard in Star Trek the Next Generation?,Patrick Stewart,General,The Roman Apian Way went from Rome to where,Brindisi - Brindisium - History & Holidays,The horse Khartoum plays a 'deciding' role in which classic 70's film ? ,The Godfather ,General,The world's longest tunnel connects New York and ______?,Delaware,General,"Which women injured riding, eloped with a poet, dog called Flash",Elizabeth Barret Browning -General,In Michigan it is illegal to put what on your bosses desk,A Skunk,General,Leonhard Euler was a famous name in which field?,Mathematics,General,"Which Very Successful Person In The World Of Music Married ""Renate Blauel"" In 1984",Elton John -General,Which Famous Painting Was Stolen From An Oslo Museum On The 12th Dec 1994,The Scream,Entertainment,Who wanted 'a lover with a slow hand'?,The Pointer Sisters,General,A line that touches a circle at two points is called a _____,Chord -Science & Nature,What is it that turns blue litmus paper red?,Acid,Music,With Which Famous Disco Producer Did Phil Oakley Collaborate On The Soundtrack For The Film Electric Dreams,Giorgio Moroder,General,Who sang 'another one bites the dust',Queen -General,Who is the greatest,Me,Music,Who Sang The Theme Tune To The 1989 James Bond Movie “Licence To Kill”,Gladys Knight,General,What country did Christopher Columbus insist Cuba was a part of,China -General,What U.S. City is known as The River capital of the world,Akron,General,What is the Capital of: Anguilla,The valley,People & Places,Who is Stevland Morris Hardaway better known as? ,Stevie Wonder  -General,"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,General,Where is the dewey classification system used,Library,Geography,Which Bridge Connects Nepal To Tibet ,The Friendship Bridge  -General,"How In The World Of Music Is ""Richard Melville Hall"" More Commonly Known",Moby,General,What is the capital of the state of Wisconsin,Madison,Food & Drink,What Is The Term Used To Describe Pasta That Is Cooked Correctly ,Al Dente  -Science & Nature,Cetology is the study of ________.,Whales,General,Ichthyophobia is a fear of ______,Fish,General,Paso what did welch's grape juice become a favorite substitute for when the 18th amendment passed,Wine -General,What phenomenon do cereologists study,Crop circles,General,Where are the Canarie Islands situated,Atlantic Ocean,General,Who led the 'kon-Tiki expedition in 1947,Thor heyerdahl - History & Holidays,Who built the Taj Mahal?,Shah Jahan,General,Bentham of what was john bentham one of the founders,Utilitarianism,Entertainment,Ian Gillain is the singer for this legendary band,Deep Purple -General,What is the name of the starfish who is considered the best friend of Spongebob Squarepants?,Patrick,General,Old superstition - a sneezing cat means what,It will rain,General,Who was born marion morrison,John wayne -Science & Nature,"Which chemical element was foremerly known as the latin ""Kalium"", hence bears the symbol ""K""?",Potassium,Art & Literature,Which Author Wrote The Book Black Beauty? ,Anna Sewell ,General,What desert wine is a normal ingredient of zabaglione,Marsala -General,Where did the mafia originate,Sicily,Geography,Which city in the Americas has the largest population? ,Buenos Aires ,Food & Drink,What is the name of the syrup drained from raw sugar ,Molasses  -General,"What is the fear of radiation, x-rays known as",Radiophobia,Food & Drink,Which brewery brews a beer called Old Peculiar? ,Theakstons ,Food & Drink,Which Scottish Dish Is Boiled In The Stomach Lining Of A Sheep ,Haggis  -General,What Australian town used to be called Stuart until 1925,Alice Springs,General,What was invented 1903 - patented 1906 G C Beilder,Photocopier,General,What does a philluminist collect?,Match box labels -Music,"In Village People, there was an American Indian a cowboy, a consrtuction worker, a biker and who else?",A Policeman,Science & Nature,Other Than The Neutron & Proton What Else Makes Up An Atom ,Electrons ,Geography,Mount victoria is the highest peak of this island country. ,Fiji  -General,What seed takes five years to yield consumable fruit,Coffee beans,General,Ronald Ross campaigned for the destruction of what,Mosquitoes - stop malaria, Language,What does S.O.S. stand for?,Save Our Souls - History & Holidays,Who became president of South Africa in 1989?,F.W. de Klerk,General,Which country produces wine in the Casablanca valley,Chile,Music,Which Singer Born In 1981 Has The Same Surname As The Edible Shoots Of The Asparagus Tree,Britney Spears -General,What two Julies won best actress Oscars for 1964 and 1965,Andrews and,General,In Singapore you can be publicly caned for failing to do what,Flush Toilet after use, History & Holidays,He was the American inventor of the Cotton Gin.,Whitney -General,Bambi was the first Disney film without what,Human characters,General,For which cartoon character was beethoven a favourite composer,Shroeder,General,On what does an artist support his canvas,Easel -General,"The Carrick Roads, a well known haven for wildlife is situated in which English county?",Cornwall,General,"The ""Chariots of Fire' Olympics took place in which year",1924,Geography,Into what body of water does the yukon river flow ,Bering sea  -General,What is the inflammation of the stomach & intestines called,Gastroenteritis,Music,Name the 40-piece orchestra led by Barry White?,Love Unlimited Orchestra,General,Where is the busiest highway in the USA - It’s a bridge,New York's George Washington -General,What Mathematical Symbol Has The Proper Name Of A Lemniscate,The Infinity Sign,General,"What collegiate sport includes 3 match periods, one shorter than the other",Wrestling,General,What is the word used to describe species that are not extinct,Extant -General,What is the most commonly used descriptive word on menus,Mom,General,What is a turtle,Terrapin,Music,"What Connects Al Hibbler, The Righteous Bros, Robson And Jerome",Unchained Melody -General,"Football Team, dallas ______",Cowboys,General,For what does the second letter 'A' stand in the initials BAFTA,British academy of film and television arts,General,Americans Call Them Garbanzo Beans- What Do We Call Them?,Chick Peas - History & Holidays,He was stabbed by Gaius Cassius Longinus.,Julius Caesar,General,Who was the only Apostle to die a natural death,Saint John, Geography,Where are the pyramids located?,Egypt -Music,"Which Union Did ""Duran Duran"" Sing About",The Union Of The Snake,General,What is the capital of new york,Albany,Science & Nature,How Many Lines Do Televisions Have On Their Screen In The UK ,625  - History & Holidays,Which American Military Academt was established in 1802 on the Hudson river ?,West Point,Music,From Which Country Do The Dance Band Cascada Originate,Germany,General,This French peasant girl led the army to victories,Joan of arc -People & Places,Which Footballer Drop Kicked A Fan At Crystal Palace ,Eric Cantona ,Science & Nature," A __________ weighs about 1,400 pounds and eats about 55 pounds of food per day.",Cow,General,Hockey the los angeles ________',Kings -General,Which couple were exiled from The Philippines in 1986,Ferdinand and imelda Marcos,General,What in business terms is the IMF,International Monetary Fund,General,"On ""Who's the Boss?"",what was Samantha's liscense plate on her first car?",SAM'S CAR -General,What passenger train once ran between London & Edinburgh,Flying scotsman,General,And which country comes second,Israel,General,What word could Ernie Bilko not say without stuttering,Million - Geography,How many stars are on the flag of New Zealand?,Four,General,What is a greyish cat with dark stripes called,Tabby,General,"Bowline, Figure Eight & Square are all types of what?",Knots -General,A research scientist is sometimes called this,Boffin,General,"What did the ancient greeks call any group of numbers more than 10,000",Myriad,General,"To err is human, to forgive___.",Divine -General,A tittiliomaniac has a compulsion to do what,Scratch,General,What is a lower than average tide normally occuring at the first and third quarters of the moon called?,Neap tide,Music,"More Of A 50's Legend, Who Crept Into The Early 60's With ""Dream Talk"" & ""Train Of Love""",Alma Cogan -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,Science & Nature," Weighing approximately 13 pounds at birth, a baby caribou will double its weight in just __________",10 days,General,What's nucleomitiphobia the fear of,Nuclear bombs -Geography,What is the capital of Nauru,Yaren,General,In Arthur C Clarks Childhoods end the aliens look like what,Devils,General,What do you call the machine that cleans the ice in skating rinks,Zamboni -General,What was advertised with the slogan 'Gives a meal man appeal',Oxo,Science & Nature," 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,General,Which Simpsons character has starred in such movies as 'The Erotic Adventures Of Hercules' & 'Dial M For Murderousness'?,Troy McClure -General,"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,General,Which general has been described as 'The Black Eisenhower',Colin powell,General,"In 1892, who raised the marriageable age for girls to 12 years old",Italy -General,What New York City's restaurant is alluded to in many stories by Damon Runyon,Lindy's,General,Country singer Hank Wangford has what profession,Gynaecologist,General,Which animal family does the mandrill belong to,Baboon -Science & Nature," Expressing recognition rather than love, Utah __________ exchange ""kisses."" By the touching of incisor teeth, they quickly confirm the identity of group members.",Prairie dogs,General,What animal produces its own sun tan lotion,Hippopotamus,Toys & Games,From what were balloons originally made?,Animal bladders -General,What is a group of this animal called: Wolf,Pack route,Sports & Leisure,Why was Mike Tyson fined $3 million by the boxing association in 1997? ,He Bit Off Evander Hollyfields Ear,Science & Nature," Ancient Egyptians believed that ""Bast"" was the mother of all cats on Earth. They also believed that cats were __________",Sacred animals -General,"Originally made in Nimes, France, this fabric was called serge denimes",Denim,Art & Literature,Who Is The Most Famous Character Ever To Be Created By Helen Fielding ,Bridget Jones ,Science & Nature,What is a corrosive substance with a pH value less than 7 called?,Acid -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,General,Australians call someone from where a croweater,South Australia,Science & Nature,What is the hardest bone in the human body? ,Jaw Bone  -Art & Literature,Who Wrote The Books (The Firm) And (The Pelican Brief) Both Of Which Were Made Into Films? ,John Grisham ,Sports & Leisure,In what sport is the term 'terminal speed' used?,Drag Racing,Entertainment,Secret Identities: Jay Garrick,The flash -General,"Who directed the film ""bridge over the river kwai""",David lean,General,What does RAMDAC stand for?,Random access memory digital to analogue converter,General,What does the term 'gps' mean,Global positioning system -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,General,What is a dogrib,A Boat,General,What country awards the Nobel peace prize,Norway -General,What world war i hero received 50 medals,Alvin york,General,"In cooking, which meat is used in the stew a Navarin",Lamb or mutton,General,In the 18th century what job did a fart-catcher do,A footman – walk behind master -General,Spring bulb with trumpet shaped yellow flowers,Daffodil,General,Cerumen is the technical name for what body part,Earwax, Geography,Kigali is the capital of ______?,Rwanda - History & Holidays,Who Released The 70's Album Entitled Kimono my House ,Sparks ,General,Which famous museum opened in london in april 1928,Madame tussaud,Science & Nature,What name is given to animals which have pouches ?,Marsupials -Science & Nature,What Type Of Insect Is A Glow Worm? ,A Beetle ,General,What original story begins Aladdin was a little Chinese boy,1001 Arabian Nights,General,In Utah in 1870s what could you get from a slot machine,Divorce - Papers cost 2.5 -General,Who wrote Northanger Abbey,Jayne Austin,General,Count de Grisly was the first to perform what trick in 1799,Saw woman in half,Sports & Leisure,Which Boxer Used To Enter The Ring To Tina Turner's ' Simply The Best''? ,Chris Eubank  -General,What was the first film to use stereophonic sound,Disney's Fantasia,People & Places,Where Is Britain's National Horseracing Museum ,Newmarket ,General,Who was the first person to swim the english channel,Captain matthew webb -Religion & Mythology,"In Egyptian mythology, who is the god of the underworld?",Osiris,General,What is the Capital of: Pakistan,Islamabad,General,Dunkin donuts' yeast-based donuts must be set to rise for how long,Forty - History & Holidays,Which is the name of the killer in A Nightmare on Elm Street ,Freddy Krueger ,General,What is the correct form of address for a foreign ambassador,His/Her,General,"Tea Who was on hand for the ""Return of the Native""",Thomas hardy -General,What is the favourite sport of the kennedy clan,Football,General,Which countries name come from the wood its first major export,Brazil,General,Danny Zuko was a main character in what film,Grease -General,Which president was responsible for the 'louisiana purchase',Thomas, History & Holidays,"Who is famous for historically riding naked on horseback through Coventry, England ?",Lady Godiva,Religion & Mythology,"Which city is sacred to Jews, Christians, and Muslims?",Jerusalem - Geography,What is the capital of Oman ?,Muscat,General,You can get 5 years in Kentucky for sending a friend what,Bottle beer or booze,General,What was Jimmy Stuarts middle name,Crane -General,Name the Italian-born American inventor whose form of hydrotherapy has become a popular facility in home or hotel,Candido jacuzzi,Science & Nature,What plant is opium derived from,Poppy,Food & Drink,Where is most of the vitamin C in fruits ,Skin  -Music,"Although The Claim Of Millions Who Is Undoubtedly ""Born In The Usa""",Bruce Springsteen,Music,Who was the only non-Beatle ever credited on a Beatles record?,Billy Preston,General,In golf the no 10 iron is usually called what,Wedge - Geography,What is the capital of Uzbekistan ?,Tashkent,General,Josef Vissarionovich Dzhugashvili became famous as who,Joseph Stalin,General,What is a group of penguins,Colony -General,What US state has the most murders,California,General,The most common colour on national flags is?,Red,General,What's gerald ford's middle name,Rudolph -General,Who was 'the postman',Kevin costner,General,"Where did churchill, roosevelt and stalin meet in 1945",Yalta,General,Who discovered victoria falls,David livingston -Geography,What is the capital of Niger,Niamey,Entertainment,"What is the destination of the plane at the end of the film ""Casablanca""?",Lisbon,Food & Drink,What is the French name of the pate made from goose or duck liver? ,Pate de Foie Gras  -Music,"Which British Rock Band Launched A Record Label Named ""Bludgeon Riffola"" In The 1980's",Def Leppard,General,What's unusual about the ink used to print money,It's magnetic,General,What is produced when a magnetic chip is put under a magnetic field,Magnetic bubble -General,Which city is the capital of the Italian region of Tuscany,Florence,General,US tennis open held at Flushing Meadows used to be where,Forest Hills,Science & Nature," 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 -General,Which nation has the longest predicted life expectancy for both men and women,Liechtenstein,General,Name of Shakespeare's simple constable in Measure for Measure,Elbow,Music,In 1998 A World Albums Chart Was Introduced For The First Time Which Soundtrack Was The First No.1,Titanic -General,"Who sang the song ""The Way I Am""?",Eminem,General,Who was the first Archbishop of Canterbury,St. augustine,General,In the Harry Potter books what is Aragog,Chief Spider -General,If you have a Barr test what was tested,Your Sex - in athletics,General,In which disney film is the song 'so this is love',Cinderella,General,What is the largest of the great apes,Gorilla -General,"Spectacles for entertainment, usually with allegorical or mythological themes, performed by the aristocracy in the sixteenth and seventeenth centuries, combining music, recitatives and mime.",Court ballet,Music,"How many pictures of each Beatle are on the cover of ""A Hard Day's Night""?",Five,Geography,What is the capital of Maine,Augusta -General,"Capital city of Quebec, Canada",Quebec,General,Which Famous Novel Begins With The Line “ It Was A Bright Cold Day In April And The Clocks Were Striking Thirteen ”,George Orwell 1984,General,Writer who created Hannah Massay Maggie Rowan Tillie Trotter,Catherine Cookson -Food & Drink,What Is The Most Expensive Spice ,Saffron ,General,What was Louise Joy Brown the first of,Test tube baby,General,In 1901 which brand of car was seen for the first time,Mercedes -General,Pop a 12 ounce can of soda pop contains the equivalent of how many teaspoons of sugar,Nine,General,What is the magazine of the Jehovah's Witnesses called,The Watchtower,General,Who Wrote A 2003 Children's Story Called “The English Roses”,Madonna -Music,High on the Happy Side was a No1 album for which band in 1992?,Wet Wet Wet,General,"What kind of plants are chervil, borage & thyme",Herbs,General,What is the fear of taking tests known as,Testophobia -General,What does the Latin phrase Ex Mores mean,According to Custom,General,What was the name of Sancho Panza's donkey,Dapple, Geography,Name the desert located in south-east California.,Mojave -General,What is a female calf,Heifer,Music,"""Till There Was You"" was originally from which Broadway musical?",The Music Man,General,Badlands is a feature of which American state,South dakota -General,There are over 32000 known species of what in the world,Spiders,General,Which film followed the career of athletes Eric Henry Liddell and Harold Abrahams,Chariots of fire,General,To nearest 1000 in 1800 how many wild turkeys were in Turkey,None it’s a native US bird -General,What does it say on the bottom of New Jersey license plates,Garden state,General,A 3 1/2' floppy disk measures ___ & 1/2 inches across.,Three,General,What underwater explosive missiles are shot from a submarine,Torpedoes - Geography,What is the capital of Belarus ?,Minsk,General,"In Egyptian mythology, what sort of creature was Apis",Bull,General,What type of vehicle was Charles Rolls (Rolls_Royce) in when he died,Aeroplane -General,Mao Muka Neko Pisica are what Chinese Gypsy Japan Ruman ia,Cats 4 languages,General,"Loafers, espadrilles and brogues are all types of what",Footwear,General,Which city is served by Fornebu airport,Oslo - History & Holidays,"Introduced in 46 BC by Julius Caesar, how many months was the Julian calendar divided into? ",12 ,General,Until at least 1980 the country of bhutan had no what,Telephones,General,"Where is the ""winter carnival"" held",Quebec -General,By Law - Nebraska Barbers can't do what between 7 am 7 pm,Eat Onions,General,Which countries name comes from the Arawak word for central,Cuba,General,The Wheel Spins Ethel Lina White basis for what Hitchcock film,The Lady Vanishes -General,Sociophobia is the fear of,Society,Entertainment,"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,General,"On Television In 1972 ""Nancy Wilkinson"" Became The First Person Ever To Do What",Win Mastermind -General,Which US vehicle company has a bulldog as its symbol,Mack trucks,Art & Literature,Who Composed The Ballet (The Nutcracker) ,Tchaikovsky ,General,The IHF govern what sport,International Handball Federation -Geography,"The longest main street in America, 33 miles in length, can be found in Island Park, __________",Idaho,People & Places,Which Norwegian explorer's ships included Fram and Maud? ,Roald Amundsen ,Food & Drink,"What drink comprises Rum, Coconut Milk and Pineapple? ",Pina Collada  - Geography,What 'I' was once Mesopotamia?,Iraq,General,From Which Country Did The Game Of Chess Originate?,India,General,Which group of people produces the Watchtower magazine?,Jehovah's Witness -General,"Around 3000 bc, what writing system originated in sumer",Cuneiform,Science & Nature,By What Process Does A Plant Convert Sunlight Into Energy? ,Photosynthesis ,Geography,What is the capital of Belgium,Brussels -General,Where is sclerotinite found,Coal,General,Lightweight tropical American wood used for making models,Balsa,General,Jeff Bezoz Is The Founder Of Which Giant Internet Based Corporation,Amazon -General,What is a group of this animal called: Oxen,Yoke drove team herd,General,What series was voted the best fiction of the 20th century,Lord of the Rings,General,Alphabetically what is the first element in the periodic table,Actinium - History & Holidays,Who Released The 70's Album Entitled Next ,The Sensational Alex Harvey Band ,General,Which creature do Eskimos (or Inuit) call a nanook,Polar bear,General,Leonato is the main character in what Shakespeare play,Much ado about Nothing -General,What Device was Invented By Rune Elmqvist & Åke Senning in 1958 ?,The Pacemaker,General,What is the fear of otters known as,Lutraphobia,Toys & Games,Atari competitor that featured better graphics.,Intellevision -Entertainment,What comic strip character is Beetle Bailey's sister?,Lois (of Hi and Lois),General,Who composed 'Peer Gynt'?,Edward Grieg,General,How much 'monopoly' money do you collect for finishing second in a beauty contest,Ten dollars -General,Honshu is the largest island of which country,Japan,General,Placophobia is the fear of,Tombstones,General,"What is the French term for ""d day""",J -General,What did Marlon Brando and George C Scott refuse,Oscars,General,"Price is right music: who recorded ""sos""",Abba,Science & Nature,What Causes The Inflammation Resulting From Touching A Stinging Nettle? ,Formic Acid  - History & Holidays,Which actress played the role of Samantha stevens in the tv show bewitched and for a bonus point who played her in the 1990 movie version ,Elizabeth Montgomery & Nicole Kidman ,Food & Drink,What is a `Blenheim Orange'? ,Eating Apple ,General,"In Greek mythology, who was oedipus' mother",Jocasta -General,Whose autobiography is entitled 'Part My Soul',Winnie mandela,Food & Drink,What ingredient is used to flavour Amaretto liqueurs and biscuits? ,Almond ,General,In Baldwin Park California where is it illegal to ride your bike,In a Swimming Pool -Science & Nature,"There are three types of rocks: metamorphic, sedimentary, and _________.",Igneous,Music,"Who Had A Hit In 1967 With ""When You're Young And In Love""",The Marvelettes,Art & Literature,"A technique of engraving, using a sharp-pointed needle, that produces a furrowed edge resulting in a print with soft, velvety lines. ",Drypoint -Geography,This section of Manhattan is noted for its Negro and Latin American residents.,Harlem, History & Holidays,Spain ceded Florida to Britain in exchange for this territory.,Cuba,General,What name did Kresge's end up with,K mart k mart kmart -General,In what game does the new york institute for the investigation of rolling spheroids specialize,Marbles,General,"Who created the characters ""The Toff"" and ""The Baron""",John creasey,General,What is the flower that stands for: return of happiness,Lily of the valley -General,"Written by Lennon and McCartney, what, in 1963 was the first rolling Stones' single to enter the top twenty",I wanna be your man,General,"What links Duke Wellington, Earl Derby, Marquis Salisbury",UK Prime Ministers,Music,Who Sung About Russians In 1985 And An Englishman In 1988,Sting -Geography,Which Bridge Connects Europe With Asia ,The Galata Bridge Over The Bosphorus In Istanbul ,General,What star's memphis home was bruce springsteen refused entry to in 1976,Elvis presley,Food & Drink,What Are The Ingredients Of A Pina Colada ,"Rum, Pineapple Juice, Coconut Milk " -General,What animals evidence is admissible in US courts,A Bloodhound,General,Westminster Abbey is dedicated to who,Saint Peter,General,How did sonny bono die,Skiing accident -General,"Who said - ""The bigger they come the harder they fall"" 1899",Bob Fitzsimmons,Food & Drink,Which fruit goes into the liqueur Kirsch? ,Cherry ,General,What is the oldest registered trade mark still used in USA,Red Devil Undewoods devilled ham -Music,Amount Beatles received to play The Ed Sullivan Show,"$3,500 ",General,Who composed the opera The Flying Dutchman in 1843,Richard wagner,General,Which painter did Hans van Meegeren most fake,Vermeer -General,"What is the Capital of: Micronesia, Federated States of",Palikir,General,What is the currency of Austria,Schilling,General,"State in the east central U.S., bordering the Ohio River",Kentucky -Geography,What is the capital of Turkey,Ankara,General,In the Flintstones Dino was Fred's pet who was Barnie's,Hoppy,Science & Nature,"What Do Squids, Snails And Oysters Have In Common? ",They Are All Molluscs  -General,Shu was an Egyptian God of what,The Air,General,Who was the third president of Singpore,Devan nair, History & Holidays,Which war did the signing of an armistice on 27th July 1953 end? ,Korea  -Music,"Which member of Guns 'n' Roses was born in Stoke, England?",Slash,General,What is the nickname for Tennessee,Volunteer state,General,"What river snakes through Germany, Austria, Slovakia, Hungary, Serbia, Romania, & Bulgaria",The danube danube danube river the danube river -General,"In the Star Trek: Deep Space Nine series, name the Ferengi owner of the bar on Deep Space Nine",Quark,General,What animal appears on the label of Levi 500 jeans,Horse,General,All PCs have a BIOS what does bios stand for,Basic Input Output System -General,Reno The assassination of what country's Archduke led to World War I,Austria,Geography,What is the capital of Rwanda,Kigali,General,What is the most reliable geyser in the world,Old faithful - History & Holidays,What Was The Name Given To Textile Workers Who Opposed Modernisation During The Nineteenth Century? ,Luddites ,General,Shrub with flowers attractive to butterflies,Buddleia,General,Eddie Slovak only American to do what 31/01/1945,Executed desertion WW2 -Music,What was John Lennon's real middle name?,Winston,Sports & Leisure,"What sport do the following terms belong to - ""Tight End & Wide Receiver""?",American Football (Gridiron),General,Who released a chart-busting album in 1976 which featured 'the lido shuffle',Boz scaggs -General,In any given 6 month period 40% of Americans are what,Affected by mental Illness,General,What is a wether,A castrated ram,General,Give another name for the Gnu,Wldebeest -General,Rudolph Valentinos movie premiere was in which year,1921,General,In 1931 what was the first live televised sporting event in the UK,The Derby, History & Holidays,Who Was The 1st wife of henry Viii ,Catherine Of Aragon  - History & Holidays,"Who was made Lord Mayor of London in 1397, 1398, 1406 and 1419? ",Richard (Dick) Whittington ,General,What is used in a field to ward off unwelcome birds,Scarecrow,General,Popular Canadian term for the Liberal Party.,Grits -General,Who were the second pair of astronauts to set foot on the moon?,Conrad and Bean,Geography,Which state is the Garden State,New jersey,Geography,This country is divided at the 38th parallel.,Korea -General,What is podobromhidrosis,Smelly feet,Science & Nature," Thinking that its parents were a camel and a leopard, the Europeans once called the animal a ""camelopard."" Today, it is called the __________",Giraffe,Sports & Leisure,What sport do the Harlem Globetrotters play?,Basketball -General,"Who recorded ""Mama Don't Lie"" in 1963",Jan bradley,Art & Literature,Who Wrote The Play (Hay Fever) ,Noel Coward ,General,These were invented - 51 years later us president got one - what,Telephone on his desk -General,Which TV series linked the real-life spouses of film stars William Holden and Natalie Wood ,Hart to Hart (Stephanie Powers and Robert Wagner) ,General,What is the international cry for help?,Mayday, Geography,In what state is Silicon Valley?,California -General,The Dogs of War took its title from which other work,Shakespeare's Julius Caesar, History & Holidays,What did British Honduras change its name to in 1973? ,Belize ,General,Official taxis in New York are what colour,Yellow -General,Which actor wore an old trenchcoat in one scene in all his films,David Niven,General,Who did charlie becker play in 'the wizard of oz',The mayor of the munchkins, History & Holidays,"How Was Mistletoe Known By The Vikings Who Discovered It, Was It Snow Berries, Love Berries, White Tear Drops Or Dung on A Stick? ",Dung On A Stick  -General,In Scandinavian mythology what is the day of final doom called,Ragnerok,General,Who was voted most popular film performer in the USA in 1926,Rin Tin-Tin,General,What kind of animal is Jormangard in Norse mythology,Serpent -Music,Who Played Lead Guitar And Sang Backing Vocals On Champagne Supernova,Paul Weller,General,Which artist painted The Fighting Temeraire,Joseph Mallard William Turner,Geography,"In Which Century Was The Canal Du Midi Opened, Connecting The Atlantic To The Mediterranean Sea ",Seventeenth (1681)  -General,In what city was Mozart born,Saltzberg,Geography,Approximately What Percentaage Of The Earths Surface IS Covered In Water ,71% ,General,Napka currency Ismara official capital which African country,Eritrea -General,Montpelier is the capital of which American state,Vermont, History & Holidays,What was Operation Sea Lion in WWII?,The Invasion of Britian,Music,"Which 3 Artists Performed On The 1987 Hit ""What Have I Done To Deserve This""","Neil Tennant, Chris Lowe, Dusty Springfield" -General,With what type of reference book is Joseph Whitaker associated,Almanack,General,In France Pate De Grives a la Provencal is made from what,Thrushes,General,Kenneth Weekes nick Ban Ban born Boston only US do what,Play Test match cricket West Indies -General,What was the name of the multi-colored cube you had to re-organize?,Rubik Cube,Science & Nature,What is the term for the path followed a by a small body around a massive body in space?,Orbit, History & Holidays,"In The Original 1984 Band Aid Song, 'Do they Know It's Christmas'', Who Sang The First Line ",Paul Young  -General,On Average a West German goes 7 days without doing what,Washing his underwear,Sports & Leisure,In Which Country Were The Summer Olympic Games Held In 2008 ,Beijing / China ,Music,Which Country Did The Bachelors Come From,Ireland -General,Whats the best known artificial international language,Esperanto,General,Who wrote Moll Flanders,Daniel defoe,Music,The Radio 1 Dick Jockey Michael Pasternak Used What Regal Pseudonym,Emperor Rosko -General,What South American country takes its name from the latin for silvery,Argentina,Science & Nature,What gives leaves their colour ?,Chlorophyll,General,"Generals Gowon, Abasanjo and Abacha have all been leaders of which African State",Nigeria -General,"What did the ""P"" in Roscoe P. Coltrane (from Dukes of Hazzard) stand for?",Purvis,General,What is the fear of poetry known as,Metrophobia,General,What is another name for Mount Godwin Austen,K2 -Music,Jenny & Lyn Beggren Are Singers With Which 90's Group,Ace Of Base,General,Who sang 'good morning to you,Mildred and patty hill,General,25% of women regularly do what,Shave off pubic hair -General,Which Arthur Miller play uses the witch trials of Salem to comment on the so called McCarthy witchhunts,The crucible,General,"What remote region of Russia borders China, Kazakhstan & Mongolia",Siberia, Geography,What is the capital of Estonia ?,Tallinn -Music,Which was the first group beginning with the letter V to have a No.1 hit in the UK?,The Village People,General,Astrophobia is a fear of ______,Stars,General,John Benyon Harris became famous as what S F writer,John Wyndham - History & Holidays,"Bashful, Doc, Dopey, Grumpy Are 4 Of The Seven Dwarfs Name The Other 3 (PFE) ","Happy, Sleepy, Sneezy ",Music,Who Performed At Live Aid In A Wheelchair Making His First Live Appearance Since Being Partially Paralysed In A Car Crash,Teddy Pendergrass,General,Which film won the best song Oscar in 1971,Shaft - The theme from Shaft -General,On which circuit is the Portuguese grand prix held,Estoril, History & Holidays,What Does Dracula Actually Mean ,Son Of The Devil Or Son Of A Dragon ,General,What is desserts backwards,Stressed -General,"The Pentagon, in Arlington, Virginia, has twice as many __________ as is necessary",Bathrooms,General,What was the name of Arnold's fish on Different Strokes?,Abraham, Geography,What is the basic unit of currency for Marshall Islands ?,Dollar -General,What animal rests in a form,Hare,General,The Primes and The Distants merged to form what group,The Temptations,General,The house of Aviz was a royal dynasty associated with which country?,Portugal -General,What Everyday Device Was First Patented In 1885 By E.J Claghorn?,The Seat Belt,Music,In 1993 Who Had A Hit With The Song “ This Is It ”?,Danni Minogue,Entertainment,Who shot Bruce Wayne's parents?,Chill -General,Thomas Caneery writer Schlinders Ark comes from what country,Australia,Science & Nature,Earth's outer layer of surface soil or crust is called the _______.,Lithosphere,Science & Nature," A plaice, a large European flounder, can lie on a checkerboard and reproduce on its upper surface the same pattern of squares, for __________",Camouflage -General,In what literary work would you find the yahoos,Gulliver's Travels,Food & Drink,What Are Cos & Density Both Types Of ,Lettuce ,General,Where was the worlds first televised baseball game,Tokyo -General,Who painted the Rockerby Venus,Velazquez,General,Randolph Crane became famous as which cowboy actor,Randolph Scott,General,Which film won the best sound effects Oscar in 1987,Robocop -General,What is the sequel to the film 'every which way but loose',Every which way,Entertainment,Whose theme song was Back In The Saddle Again?,Gene Autry's,General,What is the fear of long words known as,Sesquipedalophobia -General,Name the X man who shoots laser beams from his eyes,Cyclops,Science & Nature,What is the meaning of the name of the constellation Triangulum ?,Triangle,General,The locals call it Druk Yul - Land of the Dragon what country,Bhutan -General,"Who wrote ""valley of the dolls""",Jacqueline susann,General,Of which cambodian party was pol pot the leader,Khmer rouge,Music,"Gary Webb Had A Top Ten Hit On Both Sides Of The Atlantic With ""Cars"" How Is He Better Known",Gary Numan -General,Illustrator Sydney Paget created the trademarks of who,Sherlock Holmes Deerstalker,General,In which Spencer Tracy film was a teacher accused of teaching the theory of evolution,Inherit the wind,Music,Which Song Was A Hit For Both Elvis Presley & UB40,Can't Help Falling In Love With You -General,357 UK roads are specially marked to protect what,Toads during mating season,Geography,To what country do the Faeroe Islands belong,Denmark,General,What is the literal translation of the Latin word 'video'?,I See -Entertainment,What is Blondie's maiden name,Oop,General,What is the literal meaning of the word 'cenotaph',Empty tomb,General,What aria from Madam Butterfly is a Michelle Pfeiffer 1996 film,One fine Day -General,What is Kimogayo in Japan,National Anthem,General,Phonetically spelled out what does Esso mean in Japan,Stalled Car,General,Pentlandite is the main ore providing which metal,Nickel -Science & Nature," Of the 250_plus known species of shark in the world, only about 18 are known to be __________",Dangerous to man,General,December 73 Switzerland has 6.6 million people 81 were what,Unemployed,Toys & Games,How many dots are there on a pair of dice?,Forty two -General,What's the triangular Indian pasty containing spiced meat,Samosa,General,Verdi's opera Aida is set in what country,Egypt,General,What happened French President Fronsois Faure on dying 1899,Whore contracted so had to cut off penis -Music,Shorty Long Had A Short Solo Career With Which Tamia Motown Classic,Here Comes The Judge,Geography,What Is The Second Smallest Sovereign State In The World ,Monaco ,General,Solzhenitsyn What were Christmas tree icicles originally made from,Lead -Science & Nature,"After a bolus has been digested in the stomach, it is called ______ as it moves into the small intestine.",Chyme,General,Robert Fulton Was Ther Very First Person To Sucessfullyy test Which Form Of Transport,The Submarine,Food & Drink,Which TV soap features a short chocolate animation at the beginning of each episode? ,Coronation St.  -General,"There are more statues of ________, Lewis & Clarks female indian guide, in the U.S. than any other person",Sacajewa,General,Which Television Show Featured The First Ever Interracial Kiss To Be Broadcast On TV?,Star Trek,General,Where was entertainer john candy born,Toronto -Science & Nature,Which world champion was beaten by a machine called Deep Blue in 1997? ,Gary Kasparov (Chess) ,General,This Alcatraz inmate was provided with identity 325,Alvin karpis,General,Who Took Over As Presenter Of News At Ten After Trevor McDonald Retired In 2005,Mark Austin -Sports & Leisure,In Which Country Is The Monza Motor Racing Circuit? ,Italy ,General,The firefly depends on sight to find ______,Mate,Music,Which Trumpter Born In 1961 Enjoys Equally Successful Jazz & Classical Careers,Wynton Marsalis -General,In Wacky Races who drove the Turbo Terrific,Peter Perfect,General,Halifax is the capital of ______,Nova scotia,Science & Nature,Dogs bark. What do donkeys do?,Bray -Science & Nature,Which Is The Most Intelligent Breed Of Dog? ,The Collie ,General,Easy question: type the alphabet,Abcdefghijklmnopqrstuvwxyz,Food & Drink,Which Italian phrase is used to describe pasta cooked only until it offers a slight resistance when bitten? ,Al dente  -General,What is the name of Dr. Seuss's egg hatching elephant,Horton,General,What is a group of birds flying,Flight,General,"In mythology, who tamed the winged horse Pegasus",Bellerophon -General,In the Bible who was the father of Abraham,Terah,General,What is the name of the whale that swallowed Pinocchio,Monstro,General,What did gail borden give to the world in 1853,Condensed milk -General,How would you feel if you were forswanked,It means very tired,Geography,What is the capital of Lithuania,Vilnius,People & Places,Whaat Is Paddy Ashdown First Name ,Jeremy  -General,The national bird of India is the?,Peacock,General,What creature has seven penises assorted shapes sizes,Cockroach,Geography,The nation of ______________ has an AK_47 assault rifle on its flag.,Mozambique -General,"Who recorded the album ""nine tonite""",Bob segar,General,Brian Eno created which sound,Windows 95 start-up,Geography,What is the capital of Ecuador,Quito -General,Rodin's The Thinker is really a portrait of what Italian poet,Dante,General,What did Archie Bunker on 'All In The Family' call his son-in-law Mike?,Meathead,Food & Drink,What Type Of Food Is Pepperoni? ,Spiced Sausage  -General,"In November 1981, Diana Ross had a number one hit with the duet 'Endless Love'. Who was her co-singer",Lionel ritchie,General,What is the nearest galaxy to the Solar System?,Andromeda,General,Who wrote 'No man is an island___never send to know for whom the bell tolls; it tolls for thee',Donne -General,Absolutely pure ____ is so soft that it can be molded with the hands,Gold,Music,"""Would I Lie To You"" & ""Here Comes The Rain Again"" Were Hit Songs For Which Famous Band",The Eurythmics,General,What does a Grabatologist collect,Ties - History & Holidays,This Sioux Indian toured with Buffalo Bill's Wild West Show.,Sitting bull,Art & Literature,What was Picasso's first name? ,Pablo ,General,Delage guy delage claimed to be the first person to swim across which ocean,Atlantic ocean -Music,Cantonese Boy Was Between 2 Top Ten Hits In Which Early 80's Bands career,Japan,Science & Nature,What type of creatures are slugs and snails? ,Gastropods ,General,Ennio Morricone wrote the music for what film series,Good bad ugly etc Spaghetti westerns -Science & Nature,What Are Oak Apples? ,Wasp Eggs ,General,Which is the world's warmest sea,Red sea,General,Who wrote 'the dragons of eden',Carl sagan -General,Who was the original choice to play the terminator,O J Simpson,General,What did Emily Davidson do,Suicide under kings horse 1913,General,Where do ants live,Fornicary -Art & Literature,"Which US author penned the novels ""Of Mice and Men"" and ""East Of Eden""?",John Steinbeck,General,Complete the title of the Umberto Eco book 'The Name of the_____,Rose,General,What is the longest muscle in the human body,Sartorius -General,If You Rolled A 4 On Your First Throw In a Game Of Monopoly What Square Would You Land On,Income Tax,General,"Which sport uses the terms knuckleball, cycle, and bunt",Baseball,General,In Vancouver a city law says all cars must carry what,An Anchor – Emergency brake -General,"Dodgers what famous singer played the title role in ""the great caruso""",Mario lanza,General,What city boasts a world of coca cola pavilion featuring futuristic soda fountains,Atlanta,General,What animal has a prehensile penis,Dolphin -General,"Other than meat, what is also known as a leg of mutton",A kind of sleeve,General,The science of life,Biology,General,Whose first novel was Where Angels Fear to Tread,E m forster - History & Holidays,Who Wrote The Book Alice In Wonderland ,Lewis Carrol ,General,Which country invented Venetian Blinds,Japan,General,36-inch tall Charles Sherwood was better known as __________,General tom thumb - Geography,What is a peanut if it is not a pea or a nut?,Legume, History & Holidays,What time does the train arrive in Hadleyville ? Clue. 'A mans gotta do what a mans gotta do' ,High Noon ,General,In Christian myth man was created from dust what in Islam,Clots of Blood -General,What does a taxidermist do,Stuff animals,General,What did the big bang create,Universe,General,According to a 1997 survey what nation are the best kissers,Italian -Science & Nature,The second space shuttle was named __________.,Challenger,General,What is a government in which power is restricted to a few,Oligarchy,General,What was the Titanic's last port of call,Queenstown Cobh (1922) Cork -General,Where do the English monarchs live?,Buckingham Palace, History & Holidays,What pre-tv radio show turned film caused people to commit suicide when it was first aired?,War Of The Worlds,General,Who was born on krypton,Superman -Geography,What is the capital of Solomon Islands,Honiara,General,At her beheading Marie Antoinette wore what colour shoes,Purple,General,Any object worn as a charm may be called a(n) ______.,Amulet -Science & Nature,What metal do you get from Hematite?,Iron,General,Alamein how many Ringling brothers were there,Five,General,Where did skylab crash land,Australia -Food & Drink,In which country would you expect to be served a yoghurt-based starter called 'tzatziki'? ,Greece ,General,What name is used by Private Eye when referring to the Queen,Brenda,General,What cult film made an instant star out of a rotund rocker named Meat Loaf,The Rocky Horror Picture Show -General,Which natural phenomenon can be measured on the Mercalli scale,Earthquakes,Sports & Leisure,What Horrific Sporting Event Took Place On Saturday The 28 th June 1997 ,Evander Holyfields Ear ,Science & Nature,What is the ocean of air around the earth called?,Atmosphere -General,By law every Swiss citizen must have access to what,Personal bomb shelter,General,"Who was the lead singer and principal songwriter with the American pop group ""Bread""",David gates,General,"Which group featured in the film ""Four Weddings and a Funeral""",Wet wet wet -General,Who was the first woman to win an Oscar best actress 1928,Janet Gaynor, History & Holidays,"If one takes inflation into account, which 1960's film was the most expensive film ever made ? ",Cleopatra 'On your knees!!!' ,General,What film won the best makeup Oscar in 1988,Beetlejuice -General,Scotomaphobia is the fear of,Blindness in visual field,General,Which element derives its name from the Greek for 'bringer of light',Phosphorus,General,From which fish is caviar obtained,Sturgeon -General,What was Thin Lizzies first hit in 1973,Whiskey in the Jar,Geography,Name the largest city in Canada,Toronto,General,"Who sang the song ""Desert Rose""?",Sting -General,The effect produced when sound is reflected back is known as a(n) ____.,Echo,General,Who sat on the bench for the Simpson murder trial,Judge ito,General,In Tarka the Otter what was Old Nog,A Heron - History & Holidays,What was the name of the paperboy whose 1978 murder sparked a massive manhunt by British police? ,Carl Bridgewater , History & Holidays,Legendary magician Harry Houdini died in Detroit on Halloween in 1926 but what caused his death was it A Trick went wrong B Heart Attack or was it C Ruptured Appendix ,C Ruptured Appendix , Geography,What is the basic unit of currency for Netherlands ?,Guilder -General,What is the most popular type of holiday greeting card mailed in the U.S.,Christmas,General,In Greek Myth who solved the riddle of the Sphinx,Oedipus,Music,Frank Sinatra Topped The UK Singles Charts Just 3 Times With 3 Songs PFE,"3 Coins In A Fountain, Strangers In The Night, Something Stupid" - History & Holidays,"In 1975, what re-opened after an 8 year closure?",Suez Canal,Science & Nature,Which two initials are used to describe Chronic Fatigue Syndrome? ,ME ,General,What type of animal is a caribou,Deer -General,"When honey is swallowed, it enters the blood stream within a period of how many minutes",20 minutes,General,What links tulip balloon and flute,Types of glasses,General,In what European city is the Tower of Belem?,Lisbon - History & Holidays,In which country do some people eat long noodles to to wish for a long life? ,Japan , Geography,What is the basic unit of currency for China ?,Yuan,Music,Name The Son Of John Lennon & Yoko Ono,Sean Lennon -Music,Michael McNeil & Charles Burchill Are Members Of Which Band,Simple Minds,General,In Islamic law after having sex with a lamb mortal sin to do what,Eat its flesh,General,Monopathophobia is the fear of,Definite disease -General,In Alaska it's legal to shoot bears but illegal to do what,Wake up for photo,General,In which French city did the German Army surrender on the 7th May 1945,Rheims,General,What is a red blood cell,Erythrocyte -Tech & Video Games,In which Mega Man game did Mega Man first gain the ability to charge up his shots? ,Mega Man 4,Music,What Question Did Lenny Kravitz Ask To Take Him To No.4,Are You Gonna Go My Way,General,What is a Flemish Giant,Rabbit -General,"Brief commemorative inscription on a tomb; also, a short piece of poetry or prose lauding a deceased person",Epitaph,General,Where is John Frost bridge shown on A Bridge too Far,Arnham - it was renamed after him,General,What is the former name of Zaire,Belgian congo -General,"A _______ is the only standard international unit of measure still defined by a physical object, a bar composed of two elements",Kilogram,General,What is the red substance eastern woodland nativeAmericans used in their war paint called,Vermillion,General,What sort of body fat produces a dimpled effect on the skin,Cellulite -Sports & Leisure,Who won the 2001 FA Cup?,Liverpool,Science & Nature, February is the mating month for __________,Gray whales,General,"In ballet, the position of the arms.",Port de bras -General,Who painted Starry Night,Vincent van gogh,Music,"Which Detroit Producer Has Used Pseudonyms Such As 69 Psyche, Paperclip People & Innerzone Orchestra",Carl Craig,General,In card games what name is given to the most important suit,Trumps -Science & Nature,What Herb Do Cats Love? ,Catnip/ Cat Mint ,General,Lachanophobia is the fear of what,Vegetables,Sports & Leisure,"Straight, Eight Ball And Nine Ball Are Varieties Of Which Game ",Pool  -Music,"Who Had Hits With ""Kiss Me Deadly"" & ""Close My Eyes Forever""",Lita Ford,General,"Taking its name from the adjacent country, which channel lies between mainland Africa and Madagascar",Mozambique channel,General,A person who believes that the existence of God is not provable,Agnostic -General,Which Daniel Defoe character was born in Newgate Prison,Moll flanders,General,The Roman philosopher Seneca was tutor to which emperor,Nero,Science & Nature," Lemon sharks grow a new set of teeth every two weeks. They grow more than 24,000 new __________ every year.",Teeth - History & Holidays,What Is The Name Of The Summer Camp In The Friday The 13th Movies ,Camp Crystal Lake ,General,In Hindu Castes Brahmins were priests what were Varsyas,Farmers,General,Roy Rogers girlfriend Dale Evans rode what named horse,Buttermilk -General,Silvio Gazzangia Is Responsible For The Design And Creation Of What,The World Cup,General,Which mammal has the fewest teeth,Armadillo - none,General,What is found in one third of American homes,Scrabble -Food & Drink,What is the chief food for half the people in the world? ,Rice ,General,From which part of a tree does turmeric come,Root,Science & Nature,"The insect class ""hymenoptera"" includes ants and these colonial honey-makers.",Bees -General,Who is schroeder's favourite composer,Beethoven,General,What is an amulet,Lucky charm,Music,Which Band Did Siobhan Fahey Form After Leaving Bananarama?,Shakespeare Sister -General,"For what was the last person hanged in the american colonies september 22, 1692",Witchcraft,Music,Who is David Robert Jones better known as?,David Bowie, History & Holidays,Who presided over the trial of Jesus?,Pontius Pilate -General,"Who was the original singer of Los Lobos' 1987 hit ""La Bamba""?",Ritchie Valens,General,If you had Psygophillia what would arouse you,Contact with buttocks,General,Breakfast at Tiffanies - famous film - who wrote the book,Truman Capote -General,"Who's Autobiography Is Called ""True""?",Martin Kemp,General,In Bonanza Hoss Cartwright was afraid of what,The Dark, Geography,What Canadian city is at the west end of Lake Ontario?,Hamilton -General,What is the cardinal number for a set of 10 elephants,Ten,General,"Who was told they ""better think"" in the Blues Brothers?",Guitar Murphy, History & Holidays,Name the eighties sitcom in which Bob Ueker was upstaged by an obese butler regularly. ,Mr. Belvedere  -General,64% of American teenagers have what in their bedrooms,Television,Food & Drink,What was the weekly butter ration during the second world war? ,Four ounces ,Food & Drink,Which drink was once advertised with the slogan: 'I'm only here for the beer'? ,Double Diamond  -Entertainment,Who released a chart-busting album in 1976 which featured 'The Lido Shuffle'?,Boz Scaggs,Entertainment,"Who portrayed Moses in ""The Ten Commandments""?",Charlton Heston, History & Holidays,What Was Baron Manfred Von Richthofen Also Known As? ,The Red Baron  -Science & Nature, The average life expectancy of a rhinoceros in captivity is __________,15 years,Science & Nature,What Colour Is Sonic the Hedgehog? ,Blue ,General,The average Britain in their lifetime eats 5400 what,Bags Crisps - chips -Entertainment,What was Lucy's maiden name on 'I Love Lucy'?,McGillicuddy,Toys & Games,"In Monopoly, What is the cost to buy New York Avenue",200,General,"Which Singer/Songwriter Founded The Record Label ""Respond"" Which Lasted (1981-1986)",Paul Weller -General,In what country did the Sabines live,Italy,Music,With Which Band Was David Johansen Lead Singer,The New York Dolls,General,"In the 1938 film 'Bringing Up Baby', what was Baby",Leopard -General,What is the fear of words known as,Logophobia,Music,"In Which Year Did Rod Stewart Deliver ""Baby Jane"", 1983, 1984, 1986",1983,Entertainment,"Name the band - songs include ""Add It Up, Blister In The Sun, Kiss Off""?",Violet Femmes -General,What is a group of goats,Tribe,General,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,General,What job did the pianist Paderewski hold in the newly created state of Poland,Prime minister - History & Holidays,In which city were the Hanging Gardens,Babylon, History & Holidays,What Was Deciphed As A Result Of The Discovery Of The Rosetta Stone? ,Hieroglyphics ,General,What is the fear of puppets pyrexiophobia known as,Pupaphobia -General,What is it when five or fewer water molecules bond tightly together in a ring,Cluster,Geography,What is the capital of South Korea,Seoul,Entertainment,What was the name of the pinball machine in the film 'Tommy'?,Wizard -General,Who was with patricia hearst the night she was kidnaped,Steven weed,General,What is a young hare called,Leveret,Food & Drink,What is the name of the irish whiskey illicitly made from barley? ,Poteen  -General,"In Greek mythology, who was the hunter who was torn apart by artemis' dogs",Actaeon,General,Bridgetown the capital of ______,Barbados,General,The Mau Mau were terrorists in which country late 50s early 60s,Kenya -General,What is new brunswicks highest point at 820 m,Mount carleton, History & Holidays,What United States president was in office during the civil war?,Abraham Lincoln,General,How many degrees are all the angles in a square,360 -General,Who sang 'that's alright mama',Elvis presley,General,In which film did henry fonda play a fallen priest,The fugitive,General,In Texarkana it’s illegal to ride a horse at night without what,Tail Lights -Music,Which Sean Maguire Track Re-Entered The Charts In 1994,Take this Time, History & Holidays,Who Was England's Manager In The 1970 Football World Cup Finals ,Sir Alf Ramsey , History & Holidays,"If an Italian gave you Smeg for a present, what would it be? ",A Kitchen Appliance  -General,Which is the largest of the Canadian Provinces and Territories,Northwest territories,General,Who starred in the film version of 'to kill a mockingbird',Gregory peck, History & Holidays,Who did Squeaky Fromme try to assassinate?,Gerald Ford -Music,Name The Owner Of Sun Records,Sam Phillips, History & Holidays,What happened at 2:56 on the 21st July 1969 ?,First Manned moon landing,General,In what part of the body are rabies injections given,Abdomen -General,Why could William Tell not have shot the apple with a crossbow,Crossbow not known 13th century,General,What does c.o.d. mean in the business world,Cash on delivery,General,Preparing to invade Japan in WW2 the US ordered 400000 what,Purple Hearts -General,Who was the losing Republican candidate in the 1964 U.S. Presidential Election,Barry goldwater,General,What is the opposite of a utopia,Dystopia, History & Holidays,Complete this quote: 'I feel the need___ the need for___' ,Speed  -General,Where is Montevideo,Uraguay,General,What is the weight at the end of a pendulum,Bob,General,In which American state is Pittsburgh,Pennsylvania -General,"What cocktail is made from triple sec, tequila and lemon or lime juice",Margarita,Music,Name Iron Maidens Famous Mascot (Depicted On The Cover Of Sanctuary) Standing Over Margaret Thatchers Decapitated Body,Eddie,General,Silvester in Germany is what day in USA / England,New Years Eve -Music,In Which 80's Band Was Craig Logan A Member,Bros,General,Which frontiersman died at the alamo,Davey crockett,General,Who was killed defending Quebec in 1759,Louis montcalm - History & Holidays,Which geographical location was the first word spoken on the moon? ,Houston ,General,To where do muslims make pilgrimage,Mecca,General,Independence who played george costanza on 'seinfeld',Jason alexander -General,What does a Erotophobe fear,Sexual Love,General,"Induction', 'compression', 'ignition' and' exhaust' are the main elements of what",4 stroke engine cycle,General,What Is The Name Of The Clock Tower That Houses Big Ben?,St Stephens Tower -General,At Roman feasts which birds tongues were delicacies,Flamingos,Geography,"The southernmost point in the 48 American states (excluding Alaska, Hawaii)?",Key west,General,What does ecg stand for,Electrocardiogram -General,The winter olympics were first held in which country,France,General,What is the headquarter of the British Metropolitan Police Force ?,Scotland Yard,General,Which Game is Played 15 a side and scores 3 or 1 points,Gaelic Football -General,"Who famously said ""if in doubt, tell the truth.""",Mark twain,General,What advertised phrase Born 1820 still going strong,Johnnie Walker,General,Name the first film to have its sequel released in the same year,King Kong - Son of Kong -Music,"""Mean Man"", ""The Real Me"" And ""Forever Free"" Are All 80's Tracks From Which US Band",W.A.S.P,Science & Nature,Which Organ's Action Is Replaced By Artifical Dialysis ,The Kidney ,General,From the milk of which animal is real Mozzarella cheese made,Buffalo -Sports & Leisure,Where Is The Irish Grand National Run ,Fairyhouse ,Entertainment,"What film starred Rosie O'Donnell, Rita Wilson and Meg Ryan?",Sleepless in Seattle,General,What U.S. state includes the telephone area code 516,New york -Music,"In The Song ""Oh What A Beautiful Morning"" From Oklohoma How High Does The Corn Grow",As High As An Elephants Eye,General,What is the fear of children known as,Pedophobia,General,Which rock is the result of limestone undergoing a metamorphic change due to heat and pressure in the earth,Marble -General,Which name has been most frequently chosen by Roman Catholic Popes,John,Entertainment,"Richard Strauss' majestic overture ""Also Sprach Zarathustra"" was the theme music for which Stanley Kubrick film?",2001 : A Space Odyessy,General,What is an enlargement of the thyroid,Goitre -General,What colour on black produces the most visible combination?,Yellow,General,What is a scimitar,A sword,General,In The 1920's What Was Designed By Cedric Gibbons & Sculpted By George Stanley?,The Oscar Statue -General,"What's the international radio code word for the letter ""H""",Hotel,Science & Nature, It takes a __________ approximately seven years to grow to be one pound,Lobster,General,What vegetable was considered a cure for sex problems in old Egypt,Radish -General,In mythology who married the beautiful maid Galatea,King Pygmalion Aphrodite life,Music,"Which Group Went Up The Charts In 1964 With ""Don't Bring Me Down""",The Pretty Things,General,Who were the first Australian group to sell a million records,The Seekers Ill never find another you -Art & Literature,Who wrote the shortest ever letter ?,Victor Hugo,General,What is a group of this animal called: Squirrel,Dray,General,The kinkajou belongs to what family of animals,Raccoon -General,What is the term for a full grown female horse,Mare,Music,Which Rolling Stones album featured a 3-D cover?,Their Satanic Majesties Request,General,What are young eels called,Elvers - History & Holidays,"""Macaulay Caulkin's folks left him """"Home Alone"""" in the original 1990 movie Where did they go? "" ",Paris ,Food & Drink,The drink Sake (sah'ki) comes from this country.,Japan,General,In Maryland it is illegal to take what to the movies,A Lion -General,What was nancy davis reagan's birth name,Anne frances robbins,Geography,What Are The 3 Components Called That Form The Earth ,"Core, Mantle, Crust ",General,What does lan stand for,Local area network -General,In cooking six drops equal one what,Dash,General,Who was the Supreme Allied Commander at the end of World War One,Marshal ferdinand foch, Geography,What is the basic unit of currency for Hong Kong ?,Dollar -General,What is the largest gland in the human body,Liver,Geography,Which European Country Is The Worlds Largest Producer Of Cork ,Portugal ,Science & Nature, Racehorses have been known to wear out __________ in one race.,New shoes -General,Which British Monarch Came To The Thrown On Christmas Day 1066 (Alternative),William The Conqueror,General,Who Was The First Woman To Be Shot By The FBI?,Bonnie Parker (Bonnie And Clyde ),Food & Drink,"What ""secco"" means on a bottle of Italian wine",Dry -General,Grace Metalious wrote which famous novel (and TV show),Peyton Place,General,Which Country Currently Holds The Record (2010) For The Hottest Temperature Ever Recorded,Libya,General,Which is the most populated continent in the world,Asia -General,When was the first telephone used,"March 10, 1876",General,Captain What two word term is considered the lowest possible temperature,Absolute,General,A riddle or a hard question,Conundrum -General,Into what ocean does the Zambezi river flow,Indian,Sports & Leisure,In which sport did Conrad Bartelski compete for Britain? ,Downhill Skiing ,General,"Which airline has its home base in Atlanta, Georgia",Delta -General,What countries official name is Bharat,India - in Hindi,General,What Booker Prize Winning Novelist Wrote The Slogan “That'll Do Nicely” For American Express?,Salman Rushdie,General,What is the Capital of: Barbados,Bridgetown -General,What represents the zodiac sign Scorpio,Scorpion,General,What's a block & tackle used for,Lifting weights,General,This small gland attached to the brain exerts a control over growth,Pituitary -General,Jonquil is a shade of what colour,Yellow,Geography,"Located 137 miles north of Rome, _____________ is the oldest and one of the smallest republics in the world.",San marino,General,What is Canada's highest waterfall,Della falls -General,Off which South American port was the Graf Spee scuttled in 1939,Montevideo,General,Instrument measuring atmospheric pressure,Barometer,Science & Nature,What Is The Smallest Cell ,The Male Sperm  -General,Which Renaissance City was severely flooded in November 1966,Florence, Geography,What is the capital of Ireland ?,Dublin,General,Which mythological King chained grapes rose water fell,Tantalus -General,In Arthurian legend who is the son of Sir Lancelot,Galahad,General,What is the 3rd book of the Bible,Leviticus,General,Franz Liszt was the farther in law of what composer,Richard Wagner -General,Cereal used as food and in spirits,Barley,General,Which country grew the first Orange,China,Music,"Who Were Rick Buckler, Bruce Foxton & Paul Weller",The Jam -General,Polish sprinter Ewa Klobukowska first do what at Kiev in 1967,Fail sex test was disqualified,General,Which current british rock/pop star was at one time a teacher,Sting,General,One death per day is caused by what,Wrong prescription / dose handwriting -Science & Nature,What Is The common Name For Acetic Acid ,Vinegar ,General,What is a group of larks,Exaltation,General,Who owns Dartmoor prison,Prince Charles -General,An average American does it 2.2 times a week – what,Visit a Supermarket,General,What element do all organic compounds contain?,Carbon,General,The numbers on what if added come to 666,Roulette wheel -People & Places,Which Politician was Nick Named Bambi ,Tony Blaire ,General,Who plays its home games at byrd stadium,University of maryland's football,Science & Nature,In which constellation would you look to find the center of The Milky Way?,Sagittarius - Geography,Which large city is on the Southeastern coast of Australia?,Sydney,General,Where is the biggest calibre cannon,Kremlin,Food & Drink,What Type Of Foodstuff Was Invited By Charles Jung ,Fortune Cookies  -General,The body of an insect is divided into how many sections,Three,Toys & Games,"Moving anti-clockwise on a dartboard, what is the number next to '4'?",Eighteen,General,Who lives in buckingham palace,English monarchs -General,"What Is The More Common Name For The Bird Traditionally Called A ""Gillhowter"" In Norfolk",Barn Owl,Entertainment,This term means to play smoothly?,Legato,Music,"Which Classic 70's Hit Features The Line ""And If I Start A Commotion I Run The Risk Of Losing You And That's Worse""?",Ever Fallen In Love -General,Kneeling cushion in church,Hassock, History & Holidays,Name any of James Dean's three films (Point For Each). ,"_Rebel without a cause, East of Eden_ _and __Giant__._ ",General,In South Dakota it's illegal to fall down and sleep where,Cheese Factory -General,Sergai Kalenikov holds the world record in what,Pig Kissing,General,What's the capital of michigan,Lansing,General,What's the decimal equivalent of the binary number 101,Five -General,"Her headline hit in 1984 was ""Girls Just Want To Have Fun""",Cyndi lauper,General,Where would you find an Orcadian,Orkney Islands,General,What is the most popular name for a boat,Obsession -Music,What was the second successive No1 for Aqua?,Doctor Jones, History & Holidays,How many astronauts manned each Apollo flight,3,General,"Where, in New Mexico, was the first atomic bomb detonated in July 1945",Alamogordo -General,"Who was Vice President to Jimmy Carter, and the Democratic nomination for the presidency in 1984",Walter mondale,General,What type of singing does Pavarotti use,Baritone, Geography,What city is the Kremlin located in?,Moscow -General,"What U.S. states were named for the Sioux word ""friend"" or ""ally""",Dakota,General,Name the Editor in Chief New York Herald sent Stanley to Africa,Gordon Bennett,General,What's the most frequently ingested mood altering drug,Caffeine - History & Holidays,What was the name of the space shuttle that exploded? ,Challenger ,General,"What kind of glass, common in baking dishes, can resist very high temperatures",Pyrex,General,Into which estuary do the trent and ouse flow,Humber -Music,Whose Trumpet Was Recognizable By The Way It Was Bent Out Of Shape,Dizzy Gillespie,General,What is interpol,International criminal police,General,Who was Queen of England for only nine days,Lady Jane Grey -General,What natural disasters are ranked in severity by the Saffir Simpson scale,Hurricanes,General,3 countries on 2 continents Russia Turkey (Asia Europe) and ?,Egypt - Africa and Asia,Science & Nature, Some species of rain forest birds migrate every summer from South America to Canada to __________,Breed -General,"A social dance popular in the nineteenth century. It was a square dance in five sections, each in a different time.",Quadrille,General,Which Italian inventor first transmitted signals across the English Channel,Marconi,General,Iolanda Balas - Romania - won 150 consecutive events - what,High Jump 1956 - 67 -General,What is another name for Nitre,Saltpetre,General,"In ballet, an open position of the feet.",Ouvert,General,What is a group of this animal called: Baboons,Troop -General,Whose backing group was The Coconuts,King Creole,Music,"Who Recorded The Album ""Music For The Masses""",Depeche Mode,Music,What Is The Highest Normal Male Voice Known As,Tenor -Science & Nature,What Is The Shaddock A Variety Of? ,Grapefruit ,General,What unit of measurement is used to rate the loudness of sound,Decibel, History & Holidays,What eighties TV show starred Tom Hanks in women's clothing? ,Bosom Buddies  -General,What is the European city of Culture for 1998,Stockholm,General,Where are a crickets ears located,Front legs,General,Hobophobia is a fear of ______,Beggars - History & Holidays,"It's the Great Pumpkin, Charlie Brown' is a critically-acclaimed and very popular animated halloween television special based on a comic strip by which American cartoonist ",Charles M. Schultz ,Science & Nature,What is the Scientific name for the eardrum?,Tympanic membrane,General,Which country always leads the opening olympic procession,Greece - History & Holidays,What do Care Bears do when fighting enemies? ,Stare , History & Holidays,Name the original comic strip Bill The Cat appeared in. ,Bloom County ,General,In the field of psychiatry this term means self_love.,Narcissism -Geography,In which continent would you find the mississippi river ,North america ,General,Leslie Lynch King became famous as who,Gerald Ford,General,Which is the largest theme resort hotel?,Lost City -General,"This weapon lends its name to a type of woman's shoe with a slender, tapered high-heel?",Stiletto,Science & Nature,What is the name of the process used by green plants for obtaining food ?,Photosynthesis,General,Artillery NCO below the rank of sergeant,Bombadier -General,A similar earlier event is known as a,Precedent,Food & Drink,Which well known fruit juice drink brand is the Maori word for 'Good Health''? ,Kia Ora ,General,Who starred in the film 'the man with two brains',Steve martin -Food & Drink,A Cappuccino Coffee Is Named After What ,Monks ,General,Shaddock is another name for what,Grapefruit,General,Tippi hedren is best known for her lead role in which film,Birds -General,Who was the first US president to be sworn in by a woman,Lyndon B Johnson – when JFK killed,General,Stuffed vine or cabbage leaves are called what,Dolmades,Art & Literature,Who Was The First Person To Be Buried At Poets Corner ,Geoffrey Chaucer  -Geography,What is the capital of Liechtenstein,Vaduz,General,What is the Capital of: France,Paris,General,What was used before the baton was invented to conduct,A Violin Bow -General,Where in the world would you find Cumbum,India,General,What is more addictive than all illicit drugs except crack and heroin combined,Cigarettes,General,Who would use a punty in their job,Glass blowers rod -General,"Which American political party which held a brief existence throughout the 1850s and 1860s, resisted immigration from Europe and supported slavery?",Knownothings,Music,Who were the only band to play at Both Woodstock and Live Aid,The Who,Toys & Games,A.k.a a pair of aces & a pair of eights,Dead mans hand -General,"Who On TV During The 1990's Had The Real Name Of ""Michael Van Wijk""",Wolf (Gladiators),Science & Nature,Acetylsalicylic acid is more commonly known as _________.,Aspirin,General,"To the nearest minute, how long does it take sunlight to reach earth",Eight -General,In Iowa 1978 Judge dismissed drink driving charge - why,Too Drunk to sample,General,The sachem is a chief of what confederation,Algonquian confederation,Music,What Is The Best Selling Film Soundtrack Of All Time In The UK,The Sound Of Music -General,Who played the part of Mildred Roper on TV,Yootha joyce,Toys & Games,What score is not possible for a cribbage hand?,Nineteen,General,"What, in Japan, is the Yakusa",Organised crime syndicates -General,"This word means ""split personality"".",Schizophrenia,General,Whose 31st and 38th Symphonies are the Paris and the Prague,Mozart,General,Who was the alter ego of 'the incredible hulk',Dr david banner - History & Holidays,Which Very Famous Horror Story Was Written By Gaston Leroux ,The Phantom Of the Opera ,General,Shakespeare's lovers Romeo and Juliet lived in which Italian city?,Verona,General,What is sally ride's scientific calling,Physics -General,Who makes maps,Cartographer,General,What is the name for a narrow necked wine or spirit container of more than two gallon capacity,Demijohn,Science & Nature,This animal is the symbol of the U.S. Democratic Party.,Donkey -General,Lake Titicaca lies in which two countries,Bolivia and peru,Art & Literature,Which Welsh Poet Died Of Alcohol Poisoning The Year He Publsihed His Collected Poems ,Dylan Thomas , Geography,What is the capital of Egypt ?,Cairo -General,What was the top single record in 1957 by debbie reynolds,Tammy,General,In which town or city was the novelist Sir Waiter Scott born,Edinburgh,General,Name the first Bond film not based on an Ian Fleming book,Goldeneye - Geography,What is the basic unit of currency for Guinea ?,Franc,General,Who was the first American to receive the Nobel Literature prize,Sinclair Lewis, History & Holidays,Who Was The First X Factor Winner To Have A Christmas Number One ,Shayne Ward  -General,What is the capital of indiana,Indianapolis,General,Who wrote the book of proverbs,Solomon,Music,What Was The Title Of Tina Turners 1991 Best Selling Album,Simply The Best -General,What was the theme song of the film The Grapes of Wrath,Red River Valley,General,Sciophobia is the fear of,Shadows,Music,"A Hit For Elvis Costello Inj 1999 Who Wrote And Had A Uk Number One With ""She"" In 1974",Charles Aznavour -General,What is the capital of the state of California,Sacramento,General,New york has the longest subway system in ______,North america,General,Truffles & mushrooms are edible _______,Fungi -General,What hat was first made in and named after a Moroccan city,Fez,General,Which czech wrote the peasant comedy opera 'the bartered bride',Bedrich,General,Who has the highest per capital consumption of cheese,France -Science & Nature,What animal has bony plates and rolls up into a ball if it is frightened?,Armadillo,General,Whit countries parliament is called The Storting,Norway,General,Who was the first woman to win an Academy Award,Janet Gaynor 1929 -General,How old is a horse when it changes from a filly to a mare,Four,Music,"Which Group Released An Album In 2007 Entitled ""Tangled Up”",Girls Aloud,General,MandM candy was first produced in 1940 for what specific group,Us -General,What is the name for a sexual disorder in which a person obtains gratification by receiving physical pain or abuse,Masochism,Entertainment,How many members are in the 'fairfield four'?,Five,General,According to Earth Medicine what's the birth totem for march,The Falcon -General,Stake put by poker players before receiving cards,Ante,General,"What is the first prime number after 1,000,000","1,000,003",General,What two word term was used to describe a cheap unsanitary restaurant,Greasy spoon -General,Carlos Menim was elected president of what country in 1989,Argentina,General,What name is given to the art of dwarfing trees,Bonsai,General,What is the fictitious name of a plaintiff,John doe -Art & Literature,His many Romantic odes include 'Ode to Melancholy' and 'Ode to a Graecian Urn',John Keats,Sports & Leisure,What Is The Highest Possible Break In A Game Of Snooker ,155 Opponent Fouls (Snookered On All Reds) Pot A Colour To Represent A Red Then A Black + 147 , Geography,Sydney is on the east coast of ______?,Australia -General,Which actor/writer born 1939 has the first names John Marwood,John Cleese,General,"Who in children's literature was told ""to begin at the beginning and end at the end""",Alice,General,"Vietnam, laos, cambodia, thailand and malaysia, were influenced by who in early times",China and india -Science & Nature,What Is The Second Most Common Element On Earth ,Silicone ,Science & Nature," The sea lion is susceptible to sunburn, and if put on board a ship, will get as seasick as a __________",Man,General,"Steve miller released a song about this, which he hoped wouldn't carry him too far away",Jet airliner -General,Name the racehorse decapitated in the Godfather,Khartoum,General,What colour M&M is most prevalent in each packet,Brown - 30%,General,Samuel Johnson's dictionary was published in what year,1755 -General,Math: The answer to a division problem is called the ___.?,Quotient,Art & Literature,The Famous Lithograph (The Scream) Was Created By Which Artist ,Edvard Munch ,General,Which medical tool was developed by Sanctorius in 1612,Thermometer -Music,"Who Performed The Main Title Song To The Film ""The Girl Can't Help It""",Little Richard, Geography,What is the basic unit of currency for United States ?,Dollar,Food & Drink, Little round chocolate candies are known as _&m's.,M -General,What illustrated sex guide did alex comfort write,The joy of sex,General,What country has the most doughnut shops per capita,Canada,General,Who is the leader of Iraq,Saddam hussein -General,What's the 1st name of Wayne Gretzky's father,Walter, History & Holidays,The Beatles Were One Of The Biggest Phenomenon's Of The 1960's But Who Was Their Manager ,Brian Epstein ,General,The average American drinks approximately how many sodas per yer,600 -Music,"""Ever So Lonely"" Was A Hit In 1982 For Whom",Monsoon,General,Khalkha Is The Largest Spoken Language Of Which Country,Mongolia,General,In what song did john lennon sleep in a bath,Norwegian wood -Sports & Leisure,Which tennis player was famous for the 'You cannot be serious'' outburst ,John McEnroe ,General,Transylvanian people believed sleeping with what was dangerous,Mouth open,General,Who first settled maryland,Lord baltimore -Music,Name the band formed by Ace Frehley after he left Kiss?,Frehley's Comet,General,Which bird is known as the Sea Parrot,Puffin,General,What building links Stacy Keach and Oscar Wilde,Reading Jail -Geography,What Is The Most Southernly Point Of Mainland Great Britain ,Lizard Point ,Science & Nature,"This plant has leaves with delicate trigger hairs, allowing it to sense and trap insects.",Venus flytrap,General,"What is the name of Sarah's brother that she is trying to save in ""The Labyrinth""?",Toby -Mathematics,The first antiderivative of acceleration is:,Velocity,General,What name is given to the lace scarf worn on the head by Spanish women,Mantilla,General,"In the tv series 'the fall guy', who played colt seavers",Lee majors -General,"Football Team, new orleans ______",Saints,General,What is the Capital of: Antigua and Barbuda,Saint john's,General,Who was Pope during World War II,Pius xii -General,Who created the fictional detective Nero Wolfe,Rex stout,General,Who created 'maudie frickett',Jonathan winters,General,"Who was known as ""The Father of the A Bomb""",Robert oppenheimer -General,What characters first appeared in Entertaining Young Gussie,Jeeves and Wooster,General,In which city is the worlds oldest museum - Ashmolian 1679,Oxford,General,"According to the Holy Bible, where did Cain go after killing Abel",Land of nod - Geography,Name the largest river forming part of the U.S. - Mexican border.,Rio Grande, Geography,What is the world's largest lake?,Caspian Sea, Geography,What is the capital of Sudan ?,Khartoum -General,"Which 3 actresses are the new ""Charlie's Angels""","Lucy liu, drew barrymore & cameron diaz",General,What was Disney's Donald Duck originally called,Donald Drake,General,Which Clint Eastwood film has the most killings (65),Where Eagles Dare -General,If you landed at Capodichino airport where are you,Naples,General,Mastigophobia is the fear of,Punishment,General,Which cities name means End of the elephants trunk,Khartoum -Music,"In Which Year Were The Following All UK Chart Hits: ""Come As You Are"" By Nirvana, ""The Crying Game"" By Boy George And Rhythm Is A Dancer"" By Snap?",1992,General,"What is the name of the Freelings' dog in ""Poltergeist""?",Ebuzz,General,What does the name Ghengis Khan mean,Very Mighty Ruler -General,Which 18th Century poet was known as 'The Bard of Ayrshire',Robert burns,Science & Nature,From Which Type Of Tree Do We Get Hardwood? ,Deciduous ,General,What is a rower who competes in an individual event,Sculler -Geography,Name the desrt located in south-east california. ,Mojave ,General,What is the technical name for the voice box,Layrnx,General,How long is an Olympic swimming pool,50 metres -General,What did Gentleman Jim do for a living,Fight,General,How was the Sword of Damocles suspended?,From a single hair,General,"In the scrolling final credits of Disney's ________, the sorcerer's name is listed as ""Yensid"" (Disney spelt backwards). ",Fantasia -General,What are swedish buns,Danishes,General,What would you do with a blue willie,Raise it - it’s a flag,General,Paper Lace' told Billy not to be a hero in which year,1974 -General,"There are 318,979,564,000 possible ways of playing just the first four moves on each side in a game of",Chess,Religion & Mythology,Which group of people elect the pope ?,Cardinals,General,Which US actor woke up when a elephant crapped on his head,William Shatner -General,"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,General,Tegucigalpa is the capital of ______,Honduras,General,"Who recorded ""Back in Black"" in 1980",Ac/dc -General,What is a 'Blenheim Orange.',Apple,General,What is the end of the song 'it's beginning to look a lot like ______,Christmas,General,Harvey Stevens Was The First Person To Play Which Infamous Character On Film,Damien Omen -Science & Nature,Which chemical has the atomic number one? ,Hydrogen ,Music,What Was The First Aned Biggest Hit For Texas,I Don't Want A Lover,General,Which city is the title of Mozart's 36th Symphony,Prague -General,If a doctor says you have singultus what have you got,Hiccups,General,In 1880 Smiths Patent Germ Bread changed its name to what,Hovis,General,Which flower is named after the beautiful youth killed by Apollo?,Hyacinth -General,What activity burns up 140 calories per hour,Standing,Geography,Into what sea does the mackenzie river flow ,Beaufort ,General,Jeopardy whose father boxed for the iranian olympic team,Andre agassi - Language,What is the meaning of the Mercedes Benz motto 'Das beste oder nichts'?,The best or nothing,General,Caribbean plant yeilding a substance used in cosmetics,Aloe vera,General,"In 'star wars', who was c3p0's sidekick",R2d2 -General,What is a fifty year anniversary,Diamond anniversary,General,Which novel by Jane Austen features the Woodhouse family,Emma,General,What do the letters in SAM missiles refer to?,Surface-to-Air Missile -General,New Miserable Experience' was which group's first album in 1993,Gin,General,What is the function of a sheepshank knot,To shorten a length of rope,General,"Which European capital city's name translates into English as ""Merchants Haven""",Copenhagen -General,What is the capital of montana,Helena,General,"What game usually starts with 'is it animal, vegetable or mineral'",20,Entertainment,Who always tried to kill Krazy Kat,Captain marvel -General,Which Husband And Wife Pop Duo Formed In 1982 Consist Of Ben Watt & Tracy Thorn,Everything But The Girl,General,What US president spent between 11 and 15 hours asleep daily,Calvin Coolidge,Science & Nature,What is calcium oxide commonly called?,Lime -General,What Breakthrough in fashion and Sometimes Elsewhere. Was invented in 1955 by George De Mestral,Velcro,General,What is the national bird of America,Bald headed eagle,General,Which animal eats wood twice as fast when listening to heavy metal music,Termite -General,In Russia the national product is called Soldatsky what is it,Bread,Sports & Leisure,Who Was The First British Athlete To Hold The World Javelin Record? ,Fatima Whitbread ,Geography,For Which Newspaper Did Henry Stanley Work? ,The New York Herald  -Tech & Video Games,What does the 'x' mean when referring to the speed of a CD-rom (eg. 32x)?,Times (faster than standard speed),General,Half the worlds population has seen at least one what,James Bond Film,General,Who was born Doris Kappelhoff,Doris day -General,What is the regulation height for a pin in tenpin bowling,Fifteen inches,General,Who portrayed phileas fogg in around the world in 80 days,David niven,General,What boys name would be signalled in Morse by six dashes,Tom -Science & Nature,"The atomic weights in the periodic table are stated in proportion to the weight of what element, with atomic number 6?",Carbon,General,What's the name for a pen for pigs,Pigsty,Science & Nature,Which particles are emitted by cathode ray tubes?,Electrons -Art & Literature,Who Created Lord Peter Wimsey ,Dorothy L Sayers ,Geography,Into what body of water does the Danube River flow,Black sea,General,What type of animal was drooper on banana splits,Lion -General,What is the common two word name for Yuca Brevifolia,Joshua Tree,Entertainment,What film is generally considered the worst film ever made?,Attack of the Killer Tomatoes,General,"Which 'brothers' had a hit with, 'The Sun ain't gonna shine anymore'",Walker brothers -Religion & Mythology,How many children did Noah have?,Three,General,What's sporting field is 78 feet long,Tennis court,General,What is the only bone in the body unattached to any other bone,Hyoid in throat -Toys & Games,Monopoly penalty space between Baltic Ave. and Reading RR (2 wds),Income tax,Music,What Was The Best Selling Pop Song Of 2007,Leona Lewis/ Bleeding Love,General,What girls name is also a pass made by a bullfighters cape,Veronica - Geography,What is the capital of Wales?,Cardiff,General,Who sent Stanley to Africa to look for Livingstone,New York Herald,General,Who sang the original version of Blue Suede Shoes,Carl Perkins -Geography,"Four states have active volcanoes: Washington, _______________, Alaska, and Hawaii, whose Mauna Loa is the world's largest active volcano.",California,General,What is the only sign in the zodiac which doesn't represent a living thing?,Libra,General,Americans spend approximately how much each year on beer,$25 billion -General,What does a ruminant do,Chew the cud,General,Nostology is the study of what,Senility,General,Onomatophobia is a fear of _____,Names -General,What american tv show centred on the cleaver family,Leave it to beaver, History & Holidays,Who Released The 70's Album Entitled Destroyer ,KISS ,General,Benjamin Briggs captained what mystery ship,Marie Celeste -General,Which gas is used in a refrigerator,Freon, History & Holidays,The Halloween Tree' is a 1972 fantasy novel by which American author ,Ray Bradbury ,General,"In Which US State Was ""Britney Spears"" Born",Mississippi -People & Places,Which James Bond Actor Once Worked As A Coffin Polisher ,Sean Connery ,General,What does vhs stand for,Video home system,General,What's it called when time is reckoned by the position of the sun,Apparent -General,What city has the most underground stations,New york,General,What Wimbledon single champ had a part in a John Wayne film,Anthea Gibson Lukey Horse Soldiers,General,"What kind of cameras take instant, self developing photographs",Polaroid -General,What is the name of the largest moon of Jupiter,Ganymede,General,Whats the term for a mass of diffused gas & ice particles in solar orbit,Comet,Sports & Leisure,"In golf, what bird's name means two under par ",Eagle  -General,Where are the colours blue and yellow used at funerals for warding off evil spirits,Singapore, History & Holidays,Name the TV show which featured an average housewife teamed up with a secret agent. ,Scarecrow and Ms. King ,General,What city is at the head of the Nile River Delta,Cairo -General,What book is the connection between E. Nesbitt and railways,The railway children,Science & Nature,What Are Aberdeen Angus? ,Cattle ,General,A summer house giving a view,Gazebo -General,When was the first test tube baby born,1978,General,What is the fear of the ocean known as,Thalassophobia,General,Who was the Chief Designer of the AVRO Lancaster bomber aircraft,Ray chadwick -General,Which English word is a combination of the first 2 letters of the Greek alphabet,Alphabet,General,In which Australian state is Tittybong,Victoria,General,Who was the norse goddess of lust and fertility,Freya -General,"Primrose, Montgomery, Petunia, Zinnia, And Victoria Were 5 Of The 6 Children That Featured In Which TV Series",The Darling Buds Of May,General,"Which French author wrote 'The Outsider""",Albert camus,General,33% of what are fake in the USA,Blondes - History & Holidays,Who Released The 70's Album Entitled Here Come the Warm Jets ,Eno ,General,What do Indianapolis 500 winners traditionally drink in the winners circle,Milk,General,In which country did draughts (checkers) originate,Egypt -Music,"The Police sung about it in 1981, Queen sung about it in 1986 and Take That sung about it in 1992 what word did they all sing about?",Magic,General,In medieval Spain which city was noted for its quality leather,Cordova,General,What is the decrease in size of a tissue or organ due to degeneration,Atrophy -General,Who designed the largest church in the world,Michelangelo,General,Only 14% of americans say they've done this with the opposite sex. what is it,Skinny dipping,General,What technique did Patrick Steptoe and Robert Edwards pioneer,In vitro fertilization -General,This animal is armed with bony plates & rolls up into a ball if frightened,Armadillo,Sports & Leisure,What Are The Five Colours Of An Archery Target ,"Gold, Red, Blue, Black, White ",General,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 -General,Who sang 'you can call me al',Paul simon,General,Who live in Frostbite falls Minnesota,Rocky and Bullwinkle,General,As Of 2008 Which Country Now Has The Highest Suicide Rate In The World,Lithuania -Tech & Video Games,"In the Sonic the Hedgehog series, what serves as your energy? ",Rings,Food & Drink,The Italian Word Vermicelli literally means ,Little Woms ,General,What is the flower that stands for: enduring affection,Gorse -General,Only approx one third worlds population uses what regularly,Fork,Music,Which Stevie Wonder Hit Featured In The Movie “The Woman In Red”,I Just Called To Say I Love You, History & Holidays,Thanksgiving has traditionally been the start of the Christmas season in the U.S. Which U.S. President moved Thanksgiving up a week to extend the holiday shopping season? ,Frankiln Delano Roosevelt  -Food & Drink,Cocktails: Cognac (brandy) and white creme de menthe make a(n) ____________·.,Stinger,Entertainment,What is a cello's full name?,Violoncello,General,Stamps are the most collected thing in the USA what is second,Dolls -General,What is the highest commissioned rank in the Royal Air Force,Marshal of the raf,General,Who is the only Greek god in greek mythology with a mortal mother & an immortal father,Dionysus,Science & Nature,"The greyhound, along with this smaller relative, is used in the sport of coursing.",Whippet -General,What liquid is metered in most households,Water,General,Who killed kenny,They,General,The chinese were using what metal to make things as early as 300 ad,Aluminium -General,What was the first colony to legalise witchcraft,Pennsylvania,General,"A massive ensemble of hundreds of millions of stars, all gravitationally interacting, and orbiting about a common center",Galaxy,General,A babirusa is a type of___.,Pig -Science & Nature,What Was Special About The Iron Bridge At Coal Brookdale ,It Was The Worlds First Major Iron Construction ,General,Which classic dish contains strips of steak cooked in a wine sauce with sour cream,Stroganoff,General,Robodoc is the first robot to help in which common replacemant operation,Hip -General,Name 3rd cent BC Greek mathematician wrote The Elements,Euclid,General,What is the tenth month of the year,October,General,Which Italian cruise ship was attacked in 1985,Achille lauro -General,"Fandible, lateral line and dorsal fin and a part of which animal",Fish,General,Which month was named after caesar augustus,August,Science & Nature," The __________, often called ""possum,"" dates back over 45 million years.",Opossum -General,What is the distance of the Olympic Biathlon,20 kilometres,Science & Nature,Does Uranus have an aurora,Yes,General,"What Was The Title Of ""The Beatles"" Last Uk No.1 Single Before They Split",The Ballad Of John & Yoko -General,Who is Homer Simpson's brother,Herb Powell,General,Who's first person to win Wimbledon singles on a tie breaker,Evonne Cawley,General,One Flew Out Of The Cuckoos Nest Was The Final Episode In Which Long Running TV Show,The Golden Girls -People & Places,Dame Shirley Porter Is Heiress To Which Super Market Chain ,Tesco ,General,Which is the only bird that can see the colour blue,Owl,General,Who was the male star in the film True Grit,John wayne -General,James Leblanche Stewart became famous under what name,Stewart Granger,Entertainment,"What song did Aretha Franklin sing in ""The Blues Brothers""?",Think,Art & Literature,How many lines are in a sonnet?,Fourteen -General,On the banks of which river is the taj mahal,River jumna,Science & Nature,In What Units Would You Measure Frequency ,Hertz , History & Holidays,As what was Istanbul previously known?,Constantinople -Music,"Who Wrote Aretha Franklins ""Respect""",Otis Redding,General,Which writer created Sergeant Cuff,Wilkie collins,General,"How many books of the Bible, generally known as the letters of Paul, are between Romans & Philemon (inclusive)",Thirteen -General,What is the most varied species on the planet,Domesticated dog,General,"In ancient Roman architecture, a large oblong building, generally with double columns and a semicircular apse at one end. In Christian architecture, a church with a nave, apse, and aisles. ",Basilica,General,Who captained the sloop The Witch of Endor,Horatio Hornblower -Geography,_______________________ has parallel drops of only 158 and 167 feet.,Niagara falls,General,Who portrayed sherlock holmes in 14 films between 1939 and 1946?,Basil rathbone,General,What is the gardening term for a weed,Ruderal -General,What is the infinity sign called,Lemniscate,Music,What Was Voted Best Single Of 1992 By Radio 1 Listeners,Could It Be Magic,Science & Nature,Which substance takes its name from the Greek for `not flammable'? ,Asbestos  -General,What is the name of Madonna's Chiuhauha,Chiquita,General,"Who wrote ""Death of a Salesman"" in 1949",Arthur miller,General,What is the line in Labrynith that Sarah can never remember?,You have no power over me -General,Sea or salted water,Brine,General,Who was the Goddess of the rainbow,Iris,Music,Cyndi Lauper Was Born In Which Part Of New York,Queens -Geography,In which city is the coliseum located ,Rome ,Science & Nature,There Are 4 Classes Of Myriapods2 Of Which Are Pauropoda & Symphyla. What Are The 2 Better Known Classes Called ,Centipedes And Millipedes ,General,In Greek mythology a Hamadryads spirit guarded what,Trees -General,What is the largest type of warship,Aircraft carrier, History & Holidays,In which war did Florence Nightingale earn her reputation ?,Crimean War,General,What family were the last ruling house of Italy,Savoy -General,Which country is the biggest producer and exporter of mohair?,South Africa,General,"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,General,Name one type of insect belonging to the order Hymenoptera,Ant bee sawfly wasp hornet ichneumon -Music,In a standard orchestra line-up which musicians sit immediately to the conductor's left?,First Violin, History & Holidays,Halloween originated from which Pagan festival ,Samhain ,General,In the Bible what in Hebrew means Place of a Skull,Golgotha -General,"Which band comprises sisters Andrea, Sharon, and Caroline with their brother Jim",The corrs, Geography,What island is known as the Spice Island?,Zanzibar,General,What is a group of this animal called: Fish,School shoal run haul catch -General,Lenin what country is the world's biggest coffee exporter,Brazil,General,What children's character lived at Scatterbrook farm,Worzel Gummage,General,"A social dance in ¾ time, which after originating in Spain, developed in Argentina, where it was influenced by black dance style and rhytm. ",Tango -Music,What is Ozzy Osbourne's real first name,John,General,In which city is De Montfort University,Leicester,Music,Who Did The Harlem Shuffle In 1969,Bob & Earl -General,In which film did Cliff Richard sing Living Doll in 1959,Serious Charge,General,Creed Prayer Alms Fasting Pilgrimage five pillars what religion,Islam,General,Victoria was not Queen Victoria's first name - what was,Alexandrina -General,"Which 1965 Ballad Was Covered By An Amazing 1,186 Different Performers Within 10 Years Of It's Release?",Yesterday (The Beatles),General,What U.S. state song is named for a river within the state,Swanee river,General,Ron howard's directed his first film in 1977. what was it called,Grand theft -General,When did Mark and Engels write the Communist Manifesto,1848,General,Who is the roman goddess of justice,Justitia,Science & Nature," 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 - History & Holidays,In which country did the Boxer Rebellion take place?,China,People & Places,Who Has The Car Number Plate 'COM1C ,Jimmy Tarbuck ,General,Dinotopia's illustrator.,James gurney -General,Whiskey made from maize and rye,Bourbon,General,Which english house had the red rose as its symbol,House of lancaster,General,In 1900 Americans did it for 9hour 20 min now its 7hour 20 what,Sleep -Geography,What is the highest mountain in Canada,Mt. logan,General,What Was The Final Single To Be Released By The Pop Duo Wham,Edge Of Heaven,General,"What would you do with ""ackee"" in jamaica",Eat it -General,What thin net of silk or Rayon named after French place it made,Tulle,General,Long necked long legged wading bird,Heron,General,Name most performed opera at London opera House since 1833,La Boheme - Geography,What is the basic unit of currency for Australia ?,Dollar,General,Which British Railway station has the greatest number of platforms,Waterloo,Music,In The World Of Music How Are “Hodges & Peacock” More Commonly Known,Chas And Dave -General,"Who was married to Francis II, Lord Darnley and The Earl of Bosworth","Mary, queen of scots",General,Hayley Turner is a well-known name in which sport?,Horse Racing (Jockey),Food & Drink,What famous product did cerebos manufacture? ,Cooking salt  -General,Where is Prince of Wales Island,Canada,Sports & Leisure,A Yokouna is a grand champion in which sport? ,Sumo ,General,Who received a Nobel Prize for Physiology in 1904 for work on conditioned reflexes,Ivan pavlov -Food & Drink,In Scotland Which Soup Is Traditionally Served On Burns Night ,Cock-A-Leekie ,Science & Nature,The North Star is also known as ________.,Polaris,General,"Whose last words were ""It's unbelievable""",Mata Hari -General,Who is popeye's girlfriend,Olive oyl,General,What is the Capital of: Georgia,T'bilisi,Music,"Who Had A One Hit Wonder With The Song ""Loving You""",Minnie Ripperton -General,Which woman has the most monuments erected in her honour?,Virgin Mary,Geography,Into what body of water does the Yukon River flow,Bering sea,General,"Who were Kate Jackson, Jacklyn Smith and Farrah Fawcett Majors",Charlie's angels -General,Who plays pacey witter on 'dawson's creek',Joshua jackson,General,Patty Hearst was kidnapped (later joined) which organisation,Symbionese Liberation Army,General,Who wrote 'Crime & Punishment' & 'The Brothers Kamarazov',Fyodor dostoevsky -Science & Nature, 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,General,The Central Perk Café appears in which TV series,Friends,Music,Who Had A Hit In 1977 With Roadrunner,Jonathan Richman & The Modern Lovers -Music,Who Underwent Treatment For Rabies Following An Incident In Which He Bit Of The Head Of A Live Bat,Ozzy Osbourne,General,Hygrophobia is the fear of,"Liquids, dampness moisture",General,What number lies between 1 & 5 on a dart board,20 -General,Topeka is the capital of ______,Kansas,General,What Was The First Country To Legalize Abortion?,Iceland,General,"What us state was named for the choctaw indian word meaning ""red man""",Oklahoma -General,Genuphobia is the fear of what,Knees,General,YKK Yoshida Kogyo Kabushibibaisha worlds largest makers what,Zips,General,In which city does Rocky live in the film of the same name,Philadelphia -General,"According to the Old Testament, he planted the first vineyard",Noah,General,"American pioneer, who was killed while defending the Alamo?",James Bowie,General,What phrase is associated with the happy face,Have a nice day -General,What year was Theodore Roosevelt born,1858,General,"In the movie ""Sixteen Candles,"" what was Sam's grandparents exchange students name?",Long Duck Dong,Sports & Leisure,Who Lit The Olympic Torch At The 2000 Sydney Olympics ,Cathy Freeman  -General,What is the only digit that has the same number of letters as its value,Four,Music,"Mel & Kim Had A Hit With The Song ""Respect Yourself"" Or Respectable",Respectable,General,In Massachusetts its illegal to put what in clam chowder,Tomatoes -Music,"Who recorded The Paul McCartney Track ""Goodbye""?",Mary Hopkin,General,What's the more common name for prepatellar bursitis,Housemaids Knee, History & Holidays,The Deaths Of 3 Pop Icons Was Known As 'The Day The Music Died'' Name The Three (PFE) ,"Buddy Holly, Richie Valens, Big Bopper " -General,What basic skill is lacking in most Royal Navy entrants,They cannot swim,General,The Island of Sheep was the last novel of what Buchan Hero,Richard Hannay,General,What country's currency is the bolivar,Venezuela - Geography,"What unit of currency will buy you dinner in Iraq, Jordan, Tunisia, and Yugoslavia?",Dinar,General,"In October of 1962, Johnny Carson succeeds him on the Tonight Show",Jack parr,Sports & Leisure,Who did 'Tennis World' name rookie of the year in 1974?,Martina Navratilova -General,"President Roosevelt had a landslide victory in 1932, who did he defeat",Herbert hoover,General,Where was volleyball invented,France,General,Fired unglazed pottery,Bisque -General,Britains say 'tarmac'; Americans say ______.,Runway,General,What did ancient Egyptians rub on their dicks to enlarge them,Crocodile shit,General,Where do Cuckoo clocks come from,Black Forest Germany -General,On what do honeybees have a type of hair,Eyes,General,On what date did america become an independant nation,July 4th 1776,General,Of which metal is azurite the ore,Copper -Geography,In what country is Mandalay,Burma,Science & Nature,What do scientists predict will happen when the universe ends?,The Big Crunch,Music,John Lennons first published book was called:,In His Own Write -Entertainment,What were Wilma Flintstone and Betty Rubble's maiden names?,Slaghoople and Mcbricker,General,"In 1943, the whole population of Naples was dusted with DDT. What organism did this kill",Lice,General,Which band leader is associated with Take the A Train,Duke ellington -General,Don Quixote was the man of La Mancha what's it in English,The Stain,General,Who is Country Music Hall of Fames only 2 time inductee,Roy rogers,General,Who was the leader of the Polish trade union Solidarity,Lech Walesa -General,Woodpecker Scalps - Porpoise Teeth - Giraffe Tails what links,All been used as money,General,In Holland what would you do with bare buttocks in the grass,Eat them mix of string navy beans,Music,Which Band Sang The Title Track To The Movie weird Science,Oingo Boingo -General,What letter on a weather map indicates a high pressure system,H, History & Holidays,"He was assassinated on Nov. 22, 1963.",John fitzgerald kennedy,Sports & Leisure,Football: The New Orleans __________.,Saints -General,Jim Thorpe won Olympic pentathlon 1912 who was fifth,General George S Patton,General,With what were queen victoria's menstrual cramps eased,Marijuana,General,Political system in which total power is vested in a single individual or a group of rulers.,Absolutism -General,In Spain what are Paradors,State owned tourist hotels,Entertainment,"Name the band - songs include ""Doctor Doctor, Hold Me Now, Don't Mess With Dr Dream""?",Thompson Twins,General,A name for energy fuelled in ways that do not harm the enviroment,Alternative -General,Pupaphobia is the fear of,Puppets pyrexiophobia, History & Holidays,What American feminist went bust as a silver dollar?,Susan B. Anthony,Science & Nature, Macaws are the largest and most colorful species of the __________,Parrot family -General,In Which US State Was The TV Show The Dukes Of Hazzard Set,Gerogie,General,"What Event Took Place On ""Gown Avenue"" In London On The 26th April 1999",The Murder Of Jill Dando,General,Where would you find Saracens Bluestones and Trilithons,Stonehenge -General,Which turn-of-the-century French dramatist is famous for his farces,Georges feydeau,Sports & Leisure,Which Former Tennis Legend Was Charged For A 10 Million Pounds Tax Evasion In 2002 ,Boris Becker ,General,Who was the roman goddess of grain,Ceres -General,"What Athenian comic poet wrote ""Lysistrata""",Aristophanes,Music,Name 2 Of The 3 Members Of Fat Les,"Keith Allen, Damien Hirst, Alex James",Sports & Leisure,"He was the NBA, MVP in 1976, 77, and 80.",Kareem Abdul-Jabbar -General,Which Island Is The Dodo Originally From,Mauritus,General,Where is tongeren,Belgium,Sports & Leisure,Which 1990 Film Was Set Against The NASCAR Racing Circuit ,Days Of Thunder  -General,What film featured dennis weaver vs a scuzzy gasoline tanker truck,The duel,General,Which was the most successful Grand National horse,Red Rum,General,Doctor Albert Hoffman Is The Inventor Of What,L.S.D -General,In Globe Arizona it's illegal to play cards in the street with who,American Indian, History & Holidays,In 1960 Penguin Books Announced That They Would Be Publishing Which Controversial Novel ,Lady Chatterlys Lover ,Food & Drink,What Is The Name Given To The Flat Indian Bread Resembling A Pancake? ,Chapati  -General,In traditional anniversaries what is given for the thirtieth,Pearl,Food & Drink,Which country would you associate with the dish Couscous? ,Tunisia ,General,Who starred as the Six Million Dollar Man,Lee Majors -Geography,In what city is the Smithsonian Institute,Washington,General,U.S. Captials - West Virginia,Charleston,Geography,What Is The Largest US State By Area ,Alaska  -General,Where in the body are the adenoids,Nose,General,When is Halley's comet next due to appear,2062,General,What sport involves bats & flies,Baseball -Sports & Leisure,In Which Sport Would You Expect To Find A Short Stop ,Baseball ,Science & Nature,Which Curved Billed Bird Is The Largest European Wader? ,Curlew , Language,From which language does the term 'Mayday' come?,French -General,In Halstead Kansas doing what is illegal at the airport,Walking and loud burping,General,What is the capital of burkino faso,Ouagadougou,Science & Nature, A baby __________ is about six feet tall at birth.,Giraffe - Geography,What is the capital of Brazil?,Brasilia,General,Which organ is inflamed in the condition known as Cholecystitis?,Gall Bladder,General,In The Fim Madasgascar Who Voiced The Character Of Maty The Zebra,Chris Rock -General,Which capital city stands on the north shore of the river Plate estuary,Montevideo,General,What is measured with a hygrometer,Humidity,General,The 42 string guitar is correctly called what,Pikasso guitar -General,This African animal kills the most people,Crocodile,General,What is the capital city of Azerbaijan,Baku,General,What is a pismire,An Ant - History & Holidays,What was the D-Day invasion password?,Mickey Mouse,General,Who live at 742 Evergreen Terrace,The Simpson's,General,The Bosman ruling was a legal decision relating to which sport,Football -General,Who sculpted the four lions in Trafalgar Square,Sir Edwin Landseer,Music,Which Singing Diva Flopped At The Box Office With Her Debut Movie “Glitter”,Mariah Carey,General,What are bactrians and dromedaries,Camels (one hump or two) -Music,"Name Three Of The Songs Featured On The 1986 Release ""It's It's The Sweet Mix""","Blockbuster, Fox On The Run, Teenage Rampage, Hell Raiser, Ballroom Blitz",General,In Quitman Georgia its illegal for a chicken to do what,Cross the Road,General,The Houston Astrodome was opened in what year,1965 -General,Who discovered x-rays,Wilhelm roentgen,General,"Churchill, Iroquois, Owen and Smiths are all what",Waterfalls,General,"What's the hebrew word for ""proper""",Kosher -General,In which sport would they use the term straight handle,Curling - stone sent no curve,General,Which Country Publishes More Books Per Head Than Any Other,Iceland,General,Germans call a WW1 sea fight Battle of Skagerrak what in UK,Battle of Jutland - History & Holidays,Moondance' was a hit for which male singer ,Van Morrison ,General,King James the IV practiced what (and charged) on subjects,Dentistry,General,"In music, instrumental introduction to an opera or other musical or nonmusical dramatic work",Overture -General,How many gigawatts of electricity did Doc Brown need to generate to power the delorion in back to the future?,1.21 gigawatts!!,General,What does an vexillologist study,Flags,General,For which series of films did Talbot Rothwell write most of the scripts,The carry on films -General,Which chemical compound in the body is linked to hardening of the arteries,Cholesterol,Science & Nature,What is the main component of air?,Nitrogen,Entertainment,Who is Snoopy's arch enemy,The Red Baron -General,What does a hippophobic fear,Horses,General,"On what date did ""The Wall"" fall?",1989,General,Black Lady - the Queen of Spades is worth 13 - is based on this game..,Hearts -General,What were Club Nouveu originally known as?,Timex Social Club,General,What did Sir Humphry Davy say was his best discovery,His student Michael Faraday,Music,Of Which Group Is Jet Harris A Long Standing Member,The Shadows -General,People with hypertrichosis have lots of what,Hair,General,Who created the fictional detective Cordelia Gray,P d james,General,Which materials name comes from the French for rag,Chiffon -General,Collective nouns - A bloat of what,Hippotomi,General,A small shop selling fashionable clothes,Boutique,General,What is a natterjack,Toad -General,What is 'au contraire' in english,On the contrary,General,What Was The Name Of The Cab Firm Owned By Ali & Mehmet In Eastenders,Oz Cabs (Osman),General,"Dish consisting of flavoured mince, chilli and beans",Chilli con carne -General,What state is only part of the united states by treaty,Texas,General,"In what sport does one have luffing, gybing and bearing away",Yachting,Sports & Leisure,What Type Of Race Got It's Name From A Short Dash Between 2 Churches ,Steeple Chase  -Geography,If James Bond was to dial 007 he would be using the dialing code for which country? ,Russia ,Entertainment,Who sang 'All Right Now'?,Free,General,Who was the court portrait painter of Henry the Eighth,Hans Holbein -General,What is the art of creating decorative shapes by trimming trees and shrubs?,Topiary,General,What is the capital of utah,Salt lake city,General,Which boxer broke Muhammed Ali's jaw,Ken norton -General,What is special about the hooded pitohui bird (New Guinea),It’s highly poisonous,Music,Who Composed The Pink Panther Theme,Henry Mancini, Geography,Montevideo is the capital of ______?,Uruguay -General,Who played the part of the Headmistress in the film 'Blue Murder at St.Trinians,Alistair sim,General,In 1797 3 pence could buy you a good (second hand) what,Wife,General,"Which Italian Composer Wrote The Operas Rigoletto, La Traviata & Falstaff ?",Verdi (Giuseppe Verdi) -General,"What is the first name of webster, the man who published a dictionary still used today",Noah,General,In Edward Lear's poem who married the owl and the Pussy-cat,Turkey,General,In what state is silicon valley,California -General,Mickey Rooney made a series of films based on what family,Hardy family,General,Who was the 30th president of the U.S.,Calvin coolidge,General,In which European capitol city is a cannon fired at 1.00 pm daily,Edinburgh -General,"What 19th century war between russia and england, turkey, britain and france, was named for a peninsula in the black sea",Crimean war,General,Back of horse's leg where hair grows above hoof,Fetlock,Entertainment,Where did George Harrison discover gold?,Witwatersrand -General,Who was America named after ?,Amerigo Vespucci,Science & Nature,In what was the strength of early lasers measured?,Gillettes,General,Lack of which chemical compound in the body is linked with Parkinsons disease,Dopamine -General,What city is Canada's steel capital,Hamilton,General,"Countries of the world:north eastern Europe, the capital is Tallinn",Estonia, History & Holidays,In 1840 London Sweet Maker Tom Smith Came Up An Invention Still Hugely Popular Today What Was It? ,The Christmas Cracker  -General,Pediculophobia is the fear of,Lice,General,"Which term for an important person, stems from the large headgear once worn by the rich?",Bigwig,General,What book featured Topsy who growed,Uncle Toms Cabin –H B Stowe - Geography,What is the second largest state in the USA?,Texas,General,Which ancient Greek astronomer is credited with having compiled the first known star catalogue?,Hipparchus, History & Holidays,"Born on Christmas Day 1954, who was the female half of the 80's band 'The Eurhythmics'' ",Annie Lennox  -General,Why were Mothers called mama or mommy in many languages,From mammary or tits,General,In what city does Matlock take place?,"Atlanta,Georgia",General,"In the Christian calendar, what is the alternative name for the Feast of Pentecost",Whitsun -General,Hibernia was the Roman name for which country,Ireland,General,Year of the first manned space flight,1961,General,Which Company Is An Offshoot Of Disney Makes Movies For Adults?,TouchStone Pictures -General,Who does the voiceover at the end of Michael Jackson's Thriller,Vincent Price,Entertainment,Country singer Vince ____?,Gill,Music,What did Pat Benatar sing before she went into Rock music?,Opera - History & Holidays,What famous artist could write with both his left and right hand at the same time?,Leonardo da Vinci,General,Plant based compound often used as a drug,Alkaloid,General,Collective nouns - A sleuth of what,Bears -Music,"Who Had A Multi Million Best Seller With ""How Much Is That Doggy In The Window""",Patti Page,General,The town of Banana in Queensland is named after what,A huge bullock, History & Holidays,What came to an end in the United States in December 1933? ,Prohibition  -Music,"What Connects The Average White Band, The Stranglers, Dionne Warwick",Walk On By,General,Chogori is better know by what boring name,K2,Art & Literature,Which Tennesee Williams play is about a Sicilian-American woman?,The Rose Tattoo -Science & Nature,"Technically, What Type Of Fruit Is A Pineapple? ",A Berry , History & Holidays,The Christmas carol 'Away In A Manger'' … what is a manger ,A Feeding Trough ,Geography,In which state is the Painted Desert,Arizona -General,Choo Kiko Wapi - what have I asked in Swahili,Where is the toilet,Technology & Video Games,What arcade game did Shigeru Miyamoto design Donkey Kong as a replacement for? ,Radarscope,General,Where are the headquarters for the c.i.a,"Langley, virginia" -General,What is a group of snipe,Wisp,Sports & Leisure,What Is The Name Of The Golf Stroke That Is 2 Under Parr For The Hole ,An Eagle ,General,Whose version of A View to a Kill reached 1 in USA 2 in UK,Duran Duran -General,In Lebanon it is legal to have sex with who / what,Female animals – males death,Music,"The Stones Took Their Name From A Blues Giant, Can You Name Him",Muddy Waters,General,The Epstein-Barr virus causes what illness,Glandular fever -General,What is another name for the egg plant,Aubergine,General,Who was Lady Emma Hamilton's famous lover,Lord nelson,General,"What's the name of the counting system in which four is written ""100""",Binary -Religion & Mythology,Who is the greek equivalent of the roman god Vulcan ?,Hephaistos,General,"Women burn fat more slowly than men, by a rate of about how many calories a day",50,People & Places,Who Committed Suicide In An Attempt To save Scott's Expedition ,Captain Oates  -Food & Drink,What does the phrase al dente mean? ,Pasta cooked firm ,People & Places,Which Former British Ambassador To The US Is Now BBC's Chief Financial Editor ,Peter Jay ,Geography,What is the capital of Libya,Tripoli -General,In 1917 Lucy Slowe was the first US what,Black tennis champion,General,"Who called overcrowded, poorly ventilated hospitals ""gateways to death""",Florence nightingale,General,What is the centre of an archery target called,Bullseye -General,"Of what did robert the bruce, king of scotland, die in 1329",Leprosy,General,The Gluckauf was the worlds first what,Oil Tanker,General,"Who said ""computers are useless they only give you answers""",Pablo Picasso -General,What does Mit Hefe on a German beer bottle mean,With Yeast,General,"Percent what was the final destination of the first u.s. paddle wheel steamboat, what departed from pittsburgh",New orleans, History & Holidays,"Which of the following is a 1983 New Order song; `Creepy', `Spooky' or `Scary' ",Spooky  -Music,"Who Achieved Chart Success With ""Everybodys Free To Feel Good"" In 1991",Rozalla,General,Iceland and Greenland are separated by which stretch of water,Denmark strait, Geography,Dakar is the capital of ______?,Senegal -General,In what movie did Whoopee Goldberg make her debut,The Colour Purple,General,Mary Robinson became president of which country in 1990,Ireland,General,What profession makes regular use of vibrators,Potters - remove air from clay -Geography,"The smallest island with country status is __________ in Polynesia, at just 1.75 square miles (4.53 sq km).",Pitcairn,General,Name the U.S.S.R. leader with a birthmark on his forehead?,Gorbachev,General,What Is The Capital City Of Nepal,Katmandoo -General,Which car manufacturer produces the models Sorento and Picanto?,Kia,Music,Who Sang A Song About Rasputin In 1978,Boney M,General,If a doctor gives you a clyster what have you just got,Injected into rectum by tube -General,"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, History & Holidays,What was the real name of Eric Morecambes partner ,Ernest Wiseman ,Music,Which Famous Singer Got Their Name Because Of A Black & Yellow Jumper That They Often Wore,Sting -General,What year was the Live Aid concert,1985,Food & Drink,What is meant by deglazing? ,Adding alchohol or stock to pan juices ,General,In which sport is the Lugano trophy awarded,Road Walking -General,Another name for phencyclidine hydrochloride,Angel dust,General,"Name the minister who was hanged at Salem, Massachusetts for witchcraft",George burroughs,General,Small deer with white spotted reddish brown summer coat,Fallow -General,What is unusual about the 1965 horror film Incubus,Only one in Esperanto,General,What soprano simply titled her autobiography beverly,Beverly sills,General,According to the poem who dug the grave for cock robin,The Owl -Geography,Hell's Canyon on the Snake River is deeper than the _______________,Grand canyon,General,The kings of four different countries are said to be buried on which Scottish island?,Iona,Music,What group taped the first 3-D rock video in 1983?,Aerosmith -General,What is the name of Data's cat in Star Trek Next Generation,Spot,General,"Is someone suffered from halitosis, what would the problem be",Bad breath,General,The murder of Gonzago was performed in what Shakespeare play,Hamlet -General,Poon Lim holds the record of 133 days doing what,Surviving on a raft,General,What token was added to Monopoly in 1999,Sack of Money,Sports & Leisure,In Which Sport Would The Game Start With A Tip Off? ,Basketball  -General,What does a dipsomaniac crave,Alcohol,General,In 1963 what finally ended in Alaska,Mail by dog sled,General,In East Anglia England what put in house walls to ward off evil,Mummified Cats -General,Deacon is church official from Greek what's it literally mean,Servant,People & Places,Who Invented The Potato Crisp In 1853 ,George Crumb ,General,What is the name of the dark fine grained rock of which the Giant's Causeway is formed,Basalt -General,They are only found in Lake Nicaragua - what are,Fresh water sharks,General,Who or what are Taikonauts,Chinese astronauts, History & Holidays,Who Was the Queen Of The Iceni Tribe Of England Who Led An Uprising Against The Romans? ,Boudica  -General,What is a group of this animal called: Trout,Hover,Sports & Leisure,In 2006 At Which Club Did Roy Replace Niall? ( Roy Keane Replaced Niall Quinn) ,Sunderland ,Sports & Leisure,In Which City Not Country Were The 2000 Summer Olympics Held? ,Sydney  -Food & Drink,What Does Vodka Actually Mean ,Little Water ,General,Goats have rectangular ______,Pupils,General,What is the only bird with a fully formed penis,Swan -General,How Is Saint Sylvester's Day Better Known?,News Years Eve,Geography,In which city is the bridge of sighs ,Venice ,Technology & Video Games,What is Celine Jules's (Star Ocean: The Second Story) favorite food? ,Baby rabbit risotto -Sports & Leisure,WA is what position in Netball? ,Wing Attack ,Music,Mango Records Is A Division Of Which Famous Record Label,Island,General,Who did ron howard play in 'happy days',Richie -General,Bragi was the Norse God of what,Poetry,General,Regular oval shape,Ellipse,General,"Who according to Hilaire Belloc, had a chief defect of ""chewing little bits of string""",Henry king -General,Who is mickey mouse's girlfriend,Minnie mouse,General,The study of the manner in which organisms carry on their life processes is _________.,Physiology,General,"Which Football Club Are Known As ""The Bluebirds""",Cardiff City -General,Jim Rhodes is the alter ego of which Marvel comic book hero,Iron Man,General,In New Zealand what is a Punga,A Fern,Science & Nature,Where in the body is the tiniest human muscle?,Ear -General,"2 Gentleman Verona, 12th Night, Merchant Venice name links",Characters called Antonio,General,"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",Science & Nature,Which was the longest dinosaur ?,Diplodocus -General,Whose big break was playing Vinnie Barbarino on Welcome Back Kotter?,John Travolta,Science & Nature, Arabian horses have one less vertebra in their backbones than other __________,Horses,Sports & Leisure,In what sport would you find a 'Sukahara'?,Gymnastics -Science & Nature, Male __________ have antlers 7 feet across. The antlers often weigh 60 pounds.,Moose,General,In The Beverly Hillbillies what was the name of Ellie's Chimp,Cousin Bessie,General,"In Which Country Is The Ruvironza River, Considered To Be The Most Southerly Source Of The Nile",Burundi -General,What joins muscles to bones,Tendons,General,"Who commanded the ""Caine""",Captain queeg,General,A flocculent thing resembles what,Wool -General,"Small buns made from choux pastry, filled with cream and covered in chocolate are called what",Profiteroles,General,By how much do the world's termites outweigh human beings,Ten to one,General,Lack of vitamin d causes which disease,Rickets - History & Holidays,"If you licked Mr T's booty, it would taste like___ ",Sexual Chocolate ,General,Name the lion in the Lion the Witch and the Wardrobe,Aslan,General,Sean Connery has what real first name,Thomas -General,Who was born anne frances robbins,Nancy davis reagan,General,What type of creature is a Whirligig,Water beetle, Geography,What is the basic unit of currency for Ireland ?,Pound -General,This defense is also know as compulsion by threat.,Duress,Music,Give The Christian Names Of Abba's 2 Female Singers,Agnetha & Anni-Frid,General,"What it the ninth sign of the zodiac, symbolized by an archer",Sagittarius -Entertainment,"What was the name of Ashley Wilkes' plantation in ""Gone With the Wind""?",Twelve Oaks,Sports & Leisure,In 1995 Which Formula One Driver Signed For McLaren But Couldn't Fit In The Car? ,Nigel Mansell ,General,"Common liquor in Alien Urine Sample, Napoleon, Blue Hawaiian",Curacao -General,Who Had a father Called Jor El And a Mother Called Lara?,Superman,General,What impressionist painted different views Rouen cathedral,Claude Monet, History & Holidays,Which US President Was Forced To Resign In 1974 ,Richard Nixon  -General,"In which classical music suite, would one find ""The Market Place at Limoges"", and ""The Great Gate of Kiev""",Pictures at an exhibition,General,What is the Capital of: Greenland,Nuuk,Music,What Are The Everly Brothers Christian Names,Don & Phil - History & Holidays,During which conflict is The Caine Mutiny' set? ,World War 2 ,General,Susan Abigail Tomalin became famous as who,Susan Saradon,General,Walter Koenig played which part in the Star Trek series,Ensign Chekov -General,Who beat Sonny Liston to become world champion for the first time,Cassius clay,Science & Nature,Where Are A Grasshoppers Ears? ,On Its Legs ,General,Who is the main character in 'touched by an angel',Monica -Geography,Who Paid For Christopher Columbus 's First Voyage Across The Atlantic ,Ferdinand & Isabella Of Spain ,General,Thurl Ravenscroft is the voice of who,Tony the Tiger,General,What did The Musician Union ban on TV in 1966,Artists miming to records -General,Who wrote the 'The Dam Busters March' for the 1954 film of that name,Eric coates,General,Whose abduction of Helen of Troy brought about the Trojan War,Paris,Science & Nature,Which machine was invented by the German Wilhelm Rontgen in 1895? ,X-Rays  -General,There are 4.5 gallons of ale in what container,Pin,Art & Literature,Who Wrote (Far From The Madding Crowd) ,Thomas Hardy ,Technology & Video Games,"In Sonic the Hedgehog, the character Knuckles is what species? ",Echidna -General,What is the fear of wealth known as,Plutophobia,General,Barbie's nautical-sounding sister,Skipper,General,What declaration warned against interference in the America's,Monroe doctrine -General,Which Marilyn Monroe film was adapted for a stage play starring Daryl Hannah in London in 2000,Seven year itch,General,Treifa foods are forbidden to which religious group,Jews - opposite of Kosher,General,Generation X Toys: You coloured these and then watched them contract in the oven,Shrinky dinks -General,The song 'Raindrops keep falling on my head' was introduced in which film,Butch cassidy and the sundance kid,General,An 'ortanique' is a cross between which two fruits,Orange and tangerine,General,What event does Maundy Thursday commemorate? ,The Last Supper  -General,The childrens story 'The Rose and The Ring' was written by which 19th century novelist,William thackeray,General,Who did the painting on the cover of The Bands first album,Bob Dylan,General,Time ____ when you're having fun,Flies -General,What creature make the loudest noise - 188 decibels,Blue Whale,General,What is the Capital of: Falkland Islands (Islas Malvinas),Stanley,General,In Little Rock Arkansas men/women can get 30 days jail what,Public Flirting -General,What was pirate Captain Flint's ship called,Walrus,General,Which nursery rhyme was the first gramophone recording,Mary had a little,Science & Nature,Botany and Zoology combined make up the science of _______.,Biology -Entertainment,"Who says, ""Th_th_th_that's all folks!""",Porky pig,General,What system was introduced in 1967 to deal with the loud hiss on cassettes,Dolby,General,Ill Never Forget Whatshisname 1968 film first said fuck – who,Marianne Faithful -General,"In the Bible, who is the Book of Psalms attributed to",David,Food & Drink,What Grain Is Whiskey Made From ,Rye Or Barley ,General,What does Ally Sheedy say she likes to drink in the Breakfast Club?,Vodka -General,"Erotic solo dance of North Africa, the Middle East, and Turkish-influenced Balkan areas",Belly Dance,General,Over 28 million Americans are what,Hearing Impaired, Geography,What is the basic unit of currency for Portugal ?,Escudo -General,What is the capital of Nauru?,Yaren,General,The mandylion is another name for which contentious object,The Turin Shroud,General,Who sang 'we've only just begun',Carpenters -General,What is used to measure horizontal and vertical angles in surveying,A theodolite,General,Who married the poet Robert Browning in secret in 1846,Elizabeth barrett,General,What is the name of the stick used in hurling,Hurley - History & Holidays,Where did the Birkenhead sink?,Danger Point,General,"What Spanish surrealist modestly titled his 1965 book ""Diary of a Genius""",Salvador dali,General,What was the first soap to feature crib death in its story line,All my -General,A sliding step in which one foot 'chases' and displaces the other.,Chassé,General,Plant of which stalks are used as a vegetable,Celery,General,"In Magnum PI,Rick was not Rick's real name. What was his real name?",Orville Wright -Science & Nature,What is the heart rate of the blue whale? (in beats per minute),Nine,Art & Literature,By What Name Is The Great Italian Sculptor & Artist Buonarroti Better Known ,Michelangelo , History & Holidays,Who Wrote the Novel 'The Witching Hour' ,Anne Rice  -General,Baseball is not sport - state of mind - cant learn it - what author,John Steinbeck,General,What brand of footwear is endorsed by dr j,Converse,General,A Grabatologist collects ____,Ties -Music,"Before she joined Jefferson Airplane, for which group did Grace Slick sing?",The Great Society,General,Who wrote the song Johnny be Good,Chuck Berry,General,The first auto accident on record occurred in this city.,New york -Music,What was John Lennons father's name?,"Alfred ""Freddie"" Lennon",General,Which Brit set a record when becoming the first man to walk the entire length of the Amazon in 2008?,Ed Stafford,General,What's been the ruin of many a poor boy in New Orleans,House of the rising -General,Where was nixon's western white house,San clemente,General,What is a group of this animal called: Curlew,Herd,General,What links Paul and Ringo in the Beatles,Left Handed -General,Which was the first book to tell the story of the lioness elsa,Born free,General,"Plaza hotel who was the ""castaway cowboy""",James garner,General,What is the young of this animal called: Goose,Gosling -General,Who's directorial debut was with Reservoir Dogs,Quentin Tarantino, Geography,What is the capital of New York state?,Albany,General,Who wrote Wuthering Heights,Emily bronte -General,Whose first album was 'jagged little pill',Alanis morissette,General,Popular in North America what kind of sport is 'birling',Log rolling,General,"Who are santa's reindeer, in alphabetical order","Blitzen, comet, dancer," - History & Holidays,"What was the third country to get the ""bomb""",Britain,General,What North African country contains the largest area of the Sahara,Algeria,General,Ombrophobia is the fear of,Rain -General,To the Apache Indians what were God Dogs,Horses,General,What popular drink was introduced at the St Louis worlds fair in 1904,Ice tea,Science & Nature,What dog is named after a Mexican state?,Chihuahua -General,"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,Music,"Which Female Vocalist Teamed Up With Larry Adler On The 1994 Single ""The Man I Love""",Kate Bush,General,US civil war what disease incorrectly treated by ink injections,Gonorrhoea -General,What country invented high octane gasoline in 1930,Russia,General,Klaus Voormann designed the cover for which Beatles album,Revolver,Music,"Who Had A Hit With The Song ""Like A Prayer""",Madonna -General,Sunglasses were invented in China to do what,Hide a Judges eyes,General,Where can you see Ada Byron,Woman on Microsoft watermark,General,What was the first ocean liner to have a swimming pool,Titanic -Geography,Which British Land Owner Owns The Largest Acerage ,The Forestry Commision ,General,What is the only capital letter in the Roman alphabet with exactly one endpoint,P,Music,How many holes does it take to fill the Albert Hall?,4000 -General,1878 Wanamaker's of Philadelphia first US store to install what,Electric Lights,General,What is ikebana,Flower arranging,General,Where is the setting for 'the bridge on the river kwai',Burma -General,Artificial barrier or obstacle on a motor racing course,Chicane, History & Holidays,Which Of Santas Reindeers Shares Its Name With A High Street Shop ,Comet ,General,"In National Lampoon's Vacation, what did the Griswalds call their ugly green station wagon?",The Family Truckster -General,Plant with edible fruits in red green and yellow,Capsicum,General,Biko was involved in what protest movement?,Apartheid,Geography,What is the capital of Pakistan,Islamabad -General,What was Mae West sent to the workhouse for in 1926,Writing starring in play called sex,General,Where in Europe is the Barbary ape found in the wild,Gibraltar,Food & Drink,Who had a big hit with `Sweet Like Chocolate' in 1999? ,Shanks & Bigfoot  -Music,Sloop John B & God Only Knows Appeared On Which Milestone Album,Pet Sounds, History & Holidays,What Were The Six Farm Hands Arrested For Forming A Trade Union Better Known As? ,The Tolpuddle Martyrs ,General,"Baby I see this world has made yoU.S.ad, some people can be bad ___"" What is the Dire Straits song title",Why Worry -Food & Drink,How Did Eggs Benedict Get It's Name ,As A Cure For A Certain Mr Benedict's Hangover ,General,What was the first Beatles song licensed for use in a Nike add,Revolution,Food & Drink,What are dried plums called ,Prunes  -General,Dorothy Cavis-Brown made news at Wimbledon - why,Lineswoman - slept in chair,General,What is a group of ducks,Brace,General,On what show did Dano get to book the bad guy?,Hawaii 5-0 - Geography,What is the capital of The Netherlands ?,Amsterdam,General,What happens every 30 seconds in America,Teenage pregnancy, Geography,In which country is Cusco?,Peru -General,The first Russian satellite was launched in which year,1957,General,"What is the UK's largest publicly funded building, constructed in the 1900's",The british library,Music,What is the world's best selling musical instrument?,The Harmonica -Music,Who Boogied On Down To The Funky Nassau,Beginning Of The End,Science & Nature,Which is the largest African bird of prey?,Lammergeyer,General,In Pennsylvania legally a man needs written permit from wife do what , Purchase Alcohol -Music,Which Robert Palmer Song Featured In The Movie Cocktail,Addicted To Love,General,What is one of the more expensive automobiles in the world,Mercedes,General,Who played the part of Malcolm X in the film of the same name in 1992,Denzelwashington -General,What two brothers were nominated for president by the Republicans in 1884,William and john sherman william and john sherman william john sherman,General,"Eight hundred dollars if locked in a completely sealed room, of what will you die before yoU.S.uffocate",Carbon monoxide poisoning,Toys & Games,This ancient Chinese game is played with 156 small rectangular tiles.,Mah jongg -General,Self-praise is no ___.?,Recommendation,General,"Which group sang the song ""Picture Of You""?",Boyzone,General,What dangles over the tongue from the palate,Uvula -General, Toxiphobia is a fear of _________.,Poison,General,"Largest island of the continental United States, southeastern New York?",Long island,General,What mates with a drake,A duck -General,Who was the composer of the classical piece known as 'Zadok The Priest'?,Handel,Art & Literature,Who wrote 'Psycho'?,Robert Bloch,General,Plant with aromatic seeds used in Indian food,Cumin -General,Charcarodon Carcharias is the Latin name for what creature,Great White Shark,General,What star was once a vacuum cleaner salesman,Rock Hudson,Music,"With whom was Janet Jackson performing a duet, when she 'popped out' at the 2004 Superbowl?",Justin Timberlake -General,What's the predominant church in greece,Greek orthodox church greek orthodox,General,Name the former topless model who inherited $300 million from her late husband J. Howard Marshall II,Anna nicole smith,Music,Which Solo Artist Released An Album Entitled “Music” In 2000,Madonna -General,What did George Washington soak his wooden teeth in for taste,Port,General,Edwin Drake sank the first of them in 1859 - what were they,Oil Wells,Entertainment,To play music smoothly?,Legato -General,Which famous ship and whiskeys name means short underskirt,Cutty Sark,General,"On ""It's Your Move,"" what is the name of the rock band that Mark and his friend Eliot pretended to be?",The Dregs Of Humanity,General,The violet belongs to which genus of flowers,Viola -General,What are camel haired brushes made of,Squirrels tails,General,What is another name for a spiny anteater,Echidna,Science & Nature,What Is Affected If A Patient Suffer From Gingivitis ,The Gums  -General,What is the traditional curse of Adam that affects most of us,Working for a living,General,What would you put on your escutcheon - if you had one,Coat of Arms,General,What does 'Alma Mater' mean,Bountiful mother -General,Although He Never Set Foot Here What Elvis Presley Movie Is Actually Set In England,Double Trouble,Art & Literature,Which American Artist Is Known For A Portarit Of His Mother ,James Whistler ,General,What war did Joan of Arc's inspirational leadership help end,The hundred years war - History & Holidays,Which Of Hitler's Deputies Flew To Scotland In 1941? ,Rudolf Hess ,General,Schwarzkopf on what game in 1994 did norman schwarzkopf post the highest score,Celebrity,Science & Nature,What Is A Blockage Or Clot In A Blood Vessel Known As ,An Embolism  - Geography,What seaport's name is spanish for 'white house'?,Casablanca,General,Where would you find your lunula,Fingernail - white part,General,A wind with a speed of 74 miles or more is designated as a what,Hurricane -General,In The World Of Music How Is 'Harry Lillis' More Commonly Known,Bing Crosby,General,What was the name of Ali Babas female slave,Morgiana,General,A melcryptovestimentaphiliac compulsively steals what,Knickers - History & Holidays,What two mountain ranges did hannibal and his elephants march through in 218 b.c ,The pyrenees and alps ,General,Victoria is the capital of the ______,Seychelles, Geography,What sea is between Italy and Yugoslavia?,Adriatic -Science & Nature," If they are well treated, camels in captivity can live to the age of __________",50,Music,Was Rio Duran Durans First Or Second Album,Second,General,Khons was the Egyptian god of what,Moon - History & Holidays,"Who asked, Ever Fallen In Love? ",The Buzzcocks ,General,What is french national anthem,Marseillaise,Entertainment,How many storm troopers were seen in Star Trek?,None (It Was Star Wars) -General,What was the name of the union jack that was used to capture blackbeard off ocracoke island in 1718,Ranger,General,What is the Capital of: Mozambique,Maputo,General,Which Human Body Part Contains A Quarter Of Your Bones,Ear -General,"Which Film Opens With The Line ""No Man's Life Can Be Encompassed In One Telling""",Ghandi,General,The Roman province Maxima Ceasariensis was in what country,England,Entertainment,Where are Rocket J. Squirel and Bullwinkle Moose from?,Frostbite Falls -General,How long was jonah in the whale's stomach,3 days,General,Nathan Burnbaum became famous under what name,George Burns,General,Which Scottish engineer gave his name to the S.I. unit of power,Watt -General,"What is the nickname for Rome, Italy",Eternal city,General,In 1951 Kiki Haakonson Became The First Ever Miss World Winner But What Country Did She Come From,Sweden,General,With what is the organisation UKAEA concerned,Atomic energy -General,Who wrote the semi-autobiographical novel 'Of Human Bondage,Somerset maughan,General,What is the term used by the military when they lose a nuclear weapon,Broken arrow,Science & Nature," 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 -General,Name the condition of the mind that leads to a need to steal things,Kleptomania,Science & Nature,What Metal Is Liquid At Room Temperature ,Mercury ,General,"The human body contains enough of what to make 2,200 match heads",Phosphorous -General,What is non-rhyming poetry called?,Blank verse,General,"Which island was defended by Faith, Hope, and Charity during WW2",Malta,General,Holden Caulfield - Catcher in the Rye - where JD Sal get name,Movie marquee W Holden J Caulfield -General,What is the flower that stands for: compassion,Allspice,General,"Who did Christina Onassis grudgingly give $25 million to, in 1977",Jacqueline onassis jackie onassis,Geography,Before The Euro What Was The Currency Of Sweden ,Krona  -People & Places,Who Is Stevland Morris Hardaway Better Known As ,Stevie Wonder ,General,What is a group of this animal called: Locust,Plague,Music,Which Instrument Did Mark King Of Level 42 Play,Bass -General,What is a group of flies,Business,General,Which Car Manufacturer Was The First To Mass Produce Cars With Power Steering,Chrysler,General,"Habib Ibn Ali Bourguiba became president of which country in 1957, was re-elected three times before being made Life President in 1975",Tunisia -General,What is the flower that stands for: slander,Stinging nettle,General,Menkes Kinky Hair Syndrome caused by deficiency of what,Copper,People & Places,Why Did Michael Fagan Hit The Headlines In 1982 ,Broke Into Queens Bedroom  -General,What wood is plywood mostly made from,Birch,General,"Which city hosted the world fair under the theme ""man and his world""",Montreal,General,What colour thread is used for filigree,Silver or gold -General,What was the first country to leave the United Nations,Indonesia,General,Which City Claims Table Mountain As It's Backdrop,Capetown (South Africa), History & Holidays,Which Political Party Rose To Power In China In 1949 ,The Communists  -General,The filbert is an alternative name for which nut,Hazelnut,Food & Drink," Often eaten for breakfast, the egg comes from what barnyard animal",Chicken,General,Ranch what famous building did sir john vanbrugh design,Blenheim palace -General,In what Australian state would you find Armidale,New south wales nsw,Entertainment,What is Hawkeye's full name in M.A.S.H.?,Benjamin Franklin Pierce,General,What finger is the most sensitive,Forefinger -General,What is the official drink of the state of Ohio,Tomato Juice,General,What form of horse racing boasts the Little Brown Jug,Harness racing,General,Patsy Mclenny became famous as who,Morgan Fairchild -General,Which actress and singer played 'Breathless Mahoney' in the film Dick Tracy,Madonna,Sports & Leisure,In which sport is the Davis Cup awarded?,Tennis,General,What is the general term for all chemical substances produced by the endocrine glands,Hormones -General,The hundred year war actually lasted how many years,116 years,General,What is the technical term for long-sightedness,Hypermetropia,General,Which French philosopher created analytical geometry,Rene Decartes -General,"Who Was The Original Choice To Play The Role Of ""The Terminator"" Before Arnold Schwarzenegger Got The Part",O.J Simpson,General,In 1942 Japanese occupied,Manila,General,Astronomer Josephe-Jerome de Lalande eat what on bread butter,Spiders -General,Name the dance that means new voice in Portuguese,Bossa Nova,Music,"Who Were Mark Farner, Mel Schacher & Don Brewer",Grand Funk Railroad,General,60% of English women cannot orgasm without what,Vibrator -Sports & Leisure,At The Start Of The 2002/03 Season Who was the Premierships Highest Goal Scorer ,Alan Shearer ,General,"Who recorded the album ""Ssssh"" in 1969",Ten years after,General,"Which Countrys International Registration Mark Bears The Letters ""DZ""",Algeria -General,By which name is Mendelssohn's Third Symphony known,Scottish,Sports & Leisure,W A is what position in Netball? ,Wing Attack ,General,Who composed the overture Hebrides (Fingals cave) two names,Felix Mendelssohn -General,The opera Aida was commissioned in 1869 to mark what event,Opening Suez canal,General,Who is the helmsman of the boat when you are sailing into Hades,Charon,General,"Who was the nba's most valuable player in 1976, 1977 and 1980",Kareem -Food & Drink,In which countries would you find the following city 'Whiskeytown'? ,USA ,General,This cereal's mascot is Tony the Tiger,Frosted flakes,Music,"Who Had A Hit With The Song ""Do That to Me One More Time""",The Captain & Tenille -Art & Literature,Under What Pen Name Did Hector Hugh Munro Write ,Saki ,General,Who's advertisement ends 'The ultimate active sports vehicle, bmw,General,What is added to the ice & water mixture in domestic ice cream makers in order to lower the temperature,Salt -General,Why was the dinosaur Triceratops so called,Three horns,General,What is the fear of music known as,Melophobia,Geography,In what country is the lowest point in South America,Argentina -Music,From What Country Do The Dance Band Cascada Come From,Germany,Religion & Mythology,In what animal form did Zeus seduce Europa?,Bull,General,Name the Greek equivalent of the Roman god Juno,Hera -General,What do you add to vegetables to make the dish salmagundi,Duck or Chicken,General,Which sauce has the same name as a state in Mexico,Tabasco,General,Which Greek mountain is consecrated to the muses,Helicon -General,"French philosopher, scientist, and mathematician, sometimes called the father of modern philosophy",Descartes,Entertainment,How many symphonies did Beethoven complete?,Eight,General,Doraphobia is the fear of _________.,Fur -General,"In 'la traviata', what does violetta sing",Sempre libera, History & Holidays,"Alphabetically, Which Is The Last Of Santa's Reindeers? ",Vixen ,General,What is the only creature born with horns,Giraffe -General,Who's voice was rex the robot for disneyland's star tours,Pee wee herman,General,"What tv dog had successive masters named jeff, timmy and corey",Lassie,Entertainment,Secret Identities: Clark Kent,Superman -General,More than 14 million are sold daily in 150 countries - what,Bic pens,General,A white mtallic element,Barium,Geography,The Thatcher Ferry Bridge crosses what canal,The panama canal -General,Alex and his 'droogs' are thugs in what Anthony Burgess novel,A Clockwork Orange,General,What is the capital of brazil,Brazilia,General,At which racecourse would you find a jump called Valentine's Brook ,Aintree  -General,What is the American equivalent of the Irish Poteen,Moonshine,General,Iron block on which metals are worked,Anvil,General,"What's the international radio code word for the letter ""I""",India -Science & Nature,What Is The UK's Most Poisonous Plant? ,Deadly Nightshade ,General,A planes black box is usually named after what King,Midas,General,Who wrote Vanity Fair,William thackeray -Science & Nature,What Type Of Animal Is A Borzoi? ,A Dog The Russian Wolfhound ,Entertainment,What is Peter Parker's secret identity?,Spiderman,General,What is a group of porcupines,Prickle -General,What links Scorpion Seawolf and Thresher,Lost US nuclear reactors at sea,Music,What Did Brenda Lee Want To Jump Over In 1961,The Broomstick,General,Who is known as a collector of trivia,Spermologer -General,When did Alaska become the 49th U.S. state,1959,Science & Nature,What is a male swine called?,Boar,Science & Nature, The giant African __________ grows to a foot long and reaches weights greater than a pound.,Snail -Geography,What is the capital of Gabon,Libreville, History & Holidays,"Which type of British fighter plane shot down 1,294 enemy aircraft in World War One? ",The Sopwith Camel ,General,Who ruled the seas in Greek mythology,Poseidon -General,"Who released ""carrie anne"" in 1967",Hollies,General,In 1643 Evangalisa Torichelli invented the first what,Barometer, History & Holidays,Who Released The 70's Album Entitled The Stranger ,Billy Joel  -Music,Name The Arranger / Orchestra Leader On Frank Sinatra's Songs For Swinging Lovers Album,Nelson Riddle,General,In St Louis Missouri its illegal for a fireman to rescue who,Undressed women full dress only,General,Effect that occurs when two or more waves overlap or intersect,Interference -General,What animals eye is bigger than its brain,Ostrich,Music,"What Clothing Are The 2 Figures Wearing On The 1978 Black Sabbath Album Cover ""Never Say Die""",Some Type Of Flight Suits,General,Who won the Nobel Peace Prize in 1972,Nobody -General,"Which 1996 Disney Movie Featured The ""Eternal "" Hit ""Someday""",The Hunchback Of Notre Damme,General,The animal responsible for the most human deaths world wide is the ________,Mosquito,General,What group did tommy james leave in 1970,Shondelles -Science & Nature," 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,General,What is alice cooper's real name,Vincent furnier,General,Which chart song was based upon psalm 137,Rivers of babylon -General,As Of 2008 Only One President So Far Was Born On The 4th Of July Can You Named Them,Calvin Coolidge,General,What is liquid clay used in pottery called?,Slip,Food & Drink,Eggwash is generally used for what purpose? ,Glazing breads and pastries  -General,A Saudi Arabian woman can get a divorce if her husband doesnt give her what,Coffee,General,What Did Businessman Peter De Savray Buy For 6.7 Million Pounds In 1987,Lands End,General,What creature is the symbol of Bacardi,Bat -General,What links Bill Clinton Fidel Castro Alb Einstein Jimmy Hendrix,Left Handed,General,Marnie Nixon what Deborah Kerr Natilie Wood Audrey Hepburn,Dubbed in their singing voices,General,Name one of the three men who sat in the tub,Candlestick maker butcher baker -General,Almonds are members of what family,Peach,General,When are finger prints formed,3rd week in the womb,General,"In 1982, who was accused of killing both her parents with an axe",Lizzie borden - Geography,In which continent would you find the Lena river ?,Asia,General, The study of plants is _________.,Botany,General,What does a hypodermic literally mean,Under skin - History & Holidays,In Which Year Did A Soviet Cosmonaut Make The First Spacewalk ,1965 ,Geography,LAR is the international vehicle registration of which country? ,Libya (Libyan Arab Republic) ,Science & Nature,Which Wood Are Divining Rods Usually Made From? ,Hazel  -General,10% of men claim to do this regularly – what,Shave their pubic hair,General,"In 1997, which sportsman described his ethnic background as Cablinasian",Tiger woods,General,Who played laura petrie in 'the dick van dyke show',Mary tyler-moore -Music,"What's The Connection Between Nenah Cherry, Malcolm Mclaren & Bob Marley",Buffalo's,Music,"Tracy Chapman Or Tanita Tikaram Had A Hit With ""Twist In My Sobriety""",Tanita Tikaram,General,In Lebanon Virginia its illegal to do what to your wife,Kick her out of bed -Music,By What Name Is George O'Dowd Better Known,Boy George,General,What did pocahontas wear while entertaining the colonists,Nothing,General,What is mickey mouse's dog's name,Pluto -Music,"What's The Connection Between Len Barry, Paul Hardcastle & Manfred Mann","(Numbers) 123, 19, 54321",Food & Drink,"Which dish contains offal and oatmeal, and is traditionally boiled in a bag made from the stomach of an animal? ",Haggis ,General,Carmenta is the roman goddess of ______,Childbirth -General,It is illegal to use what to plough cotton fields in North Carolina,Elephants,General,If you planted a bandarilla what are you doing,Bullfighting,General,What french phrase means 'well informed',Au courant - History & Holidays,According To The Song How Many Drummers Drumming Were There ,12 ,General,What is the fear of spirits known as,Pneumatiphobia,General,What South American country has both a Pacific & Atlantic coastline,Colombia -General,The 1st buffalo ever born in captivity was born at Chicago's Lincoln Park Zoo in what year,1884,General,"Eric Clapton shared a woman with this superb guitarist and songwriter. Later, it inspired his to write Layla.",George Harrison,General,What Shakespeare character ends saying The rest is Silence,Hamlet - History & Holidays,George Washington Carver advocated planting peanuts and sweet potatoes to replace what?,Cotton and tobacco,Music,What Was Otis Redding Sitting On In 1967,Dock Of A Bay,General,Which country has won the most tug of war world championships,England - History & Holidays,Who shot President James Garfield?,Charles Guiteau,General,What was invented 1963 150 billion made since,Ring Pulls on cans not cans,General,Where is saint paul's cathedral,London -General,In Australian slang what is a ten ounce sandwich,Liquid Lunch - Can of Beer,Science & Nature,Which Dam Harnesses The Colorado River ,The Hoover Dam ,General,What is the study of tissues,Histology -General,"What is the correct chemical name for iron pyrites, sometimes known as 'Fool's gold'",Iron sulphide,Music,Who Was Front Man For Leon Young String Chorlae And The Paramount Jazz Band,Mr Acker Bilk,General,What did 'd.m.z' stand for in the vietnam war,Demilitarized zone -Science & Nature,What Communication Aid Was Invented In 1905 By American Undertaker Almon Strowger ,The Dial Telephone , Geography,What river is the Temple of Karnak near?,Nile,Science & Nature,Where do ants live?,Formicary -General,"Finely ground meal of grains of wheat, obtained by milling",Flour, Geography,Where is Dogger Bank?,The North Sea,General,Tellus was the Greek god of what,Earth -Food & Drink,What Is The Main Ingredient In Advocaat ,Egg Yolk ,General,What is the Capital of: United Kingdom,London, Geography,In which state is the Natchez Trail?,Mississippi -Tech & Video Games,"Who is the boss of the SNES game, 'Ranma 1/2: SUPER Hard Battle'? ",Herb,General,What returned in 1985 that is pictured on the Bayeux tapestry,Halley's comet,General,Of which British politician was it said 'He delivers all his statements as though auditioning for the speaking clock',John major -General,What poem is recited as the finale to Disney's christmas festivities,A visit from st nicholas,Geography,"The largest lake in Australia is ________, measuring 3,420 square miles (8,885 sq. km).",Eyre,General,Who fixed the date of the christian festival 'easter',Council of nicaea -Science & Nature, Birds do not sing because they are happy. It is a __________,Territorial behavior,Science & Nature,What Constant Related The Diameter Of A Circle To It's Circumference ,Pi ,General,"What are popcorn, moss and seed",Knitting Stitches -Geography,Which Country Left The Commonwealth In 1972 ,Pakistan ,General,What African country and its currency have the same name,Zaire,General,Which country imports the most champagne,Great Britain -General,In the Jewish religion where are shellfish and pork kosher,Chinese Restaurants,General,As pretty as a ______,Picture,Geography,What Does Dc Stand For In Whashington DC ,District Of Columbia  -General,"Cattle are bovine, sheep are ______",Ovine,General,"""But touch my tears with your lips, touch my world with your fingertips"" what is the queen song title",Who Wants to Live Forever,General,What is the sum of 2y + 32y + 56y,90y -General,"Who earned the nickname ""top gun"" in the Persian Gulf War",Colin Powell,General,By what other name is the double album The Beatles known,The White album,Sports & Leisure,From which club did Manchester United sign Roy Keane? ,Nottingham Forest  -General,Which heroine comes from Amphipolis,Xena warrior princess,General,What is the capital of Illinois,Springfield,Music,"What was the working title of ""With A Little Help From My Friends""?",Bad Finger Boogie -General,Which musical term denotes that a piece is to be played 'sweetly',Dolce, History & Holidays,What was the predecessor of the United Nations ?,League of Nations,Geography,What river is the Temple of Karnak near,The Nile -General,"Before wwii, the new york phone book had 22 listings for what surname, and none after wwii",Hitler,Geography,In which state is the mayo clinic ,Minnesota ,General,In which musical work is there a jester called Jack Point,Yeomen of the guard -General,"Which film ends with the line, 'What we have here is a failure to communicate'",Cool hand luke,General,In US on what Day are most collect calls reverse charges made,Fathers Day,Sports & Leisure,In Squash Each Game Is Played Until A Player Scores How Many Points ,15  -General,"Whose first major album was ""ziggy stardust and the spiders from mars""",David,General,Which course will stage the 2014 Ryder Cup torunament?,"Centenary Course, Gleneagles",General,Who wrote Oedipus Rex,Sophocles -General,What did Brahms compose for the University of Breslau after they gave him an honorary PhD,Academic festival overture,General,What is a young fish called,Fry,General,What machine is used to record the electrical activity in the brain,Electroencephalogram -General,Hundred when does the uterus expand 500 times its normal size,During pregnancy,General,Who were the first pop stars to appear in Madam Tussaud's,The Beatles,Sports & Leisure,Who Became World Heavyweight Boxing Champion By Beating Ken Norton After Muhammad Ali Retired In 1979 ,Larry Holmes  -Toys & Games,If you combined k & p to make cables what would your hobby be,Knitting,General,Crack gets it name because it ________ when yoU.S.moke it,Crackles,General,How long was nelson mandela in prison,27 years - History & Holidays,Who said 'public service is my motto'?,Al Capone,General,What is the greek word for the biblical book of revelation,Apocalypse,General,What is a violincello,Cello -General,In the US its 911 in the UK 999 what in Australia,0,General,"In ancient greece, what was a myriad","Groups of numbers over 10,000",People & Places,How Did James Dean Die ,In A Car Crash  -General,Who played the male starring role in 'The Graduate',Dustin hoffman,General,In 1955 Israel acquires 4 of the 7 dead sea,Scrolls,General,What pets did lyndon johnson have,Beagles -General,Super glue is used to lift fingerprints from what surfaces,Difficult,General,Collective nouns - A Float of what,Crocodiles,General,"Yoi, Yame, Seremade and Hantai terms in what sport",Karate -General,"Who wrote the thriller ""The Bourne Identity""",Robert ludlum,Music,What Is The Most Popular Karaoke Tune Worldwide,"""You've Lost That Lovin Feeling""",General,What is the saltiest sea in the world,Dead sea -General,Hemmingway said there's only 3 sports Bullfighting Car Racing ?,Mountaineering,Sports & Leisure,Football: The Chicago ______?,Bears,General,What happened July 15 1815 on HMS Bellerophon,Napoleon surrendered - History & Holidays,Which poisonous concoction was Socrates given to drink to carry out his death sentence?,Hemlock, History & Holidays,How did the tradition of serving turkey at Christmas originate? ,Medievil Europe serving Large Fouls Was A sign Of Wealth ,Science & Nature,How many hours does an antelope sleep at night?,One -General,"Spanish: how do yoU.S.ay ""four""",Cuatro,Food & Drink,"If you saw broiled food on an American menu, how would it be cooked? ",Grilled ,General,In which country would you drink a local beer called Keo?,Cyprus -Food & Drink,What is the most widely used seasoning ,Salt ,General,What is the name of the capital of Saskatchewan (canada),Regina,Music,"Who Had 2 Number One LP's Called ""Rollin"" & ""Once Upon A Star""",The Bay City Rollers -General,Who produced and directed the Death Wish series of films,Michael Winner,General,Which famous million dollar building cost more than a million dollars?,Sydney Opera House,General,"Which artist painted ""The Potato Eaters""",Vincent van gogh -General,US 1900 census people with 2 or less what were lower mid class,Servants,General,Who Holds The The Record For The Highest Number Of Olympic Gold Medals In A Single Summer Olympics,Mark Spitz,Food & Drink,What are the ingredients of the cocktail Cuba Libre? ,Rum And Coke  - History & Holidays,What was the first transatlantic radio message sent ?,S,Religion & Mythology,What two biblical cities did God destroy with fire and brimstone?,Sodom and Gomorrah,General,Which chemical element is named after the Greek word for 'green',Chlorine -General,What spy novelist was Moscow correspondent for Reuters & The Times of London,Ian fleming,General,"He was elected President of France, in 1981.",Francios Mitterrand,General,"The word 'whisky' comes from Gaelic, what does it mean",Water of life -General,John larroquette was the narrator of which gruesome film,Texas chainsaw,General,What disease is spread in minute water droplets,Legionnaires Disease,Sports & Leisure,What trophy is awarded to the winner of the NHL playoffs?,Stanley Cup -General,"The French call it ""La Train Sifflera Trois Fois"" what film is it",High Noon,General,Which New Zealand novelist won the Booker Prize with her novel The Bone People,Keri hulme,General,In computing what is the smallest movement of a mouse called,Mickey -Science & Nature,Who Invented the worlds first electronic pocket calculator in 1972 ,Sir Clive Sinclair ,General,Ignoring obvious what links Jupiter Neptune Uranus and Saturn,All have Rings,General,"On Little House on the Prarie,what was the original name for the school teacher?",Miss Beatle -General,In 1500 BC Egyptian women had to be what to be beautiful,Bald,General,On the Beaufort scale 8 represents what,A Gale,General,Where are birds kept in captivity,Aviary -General,Marie Osmond has only had one UK hit single as a solo artist name it,Paper roses,General,Meningitophobia is the fear of,Brain disease,General,What grows faster in the morning than at any other time of the day,Your hair -Sports & Leisure,In 2006 Who Was Voted Overseas Sports Personality Of The Year? ,Roger Federer ,Geography,In what country is taipei ,Taiwan ,General,Where is the island of korcula,Croatia -General,Who said 'ronald reagan doesn't dye his hair; he bleaches his face',Johnny,Music,Where is Abbey Road?,London,Music,Who Picked Up An academy Award In 1971 For Best Film Song,Isaac Hayes (Shaft Theme ) -General,Which river is dammed by the hoover dam,Colorado river,General,What is uruguay's chief port,Montevideo,People & Places,What Is MP Dennis Skinners Nickname ? ,The Beast Of Bolsover  -General,What does YoYo mean in English,Come-Come,Food & Drink,German dish of chopped cabbage? ,Sauerkraut ,Music,"Tiny In Stature But Huge In Both Ego And Talent Who Had The No.1 Album ""LoveSexy""",Prince As He Was Then Known -General,What was a Nuremberg egg,Pocket watch / clock,General,What is the second letter in the Greek alphabet,Beta,General,Where is the Greyhound Racing Hall of Fame located,Abilene Kansas - History & Holidays,Grease The Musical Opened On Broadway In 1973 How Many Performances Were There ,"3,388 ",General,Which country did France beat to take the 1998 world cup?,Brazil,General,Picturesque cave,Grotto -General,Anthony McMillan became famous as who,Robbie Coltrane,General,What has the chemical formula H2O2,Hydrogen Peroxide,General,What is a group of this animal called: Quail,Covey bevy -General,In 1964 who was the first non royal to appear on a UK stamp,William Shakespeare,General,"In bowling, what is it if you knock down all the pins with one ball",Strike,General,Device for driving air into fire,Bellows -General,"Which Movie Star Published An Autobiography In 2002 Entitled ""Lucky Man""",Michael J Fox,General,Talc is a hydrated silicate of which metal,Magnesium, History & Holidays,"What Apollo 13 astronaut contacted Mission Control with the words, (Houston, we've had a problem)? ",Jack Swigert  -General,Who is the Patron Saint of housewives,Martha,General,What alternative name is given to the Barn Owl because of its harsh cry,Screech owl,General,Thanatology is the study of what,Death -Science & Nature, The whistling swan has more than __________,"Feathers on its body. 25,000",General,Silent night the Christmas carol was first played on what,Guitar,General,"Which period was first, jurassic or carboniferous",Carboniferous -Science & Nature,Commonly Regarded As A Bit Of A Nuisance Amongst Computer Users ' It Writes Once But Reads Many Times '' What Is It? ,A Worm (Mass Mailing) ,People & Places,Washington is part of which English city? ,Sunderland ,General,In Texas by law criminals must give their victims what,24 hours advance written notice -General,What does a la carte mean in a restaurant,According to the menu,General,A hoop worn under skirts is called a what,Farthingale,General,"Philosophy: Epicurus, who believed that pleasure is the highest good, gave us which term synonymous with hedonistic?",Epicurean - History & Holidays,Which president was responsible for the Louisiana Purchase,Jefferson,General,What is the capital of missouri,Jefferson city,General,What are the 'irons' in horse racing,Stirrups -General,Out of what is paper money made,Linen,Geography,The geographic center of __________ is located in the city of Thunder Bay.,Canada,General,Alfred Gerald Caplin is better known as this (first+last name),Al capp -General,Who was made the first Holy Roman Emperor,Charlemagne,General,Who directed the films 'Carrie' and 'The Untouchables',Brian de palma,General,What is the capital of Chechnya,Grozny -Entertainment,In what did someone squish her hands to make the sound of e.t walking?,Jelly,Music,"Who Released An LP Entitled ""George Best""",The Wedding Present, Food & Drink,What is the main ingredient in the soup Borscht?,Beetroot -Art & Literature,Water-soluble paint made from pigments and a plastic binder…? ,Acrylic,General,Who sang the title song in the film Grease,Frankie Valli,General,This superb composer has composed scores to over 400 films?,Ennio Morricone -General,Which nation invented sauerkraut,Chinese,General,"In baseball, who won their first world series in 1969",New york mets,General,"Countries of the world: western coast of South American, major cities include Arequipa & Trujillo",Peru -General,What is the chalice used by Jesus Christ at the Last Supper called?,Holy Grail,General,What was the secret identity of don diego de la vega,Zorro,Music,What Is The Central Area Of A Hurricane Called,The Eye -General,A nilometer measures the rise and fall of what,Rivers (originally Nile),Sports & Leisure,How many hurdles in a 400m hurdle race?,10,General,Which species of bird gave Darwin his theory of evolution,Finch -General,What is the worlds oldest monotheistic religion,Judaism,General,France named it Chapeau Melon et Bottes de Cuir what UK,The Avengers,General,What colour is diamond dust,Black -General,Who was captain of the 1995 south african rugby world cup team,Francois,General,Name the theory which proposed that a person's mental development could be measured by a skull examination,Phrenology,Music,Which Record Label Were The Mindbenders Signed To,Fontana -General,In England what ocean current allows gardeners on the west coast to grow exotic plants,Gulf stream,General,What links Ygrana - Valentino and Cerrutti,Paris fashion houses,General, Doraphobia is the fear of _________.,Fur -General,What is the capital of Alberta,Edmonton,General,Town Australia is named after the wife Sir C H Todd postmaster,Alice Springs,General,Before 1687 clocks never had what,Minute hands -Music,"Who Wrote A Book Entitled ""The Adventures Of Lord Iffy Boatrace""",Bruce Dickinson, History & Holidays,Which movie prompted the style of wearing cutoff sweatshirts over the shoulder? ,Flashdance ,Sports & Leisure,What's the stick in golf? ,The Flag  -Geography,Which City Is The Capital Of Iceland ,Reykjavik ,General,Where is mount mckinley,Alaska,General,What was the final episode of MASH called,Goodbye Farewell and Amen -Entertainment,Who played Steve Erkel in 'Family Matters'?,Jaleel White,General,"After Greenland, which is the second largest island",New guinea,Geography,Which City Is The Capital Of Zimbabwe ,Harare  -General,Name Indian chief who rode in Roosevelt's inaugural procession,Geronimo,Entertainment,Before being married to Pamela Anderson what other famous actress was Tommy Lee married to?,Heather Locklear,General,What is the unit of currency in Jordan,Dinar -General,Which is the only book written by margaret mitchell,Gone with the wind, Geography,What is the basic unit of currency for Rwanda ?,Franc,General,What does a carpologist study,Fruit and seeds -Music,"What Connects ""Windmills Of Your Mind"", ""Evergreen"", ""Take My Breath Away""",Oscar Winning Songs,Sports & Leisure,How Wide Is The Beam In Womans Gymnastics ,4 Inches ,General,Britain Ireland and what country joined the EEC simultaneously,Denmark -General,Which U.S. writer wrote The Naked and the Dead,Norman mailer,General,What process allows plants receiving sunlight to make their own food,Photosynthesis,General,How did the Emperor Claudius die,Choked on a Feather - History & Holidays,"Humphrey Bogart, who was born on Christmas Day 1899, said the line 'Here's looking at you kid.'' In which film? ",Casablanca ,Science & Nature, A shrimp has more than a hundred pairs of chromosomes in each cell nucleus. Man has only __________,23,General,What central american country extends furthest north,Belize -Science & Nature,What name is given to the excrement produced by bacteria that feed on yeast cells and then defecate ,Alcohol ,General,R D Blackmore wrote which classic novel,Lorna Doone,General,In Greek mythology who was the mother of Uranus,Gaia -General,Dame where is the notre dame cathedral,Paris,General,"Religious phenomenon in which a message is sent by God (or by a god) to human beings through an intermediary, or prophet",Prophecy,General,What is the only creature that can turn its stomach inside out,Starfish -General,"Schwarzenegger what us state was named after french words for ""green"" and ""mountain""",Vermont,Music,Boleskin House On The Shores Of Loch Ness Was Bought By Jimmy Page In The 1970's Who Was Its Most Famous Former Occupant,Aleister Crowley, History & Holidays,"""Which diarist noted on 25th December 1662, """"(Christmas Day). Had a pleasant walk to White Hall, where I intended to have received the communion with the family, but I have come too late___"""""" ",Samuel Pepys (pronounced 'peeps')  -Science & Nature,What comprises than 54% of humpback whale's milk?,Fat,General,"What Shakespeare play is ""The Green Eyed Monster"" mentioned",Othello,General,What is the collective name for a group of foxes,Skulk -General,In Norse mythology what was Audulma - wet nurse of giants,Cow,Technology & Video Games,"In the original All-C Saga game, who kills Mandy and Matthew? ",Simetra,Music,"Which Future Member Of 10cc Appeared As A Pupil In The Film ""To Sir With Love""",Eric Stewart -General,Who's aliases John Willard Eric Gault George Ramom Sneyd,James Earl Ray – killed M L King,Music,For Which Film Was Director Bob Fosse Awarded An Oscar In 1972,Cabaret,General,What were the myrmidons who were created by zeus,Ant people -General,After WW I what was Hitler promoted to in rank,Corporal,General,Only humans and what have hymens,Horses,General,Of which country does the kalahari desert cover 84%,Botswana -General,"What is a 'yesterday, today & tomorrow'",Shrub,Entertainment,Who is the autor of the song 'Blue Suede Shoes'?,Carl Perkins,General,Orbis non Sufficit - World is not enough - whose family motto,James Bond -General,"What 1902 children's book continues to sell over 50,000 copies per year",The tale of peter rabbit,Geography,What country is directly north of Israel,Lebanon,General,Where is the kennedy space centre,"Cape canaveral, florida" -General,Which funnyman appears in a series of TV adverts for the insurance company Aviva?,Paul Whitehouse,General,Who sang the Song 'Electric Youth'?,Debbie Gibson,Art & Literature,"Artwork, usually paintings, characterized by a simplified style, nonscientific perspective, and bold colors. The artists are generally not professionally trained. ",Naive art -General,Who was the last to stab Caesar in Shakespeare's Julius Caesar,Brutus,General,Where is eurodisney,"Paris, france",General,Prowse What foreign country's phone book is alphabetized by first name,Iceland -General,"What god were the Thugees worshipping in ""Indiana Jones and the Temple of Doom""?",Kali, History & Holidays,Which Shakespeare Play Begins With 3 Witches Upon The Heath ,Macbeth ,General,What is missing from the 'venus de milo',Arms -Music,Who Wrote The Musical The Rocky Horror Picture Show?,Richard O'Brian,General,In the Terminator film who was the boy who would be the leader,John Conner – mother Sarah,Music,Stupid Cupid Reached No.1 For Which Female Vocalist,Connie Francis - History & Holidays,Who built Camelot?,King Arthur,General,"What is the meaning of the name Irene, which comes from the Greek words eirenikos or eirene",Aiming at peace,Food & Drink,"Which drink is named after the Duke of Beaufort's seat and is a long, refreshing drink of claret with soda water and sugar? ",Badminton Cup  -General,What ship meaning new land carried Scott to the Antarctic 1910,Terra Nova,Music,Which Album Was The Follow Up To Thriller For Michael Jackson?,Bad,General,"Who had her first entry into the British charts in December 1985 with ""Saving All my Love for You""",Whitney houston - Geography,In which continent would you find the Amazon river ?,South America,General,Framboise' is a liqueur flavoured with what,Raspberries,General,Nostradamus was famous for making what,Predictions -Geography,What is the capitla of Croatia? ,Zagreb ,General,Thaslophobia is the fear of what,Sitting Idle – doing nothing, History & Holidays,In which city was President Kennedy killed?,Dallas -General,In which country was Robert Maxwell born,Czechoslovakia,General,What is the fear of dirt known as,Rhypophobia,General,Kriss Kristofferson and Barbra Streisand starred in the re-make of which film,A star is born -General,In which Welsh county is Beddgelert,Gwynedd,Art & Literature,"In painting, a thin layer of translucent color.",Wash,General,Who was the norse goddess of love and fertility,Freya -General,What is the Capital of: Solomon Islands,Honiara,Music,What Was Marvin Gayes Only UK No.1,I Heard It Through The Grapevine,General,What is the largest single known gold object in the world,Tutankhamens Coffin -Geography,What Was So Important About The Oresund Bridge Between Malmo & Copenhagen Which Opened In July 2000 ,Because It Was The First Permanent Link Between Europe & The Swedish Peninsula ,General,Who was hercules' stepmother,Hera,General,What is a quahog,Type of clam -General,Which country was named after the sea people known as Peleset or Philistines,Palestine,General,Narcotics comes from the Greek - what it literally mean,Electric eels - put on foreheads,General,Which is the only arab country without a desert,Lebanon -General,Who played 'Kookie' in the T.V. series Seventy Seven Sunset Strip,Ed byrnes,General,In Texas its illegal to put graffiti on your neighbours what,Cow,General,Ray Bolger played who in The Wizard of Oz,Scarecrow -General,What are scaup,Wild ducks,General,"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,General,What material is touched or knocked on for good luck,Wood -General,April is the cruellest month - which poet wrote that line,T S Elliot it refers to income tax,General,How much current does a south american eel put out,One amp,General,In which city is the Kentucky Derby run,Louisville -General,In the German episode of Fawlty Towers Sybil was in hospital for which operation,Ingrown toenail,General,Solfatara in Southern Italy is a what,Volcano,General,Dentophobia is a fear of ______,Dentists -General,Who invented the gatling gun,Richard gatling,Geography,Which capital city has the highest population (as at 2006)? ,Tokyo (c. 34 million) ,General,In Goldfinger name the actress painted gold,Shirley Eaton -General,A psychological disorder in which the patient refuses to eat.,Anorexia nervosa,General,John Gutzon Borglum Born March 25 1871 Is Responsible For The Design & Creation Of What,Mount Rushmore,General,In Finland who rides a goat named Ukko,Santa Clause -General,"What was the movie that starred the little furry creatures from ""Return of the Jedi""?",Escape from Endor,General,What is a camel's hair brush made of,Squirrel fur,General,In The World Of Music How Is “Graham Mcpherson” Better Known ?,Suggs From Madness -Entertainment,What is the name of the film in which Steven Segal's character dies?,Executive Decision,General,To drive out an evil spirit,Exorcize,General,A bowling pin need only tilt how far in order to fall down (it's a decimal),7.5 degrees -General,What is a Gopak?,A Russian dance,General,Where was pizza first invented ,Milan,General,"Which gentleman thief, created by E W Hornung was played by Anthony Valentine on TV ",Raffles  -General,Who played the television detective Frank Cannon,William conrad,Sports & Leisure,In Which Sport Is The Curtis Cup Contested ,Golf ,General,What is the study of prehistoric plants & animals called,Paleontology -Art & Literature,In Swifts Gullivers Travels What Is Gullivers Profession ,Surgeon ,General,Who invented the fountain pen in 1884,Lewis waterman, Geography,Bridgeport is the largest city in which state?,Connecticut -General,What are Common Darter and Southern Hawker types of?,Dragonflies,Science & Nature,"This spikey succulent, native of Africa, is often an additive in creams and lotions.",Aloe vera,General,El Dago was the name of whose first private plane,Frank Sinatra -General,The wheel was invented in about what year BC,3500,General,"Who, in 1976, were the 3 original actresses in ""Charlie's Angels""","Jaclyn smith, kate jackson & farah fawcett",General,What storied European mountain is known in Italy as Monte Cervino,The matterhorn -General,The marine iguana is native to which island group,Galapagos, Geography,In what country is the lowest point in South America?,Argentina,General,What's the largest USA metro area without an NHL franchise,Dallas -General,What house was the biggest in america until the Cival war?,The White House,General,In Frank Herbert's Dune what are the Makers,Sandworms - Shai- haulud,General,What was the only film about Vietnam made during the war,The Green Berets -General,Which English king's coronation was postponed because he was suffering from appendicitis,Edward vii,General,What is the term for the period of change in form of an organism from the larval to the adult stage,Metamorphosis,People & Places,Which Controversial Manchester Comedian Died In June 2007 Aged 76 ,Bernard Manning  -General,Which team won the recently concluded UEFA cup?,Liverpool,General,"In Greek myth, who gave birth to the winged horse, Pegasus, from her blood after she had been slain",Medusa,General,Who is credited with inventing the world's first mechanical calculating machine,Blaise pascal -Music,Which Successful Solo Artist Is The Regular Host Of The Country Music Awards,Vince Gill,General,"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,General,"Where in the world would you find the Provinces of Santa Cruz, Rio Negro, Chubut and Neuquen",Patagonia argentina -General,In Denmark there is a 20 Kroner fine for not reporting what,Your own or anyone else's death,General,The closest relatives to anteaters are what,Sloths & armadillos,General,"In Shakespeare's The Merchant of Venice, what is the name of the merchant",Antonio -General,Apart From Smoking A pipe What Was Sherlock Holmes Favourite Vice,Injecting Cocaine,General,What was ALF's real name?,Gordon Shumway,General,A favourite spot for vampires to bite (that's one hell of a hickey!),Neck -General,Which sport is played at Roland Garros,Tennis in Paris on clay courts,General,"""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",General,Which is the most populated territory in australia,New south wales -General,Lucy Hobbs Taylor 1867 first woman in the US to do what,Become a registered dentist, History & Holidays,This assassin of Julius Caesar was his friend.,Brutus,General,In what Australian state would you find Taree,New south wales nsw - Geography,What is the basic unit of currency for Jordan ?,Dinar,General,What do elephants do on average 2 hours a day,Sleep,General,Who is the father of the Russian alphabet,Saint Cyril -People & Places,Which singer wrote the autobiography 'Take It Like A Man''? ,Boy George ,General,What was advertised as anytime anyplace anywhere,Martini,General,G Roddenbery Star Trek 2 radical ideas Spock's Ears and what,Woman second in Command -General,"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,General,The first country to host the summer & the winter olympics in the same year,France,General,"Which movie is the line ""Snakes, I hate snakes"" from?",Raiders Of The Lost Ark -General,Sociophobia is a fear of ______,Society,General,What word did Harry Truman coin for his daily walk,Constitutional,General,What is the proper name for marsh gas,Methane -General,What segment of television receieves the ACE awards,Cable, Language,What was the language of ancient India?,Sanskrit,General,Which Chemical Element Derives It's Name From The Greek Word for Heavy,Barium -General,What American playwright titled his autobiography Timebends,Arthur miller,General,"Football Team, cincinnati _________",Bengals,General,The foodstuff 'carambola' is known by what alternative name,Starfruit -General,In France what kind of nuts are noisette,Hazelnuts,General,"Which film starrs jonathan taylor thomas, devon sawa, scott bairstow",Wild,General,"Shirley Bassey recorded a hit song taken from The Sound of Music, what was it",Climb every mountain -General,"The second most common phobia, anthropophobia, is a fear of?",People,Science & Nature,What Is The Substance From Which Nails And Hair Are Made ,Keratin ,Toys & Games,"In this card game, teams are designated North_South and East_West.",Bridge -General,In what sport do teams compete for the Swaythling Cup,Men's table tennis,General,Hitler annexed the Sudetenland in the 1930s. Of which country was it a part,Czechoslovakia,General,In South Dakota its illegal to show movies that picture what,Police getting beaten -Sports & Leisure,How many points are awarded for a drop goal in rugby league? ,One ,General,Ripken What planet is farthest from the sun in the Milky Way,Pluto,Geography,Name the largest cathedral in the world.,St. peter's -Tech & Video Games,What does LED stand for?,Light Emitting Diode,General,"In the 1969 filin ""Anne of the Thousand Days"" starring Genevieve Bujold and Richard Burton, who was the Anne of the title",Anne boleyn,General,"What Do Cleopatra, Margaret Thatcher And Mia Farrow Have In Common?",All Have Twins -General,Who played commander riker in 'star trek',Jonathan frakes,General,What word appears over 46000 times in the Bible,And,General,"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 -General,The Red Cross was initiated in what year,1862,General,What feature of a triangle makes it scalene,Different side lengths,General,When was the newspaper 'pravda' first published,1912 - History & Holidays,What was the nationallity of Rasputin ?,Russian, History & Holidays,Which Classic Scary Movie Features The Line 'They're Here' ,Poltergeist , Geography,What is the capital of Thailand?,Bangkok -General,What is the shadow-casting pointer on a sundial called,Gnomon,Music,Which Chaka Khan Smash Was Written By Prince And Featured Stevie Wonder,I Feel For You,General,Russophobia is the fear of,Russians -General,Alain Boubil - Claude-Michael Schonberg music what hit show,Miss Saigon,General,"Who wrote the poem ""The Owl and the Pussycat""",Edward lear,Art & Literature,What famous character did Edgar Rice Burroughs create?,Tarzan -General,How many constellations are used in modern astronomy?,88,General,"What kind of money, more than real money, is printed in a year throughout the world",Monopoly, History & Holidays,What Happened If You Looked A Gorgon In The Eye? ,You Turned To Stone  -General,What country borders sudan to the north,Egypt,General,Commandaria is a desert wine made for over 800 years - where,Cyprus,General,What do spelunkers explore,Caves -General,How many rings on the Olympic flag,Five,General,What character did Michael J Fox play in the film Back to the Future,Marty mcfly,General,Samuel Morse the inventor was originally what till he was 46,Portrait Painter -Music,"In 1963 The Cougars Had A Hit Instrumental ""Saturday Night At The Duckpond"" But Were Banned By The BBC For ""Defacing A classical Melody"" What Ballet Did The Melody Come From",Swan Lake / Tchaikovsky, History & Holidays,Name James Dean's three films. ,"A Rebel without a cause, East of Eden, Giant ",General,Cedrick Errol Was The Name Given To Which Epnymous Child Hero Of The 19th Century,Little Lord Fauntleroy -General,After sex what does the female marine bristleworm do,Bites off eats penis,Music,Which 1979 Earth Wind And Fire Track Featured The Emotions,Boogie Wonderland,General,Cockney Rhyming slang what is Mutt (mutt and jeff),Deaf -General,What is the flower that stands for: sensuality,Spanish jasmine,Science & Nature,What Would You Find In The Pods Of The Pisum Stativum ,Peas ,General,In which country did the study of geometry originate,Egypt -General,In Greek mythology who ferries the dead across the river styx,Charon,General,What is the flattest continent,Australia,General,"Which group sang the song ""sleeping child""?",Michael Learns To Rock -Music,"Bluebird, Tishbite & Violaine Were All Minor Hits For Whom",The Cocteau Twins,General,"On the cartoon show 'the jetsons', how old is judy",Fifteen,Science & Nature, The stegosaurus had a brain that weighed only 2 ounces and was no bigger than a __________,Walnut -General,"Who was assassinated on november 22, 1963 in dallas",President john f kennedy,General,Which fruit is nicknamed the 'Date Plum' or 'Sharon Fruit'?,Persimmon,Food & Drink,What Does The Term 'A La Carte' Actually Mean? ,From The Menu  -General,"Which Opera Does ""Pavarotti's"" ""Nesun Dorma"" Actually Come From",Turandot,General,Who was the first black Wimbledon singles champion,Althea gibson,Music,"Who Were ""Hungry Like The Wolf"" In 1982",Duran Duran -General,Name the computer developed fromTuring's bombes at Bletchley Park to decode the German Enigma codes during World War 2.,Colossus,General,In Bewitched name Samantha's identical cousin,Serena,General,"What percentage of the earth's surface is land, approximately",Thirty percent -General,What are silver coins made from,Copper Nickel,General,What plant was named after the Greek goddess of the rainbow,Iris,Music,"What Position In The UK Charts Did ACDC's Hightway To Hell Reach In 1979 1, 4 Or 56",56 -General,Who was the first astronaut to orbit earth 3 times,John glenn,General,What is the most sensitive finger,Forefinger,General,"Which Singers Debut Solo Album Was Entitled ""Schizophonic""",Geri Halliwell -General,What city has the worlds biggest taxi fleet,Mexico - over 60000,General,Salem is the capital of which U.S. state,Oregon,General,"Dirk, poniard, and stiletto are all types of what",Daggers - History & Holidays,"In 1979 who was revealed to be the fourth Russian spy in the Burgess, MacLean and Philby affair? ",Anthony Blunt ,General,Sydney is on the east coast of ______,Australia,General,AMSTRAD companies name comes from what i.e. what mean,Alan Michael Sugar Trading - History & Holidays,What is the more common name for the plant Viscum Album? ,Mistletoe ,Sports & Leisure,In Which Sport Would You Be Awarded The Lonsdale Belt ,Boxing ,General,Which Famous Building Was Designed By Jorn Utzon?,Sydney Opera House -Science & Nature,What Apparently Inappropriate Name Is Used For A Gathering & A Breeding Place For Seals ,Rookery ,Geography,How many stars are on the flag of new zealand ,Four ,General,Who began her career making death masks from the severed heads of those executed by the guillotine after the French Revolution,Madame tussaud -General,Name Harry Potters non magical cousin,Dudley Dursley,General,Frankfort is the capital of ______,Kentucky,Sports & Leisure,Where was footballer John Barnes born? ,Jamaica  -Geography,What is the capital of Cuba,Havana,General,Boaz appears in which book of the Bible,Ruth,Science & Nature,What Is The Larva Of A Fly Commonly Called? ,A Maggot  - Geography,What is the basic unit of currency for Lithuania ?,Litas,General,What is another name for a black leopard,Panther,Sports & Leisure,Snooker player Peter Ebdon has a significant physical disadvantage. What is it? ,He is colour blind  -General,23 29 31 first 3 impossible numbers in what pub game,Darts - cant score 1 dart,General,"Which herb is similar in appearance to parsley, but its leaves have a slight flavour of aniseed",Chervil,Music,Which Stones Album Title Parodied That Of A Beatles Release,Let It Bleed -General,Who won the 1995 rugby world cup,South africa,Geography,What sea is between Italy and Yugoslavia,Adriatic,Geography,What and when is the biggest national celebration every year in Australia? ,Australia Day  -General,What name is given to the large Russian utensil for making tea?,Samovar, History & Holidays,What did Henry Shrapnel invent?,The exploding shell,General,"Who, in 1948, became the first Prime Minister of Israel",David ben-gurion -General,Who was Bette Midlers piano player before going solo,Barry Manilow,Art & Literature,"The fallacy of personifying inanimate objects, often in bad taste?",Pathetic fallacy,General,What tree provided the laurel of classical wreaths,Bay -General,In Which US State Is Yale University?,Connecticut,General,Oporto in Portugal stands on what river,The Duoro,General,What is the fear of frogs known as,Ranidaphobia -General,"Which substance used as a bleach, can also be used as the oxidizing agent in rocket fuel",Hydrogen peroxide,Geography,The largest policeman's beat (territory) in Europe is in which country? ,Scotland ,General,Sting Vogue Moschino Adidas Police Wires Ice types of what,Spectacles - Glasses -General,The Pogues took their name from Pogue Mahone - what mean,Kiss my arse,Food & Drink,Little round chocolate candies are known as _&m's.,M,Entertainment,Who starred in the 1952 film 'Niagara'?,Marilyn Monroe -General,What was jean-claude van damme's original stage name,Cujo,Entertainment,Who was always trying to get rent from Andy Capp,Percy,General,How did sir walter raleigh die,Execution -Geography,What country boasts the southernmost point in continental europe ,Spain ,General,What pacific island is Noumea the capital of,New caledonia,Sports & Leisure,Which Sport Was Inroduced Into The Olympic Games In 1988 ,Tennis  -General,In what country were Trabant cars made,East Germany,Food & Drink,Where is most of the vitamin C in fruits?,Skin,General,What is the state bird of Washington,Willow goldfinch -General,Name the smallest breed of dog,Chihuahua,Science & Nature," 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,General,Isaiah Sellers did it before Samuel Clements - did what,Used Mark Twain -General,Corinthian Ionic and what are the orders of Greek architecture,Doric,Music,Which Cover Of An Elvis Presley Song Gave The Pet Shop Boys A No.1 Hit In 1987,Always On My Mind,General,"Which musical features the song ""Getting to Know You""",The king and i -General,How many kilograms make up a metric tonne?,1000,General,What Was The Name Of Michael Jacksons Pet Chimp,Bubbles,Music,In the Elvis Presley song Jailhouse Rock which instrument did Spider Murphy play?,Saxophone -General,A statement made by placing your hand on a bible,Oath,Science & Nature," The kakapo is a nocturnal burrowing parrot of __________ that has a green body with brown and yellow markings. Its name is from Maori and means ""night parrot.""",New zealand,General,What was the constituency of Rik Mayall's character alan B'stard in the TV sitcom 'The New Statesman'?,Haltemprice - Geography,Accra is the capital of ______?,Ghana,Music,"Who Had A 80's Hit With The Song ""Lipstick, Powder & Paint""",Shakin Stevens,Music,"Who Sang With Glen Campbell On His No.3 Hit ""All I Have To Do Is Dream""",Bobbie Gentry -General,Room or space immediately under the roof of a house,Attic,Entertainment,Who is the fastest mouse in all of Mexico?,Speedy Gonzalez,General,Who was known as the Father of Science Fiction,Jules Verne -General,Who wrote The Stars Look Down and Hatter's Castle,A j cronin,Entertainment,An adventurous penguin named Tennessee Tuxedo had a sidekick named _______,Chumley,General,Both sexes get them but men more often - get what,Hiccups -General,What artist composed the classical work Tannhauser,Wagner,General,Northern species of duck with soft feathers,Eider, History & Holidays,Who Released The 70's Album Entitled Tonights the Night ,Neil Young  -General,Epistemophobia is the fear of what,Knowledge,General,What do eccrine glands produce,Sweat,General,"In the early 20th century, rattlesnake venom was used to treat which illness",Epilepsy -General,Barrel size - what wine barrel contains 126 gallons,Pipe,General,"In Greek mythology, who personified dread",Diemos,Geography,Name the U.S. state with the smallest population.,Alaska -General,What is the most rural state in the u.s,North dakota, History & Holidays,Who was the first chancellor of West Germany after WW II,Adenauer,General,Which Country Changed From Driving On The Left To Driving On The Right In 1967?,Sweden -Music,After Initial Sucess With Two Tone Which Group Changed Their Label To Go Feet In 1980,The Beat,General,16th century where the most fashionable place to wear a ribbon,Pomaded grown female pubic hair,Science & Nature,What 2 words term is given to a simulated 3d computer environment ,Virtaul Reality  -General,Syncope is the medical name for what condition,Fainting,General,The male of what species explodes on mating - then dies,Honeybee, History & Holidays,Who was the father of Elizabeth I?,Henry VIII -Science & Nature,What Is The Name Of The Instrument Used For Listening To The Heart And Lungs ,A Stethoscope ,General,Material burned to give fragrant fumes,Incense,Geography,Which element makes up 8.13% of the Earth's crust,Aluminium -General,In which film did Woody Allen direct Sylvester Stallone,Bananas - 1971 – Stallone a punk,General,In the game 'banjo-kazooie' what is the witch's name,Gruntilda,General,How was USA president James Buchanan different from all rest,Batchelor maybe gay -General,"Which popular English dessert consists of strawberries, whipped cream and lemon meringue?",Eton Mess,General,What was created in France in 1885 by Frederic Auguste Bartholdi With The Intention Of Enlightening The World,The Statue Of Liberty,Science & Nature," The raccoon derives its name from the Indian word meaning ""he who scratches with his __________",Hands -General,The day after Christmas day,Boxing day,Science & Nature,What Is The Term Used For A Drug Designed To Reduce Body Fluid ,Diuretic ,General,"In 'the great escape', how many finally made it to freedom",Three -General,Roy Chapman became baseball's first fatality in which year,1920,General,What weapon is tattooed on Glen Campell's arm,Dagger,Science & Nature,"What device used to be described in Greek as ""watcher of the small"" ?",Microscope -General,Electronic lift control what is the second biggest organ in the human body,Liver,General,What is the highest point on Exmoor?,Dunkery Beacon,General,Who were the 1991 nba champions,Chicago bulls -General,Aotearoa is Maori name for New Zealand - what's it mean,Long Daylight,General, An instrument on a car to measure the distance travelled is called a(n) _________.,Odometer,General,Who was The First Male Solo Act To Achieve A US Number One On The Billboard Hot 100,Acker Bilk -General,"In Knight Rider,what's the real last name of Michael Knight?",Long,Toys & Games,What does a twitcher look for,Birds,General,Attend a party uninvited,Gatecrash -General,What does a brandophile collect,Cigar bands,General,Prokofievs opera War and Peace has what first to its credit 1973,First one done Sydney Opera House, History & Holidays,"Roman statues were made with detachable whats, so that one what could be removed and replaced by another?",Heads -General,Who sang the theme song in 9 to 5,Dolly Parton,General,"Small area on a computer screen in which the user is prompted to provide information, select commans etc",Dialogue box,General,What is the Capital of: Chile,Santiago - History & Holidays,Yorkshireman William Strickland is believed to have brought the first what to Britain from North America in 1526? ,Turkey ,General,Name first animated film to be nominated for best picture Oscar,Disney Beauty and the Beast,Sports & Leisure,How many human players are in a polo team? ,Four  -General,What is the world's second largest religion,Islam,General,What has a 21 inch tongue,Giraffe,General,What is the name of the queen's Scottish residence,Balmoral castle -General,In what field did Frances Mary Buss and Dorothea Beale become well known in the 19th Century,Girls higher education,Music,What Was The First Spice Girls Single Not To Top The Charts,Stop, History & Holidays,According to The Everly Bros What Time Did Suzie Finally Wake Up ,4 O Clock  -Science & Nature, __________ has more homeless cats per square mile than any other city in the world.,Rome,General,Whom did Idi Amin replace as leader of Uganda in 1971?,Milton Obote,General,"Who told a senate committee: ""billy carter is not a buffoon, boob or wack",Billy carter -General,Sanskrit is an old language - what does the word mean,Put together – Perfected,General,Stag Party was the original name of what,Playboy Magazine,General,To what category of numbers does 'pi'belong,Transcendental -General,Who spoke for the first time in a Bugs Bunny cartoon in 1951,Roadrunner,General,What are the 2 main divisions of chemistry,Organic and inorganic,General,"The characters, Farmer Boulderwood and Sergeant Troy appear in which Thomas Hardy novel",Far from the madding crowd -Science & Nature,At what angle above the horizon must the sun be to create a rainbow? (in degrees),Forty,General,In Columbus Ohio it is illegal to sell what on Sunday,Cornflakes,Toys & Games,Plastic vehicle equipped with spin_out brake.,Big wheel -Food & Drink,What is the name of the two-coloured oblong cake covered in almond paste? ,Battenburg ,General,In which city are the Headquarters of OPEC located,Vienna,General,Baseball: the Baltimore ________,Orioles -Sports & Leisure,Which player won her last tennis Grand Slam Tournament in Paris in 1999? ,Steffi Graff ,General,What President appears on the US $100000 bill,Woodrow Wilson,General,What shape are ice crystals,Hexagonal -General,Dragon Stout is brewed in what city / country,Kingston Jamaica,General,A person employed to drive a car,Chauffeur,Music,"Who played drums with Black Sabbath, Whitesnake and Rainbow, and had a hit in his own right with “Dance with the Devil”.",COZY POWELL -Geography,Which element makes up 5% of the Earth's crust,Iron,General,What movie starred Lee Marvin as twins Kid Shelleen and Tim Strawn,Cat,General,Book It was a bright cold day in April and clocks were striking 13,1984 George Orwell -People & Places,What were the surnames of Bonnie & Clyde ,Clyde Barrow & Bonnie Parker ,Music,What Is Morrisey's Christian Name,Stephen,Entertainment,"Was Shirley Temple 21, 25 or 29 when she made her last film?",21 -General,The plant life in the oceans make up about what percent of all the greenery on the earth,85,General,Shop selling exotic cooked meats and cheeses,Delicatessen, Geography,What is the basic unit of currency for Iran ?,Rial -Music,What Musical Act Spent The Most Weeks At No.1 Throughout The Year 2006,"Gnarls Barclay, Crazy",General,Who is the Patron Saint of grocers,Saint Michael, Geography,What is the basic unit of currency for Thailand ?,Baht -General,What is philography,Autograph collecting,General,Postage stamps were first introduced in to Britain in what year,1840,General,Name the English chemist who first isolated sodium,Sir Humphry Davie -General,Who designed the difference engine finally built in 1991,Charles Babbage's computer 1796,General,Between October and March what is illegal in Indiana,Taking Baths,Food & Drink,After Whom Is Caesar Salad Named ,"Caesar Cardini Who Would Assemble It For His Guests In Tijuana, Mexico In The 1920's " -General,Which London MP is more famous as an actress,Glenda jackson,Music,"Who Sang About ""The Greatest Love Of All"" In 1986",Whitney Houston,General,In which film did matthew modine play a schizophrenic war veteran,Birdy -General,Where on the human body is the ulnar loop,Finger,General,What's the correct name for a young un-bred male fur seal,Batchelor,Art & Literature,From whom did Bilbo obtain The Ring,Gollum -General,"In Greek mythology, what city did cadmus found",Troy,General,Goa used to be a colony of which nation,Portugal,General,Where was the 1995 rugby world cup held,South africa -General,Which plant has the scientific name Convallaria,Lily of the valley, Geography,What is the basic unit of currency for Kazakhstan ?,Tenge,General,Lutitia is what the Romans called where,Paris -Art & Literature,"A method of watercolor painting, but prepared with a more gluey base, producing a less transparent effect. ",Gouache,General,How many ribs does a human have,24,General,Obesophobia is a fear of ______,Gaining weight -General,Who invented the vacuum flask,James dewar,General,What was the most bombed place in WW2,Malta,General,On which river does Londonderry stand?,Foyle - History & Holidays,Who Is The Only British Prime Minister To Have Been Assassinated? ,"Spencer Perceval, 1812 ",General,During which month is the shortest day in the Northern hemisphere?,December,General,How long is the longest tunnel? (in kms),169 -Music,Paul Weller Ocean Colour Scene & Dodgy All Contributed To A Tribute Album Of Which Band,The Small Faces,General,Michael Henchard better known as what eponymous literary hero,The Mayor of Castorbridge T Hardy,General,In Which Long Running Tv Show Are You Likely To Find “Susie Dent”?,Countdown -General,"Capone Music Artists: Who did ""Cheap Sunglasses"" in 1979",ZZ Top,General,What Was The Biggest Selling Album In The UK In The 1970's & Also The Title Of One Of Their Biggest Hits,Bridge Over Troubled Water,General,What was the sequel to The Rocky Horror Picture Show,Shock Treatment -General,What is the literal translation of the word brandy,Burnt wine,General,Does a person's heart rate increase or decrease during exercise,Increase,Geography,____________ averages the greatest number of shark attacks annually _ an average of 13.,Florida -General,Information from a reliable source is said to come from where,Horse's mouth,General,"Who was the ""keymaster"" in Ghostbusters?",Rick Moranis,General,C'est manifique mais ce n'est pas la guerre 1854 about what,Charge Light Brigade -General,Which country has the currency 'yen'?,Japan,General,Who were the two disappointed candidates when Richard Nixon was elected as U.S. President in 1968,Hubert humphrey george wallace,Music,Which Single When It Peaked At No.2 In The Uk Charts in 1967 Ended a Run Of Eleven Consecutive Number Ones,Penny Lane/Strawberry Fields Forver -General,Which city is the capital of Tuscany,Florence,General,Which famous scientist's first published work was a monograph on barnacles,Charles Darwin,General,What fruit does the 'stackspur golden delicious' tree produce,Apples -General,Legal Terms: A crime more serious than a misdemeanor.,Felony,General,What color do you get in mirc using control code number 4,4red red,Science & Nature,What Do The Initials SLK mean In Relation To Mercedes Cars ,Spory Light Compact  -Science & Nature,What is the horn of a rhinoceros made of,Hair,General,What was the name of Judge Smales grandson in the movie 'Caddyshack'?,SpauldingIn,General,Who designed clothes under the emporio label,Georgio Armani -General,What is Falaka,Turkish feet beating,General,A castrated horse,Gelding,Toys & Games,What is the name of the board that Baduk is player on ?,Goban - History & Holidays,Which Spanish explorer first travelled to Jamaica?,Christopher Columbus,Geography,"""Utah"" is from the Navajo word meaning _________",Upper,General,"Who wrote the classic spy novel ""The Thirty-nine Steps""",John buchan -General,Who enacted a law requiring cigarette manufacturers to put health warnings on their packages,Lyndon b johnson,General,"London link Prince Edward's, Prince of Wales, Her Majesty's",Theatres,General,What animal has the same name as a high church official?,Cardinal -Food & Drink,What is the name of a small barrel of beer of nine gallons capacity? ,A firkin ,Music,You're Moving Out Today Was A One Hit Wonder For Which US Female Vocalist,Carole Bayer Sager,General,"Which Fictional Movie Character Lived On An Island Called ""Seahaven""",Truman (The Truman Show) -General,Clothes designer Alexander McQueen works for which fashion house,Givenchy,Entertainment,What was Citizen Kane's dying word?,Rosebud,Entertainment,Who is Declan Patrick McManus better known as?,Elvis Costello -General,Which tennesee williams play is about a sicilian-american woman,Rose tattoo,General,More than one half of New Brunswick is surrounded by,Water,General,Paralipophobia is the fear of,Neglecting duty -General,In films who could win the Golden Boot award,Actors in cowboy films,General,"All pinball machines are made near this city, the pinball capital of the world",Chicago,General,The island of Mauritius lies in which ocean,Indian -Geography,What Are Switzerlands Three Recognised Languages ,"French, German, Italian ",General,From which prison in South Africa was Nelson Mandela released,Victor verster,Music,Which House Did Lovebug Starski Sing About In 1986,Amityville (The House On The Hill) -Art & Literature,Who created Sherlock Holmes ?,Sir Arthur Conan Doyle,General,Who is the Patron Saint of Germany and sodomy,Saint Boniface,General,License plates: what does sixpak run,Liquor store - History & Holidays,What was the name of the society heiress who stole 8 million pounds worth of pictures in 1974 and was sentenced to 8 years in prison ,Dr Bridget Rose Dugdale ,General,Defeated in a footrace in greek mythology what did atlanta want to do until she was defeated in a footrace,Remain unmarried,General,What british prime minister claimed 'hitler has missed the bus',Neville -Sports & Leisure,What was Mohammed Ali's original name?,Cassius Clay,General,What is a sunbeam that shines down through the clouds called,Crespucular rays,General,"Near which German town would you find Fredrick the Great's retreat, Shloss Sanssouci",Potsdam -General,Bennie Hills Ernie fastest milkman in the west - name his horse,Trigger,Sports & Leisure,Hockey: The Pittsburgh __________.,Penguins,General,Which 90s Grand National Winner was trained by Martin Pipe,Minnehoma -General,What tennis player made it to finals US open 8 times in 80s,Ivan Lendl,General,What flavours cavatappi al nero pasta,Squid Ink,General,Janette Rankin in 1917 first to do what,Woman elected to Congress -General,What country was formerly known as siam,Thailand,General,Thumb Lock Mongolian Release Mediterranean Draw what sport,Archery,General,What is 'confederatio helvetica' in english,Helvetic confederation -General,What is the name of the big muscle used in breathing that seperates the chest from the abdomen,Diaphragm,General,Who painted Diana and The Bathers,Renoir,General,"Who lamented ""all my ex's live in texas""",George strait -General,What was the royal residence before buckingham palace,St james court,Entertainment,Secret Identities: Maggie Sawyer,Maggie sawyer,People & Places,Which Country Owns Easter Island ,Chile  -Music,In 1970 Sessionman Tony Burrows Famously Appeared On Top Of The Pops Singing With 3 Different Groups Can You Name Any Of Them PFE,"Brotherhood Of Man, Edison Lighthouse, White Plains",Food & Drink,Cocktails: Gin and Collins mix make a(n) __________.,Tom Collins,General,The Japanese believed Earthquakes caused by underground what,Giant Spider -General,The wind what is the best score in blackjack,21,General,The Queen of Spades and Jack of Diamonds combine to form the key combination in which card game,Bezique pinochle,General,Based on a book by William Styron which film stars Meryl Streep and Kevin Kline,Sophie's choice -General,Who was king arthur's court wizard,Merlin,General,This is the medical name for shoulder blade?,Scapula,Music,Who Let The Dogs Out In 2000,The Baha Men - History & Holidays,He ordered the persecution of Christians in which Peter and Paul died.,Nero,General,What is an island formed by a volcanic eruption,Atoll,Sports & Leisure,Which is the only position in soccer allowed to handle the ball?,Goalkeeper -General,What is the Capital of: Tanzania,Dar es salaam,Music,"Who Did Soft Cell Team Up With For ""Somethings Gotten Hold Of My Heart""",Gene Pitney,Music,"Who Had A Hit With ""Gilly Gilly Ossenfeffer Katzenallen Bogen"" By The Sea",Max Bygraves -General,What's the most common name in nursery rhymes,Jack,General,At which university did the poet Philip Larkin work as a librarian,Hull, History & Holidays,Israel occupied the Golan Heights. Whose territory was it?,Syria -Music,What Was The Name Of The Debut Single For The 90's German Band Snap!,The Power,General,This radical Agrarian communist organization controlled Cambodia in the 1970s until the Vietnamese removed them from power.,Khmer rouge,Entertainment,Where did Mighty Mouse get his superpowers?,Supermarket -Geography,"Among the fifty_two _____________ churches Sir Christopher Wren created from 1670 to 1711, the greatest was St. Paul's Cathedral.",London,General,What is a type of west indian popular music,Reggae,General,What U.S. state has the smallest population,Alaska -Music,"To Who Was U2's Song ""Pride In The Name Of Love"" Dedicated",Martin Luther King,General,What are ratite birds the only ones not to do,Fly,General,Who wrote the comic opera Robinson Crusoe,Offenbach -General,What is the flower that stands for: pure and ardent love,Double red pink,General,"""The Beach Boys"" First UK No.1 Hit Was ""Good Vibrations"" But Who Actually Wrote The Song",Neil Diamond,General,What former resistance fighter was Israel's first Likud Party prime minister,Menachem begin -General,"In the opera 'La Traviata', what does La Traviata mean",The fallen woman,General,Who was Bram Stoker's most infamous character,Dracula,General,What is the fear of telephones known as,Telephonophobia - Geography,What is the capital of Wisconsin?,Madison,General,"In 1962, who lamented that 'only love can break a heart'",Gene pitney,Sports & Leisure,Which is the only country to have played in every World Cup since it started in 1930? ,Brazil  -General,What did Esso become,Exxon,Music,In The Beatles Song “Penny Lane” What Does The Fireman Have In His Pocket,A Portrait Of The Queen,General,Give either of the food items eaten by the Owl and the Pussycat.Mince,Quince -General,What were the two birds that noah sent out from the ark?,Raven & dove,Music,In Which 2 Consecutive Years Did Amen Corner Achieve Four Top Ten Hits Including A No.1,1968 & 1969,General,What is the unit of measurement which is equal to the mean distance from the Earth to the Sun,Astronomical unit -General,What novel was alexandra ripley hired to pen a sequel to,Gone with the wind,General,"In the tv sitcom 'married with children', what is the dog's name",Buck,General,In New York its illegal to teach your parrot to do what,Squawk -General,How many blackbirds were baked in a pie,4 & 20,General,What is Orchesis - either professional or amateur,Art of Dancing,Music,"Born Roberta Streeta, Whose First Single Was The Strange ""Ode To Billy Joe"" About A Young Mans Suicide",Robbie Gentry -General,When is the longest day in the northern hemisphere,June,Music,"The American Band Chicago Have Numbered All Their Albums From ""Chicago 2"" In 1970 Onwards What Number Had They Reached By 1986",Chicago 18,Science & Nature," __________, like other equids, have three gaits: the walk, the trot, and the gallop.",Zebras -General,The British consume twice as much per capita as the US - what,Baked Beans,Food & Drink,How big is a Jeroboam compared to a normal size bottle? ,4 Times ,General,Who was found dead in Hollywood's Landmark Hotel 4 Oct 1970,Janis Joplin -General,What does a Yellow Flag Red stripes mean in motor racing,Slippery Track,Sports & Leisure,"When Boris Becker Was The First Unseeded Player To Win Wimbledon, Who Did He Beat In The Final? ",Kevin Curran ,General,Whose attendance compulsory at priests banquets in Egypt,Mummies – dead reminded short life -General,In what country is the worlds biggest national park,Canada,Geography,What country are the Islands of Quemoy and Matsu part of,Taiwan,General,Canberra is the capital of ______,Australia -General,What is the Capital of: Kyrgyzstan,Bishkek,General,Philosophobia is the fear of,Philosophy,General,Tall Dark And Gruesome Is The Auto Biography Of Which Famous Person,Christopher Lee -General,What do you call a weasel whose coat turns white during the winter,An ermine ermine,Art & Literature,How many plays is Shakespeare generally credited with today?,Thirty seven,General,What is the fear of definite disease known as,Monopathophobia -Food & Drink,For what was licourice used in ancient Egypt? ,Medicine ,Music,Phil Oakley Was The Lead Singer With Which Band,The Human League,General,Phyllis Pearsall Is Responsible For The Design And Creation Of What Book First Published In 1936,The London A-Z -General,What is the Capital of: Chad,N'djamena,General,"Cross country, Riding, Swimming, Fencing what's missing",Pistol Shoot Modern Pentathlon,General,A dog was arrested in Seville in 1983 for what crime,Handbag Snatching -General,"Ulna, radius, & clavicle are types of __________",Bones,General,The Pirate Khair-ed-Din had what Italian name meaning redbeard,Barberossa,General,What sort of lenses float on eye fluid,Contact lenses -General,"Who, in 1957, was the first-black player to win a singles title at Wimbledon",Althea gibson,Music,In Which Song Released First in 1966 & Again In 1991 Will You Hear The Name Of Americas First Woman Astronaut Uttered Time & Time Again (66 Wilson Picket / 91 The Commitments),Mustang Sally,General,US actor William Gillette invented which characters phrase,Elementary my dear Watson - History & Holidays,What 'C' Was A 1992 Horror Movie And A 2006 Hit For Christina Aguilera ,Candyman , History & Holidays,Which president was responsible for the 'Louisiana Purchase'?,Thomas Jefferson,General,What was the top single record in 1950 by the Weavers,Goodnight irene -Music,Which Neil Diamond Huit Was Inspired By The Movie E.T,Heartlight,General,Name the computer which beat World Chess Champion Garry Kasparov in 1997,Deep blue,General,Who was with Macbeth when he met the witches,Banquo -General,The visible spectrum of light ranges from red to ________,Violet,General,What does am/fm stand for,Amplitude modulation/frequency modulation,General,Which man in the bible is simply described as 'living forever'?,Enoch -Science & Nature,In Which Period Did The Diplodocus Live ,Jurassic ,Science & Nature, The only country in the world that has a Bill of Rights for Cows is __________,India,General,Which is the largest joint in the human body,Knee -General,Who invented the Carpet Sweeper?,Melvin Bissel,General,In which film did paul newman and robert redford hold hands and jump into a river,Butch cassidy and the sundance kid,General,Who married the Owl and The Pussycat,The turkey -General,Which meridian does the international date line approximately follow through the pacific ocean,180 degree meridian,General,What is 3 days and 6 hours in minutes,4680,General,Cher Ami saved the Lost Battalion in 1918 what was it,Pigeon -General,"The word ""angel"" is derived from the Greek term angelos, from the Hebrew experssion mal'akh, usually translated as what",Messenger,General,Which treaty between Great Britain and China ended British rule in Hong Kong?,Treaty of Nanking,General,Gypsum is a hydrated sulphate of which metal,Calcium -Sports & Leisure,Name The Famous Sportsman Who Lit The Torch At The Opening Of The 1996 Olympic Games? ,Muhammad Ali ,General,What ocean lies to the north of Alaska,Arctic ocean arctic,Music,"Who Had A Top 5 Hit In 1971 With ""Me And You And A Dog Named Boo""",Lobo -General,What was russian america after 1867,Alaska,Geography,"In ________________, the Presidential highway links the towns of Gore and Clinton.",New zealand,Science & Nature,What Did Alfred Nobel Invent Before Initiating His Nobel Peace Prize Award Scheme ,Dynamite  -Mathematics,An angle greater than 180 degrees and less than 360 degrees is a(n) ________ angle.,Reflex,Science & Nature, Baby rattlesnakes are born without __________,Rattles,Music,What Was Paul Young's 1983 Million Selling LP Called,No Parlez -General,Who was meant to play Annie Okley but was replaced in 1950,Judie Garland Annie get Your Gun,General,"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,General,What is another name for a pigskin,Football -Music,"Which Belgian Artist Is Remembered For ""Ca Plane Pour Moi""",Plastic Bertrand,General,What aid to cooking was first manufactured by Mark Gregoire in 1954,Non stick pans,General,What is the flower that stands for: power,Cress - History & Holidays,How Many Points Does A Snowflake Have ,Six ,General,How does a tortoise drink water,Thru its nose,Science & Nature,What makes plants green ,Chlorophyll  -Music,"Who Recorded ""Schools Out"", ""Muscle Of Love"", ""Billion Dollar Babe""",Alice Cooper,General,Exodus and which Bible book list the ten commandments,Deuteronomy,General,What is the fear of satan known as,Satanophobia -Music,"""It's Too Late Now"" Entered The Charts Twice In 1963 For Which Group",Swinging Blue Jeans,General,"Handlebar, toothbrush and walrus are all types of what",Moustache,General,Who was the Queen of Sparta,Gorgo -General,Paper Porter Dresser Mud Dauber types of what,Wasp,General,Where would you find A Pope Empress Hermit and Juggler,They are Tarot Cards,General,What was the last sequel to win best picture award,Silence of the Lambs to Manhunter -General,Who is the lead singer of the group yes,John anderson,General,In the Fantastic Four what is Mr Fantastic name,Reed Richards,General,"""The curfew tolls the knell of parting day."" which poems start",Elegy written in a country churchyard -General,Billion what can release approximately one billion grains of pollen,Ragweed plant,Science & Nature,What large herbivore sleeps only one hour a night,Antelope, History & Holidays,Which song was a UK chart hit for `The Goodies' in 1975? ,The Funky Gibbon  -General,A male cat is called a what,Tom,General,Myctophobia is the fear of,Darkness,General,Until 1862 there was a tax in England for those who used what,Soap -General,Greek mathematician cylinder enclosed sphere carved on grave,Archimedes,Science & Nature,The fourth planet from the sun is _______.,Mars,General,"What Is The Only Breed Of Insect That Has Both A ""King"" And A ""Queen""",Termites -Sports & Leisure,"Who, in 2002, became the first woman in 11 years to win the BBC Sport Personality Of The Year? ",Paula Radcliffe ,Mathematics,What is 65% of 60?,39,General,What is the official language of Papua New Guinea?,English -Music,Jello Biafra Was The Lead Singer For Which American Punk Band,The Dead Kennedys,General,Nessiteras Rhombopteryx Latinised name of what - as a Hoax,Loch Ness Monster,Science & Nature,How many teats does a cow have,Four -General,What kind of a head does a Criosphinx possess,Ram,Food & Drink,From Which Country Does The Beer 'Red Stripe'' Originate ,Jamaica ,General,"Where is the land of 10,000 lakes",Minnesota -General,In Bewitched Aunt Clara had a collection of what,Doorknobs,Science & Nature,How fast (mph) can a kangaroo hop?,Forty,General,Finally a good old body sound where is Farta,Nigeria -Music,"Which group had a top 10-album chart success with 'What's the story, morning glory'?",Oasis,Sports & Leisure,How Many Dice Do You Have In A Backgammon Set ,5 Dice ,Science & Nature, A bison can jump __________,6 feet -Sports & Leisure,If All The Race Courses In Britain Were Listed Alphabetically Which Would Come First ? ,Aintree ,General,The fleur de lis is a representation of which flower,Iris,General,Who is the Patron Saint of boy scouts,Saint George -Music,"""Rainy Days & Mondays"" Was A Hit For Which 70's Group?",The Carpenters,General,"Who was ulysses' son, who grew to manhood in his absence",Telemachus,General,She died at 28 but her book on household management famous,Mrs Beeton -General,"The National day of Ethiopia, 21st March, commemorates a victory at Adowa in 1896 over which country",Italy,General,What is written at the bottom of a Oiuja board,Good bye,General,What is the fear of moths known as,Mottephobia -Geography,Who Employed Henry Hudson To Search For The North West Passage ,The Dutch East India Company ,General,What's the better known name of the card game twenty one,Blackjack,General,Where is the houston space centre,Texas - History & Holidays,Which Was The First Town To Be Liberated By The Allies On D-Day? ,Caen ,General,Where could you find The round window and The oval window,In the human ear,General,What does rabbi literally mean,My Master -Science & Nature,Which Part Of the Body Receives Oxygen Without A Blood Supply ,The Cornea ,General,What poke hand comprises three of a kind and a pair,Full house,Music,"Released In May 1999, What Was Geri Halliwell's First Solo Single",Look At Me -General,What is a group of gulls,Colony,General,Which architect designed the Guggenheim Museum in New York,Frank lloyd wright,General,On what might yoU.S.erve Bearnaise sauce,Grilled meat -General,Poisonous substance especially a pesticide,Biocide,General,Which Oscar-winning film of the 1980s was directed by Hugh Hudson,Chariots of fire,General,What do the 4 of top 10 children's authors have in common,British - Blyton Dahl Potter etc -Music,How Old Was John Lennon When He Was Murdered,40,Music,Get Down On It Was A Smash Disco Hit For Which Us Group,Kool And The Gang, History & Holidays,In What Year Did India Gain Independence From British Colonial Rule ,1947  -General,Who was vice president US when A bomb dropped on Hiroshima,No One - was not one,Art & Literature,Who Wrote The Noddy Stories ,Enid Blyton ,Art & Literature,In 1526 Hans Holbein Became The Officiaal Portrait Painter Of Which English King ,Henry VIII  -General,In Woodstock NY it's illegal to walk what without a leash,A Bear,Food & Drink,What does the brut indicate on a bottle of champagne? ,Very Dry ,General,What is the wbc,World boxing council -Music,Who was best man at John Lennon and Cynthia Powells wedding?,Brian,General,What is the fear of anything new known as,Neophobia, Geography,What is the basic unit of currency for Belgium ?,Franc -General,In Which US City Did Techno Music Originate,Detroit,Science & Nature,"Archaeopteryx Differed From It's Modern Counterparts In That It Had Teeth, Clawed Fingers & A Bony Tail Core. Otherwise It Bore The Characteristics Of Which Group Of Creatures ",Birds ,Entertainment,Broke Batman,Bane -General,"Who said ""Religion___ is the opium of the masses""?",Karl Marx,General,In minerology what does the Mohs scale measure,Hardness,General,Which is the largest of the Seychelles,Mahe -General,Which three word catchphrase is most universally recognised,Bond James Bond,General,"A tall, tapering, pointed roof on a tower, as in the top of a steeple.",Spire,Science & Nature,What Is The Antirrhinum Better Known As? ,The Snapdragon  -Music,Will Smith's Rapper Alter Ego Was Who,The Fresh Prince,Science & Nature,What does hepatitis affect?,Liver,General,If you were a chiropodist which part of the body would you treat,Feet -General,What is the square root of 64,Eight,General,In which country is the chief range of Drakensberg Mountains,South africa,Music,"In The World Of Music Who Am I ""Harry Roger Webb""",Cliff Richard -General,Slang:Person with very short hair or very little,Slaphead,General,Olfactophobia is a fear of ______,Smells,Music,Who Had A Surprise UK Hit In The 90’s With A Cover Of The Classic  Led Zeppelin Song “Stairway To Heaven”,Rolf Harris -General,What is banned by public schools in San Diego,Hypnotism,Music,Which Song Penned By The Gibb Brothers Provided Barbara Streisand With Her Only UK Number One Single In 1980?,Woman In Love,General,How many times did peter deny jesus,Three -General,What sport was obligatory for Kennedy males during Hyannis Port weekends,Touch football,General,What is the Capital of: Estonia,Tallinn,General,"What is the other official language of Sri Lanka, along with Tamil",Sinhala -General,What links Helicon Hutchinson Macmillan and Penguin,Book Publishers,Music,Who Worked In Mime And Appeared In Jubilee And Quadrophenia Before Her 1981 Chart Entry,Toyah,Music,Over Which 2 Years Did The Bay City Rollers Achieve Most Of Their Chart Sucess,1974 & 1975 -General,Plutophobia is the fear of,Wealth,General,What do the words nick and tuck refer to,Cosmetic surgery,General,What candy bar was first introduced by dropping them from airplanes over 40 american cities,Butterfingers -General,Which saxophonist joined David A Stewart in the charts on 'Lily Was Here',Candy dulfer,General,What U.S. city was the capital from 1789 to 1790,New York City,General,Which country has the worlds first greyhound racing track,USA -General,What is the name of a hairstyle in which the head is shaved except for a central strip,Mohican,General,Airman T E Shaw in WW2 was better known as who,T E Laurence of Arabia,General,Six ounces of orange juice contains the minimum daily requirement for which vitamin,Vitamin c -General,In Bristol England an old law says dogs can do what,Watch sex in your bed,Science & Nature, The part of the foot of a horse between the fetlock and the hoof is the __________,Pastern,General,Which TV comedy series featured a regular animated section known as the World Staring Championships?,Big Train -General,This first king of Israel reputedly had 700 wives?,Soloman,General,"Which Actress Won The Title Of ""Miss Orange County Beauty Queen"" In 1976",Michelle Pfeiffer,General,"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 -Geography,What building built in 1897 contains 327 miles of bookshelves ,The library of congress , History & Holidays,What 'CE' Does Adam Call His Wife On December 24th ,Christmas Eve ,General,"What are Strength, Chariot and Hermit",Tarot Cards -General,"Pony, Shot and Jigger are all units to measure what?",Spirits, Geography,Where is the Admirality Arch?,London,General,What is a group of ponies,String -Geography,"______________, in the eastern West Indies, is one of the world's most densely populated countries.",Barbados,General,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,Science & Nature,What is the term for a tree which sheds its foliage at the end of the growing season?,Deciduous -General,"Which country's national flag consists of a white crescent and star, offset left of centre, on a red field",Turkey, History & Holidays,Which country has the oldest national flag ?,Denmark,Sports & Leisure,In which country is the famous Maracana stadium?,Brazil -Food & Drink,Which drink do you associate with Holy Island in Northumberland? ,Lindisfarne Mead , History & Holidays,Who committed the first daytime robbery?,Frank and Jesse James,General,"Where do the souls of unbaptised babies go after death, according to Catholocism?",Limbo -General,Which Popular Tv Presenter & Broadcaster Sadly Died In 1988 At Leeds Hospital Suffering From Hepatitus,Russell Harty,General,"In terms of tons of cargo handled, which is europe's busiest port",Rotterdam,General,Interpol was founded in 1923 in what city,Vienna -General,What is Kensington Gore,Actors fake blood,General,What is the fear of lawsuits known as,Liticaphobia,General,Army unit usually of 300-1000 men,Battalion -General,"In Greek legend, Zeus wooed Europa, daughter of King Agenor, in the form of which animal",Bull,Science & Nature,What Is The Collective Name For Rhinoceroses? ,A Crash , History & Holidays,East Berlin was the capital of ______?,East Germany -General,Rhabdophobia fear of what,Being Beaten,General,Which army rank is equivalent to the naval rank of Lieutenant-Commander,Major,General,Thomas Young the Physicist and Egyptologist spoke how many language when he was 14 ?,12 -General,La Who played the title role In the film The Madness of King George,Nigel hawthorne,People & Places,Which Tory Author Won substantial Damages From The Daily Star ,Jeffrey Archer ,General,During the 20th century who was the only England bowler to take a hat trick in an Ashes test,Darren gough -General,Who invented the assembly line,Henry ford,General,In which Dickens novel does Little Nell appear,The Old Curiosity Shop,Science & Nature,Which Flightless Bird Is The Emblem Of New Zealand? ,The Kiwi  -General,"Who portrayed clare quilty in the film, ""lolita""",Peter sellers,Science & Nature,The medical name for the voice box is the _________.,Larynx,General,Urchin is an old English name for which British native mammal,Hedgehog -General,What is a sardine,Young herring,General,"What links Sheffield, Edinburgh, Rome",Built on 7 Hills,Entertainment,Younger version of Aquaman,Aqualad - History & Holidays,"Who was known as ""the wizard of Menlo Park"" ?",Thomas Alva Edison,General,An unkindness is a group of what birds,Ravens, Geography,What is the basic unit of currency for Papua New Guinea ?,Kina -General,What was the name of the last film where george burns played god,"Oh god, you",General,Where is the sear's tower,Chicago,General,Dark green fruit with creamy flesh,Avocado pear -General,In 1928 Simon Bolivar was president 3 countries Bolivia and ?,Columbia Peru,General,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,General,In The World Of Music How Is Ronald William Wycherley More Commonly Known,Billy Fury -General,In Which Us City Is The Head Quarters Of The Coca Cola Company,Atlanta / Georgia,General,In which country is Penina golf course,Portugal,General,What is the fear of automobiles known as,Motorphobia -General,Which U.S. government branch includes the President and Vice President,Executive,General,Which officer commands a platoon,Lieutenant,General,"Who was elected president of france, in 1981",Francois mitterand -Food & Drink,Laetrile is associated with the pit of which fruit?,Apricot,General,The Acropolis - what does the word literally mean,Highest point (of a city), History & Holidays,Who outlawed gladiator sports in Rome?,Caesar -Sports & Leisure,In BaseBall where do the braves come from ,Atalanta ,General,Bird Music: What was the original name of the group 'Chicago',Chicago Transit,General,What is the flower that stands for: confidence,Lilac polyanthus -General,What is the largest bird of prey in the United Kingdom?,White-Tailed Eagle (Sea Eagle),General,What did Fletch's initials (I. M.) stand for?,Irwin Maurice,Music,Who Singer Performed With Marvin Gaye On The 1966 Hit Song “It Takes Two”,Kim Weston -General,Musca Domestica can cause disease in man - what is it,Common Housefly,Entertainment,"Who is the male lead in the ""Naked Gun"" movies?",Leslie Nielsen,Science & Nature, There is approximately one __________ for every human being in the world.,Chicken -General,"Who said 'what, me worry'",Alfred e neuman,General,Approximately how many times sweeter is saccharin than sucrose,Five hundred,General,FT (London) Dow Jones (USA) what is Japans Share Index called,Nikkei -General,In heraldry what is a vertical line dividing a shield called,Pale,General,If you landed at Cannon airport where are you,Reno,General,What nursery rhyme character sang for his supper,Little tommy tucker -General,Eczema affects which part of the body,Skin,General,What is the fear of smothering known as,Pinigerophobia,General,What is the largest gem-quality diamond discovered,Cullinan diamond -General,What is the Capital of: Uruguay,Montevideo,General,Tiramisu is a coffee desert but what does it literally mean,Pick me up,General,"Which Artist Once Had The Aler Ego ""The Thin White Duke""",David Bowie -General,Who composed The Dream of Gerontius,Edward Elgar,General,What is the term for the study of how the inherited characteristics of a human population can be improved by genetics,Engenics,General,"Who recorded ""my love is like a tire iron"" in 1981",Ted nugent - Geography,Which country hosted the 1982 World Cup of soccer?,Spain,Music,"What Connects David Cassidy, The Monkees, KISS",Own Tv Programme,Science & Nature,This is the largest of the deer family.,Moose -General,Mendelssohn's Wedding March comes from which work,A Midsummer Nights Dream,General,What is the fear of sitting known as,Thaasophobia, Geography,What is the basic unit of currency for Taiwan ?,Dollar -General,"In Animal House, what was Bluto's grade point average?",0,General,Whats the Muslim name of God,Allah,Geography,Of Where Are The Maoris The Indigenous Population ,New Zealand  -General,What were the spice islands formerly known as,Zanzibar,General,Who wrote the novel Ben Hur,Lew Wallace,General,As what was Taiwan formerly known,Formosa -General,This was originally published in the U.S. as _Murder in the Calais Coach,Murder on the orient express,General,Robert Fitzroy captained which famous ship?,The Beagle,General,What is considered the most successful poem of all time,If - Rudyard Kipling -General,What's the connection between Benson & Growing Pains?,"Missy Gold and Tracey Gold,",General,With what kind of pen were allied bomb crews issued,Biro pens,General,Who spoke the first recorded message,Thomas edison -General,What does an anthrophage practice,Cannibalism,General,"In pottery, what is biscuit ware",Pottery fired but not glazed,General,What dutch master painted 64 self portraits,Rembrandt -General,What colour was the hundred billionth crayola crayon,Periwinkle blue,Science & Nature,Which colour is at the top of a rainbow? ,Red ,General,What causes gout,Uric acid -Music,In Which Type Of Car Was Marc Bolan A Passenger When He Was Tragically Killed,A Mini,General,How many litters can have a mouse in a year,Up to ten,Food & Drink,"A great companion to Stilton Cheese, which drink comes in Ruby, Tawny and Vintage varieties? ",Port  - Geography,Into what bay does the Ganges River flow?,Bay Of Bengal,Science & Nature,"The Lightweight Portable Drill Was First Marketed In 1917 By 2 Americans With The First Names Duncan & Alonso, What Were Their Surnames ",Black & Decker , History & Holidays,She won the 1979 Nobel Peace Prize for her work among the poor.,Mother Teresa -General,What disease is carried by the tsetse fly,Sleeping sickness, Geography,This is the longest mountain chain in the world.,Andes,General,What is the fear of surgical operations,Tomophobia -General,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, History & Holidays,"Who was ""The Mad Monk""?",Rasputin,General,"In 1976 Audiences Were Frightened To Death When ""The Omen"" First Hit The Big Screen But Who Directed It",Richard Donner -General,Which south east Asian city was formerly called Krung Threp,Bangkok,General,What basketball star played a genie in 'kazaam',Shaquille o'neal,General,Kind of skin inflammation,Eczema -General,What did the lady of the lake give king arthur,Excalibur,Geography,What Did Wellington Replace As The Capital Of New Zealand? ,Auckland ,General,What ship was sunk in Auckland harbour in 1987,Rainbow Warrior (Greenpeace) -Geography,The Volta is the largest river in which country,Ghana,General,"Of which bird did Wordsworth write ""Shall I call thee bird, or but a wandering voice""",The cuckoo, Geography,What is the basic unit of currency for Kenya ?,Shilling -General,Who would write a decratal or rescript,The Pope,General,What was the first name of the baby girl who fell down the well?,Jessica, History & Holidays,Who was the lead singer of the Cure? ,Robert Smith  -General,Leslie Hornby became more famous as who,Twiggy,General,Anethum tastes a little like aniseed - what herb is it,Dill,Music,In Which Year Did bobby Brown Have More Weeks In The UK Chart Than Any Other Artists,1989 -Sports & Leisure,In Snooker How Much Is a (Red Black Red Green Red) Worth ,13 ,General,"Which Prime Minister Was Once Editor Of The ""Church Times""",Edward Heath,General,"Which country covers the largest area, Iran or Iraq",Iran -General,Melba sauce is made from what fruit,Raspberries,General,Super Model Jodie Kidd Once Represented England At The Olympics In Which Event,Polo,General,Every year 30000 US people are seriously injured by what,Exercise equipment -Geography,"There is a U.S. state capital that was named after a famous German. Bismarck, North Dakota, was named after ______________________",Otto von bismarck,Sports & Leisure,In Which Sport Is The Lance Todd Memorial Trophy Contested ,Rugby League ,Language,An adjective meaning 'pertaining to the sun.',Solar -General,Comedian that is the disc jockey on the soundtrack to Resevoir Dogs,Steven wright,General,A Cruciverbalist is interested in what,Crossword Puzzles,General,Who is the Greek equivalent of the Roman Jupiter,Zeus - chief God -General,Ten degrees Celsius is the equivalent of how many degrees Fahrenheit,Fifty degrees,General,Rudolf the red nosed reindeer had a girlfriend - name her,Clarissa,General,If you suffered from tantartism what would you be doing,Dancing Mania -Music,Who Was Charles Edward Anderson Berry Better Known As,Chuck Berry,General,What does Magna Carta literally mean,Great Charter,General,Which writer created Detective-Inspector Bucket,Charles dickens -General,"Hook and eye', 'strap', 'tee', 'butt' and 'blind' are all types of what",Hinges,General,In Chaucer's England a mussel was slang for what,Vulva,General,In which European city is the Montjuic stadium and the Parc Gruell,Barcelona -General,What is the name of Mr.Krane's dog on Frasier?,Eddie.,Music,Frank Sinatra Had 2 No.1 In The 60's Name Them,Strangers In The Knight / Something Stupid,Religion & Mythology,Who is the greek equivalent of the roman god Diana ?,Artemis -General,What is added to soap to make it clear,Alcohol,General,Milton lost which sense,Sight,General,Sarah Josepha Hall wrote what,Mary had a little lamb -General,The FIC govern what sport,Canoeing,General,On what street in new rochelle did rob and laura petrie live,Bonnie meadow,General,Who painted the famous picture of Marat assassinated in his bath,David -General,Who is the president of Russia,Vladimir putin,General,"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,Music,"Members Of The Band ""Split Enz"" Went On To Form Which Famous Band",Crowded House -Music,What Was The Name Of Elvis Presleys Home,Graceland,General,"Who did the voices of bugs bunny, sylvester and tweety pie",Mel blanc,General,"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. ",28000 -General,Hack - Hog Line - House are terms in what sport,Curling, Geography,Banjul is the capital of ______?,Gambia,General,"Common name for the family comprising a peculiar group of spiny, fleshy plants native to America",Cactus - Geography,Which city is home to the 4th largest pyramid in the world?,Las Vegas,Geography,What is the capital of Croatia,Zagreb,Music,What nationality are pop group Roxette?,Swedish -General,"In the tv series 'the brady bunch', what was cindy's toy doll's name",Kitty,General,The capital of the African country Liberia is named after which American President,James Monroe,General,What was the heaviest known dinosaur,Brachiosaurus -Geography,In what country is thunder bay ,Canada ,General,In which county is the town of Market Harborough,Leicestershire,General,Cyndi Lauper sing this song 1994,Hey now(girls just want to have fun) -General,What is the glass capital of the world,Toledo,General,What are the 3 big colleges of the Ivy League? (name them alphabetically),"Harvard, Princeton, Yale",General,How many squares are on a Shogi (Japanese chess) board?,81 -Entertainment,Who wrote the opera 'The Giant'?,Sergei Prokofiev,Science & Nature," 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,General,The average chocolate bar has eight what in it,Insects legs -General,"What major British disaster occurred in Beauvais, France, in 1930",Crash of the r101 airship,General,How high could the Klopek's furnace go in The 'burbs?,5000 degrees,General,"This means ""the art of twisting together strands of material to form objects"". (_________)",Basketry -Music,"Whose First Single Was ""Release Me""",Engelbert Humperdinck,Toys & Games,"In Monopoly, What is the cost to buy Oriental Avenue",100,General,This instrument has black and white keys?,Piano -Science & Nature,What Is A Portuguese Man-O-War? ,Jelly Fish ,General,According to Christian religion what happened at Epiphany,Wise men visited,Music,Martin Kemp From Spandau Ballet Married A Backing Singer From Which Other Famous 80's Band,Wham (Shirlie) -General,If you landed at Arlanda airport where would you be,Stockholm Sweden,General,"This city can be abbreivated to 3% of its size ""El Pueblo de Nuestra Senora la Reina de los Angeles de Porciuncula""?",LA,General,Who was the first U.S. postmaster general,Benjamin franklin -Music,"With Which Group Did Marc Almond Record The 1985 Hit ""I Feel Love""?",Bronski Beat,General,Which pop artist died in New York in 1987?,Andy Warhol,Music,"Who Had A Hit In 1993 With The Song ""Mr Vain""",Culture Beat -General,Carlos This planet has an atmosphere that is 98 percent Helium,Mercury,General,Sanford what presidential candidate from indiana lost to roosevelt in 1940,Wendell,General,In a state of readiness is the literal meaning of which job title,Waiter -Entertainment,Who wrote the oprea 'La Traviata'?,Guiseppe Verdi,General,What was the first toy advertised on TV in USA,Mr Potato Head,Music,"Who Starred In & Performed The Title Track From The Film ""Xanadu""",Olivia Newton John -General,The term Sesquincentennial represents how many years ?,150,General,What is the flower that stands for: difficulties that i surmount,Mistletoe,General,What is a Knout,Russian flogging whip - History & Holidays,Which Film First Featured A Character Called Pinhead ,Hellraiser ,General,In Which Former Soviet Republic Do 100 Luma Make A Dram?,Armenia,General,Name either of the churches that merged in 1972 to form the United Reformed Church,Presbyterian congregational -General,"In 1987 Bernardo Bertolucci became the first western director to be allowed to film in Beijing, what film was he making",The last emperor,Music,Which Country Did Celine Dion Represent In 1988 Eurovision Song Contest,Switzerland,Entertainment,On what LP Cover can we read the words 'Welcome Rolling Stones'?,Sergeant Pepper´s Lonely Hearts Club Band -General,"What are Grenadier, Idared and Ellison's Orange types of",Apples, History & Holidays,"Who was assassinated on December 8, 1980 in New York City?",John Lennon,General,What's the general name for germ fighting drugs such as penicillin & streptomycin,Antibiotics -General,What links Augsburger - La Stampa - El Pais and Duma,Newspapers Germany Italy Spain Bulgaria,General,The ______ tea party,Boston,General,What is chewing gum made from?,Chickle -General,"In the TV Western series ""Bonanza"", what was the name of the ranch",Ponderosa, Geography,Singapore is the capital of ______?,Singapore,General,What are the two christian names of HE Bates,Herbert ernest - Language,"""Entre nous"" means __________.",Between ourselves,Science & Nature,Which of Neptune's moons is the biggest?,Triton,Music,"Who Had Hits In The 1980's With Singles Like ""Iron Fist"", ""Killed By Death"", ""Beer Drinkers & Hell Raisers"", ""Deaf Forever""",Motorhead -General,Freyr was the Norse god of what,Fertility,General,With which group does Damon Albarn sing,Blur,General,"In what television series did miss usa, 1974 star",Wonder woman -General,The only Italian masterpiece you can drive to work,Maserati, History & Holidays,For which European country did Mozambique declare independence in 1975? ,Portugal ,General,Who was not offered the lead role in a fistful of dollars due to his high fee,Henry fonda -General,A Group of Lion is called a,Pride,General,"In 1964 Douglas MacArthur U.S. general (Pacific theater-WW II), dies at",84,General,In what sport is a stimpmeter used,Golf - measure greens pace -Science & Nature,Which element has the chemical symbol PT ,Platinum , History & Holidays,On the face of which mountain does the climax of North by Northwest take place? ,Mount Rushmore ,General, The study of human behaviour is ________.,Psychology - Geography,What is the basic unit of currency for Azerbaijan ?,Manat,Sports & Leisure,"Canadian Ben Johnson Famously Lost His Olympic Title,World Record & Gold Medal By Failing A Drugs Test At The Summer Olympics But Where & When Did This Take Place ' Where (Country) & When (Year) '' ","1988, Seoul / Korea ", History & Holidays,What did Anne Boleyn have three of?,Breasts -General,"Name the stretch of water which lies between New Brunswick, Maine and Nova Scotia",Bay of fundy,General,What unrecognised phenomenon was discovered when Comet aircraft started to fall out of the sky,Metal fatigue,General,Who wrote the opera 'samson and delilah',Camille saint-saens -General,Which position is traditionally played in Rugby Union by the player wearing a number 11 shirt?,Left Wing,General,What is the world's fastest passenger aircraft?,Concorde,General,What's the average annual temperature worldwide (Fahrenheit),58 -General,Goose Flats changed its name to what US city,Tombstone Arizona,General,Which sign used in punctuation denotes interrogation,Question mark,Science & Nature, 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 -Geography,In Which Country Is Europe's Highest Mountain Mt Elbrus ,Russia ,General,Who built the lambarene missionary station,Albert schweitzer,General,"A fun, new winter sport",Snowboarding -General,What geological period followed the Jurassic,Cretaceous,General,Who was Sitting Bull's right hand man,Crazy horse,General,Where would you find vox humana and vox angelica together,On an organ - History & Holidays,Who directed the movie 'An American in Paris? ,Vincente Minnelli ,General,Phronemophobia is the fear of,Thinking,Science & Nature,Dense sea_water swamps along coasts of hot countries are called ________.,Mangrove -Music,"Who Begged For ""Just One More Night"" In 1978",Yellow Dog,General,Who was the first athlete to clear eight feet in the high jump,Javier sotomayor,General,What Asian city boasts the world's biggest bowling alley,Tokyo -General,In Star Trek Deep Space Nine which character had a simbiant,Jadzea Dax,General,"Balein, Boops, Fin, Grampus and Pothead are types of what",Whale,Geography,Madrid and lisbon are both located near this river. ,Tagus  -Art & Literature,Dr. Seuss wrote this book: The Cat in the______.,Hat,General,Who had a number one hit in 1966 with Keep on Running,Spencer davis group,General,Membrenaphone musical instruments commonly called what,Drums -General,The brutal treatment of Billy Hayes was the inspiration what film,Midnight Express,General,Unusual words - What's the only word 4 double letters in a row,Bookkeeppers,General,Who wrote one of the earliest English Operas entitled 'Dido and Aeneas'?,Henry Purcell -General,What instrument is used for measuring the distance between two points on a curved surface,Caliper,Music,"The Band King Sang ""Love & Pride"" Or ""Love & Rockets""",Love & Pride,General,The name Calvin has what unfortunate Latin meaning,Bald -General,What is the worlds biggest profession,Teaching,Science & Nature," At birth, the white whale is __________",Black,General,What is the part of the sole between the heel and the ball of the foot,Shank -General,"What is the nickname for Indianapolis, Indiana",Railroad city,General,How many pole positions did ayrton senna score,65,General,The grand prix d'Endurance is run on which circuit,Le Mans 24 hour race -General,Meridians converge at the ______,Poles,General,6300 was the biggest cast in a commercial for what company,British Airways,General,Who has the biggest percentage of female heads of household,Botswana - Geography,What is the capital of Honduras ?,Tegucigalpa,General,Hagen the _____ _______ supplies the liver with oxygen,Hepatic artery,General,"What was ""the pink panther"" in ""the pink panther""",Diamond - Geography,In which continent would you find the Mississippi river ?,North America,General,Who would wear a Hachimaki - or headband,Kamikaze pilots,General,What was the gift from the gods in the movie The Gods Must Be Crazy?,A coke bottle -Science & Nature,Which substance has the chemical symbol 03? ,Ozone , Geography,What is the capital of Belize ?,Belmopan,Music,According To The Beatles What was Brian's brother's name?,Clive -General,"Impurities, particularly of which compound, according to modern chemists, gives amethyst its violet or blue colouration",Iron oxide,General,Who wrote The Poseidon Adventure,Paul Gallico,General,What Time Is The Clock On The Front Page Of The Times Newspaper Showing,4.30pm -General,The rover the last is red the rest are white in what sport,Croquet hoops,Music,"Which Band Consisted Of The Following Members “Wyclef Jean, Lauryn Hill, Pras MKichel",The Fugees,General,"Which Musical Act Finally Knocked The Brian Adams Song ""Everything I Do I Do For You"" Off The UK No.1 Spot In 1991",U2 / The Fly -General,Who was British Prime Minister at the outbreak of WWI,Herbert asquith,General,In which cult novel do gang members known as 'droogs' appear,A Clockwork Orange,Music,What Did Joy Division Change Their Name To,New Order -General,And what is officially the richest,District of Columbia,General,What is the name of the least dense element,Hydrogen,Music,Who had an album called Incense and Peppermints?,Strawberry Alarm Clock -General,In which Woody Allen film was Allen's character visited by the ghost of Humphrey Bogart,Play it again sam,General,In what sport is the Palma Match contested,Shooting,Music,"According To Those In The Medical Profession When A Man Ejaculates He Fills On Average A Table Spoon Of Deposit, What You May Not Know Is That 2 Pop Groups Actually Got Their Names Based On This Scientific Fact (PFE)","10cc," -General,Police Academy got its theme song from which other film,Patton,General,What was the first company formed to manufacture motor cars,Daimler,General,When was the first major road race from Paris to Bordeaux,1895 -Art & Literature,Which Sculptor Produced A Lobster Telephone ,Salvador Dali ,General,What is the common name for a coin operated record player,Juke box,Geography,What city did the mormons establish as their headquarters in 1847 ,Salt lake city  - Geography,In which state is Mount Vernon?,Virginia,Music,Maya Angelou Made Herself Unavailable For Rehearsals After Working On Which Miusical,King - The Musical (1990),General,What does the DIN number mean on photographic film,Speed of film -General,What was Japan's most famous WWll aeroplane,Zero,General,"Which Football Club Reached The Fa Cup Final In 1885, 1984, & 1986",Everton,General,Compounds of which molecule outnumber tenfold all other compounds of molecules together,Carbon -General,Which Irish playwrights middle names are Fingall O'Flahertie Wills,Oscar wilde,Food & Drink,If a dish is served `au gratin' what does it have on it? ,Cheese , History & Holidays,Dia de los Muertos (The Day of the Dead) is celebrated in which Latin American country ,Mexico  -General,Manya Sklodowska became famous under what name,Madam Curie,General,Which nationality drinks the most coffee per person per day,Sweden,Music,What Kind Of Of Arrow Did ABC Want You Th Shoot Through Their heart In The 1980's,Poison -General,TABSO is the national airline of which country,Bulgaria,General,"Whose last word were ""I have not told half of what I saw""",Marco Polo,Music,On Of The Most Prolific Composers Of All Time His Surname Means Stream In His Native German Language Who Is He,Johann Sebastian Bach -Geography,"Two thousand years ago, the ancient Roman city of __________ was a thriving commercial port of 20,000 people.",Pompeii,General,What Shakespeare play is set in Massina and has Claudio in it,Much ado about Nothing,Sports & Leisure,Which team won the UEFA cup this year?,Liverpool -General,Inflammation of the gums,Gingivitis,General,By what name is the 3rd battle of Ypres known,Passchendaele,General,What was Reverend Jims real last name on TAXI?,Caldwell -General,Who did a double album after leaving the beatles as an effort to raise money for the famine in bangladesh,George harrison,General,In Britain what is The Andrew,The Royal Navy,General,The assassination of what country's Archduke led to World War I?,Austria -Music,Which Artist Married Carrie Fisher In August 1983,Paul Simon, Geography,Which country has the longest land border?,China,Geography,Which is the Earth's second largest continent,Africa -General,What US president was born in Corsica,William Harding,General,What does 'n.b.a' mean,National basketball association,Technology & Video Games,"In 'Pac-Man' for the Atari 2600, how many points were each pellet worth? ",1 -General,What language speakers were shot Russia and Germany 1930s,Esperanto,Religion & Mythology,"In Greek mythology, who drove the sun across the sky in his chariot?",Helios,General,The worlds first chocolate candy was produced in what year,1828 -Science & Nature,Which vital organ does the adjective renal refer to? ,Kidney ,General,The 2 months added when the Roman calendar was expanded from 10 to 12 months,January & february,General,Bowie what is pro football quarterback sonny jurgenson's christian name,Christian -General,Which of the 5 senses is less sharp after you eat too much,Hearing,General,Where would you Wedel,Ski slope,General,What is a group of this animal called: Starling,Murmuration -General,"Which author wrote the ""Redwall"" series of novels",Brian jacques,Sports & Leisure,Who was the 1990 Wimbledon women's singles runner-up?,Zina Garrison,General,"In 'la traviata', who sings 'sempre libera'",Violetta -General,There are 150 what in The Bible,Psalms,General,In 1931 Al Capone was sentenced to how many years in prison,Eleven, History & Holidays,Which Hitchcock movie With One Word In It's Title was released in 1958? ,Vertigo  - History & Holidays,Eras are divided into units called ________.,Periods,General,What insect gives its name and body to a food colouring,Cochineal,Science & Nature, Goats generally need their __________ trimmed once a month.,Hoofs -General,American folklore Abner Doubleday invented what at West Point,Baseball,Sports & Leisure,Who won the Spanish grand prix at weekend? ,Kimi Raikkonen ,General,The Somers Islands has what more familiar name,Bermuda - Language,What is the Spanish word for 'festival'?,Fiesta,General,"Who is paul mccartney singing about in ""here today""",John lennon,General,"Ambrosia, darkling and death watch are all kinds of what",Beetles - Language,"The name Australia is derived from the Latin word ""australis"" which means _______.",Southern, Geography,What is the basic unit of currency for Egypt ?,Pound,Music,Which Was The First Sex Pistols Single To Feature A Song Writing Credit For Sid Vicious,Holidays In The Sun -Music,"What Group Consisted Of Jo,Tina,Hannah,Rachel,Paul,Bradley,Jon",S Club 7,General,Which actress left 'The Queen Vic' in 1999 to begin a solo singing career,Martine mccutcheon,General,Price one kilo went from $63 to $260 in 1976 when sale illegal,Ivory -General,What is a SR N4,Hovercraft, Geography,Which city is known as the Windy City?,Chicago,General,Bissau is the capital of ______,Guinea-bissau -General,Britain's Frankie Wainman was world champion 1979 what sport,Stock Car Racing,General,In Old England what would you do with your titties,Its an old word for Sisters,General,What is the most common street name in the USA,Park Street -General,What US state named in 1664 in honour of Sir George Cateret,New Jersey Cateret defended Jersey,Art & Literature,"Which Famous Book Begins With The Line 'When shall we three meet again, in thunder, lightening, or in rain' ",Macbeth ,General,"In which organ is your ""hypothalmus"" located",Brain -General,Who Sang The Theme Tune To The James Bond Movie Octopussy?,Rita Coolige,Science & Nature,Every human has one of these on their tummies.,Navel,Music,"Which Female Singer Asked The Question ""What's Love Got To Do With It""",Tina Turner -Geography,What name is shared by mountain ranges in Scotland & Australia? ,Grampians ,Music,What was the thirteenth album released by Chicago?,Chicago XIII,General,This song singed by Boney M,Brown girl in the ring -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,General,The 'frigorifique' was the names of the world's first what,Refrigerator ship, Geography,What is the basic unit of currency for Cape Verde ?,Escudo -General,What country do most stolen US cars end up in?,Mexico,Music,What Is EP Short,Extended Play,People & Places,Where Was Mike Tyson Born ,Brooklyn  -Entertainment,Band: Elvis Costello and the ___________ ?,Attractions,General,What country is home to Sabena airlines,Belgium,General,What Nationality Was The Explorer Christopher Columbus,Italian -General,"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,General,Which Famous Athlete Became Master Of Pembroke College Oxford In 1985,Roger Bannister,Sports & Leisure,How Many Players Are There In An Ice Hockey Team ,11 (Check This) n  -General,In Natchez Missouri it is illegal to provide beer to what,An Elephant,Food & Drink, What is the main ingredient of a traditional fondue?,Cheese,General,In 1996 which Celine Dion album Grammy album of year,Falling into You -General,Which country produces most of the worlds gold,South africa,General,Which Group Released The Album Entitled “Chemistry” In Late 2005 ?,Girls Aloud,General,"Who co-wrote ""The Communist Manifesto""",Marx engels marx and engels -General,"All Hebrew orignating names that end with the letters ""el"" have something to do with what",God,Science & Nature,As what is minus forty celcius the same?,Minus forty fahrenheit,Music,Which Soul Singer Had A string Of Hits With The Commodores Before Launching His Solo Career,Lionel Richie -General,What concentration camp is the name of Anne Frank's burial site,Bergen belsen, History & Holidays,What Was The Name Given To The Coding Machine Used By The Germans In World War II? ,Enigma ,General,What was the only team to win two world series in the 1980s?,Los angeles dodgers -General,"Which Company Now Owned By Jaqueline Gold Was The Brain Child Of ""Cabourn Waterfield""",Ann Somers,General,What large sea is between Europe & Africa,Mediterranean,General,What did dan aykroyd and john belushi quit 'saturday night live' to become,Blues brothers -General,Peter Benchley Published His First Novel In 1969 It Went On To Become A Hugely Popular Film What Was It Called?,Jaws,General,Who became U.S. president following the assassination of William McKinley in 1901,Theodore roosevelt,General,The Sureto are the secret service of which country,France -General,Kelsey grammar sings and plays the theme song for which tv show,Frasier,General,What is the sum of 9685z + 235z - 1800z + 2z,8122z,General,What is rock star Sting's real name?,Gordon Summer -People & Places,Which Famous Artist Painted The Most Paintings ,Piccaso ,General,What Classic Toy Was Invented By Richard & Betty James In 1945?,Slinky,General,What was the name of jim henson's muppet hound on the jimmy dean show,Rowlf -General,For which film did Sophia Loren become the first to win a Best Actor/Best Actress Oscar in a foreign language film,Two women,Geography,"The highest mountain on Earth, _____________, reaches only about halfway through the lowest layer of the troposphere.",Mount Everest,General,What's the world's most common compound,Water -General,Busey what disney movie stars merlin the magician and wart the boy king,Sword in,General,-isms: This 20th century pihlosophical movement with thinkers and writers such as Sartre and Camus is responsible for the Theatre of the Absurd,Existentialism,Music,"The Spice Girls Had 3 Successive UK No.1’s In 1996, 1997, 1998 Name The 3 Songs (PFE)","2 Become 1, Too Much, Goodbye" - History & Holidays,What did Temujin change his name to ?,Genghis Khan, Geography,What is the basic unit of currency for Norway ?,Krone,General,What's the common term for precipitation infused by sulfuric & nitric acids,Acid rain -General,Which One Word Phrase Literally Means “ The Place Of All Demons ”?,Pandemonium,General,Which English King met Francis I of France on the 'Field of the Cloth of Gold',Henry viii,Music,In What Year Did Robbie Williams Leave Take That,1995 -Music,"1971's ""Move On Up"" Was The Biggest UK Hit For Which Soul Superstar",Curtis Mayfield,General,"Studios who recorded ""true love ways"" in 1965",Peter and gordon peter and gordon,General,What is the only river that flows both north and south of equator,The Congo -General,What liqueur means cupid in Italian and love in Latin,Amaretto,General,"What is the throwing event making up part of the ancient greek pentathlon, in which a circular object had to be thrown",Discus,Music,Who Was Born Barry Allen Pinkus In June 1946,Barry Manilow -General,How many children did president william henry harrison have,Ten,Music,"Which Country Music Star Sang As Guest Vocalist On The KLF Track ""Justfied And Ancient""",Tammy Wynette,General,The French newspaper La Monde translates as what,The World -General,What is the national drink of Poland,Mead,General,Who would perform the Maha Mantra,Hari Krishnas,General,Where was marco polo born,Island of korcula -Music,Name The Russian Composer Who Wrote Peter & The Wolf,Sergei Prokofiev,General,"Common name for many rodents belonging to the same family as the woodchuck (marmot), chipmunk, and prairie dog",Squirrel,General,What is the southern most city in the U.S.,"Na'alehu, hawaii" -General,Patroiophobia is the fear of,Heredity,General,What term describes a male swan?,Cob,General,"Who is the director father of Madonna's son, Rocco",Guy ritchie -General,It is against the law to do what to the Mayor of Paris,Stare at Him,General,After Athens which is the largest Greek speaking city in the world,Melbourne,General,Joyce Frankenberg born 1951 changed her name to what,Jane Seymour - Geography,Which country has a flag of a red circle on a white background ?,Japan,General,What is considered to be the worlds fastest team game,Ice Hockey,General,What are Portland Vases made from,Glass -Food & Drink,"This spiny fruit with a pungent odor and rich yellow flesh is considered ""The King of Fruits"" by many southeast asians.",Durian,General,A light canvas shoe with a plaited sole,Espadrille,Entertainment,"Who starred with John Travolta in the movie ""Broken Arrow""?",Christian Slater -General,The tune Rhapsody in Blue was first performed in which year,1924,General,Who did Spain fight in the 1808-1814 Peninsular War,Portugal,General,"What can be dipole, loop or helical",Aerials -General,Which South American country does not border the Pacific,Belize,Religion & Mythology,What was the name of the mythical hero-king who slew Grendal?,Beowulf,General,In the film 'the jerk' whose character was 'born a poor black child',Steve -General,What is the atomic mass of molybdenum,95.94,General,How did Karmuala Searlel - an early Tarzan die,Mauled by Elephant,General,"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 -Geography,What is the capital of Western Samoa,Apia,General,"During the u.s civil war, how many blacks served in the union army",Two,General,Name the first person to hit a golf ball over 400 yards with 6 iron,Alan Shepherd on the moon -Entertainment,"What country singer/songwriter (and sometimes actor) is known as ""the country outlaw""?",Willie Nelson,General,This imaginary line approximately follows the 180 degree meridian through the pacific ocean,International date line,General,Who did larry hagman portray in the tv series 'dallas',J.r ewing -Science & Nature,For How Long Does A Female Turkey Incubate Her Eggs ,Aprox 28 Days ,General,What musical instrument does John McEnroe play,Guitar,General,What was invented in the Humpty Dumpty store Oklahoma,Supermarket Trolley -General,A Maryland t-shirt slogan that parodied 'virginia is for lovers' read what,Maryland is for crabs,General,"What type of dog can be Manchester, Skye or Greenland",Terrier,General,What is a group of this animal called: Kitten,Kindle litter -General,What do the aperture & shutter let into a camera,Light,General,Beat It' by Michael Jackson was the single of the year What year was it,1983,General,Who was the only President of the Confederate States of America,Jefferson davies -General,What is the capital city of the Kingdom of Tonga,Nuku'alofa,General,Angel falls Venezuela Highest but where second Highest,Yosemite USA,General,Who does the Mona Lisa depict ?,Madonna Lisa Gherardini -General,With which hand do soldiers salute?,Right,General,Small beetle destructive to the potato,Colorado,General,A Study in Scarlet was the first novel to feature which literary character,Sherlock holmes -General,Which Italian writer wrote The Periodic Table,Primo levi,General,Which area of water lies between China and Korea,Yellow sea, History & Holidays,A lot of men end up in the hospital casualty department at Christmas time because they've decorated their nether regions with what? ,Sprigs Of Holly  -General,In Only Fools and Horses what is Rodney's middle name,Charlton,General,"In the nursery rhyme, what medication was applied to Jack's head after his tumble down the hill",Vinegar and brown paper,General,By what process is rock worn down by the weather,Erosion - Geography,What is the basic unit of currency for Tanzania ?,Shilling, History & Holidays,"""Which of the following places is NOT a real U.S. city or town? """"Noel,Missouri"""" - """"Santa Claus,Georgia"""", """"St Nicholas Florida"""", """"Snowflake,Texas"""" "" ","Snowflake, Texas ",General,Where is the tomb of the Venerable Bede,Durham -General,"Birmingham is flanked by the M6 on the north and M5 on the west, which motorway flanks south & east",M42,Religion & Mythology,"Which city is sacred to Jews, Christians, and Muslims",Jerusalem,General,What New Zealand native was the first man to climb Mt. Everest,Sir Edmund -Music,Who Had A No.1 In 1998 With C'est La Vie,Bewitched,Entertainment,"He directed ""The Godfather"".",Francis Ford Coppola,General,"Of what are Syrah, Merlot and Pinot Noir favourites",Grapes -Music,"Posdnous, Trugoy the Dove & PA Pacemaster Mase Had Their First Hit In 1989 How Are They Collectively Known",De La Soul, Geography,Ulan Bator is the capital of ______?,Mongolia,General,What night club did ricky work at on 'i love lucy',The tropicana -General,Maraschino' is a liqueur flavoured with what,Cherries,Music,"Who Was Famous For Singing About ""The Biggest Aspidastra In The World""",Dame Gracie Fields,General,"What are hunting, dress, old and Price Charles Edward types of",Tartans -General,What First Appeared In Britain On The 12th January 1948,A Supermarket,General,How To Save A Life Was The Debut Album Of Which Band,The Fray, Geography,What's the former name of Istanbul?,Constantinople -General,What Is The Only Creature Male Creature To Carry & Hatch Eggs,A Seahorse,General,What is the largest wholly Indonesian island,Sumatra,General,Rocket USA is going to produce a wind up doll what figure 2002,Homer Simpson -General,Who has won the soccer world cup as a player and a coach,Franz Beckenbauer,Science & Nature,What is the medical term for cancer of the blood?,Leukemia,General,"Who said - ""One more drink and Ill be under the host""",Dorethy Parker -General,What is the Capital of: Swaziland,Mbabane,General,Abbot - Costello routine who's on first name the pitcher,Tomorrow,People & Places,By what name is Maurice Micklewhite better known as?,Michael Caine -Science & Nature,Sodium Hydroxide is more commonly known as _________.,Lye,General,What is Mongolia often called to distinguish it from an autonomous region in China,Outer mongolia,General,What makes brown bread healthier than white bread,Wholemeal -General,Indiana jones: how many shankara stones did indy deliver,Only one one,Music,Who was the recording engineer on Sgt. Pepper's?,Geoff Emerick,Science & Nature," The now_extinct ancestor of the horse, __________, had a short neck, a pug muzzle, and stood no higher than a medium_sized dog.",Eohippus - Geography,What is the capital of Guam?,Agana,Entertainment,Who is Steveland Morris better known as?,Stevie Wonder,General,Which Famous Cartoon Character Was Created by Mary Tourtel,Rupert The Bear -Science & Nature,How Is The Binary Numer '010' Expressed As A Decimal ,2 ,General,Collective nouns - a Barren of what,Mules,Geography,"_______________ use wooden ""eyeglasses"" with narrow slits for eyepieces to protect their eyes from glare reflected by ice and snow.",Eskimos -General,What animal would you find in a form,Hare,Music,Name The Jackson Five's Fourth consecutive Hit Reaching No.4 In The UK Charts In 1970,I'll Be There,General,Who is nick and nora charles' dog,Asta -General,LOT is the national airline of what country,Poland,General,Which English bowler achieved his test career best when he took 7 wickets for 46 runs against South Africa in December 1999,Andrew caddick,Science & Nature, There once were more sea lions on Earth than __________,People -General,"25th anniversary is silver, what's the 6th",Iron,General,He released the parody 'oh you ate one too' in 1988 which included the song 'cabo wabo',Van halen,General,What is the flower that stands for: adoration,Dwarf sunflower -Sports & Leisure,Name The Youngest Ever World Heavyweight Boxing Champion ,Mike Tyson ,General,Disease caused by deficiency of vitamin d,Rickets, History & Holidays,"Germany's allies in WW II were Japan, Italy, Hungary, Bulgaria, Finland, Libya, and _________.",Romania -General,In the human body where is your occiput,Back of head,General,What was computer pioneer niklaus wirth's nickname at stanford,Bucky,Music,"Who directed the Beatles film ""Let It Be""?",Michael Lindsay-Hogg -General,The Great Gazoo was an alien in which cartoon series,The Flintstones,General,Picardy is in the north east of which country,France,Sports & Leisure,What Surname Has Been Shared By Three Formula One Champions Of The 20 th Century? ,"Hill (Damon, Graham & Phil) " -General,In the body what may be endocrine or exocrine,Glands,General,Ailurophobia is the fear of what,Cats,Food & Drink,Which type of rice should be used to make the italian dish risotto? ,Arborio (or vialone)  -General,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,General,Who played lestat in 'interview with the vampire',Tom cruise,General,"In Imperial measurement, how many pounds are there in one hundredweight",112 -General,What is the more common name for grape sugar,Glucose, History & Holidays,What was the name of the B-29 used at Hiroshima to drop the bomb?,Enola Gay, History & Holidays,How old was Stanley Matthews when he retired in 1965? ,50  - History & Holidays,Which actor from The Harry Potter Films Also starred in The Movie Dracula ,Gary Oldman ,General,Mount Dashan is in which African country,Ethiopia,Science & Nature, A __________ can open its mouth wide enough to accommodate a 4_foot_tall child.,Hippopotamus -General,What unusual ingredient is often included in a Gibson coctail?,Pickled Onion,General,What was the name of Minnie Caldwell's cat in Coronation Street,Bobby,General,"Blind, Comb, Fine Line and Harrow are types of what",Stamp Perforation -General,"Mineral, a cryptocrystalline variety of quartz of various shades of white, gray, yellow, brown, green, & blue",Chalcedony,Music,"Who Is Tommy Tutone Trying To Call When He Dials ""867 5309""",Jenny,General,What well known bard (poems & songs) was born on 25th January 1759?,Robert Burns -General,What musical was named after a u.s city,Oklahoma,General,In which country would you find Karachi,Pakistan,Food & Drink,Adding this to a mere martini makes it a Gibson.,Onion -Music,Who Tore Up A Picture Of The Pope Live On US Television In 1992,Sinead O Connor,General,What is Kanga's son's name in the Winnie The Pooh stories,Baby roo,General,What 1982 horror film starred JoBeth Williams as a woman whose youngest child is carried off into a TV set,Poltergeist -General,"Which man has made the highest individual innings at Lord's, an innings of 333",Graham gooch,General,What does the Latin phrase Deo Volente mean,God willing,General,Ford What U.S. state includes the telephone area code 507,Minnesota -Music,"Whose Albums Include ""Copperhead Road, Guitar Town & A Train A Comin""?",Steve Earl,General,What Is The Michelin Man's Nickname,Bibendum,Sports & Leisure,Which television comedian once rowed in the Boat Race? ,Hugh Laurie  -General,A method of construction in which vertical beams are used to support a horizontal beam.,Post and lintel,General,Hansen's disease has another name what is it,Leprosy,General,What's ulster,Northern ireland -General,Which Disney film features the ballad 'Can You Feel The Love Tonight,The lion king,General,Which partnership was responsible for the musical Paint Your Wagon,Lerner & loewe,Food & Drink,What was discovered by the McDougall Brothers in 1864 after an experiment with phosphatic yeast? ,Self-Raising Flour  -General,Psychologists say men who prefer small breasts what mentally,Depressed, Geography,In what country is Taipei?,Taiwan,General,"What Very Famous Link To Christmas Does Irving Berlin, Have?",He Wrote The Song White Christmas -General,"Name the French salad containing tuna, anchovies, french beans and hard boiled eggs",Salade nicoise,Science & Nature,"How many days will it be before a clock, losing 30 minutes a day shows the right time again ",24,General,What happens when reverse peristalsis takes place,You puke -General,In Cheyenne Wyoming what is illegal on Wednesday,Taking a Shower,Music,Which opera overture is used as a background to Post-Grand Prix champagne celebrations?,Bizet's Carmen,Science & Nature,What Is Moh's Scale A Measure Of ,Hardness  -General,In what business are 'angle irons' and 'rolex',Dentistry,General,"Cat stevens sings 'i can't keep it in, i gotta ______'",Let it out,Mathematics,What is the square root of -1 ?,I - History & Holidays,What was the only state george mcgovern carried in the 1972 presidential election ,Massachusetts ,General,U.S. captials Pennsylvania,Harrisburg,General,Who owns: kool aid,Philip morris -General,Mace is the outer covering of which common spice,Nutmeg,General,Jayne Austin is famous but who reigned Britain when she wrote,George III,General,In ancient Egypt men and women did what opposite to today,Peeing - men sat women stood -General,What actor played George Cooper in My Favorite Husband,Barry nelson,General,Whats the surname of the mediaeval author of Canterbury Tales,Chaucer,Sports & Leisure,"Which contender has won most gold's in any one Olympics? Was it Mark Spitz(Swimming), Nadia Comaneci(Gymnastics) or Raymond Ewry (Track & Field) ",Mark Spitz (Swimming)  -General,In what industry did John Davidson Rockefeller get rich,Oil,General,A racing sledge steered and braked mechanically,Bobsleigh,Geography,Which three countries border Luxembourg? ,"France, Belgium and Germany " -General,"What actress declared ""I'll get naked at the drop of a hat""",Sharon Stone,General,St Fiacre is the Patron Saint of what,Piles,General,What French relish sounds like a machine gun firing,Ratatouille -General,What was the name of the beatles' corporation before it was renamed 'apple',Beatles and company,General,Who played by Luther Adler Roy Goldman Peter Sellers etc,Adolf Hitler,Science & Nature,How Many Legs Per segment Does A Millipede Have? ,4 Legs  -General,What is the non obvious link Superman 1 and the Godfather,Mario Puzo write both stories,Art & Literature,Who Wrote Mein Kampf (My Struggle) ,Adolf Hitler ,General,Oneirogmophobia is the fear of,Wet dreams -Food & Drink,What Would You Be Drinking If You Were Given Earl Grey ,Tea ,General,Which individual had the highest income of anyone in the USA in the 1920s,Al capone,Music,How Many Red Balloons Did Nena Have,99 -Music,What Was XTC's Senses Working,Overtime,General,Wiesmuller what was canada's first national park,Banff national park,General,What is Camilla Parker Bowles' nickname,Bulldog -General,"Who won the Oscar for Best Director for the 1987 film ""The Last Emperor""",Bernardo bertolucci,General,Whats the worlds largest church,"St peters, vatican city",General,Which disease was known as the Kings Evil,Scrofula -General,What is hypertext markup language,Html,General,Where is salzburg,Austria,General,In which country does the Serengeti lie,Tanzania -Sports & Leisure,"What in 1926, did Gertrude Ederle become the first woman to do? ",Swim Across The English Channel ,General,What is a male guinea pig called,Boar,Music,"Who Recorded The Albums ""Love Hurts"" & ""Heart Of Stone""",Cher -General,Which British King Was On The Throne When America Gained Independence,King George 3rd,Geography,Guayaquil is the largest city in what country ,Ecuador ,Food & Drink,What is the fruit flavour of a traditional crepe suzette? ,Orange  -General,Fredrick Bulsara was the lead singer of what pop group,Queen - Freddie Mercury,General,What is the board game where it pays to know your trivia,Trivial pursuit,Sports & Leisure,"Which NFL team's defensive unit was nicknamed ""The Purple People Eaters""?",Minnesota Vikings - Geography,What is the capital of Greece ?,Athens,General,What famous soap opera duo reigned on General Hospital in the eighties?,Luke and Laura,Music,From Which Heavy Metal Band Was Dave Mustaine Fired In 1982,Metallica -Sports & Leisure,In Which Pastime Might You Score A Hit ,Battleships ,General,Where was the original Crystal Palace built,Hyde Park in London,General,"Before Canberra, which city was the capital of Australia",Melbourne -General,In Montreal you cannot park a car blocking what,Your own driveway,General,How did Mussolini die,Execution,Music,"Who Recorded The Album ""Love Over Gold""",Dire Straits -General,Which film had song Springtime for Hitler,The Producers,Art & Literature,In which book is Scheherazade a story teller ?,Arabian Nights,Food & Drink,From Which Plant Does Rum Come From ,Sugar Cane  -General,What Georgia park features carvings on the world's largest piece of exposed granite,Stone mountain,General,October 1939 what UK battleship sunk torpedo loss 800 lives,Royal Oak,General,____________ dubbed the voice of the Beast in the 1991 Disney version of Beauty and the Beast. ,Robby benson -General,Who wrote the opera 'the giant',Sergei prokofiev,General,What is South Korea's national dish called?,Kimchee,General,In Florida it's illegal to molest what,A Trash Can -General,What hit lp did rockpile release in 1980,Seconds of pleasure,General,"What Does The Term ""Kung Fu"" Mean",Leisure Time,General,A cyclonic (rotating) tropical storm with winds at the center in excess of 74 miles per hour is called,Hurricane -General,What was the (West) German capital before the 'Wiedervereinigung',Bonn,Science & Nature,A terrapin is a type of _________.,Turtle,Music,Which hymn traditionally closes The Last Night of the Proms?,Jerusalem -General,What would you buy in a Manitee length,Pearls - a 24 inch choker, Geography,What is the capital of Ethiopia ?,Addis Ababa,General,What's the respiratory organ of most fish,Gill -General,In Iowa state laws prohibits charging admission to see what,One armed piano players,General,Dammen in Dutch is what game,Draughts or Checkers, Geography,Which country owns Corfu?,Greece -General,Radical russian marxists are known as,Bolsheviks,General,Who is the only solo performer to win Euro song twice,Johnny Logan 1980 – 1987,Art & Literature,"Who wrote ""Ten Little Indians?""",Agatha Christie -General,What 20th-century American president was so obsessed with secrecy that he often wrote 'burn this' on personal letters,Lyndon Johnson,General,"Who was the king of England from 1509-1547, and founder of the Church of England",Henry viii,General,What was the name of the aunt in the western How the West Was Won,Molly -General,What is the capital of Hawaii,Honolulu,Food & Drink,What term is used in cooking to describe food that has been cooked so that it is still firm to the bite? ,Al Dente ,Science & Nature,"Carditis, affects the ________.",Heart -Science & Nature,Where Was The Blast Furnace First Introduced ,France Around 1400 , History & Holidays,This European war was named after a peninsula between the Black sea and the sea of Azov?,Crimean War,General,Who was Alexander the Great's father,Phillip ii -General,Estimated there are 4 100 million billion molecules cubic inch what,Air,General,-isms: A painful stiffness of the muscles and joints,Rheumatism,General,An average person uses the bathroom how many times per day,Six -Art & Literature,In Which Century Did Artists First Start Painting On Canvas ,15th Century ,General,Peter George wrote Two Hours to Doom filmed as what,Dr Strangelove,Science & Nature,"This is known as ""The Royal Disease"".",Haemophilia -General,What is the capital of Tasmania,Hobart,General,Name the profession most often late for doctors appointments,Doctors,Music,Who Was The Star Behind Rocket Records,Elton John -General,What airlines identification code is VS,Virgin Atlantic,General,"What is known to Pentagon procurement people as a ""portable handheld communications inscriber""",A pen pen,General,What is the chief monetary unit of Croatia,Kuna -Science & Nature,In Which 1986 film Did Michael Hutchence Star As A Truly Terrible Punk Singer ,Dogs In Space ,Science & Nature,In which organ is Bile produced ?,Liver, Geography,In which country would you find Dunkirk ?,France -General,What type of fruit is a pineapple,Berry,General,Who live in monasteries,Monks,Sports & Leisure,What Nationality Is Former Snooker World Champion Cliff Thorburn ,Canadian  -General,"Name the South African author of 'Cry, the Beloved Country'",Alan paton,General,What's the other name for the statue of Egyptian god Harmachis,The Sphinx, Geography,What is the capital of San Marino ?,San Marino -General,"Who, in 1874, painted the picture called La Loge",Auguste renoir,General,Thirty three degrees fahrenheit who sang 'islands in the stream' with dolly parton,Kenny rogers,General,What tennis players name meant Tall trees by still water,Evonne Goolagong -Geography,Which Bridge Was The First Major Suspension Bridge In The World ,The Menai Strait Bridge In Wales ,General,Who invented a screw which lifts water to a higher level,Archimedes,General,Why is Louise Brown - born 1978 famous,First test tube baby -Science & Nature," In 1874, the first animal purchased for the Lincoln Park Zoo in Chicago was a __________, bought for $10.",Bear cub,General,Managua is the capital of ______,Nicaragua,General,Who did george bush lose a 1970 texas senate election to,Lloyd bentsen -General,"In the bible the book of Psalms is attributed to King David, to who is the book of Ecclesiastes attributed",Solomon,Music,"Which Band Started Out In Basildon Under The Name ""The Composition Of Sound""",Depeche Mode,Music,Where was the first US live Beatles Concert?,Washington D.C. -General,What Was The Name Of Sherlock Holme's More Intelligent Brother?,Mycroft,General,"A Backgammon board is marked out in sawtooth ""points"" in two colours. How many of these points are there",24,General,In which city is the highest steeple?,Ulm -Food & Drink, Laetrile is associated with the pit of which fruit,Apricot,General,In the soapie 'one life to live' who was vicky's alter ego,Nicky,General,Which country was the first to issue parking tickets,France -General,"Who lost 41 of a crew of 98 to scurvy in 1868, on his first voyage to the south pacific",Captain cook,General,What would you do with a drupe,Eat it - it’s a fruit,General,A Primagravida is what,First Pregnancy -General,Which actor/director was responsible for the rebuilding of the Globe Theatre,Sam wanamaker,General,What is the royal disease,Haemophilia,Food & Drink,What Is The Principle Ingredient Of Mayonaise ,Eggs  -General,On any given day half of Americans are on what,A special Diet,General,Gold or silver in lump valued by weight,Bullion,General,What Type Of Foodstuff Takes It's Name From The Spanish For Girdle,Fajita -Music,"Fairground Attraction Had A Hit With The Song ""Perfect"" Or ""People""",Perfect,General,A group of pigs is called a,Litter,General,60% of women experience what,Menstrual Cramps -General,What is the Capital of: Switzerland,Bern,General,"Lake Eyre, Australia's lowest point , is in which state",South australia,General,Which poet wrote 'Ode to the West Wind',Shelley -General,What is the name of a quarter of Jerusalem that can be translated as 'hundred gates'?,Mea Shearim,General,River Providence is the capital of what state,Rhode island,General,What is the name of the desert in California,Mojave -General,In Cheyenne Wyoming its illegal to do what on a Wednesday,Take a shower,General,Slate is formed by the metamorphosis of what,Shale,General,"""Slow Ride"" was Foghats biggest hit from this album released in 1975?",Fool for the city - History & Holidays,Which Country Was Divided Into North And South In 1954 after communists took control of government. ,Vietnam ,Geography,"Each year ___________ has approximately 5,000 earthquakes, including 1,000 that measure above 3.5 on the Richter scale.",Alaska,General,"The Vitra Design Museum in Weil am Rhein, Germany, was the first major work of which architect?",Frank Gehry -General,The stuff that dreams are made off - last words in what film,The Maltese Falcon, History & Holidays,"What is the common name for muscivora forficata, the state bird of oklahoma ",Scissor-tailed flycatcher , History & Holidays,What is the name of David Hasslehoff's Talking car in the show 'Knight Rider'? ,KITT  -General,"Who presents the radio programme ""In the Psychiatrist's Chair""",Anthony clare,General,How thick is an ice hockey puck,One inch,General,Paddie's Wigwam nickname of the RC cathedral what UK city,Liverpool -General,Where is the Kennedy Space Centre?,"Cape Canaveral, Florida",General,Why was Fred Lorz disqualified 1904 Olympic marathon,Hitched a lift passing car,General,The Vince Lombardi Trophy is awarded in which sport?,American Football - Geography,What is the basic unit of currency for Dominica ?,Dollar,General,Which character was invented in a comic for Montgomery Ward,Rudolf the red nosed reindeer,Sports & Leisure,Which Is The Only English Football League Club Beginning Wi The Letter Q ,Queens Park Rangers  -Science & Nature, The Adélie __________ bears the name of French explorer Dumont d'Urville's beloved wife.,Penguin,Food & Drink,Rum is made from this plant.,Sugar cane,General,"What was replaced on the tail planes of British Airways planes, by a design meant to represent its international status",Union jack -General,Who would spin a Gob on their nose end,Glassblower,Geography,What is the largest country in the world? ,Russia (c.17 million square kilometres) ,Science & Nature,Who Was The First Director Of The Atomic Lab At Los Alamos New Mexico ,J Robert Oppenheimer  -Toys & Games,"In snooker, how many points are accumulated in a perfect break?",147,General,"A jump in which the legs open in second position in the air, resembling a scissors.",Ciseaux,General,56% of Americans believe there is what in heaven,Baseball -General,Who gave Yves Saint Laurent his start in fashion,Christian Dior,General,What was Colombo's dog called,Fang - Basset Hound,Sports & Leisure,Who hosted the 1999 cricket World Cup?,England -General,Where is mount vesuvius,Italy,General,Who born US Edu UK Expelled West Point Died Baltimore 40,Edgar Alen Poe,General,In 1656 Christian Huygens invented what type of timekeeper,Pendulum clock -General,Tudor England mans apron shows job white cook what checked,Barber,General,What's the number ten to the power of 100,A googol, History & Holidays,"Which period was first, jurassic or carboniferous?",Carboniferous -General,What is the longest strait in the world,Malacca,General,In what area of France is champagne made,Reims,General,Edinburgh Castle stands on Arthur's Seat what was Arthur's seat,Volcano -General,How many stories did enid blyton publish in 1959,Fifty nine,General,"What sitcom was ""The Facts of Life"" a spinoff of?",Different Strokes,General,"In The World Of Music How Is ""Terry Nelhams"" More Commonly Known",Adam Faith -General,Which animals name comes from Arabic he who walks swiftly,Giraffe,Science & Nature,What Is The Common Name For The Crane Fly ,Daddy Long Legs ,General,What Does A Graphologist Study,Hand Writing -General,What is the official newspaper of capitol hill,Roll call,Entertainment,"In the 1996 version of ""Romeo and Juliet"", who played Juliet?",Claire Danes,General,What is a dzo,Cow Yak cross -General,"This Is “ Tracie Andrews ” Who Hit All The Tabloid Healines On The 3rd Dec 1996, But Why?",Road Rage She Murdered Her Boyfriend Lee Harvey,General,Where could you find the Lutine Bell,Lloyds of London,General,What is the Capital of: Peru,Lima - Geography,Which bridge spans the Hudson River?,George Washington Bridge,General,A government in which power is restricted to a few is a(n) __________.,Oligarchy,General,Name Hopalong Cassidy's horse,Topper -Music,Which group was no.1 in the charts in ’95 with “back for good”?,Take That,General,"What coutnry did 300,000 Chinese troops invade in February, 17979",Vietnam,General,"If a dish is served 'au gratin', what does it have on it",Chesse -Sports & Leisure,"Which Grand Prix Racing Team Are Based In Woking, Surrey ",McClaren ,General,Who was the first sports announcer to address Muhammed Ali by his Muslim name,Howard Cosell,General,Charles Bronson got acting job because he did what on demand,Belch or Burp - History & Holidays,In 70's CB Radio Slang What Is A 'Smokie'' ,A Policeman ,General,"Alphabetically speaking, which is the last of the 26 Irish counties. Most people say Wexford, but they're wrong",Wicklow,General,Is belfast in northern or southern ireland,Northern -General,"Which Band Started Out In Basildon Essex Under The Name ""The Composition Of Sound""",Depeche Mode,Sports & Leisure,Who Was The First Athlete To Exceed a Distance Of Eight Metres In The Long Jump In 1935? ,Jesse Owens ,Religion & Mythology,Who is the greek equivalent of the roman god Cupid,Eros -General,What name is given to the legendary black dog with huge teeth and claws which is prevalent in the North of England mythology?,Barghest,General,"What does the sign BYO, seen outside some Australian eating places, mean",Bring your own booze, Geography,What is the capital of Turkey?,Ankara -General,What movie starred michael caine and angie dickenson,Dressed to kill,Food & Drink,What Is Sauerkraut ,Pickled Cabbage ,General,What was Beethoven's only opera,Fidelio -Food & Drink,"The mild stimulant ""theobromine"" is found in this common lip_smacker.",Chocolate,General,How many letters are in the Cambodian Alphabet,74,General,What childhood disease did only 312 americans have in 1993,Measles -Food & Drink,In which country is the wine making area of Stellenbosch? ,South Africa ,General,Which singer is a former school teacher,Sheryl crow,Science & Nature,"What Colour Is The Mineral, Lapis Lazuli ",Blue  -General,Released in 1908 what was the first ever horror film,Dr Jeckyll and Mr Hyde,General,What is the Capital of: Brazil,Brasilia,General,Hugh Lofting created which famous character,Doctor Dolittle -General,In what book did the grinch steal christmas,The grinch who stole christmas,General,"Who wrote, 'Goodbye to all That'",Robert graves,General, The covering on the tip of a shoelace is a(n)_________.,Aglet -Music,KC and the Sunshine Band stemmed from which US state?,Florida,General, Name the porceilan chair you sit on at least once a day.,Toilet,General,In Massachusetts it is illegal to deliver what on Sundays,Diapers - Nappies -General,What is elton john's real name,Reginald dwight,General,Relating to food what is another name for 'tamarillo',Tree tomato,People & Places,Which Argentine Prop Was Sent Off For Knocking Out An English Second Row With A Punch ,Carlos Mendes  -Religion & Mythology,Egyptian Ibis-headed god?,Thoth,General,What units are used to measure the size of pearls,Grains,General,Roschfort was a baddie in what book and (many) film versions,The Three Musketeers -General,In what country is K2 the world's second-highest mountain,Pakistan,General,Stygiophobia is the fear of,Hell,General,What is Terry Wogans real first name,Michael -General,What is an aasvogel,A vulture,General,"What kind of cancer did Napoleon fear, because it ran in his family",Stomach,General,"Who had a hit with ""Son of my Father"" in 1972",Chicory Tip -General,Who was the first U.S. President to use a word processor?,Jimmy Carter,General,What state is considered the vampire capitol of America,Rhode island,Sports & Leisure,What is the score of a forfeited softball game?,Jul-00 -General,Which Group Was The Motown Labels Biggest Selling Act Of The 1990's,Boys To Men,General,Edgar Allen Poe wrote a famous poem about his animal,Raven,Science & Nature,What Is The More Common Name Of The Poisonous Plant Atropa Belladonna ,Deadly Nightshade  -General,Where is the 'whispering gallery',St paul's cathedral,General,Who failed an audition for Fame because was not pretty enough,Tom Cruise,General,What is the name of the coloured part of the eye,Iris -General,The average person does it 17 times a day - what,Laugh,General,Who wrote the 'Waverley Novels',Walter scott,General,Relating to food what meat is the dish 'saltimbocca' made with,Veal -General,Who is melanie griffith's mother,Tippi hedren,General,The zeedonk is a cross between which two animals,Zebra & donkey,Music,Which Artist Had The Most Number 1 Hits On The US Billboard Charts,Michael Jackson -Entertainment,This movie starring Marlon Brando won the best picture award in 1972.,The Godfather,General,What is stuffed with a sheep's carcass stuffed with chickens stuffed with fish stuffed with eggs,Roast camel,General,"Otter when a player hits a double in darts, what can he do",Start scoring - History & Holidays,Two 747's collided here in 1977.,Canary islands,General,It is illegal to sell what in Lehigh New England,Doughnut Holes,General,Who was the king of sweden from 1907 to 1950,King gustav v -General,What U.S. state includes the telephone area code 515,Iowa,General,What is the name of dr dolittle's parrot,Polynesia,General,What was the first official currency of the u.s,Dollar -General,"Who said ""The no-mind not-thinks no-thoughts about no-things"" ?",Buddha,Food & Drink,Harrissa is what in cooking? ,A spicy paste ,Music,"Who Had A Hit Single In 1982 With ""Chalk Dust"" - The Umpire Strikes Back",The Brat -General,Cousin What U.S. state includes the telephone area code 602,Arizona,General,Who wrote the best-selling novel 'The Family'?,Martina Cole,General,What sport uses a ball called a slitter,Hurling -General,What is the name of the river that runs on the border of california and arizona,Colorado,General,"Which Shakespeare character described himself as having ""Loved not wisely but too well""",Othello,Music,Who Wrote Lionel Richie's Massive Uk No.1 “Hello” ?,Lionel Ritchie -Entertainment,_____ in the name of love?,Stop,General,What did Foucault demonstrate with his pendulum,The rotation of the earth,Food & Drink,Who is the Roman god of wine? ,Bacchhus  -General,What is the scientific name for the gorilla,"""Gorilla gorilla- gorilla""",General,"Whose epitaph reads ""Workers of all lands unite""",Karl marx,General,Juglans Regia is the real name of what type of nut tree,Walnut -General,What gem was Cleopatra's signet,The Amethyst,General,What is the fear of rabies known as,Kynophobia,General,Who invented the first practical steam engine,Thomas newcomen -General,What is the longest typed word that alternates hands,Skepticisms,General,Which two countries signed up to the common market in 1973 alongside the U.K?,Eire and Denmark,Science & Nature,Of what is genetics the study?,Heredity -General,Who coupled with the devil and gave birth to Andrew John,Rosemary,General,Who was the world's oldest man,Bir narayan chaudhari,General,Where do boy scout leaders get their names from,The Jungle Book – Rudyard Kipling -General,In which country is the highest European waterfall,"Ormeli, norway",General,Who does a Filicide kill,Son or Daughter,General,What 1980 Vietnam flick was re-released in 1987,Apocalypse now -General,Grammy Awards: What album by Michael Jackson won the grammy in 1983,Thriller,General,What English king married his brother's widow,Henry viii,General,"What causes ""baker's itch""",Yeast -General,In which country is the Nokia company based,Finland,General,Who wrote The Picture of Dorian Grey in 1891,Oscar Wilde,General,Soap what's the capital of illinois,Springfield -General,What is e.t famous for saying,E.t phone home,General,What come in varieties Norway Oriental Sitka White Siberian,Spruce Trees,General,Which country was the first to give women the vote,New zealand -General,What country had an airline called Rottnest,Australia,General,What is the young of this animal called: Turkey,Poult,Music,"Who Stormed To The Top Of The Charts With ""You To Me Are Everything"" In 1976",The Real Thing -General,African American Garrett A Morgan invented what,The Traffic Signal,General,This underground cartoonist created Fritz the cat & Mr. Natural.,Robert crumb,General,What was the basis of the giant u.s prune industry,Agen plum -General,"The heraldic term ""gules"", meaning red, comes from the french word ""gueules,"" meaning a ______",Throat,General,"What are Kayobi, Doyobi, and Kinyobi",Japanese days of the week,General,Which countries translated name means Land of the Eagle,Albania -General,Bowser' and 'Jocko' have been two prominent members of what very successful rock & roll nostalgia act?,Sha Na Na,General,In Washington state it is specifically illegal to have sex with who,Virgins,General,Who was the first rock star arrested on stage,Jim Morrison of the Doors -General,Where was Enrico Caruso born,"Naples, italy",General,What animal has bony plates and rolls up into a ball if its frightened,Armadillo,General,Halophobia fear of what,Speaking -General,Who would use a technique called pleaching,Gardener twine branches to hedge,Entertainment,Who did the music for the 1970's film 'Saturday Night Fever'?,Bee Gees,Geography,In what country is Taipei,Taiwan -Science & Nature, A camel can shut its nostrils during a __________,Desert sandstorm,General,What does v.s.o.p. stand for on a bottle of brandy,Very superior old pale,General,Who was the first fallen angel,Lucifer -General,What is the fear of progress known as,Prosophobia,General,Hipopota Agravis or guasano is what in Mexican Tequila,Not Worm – Butterfly Caterpillar,General,An oxlike antelope,Gnu -General,"What state contains the most cacti, or cactuses",Arizona,General,There are 45 miles of what in the skin of a human being,Nerves,General, Name the pain_inflicting person you go to to get your teeth fixed,Dentist -General,What colour is the wax covering Gouda cheese,Yellow,General,In proportion which animal has the largest eye,Cat,General,Rickets is caused by a lack of which vitamin,Vitamin d -General,"Wheel according to bonnie tyler, what hits you when it's too late",Heartache,Music,What Question Was Asked In The Title Of A Hit By Both The Eurythmics And Charles & Eddy?,Would I Lie To You,General,What was napoleon's surname,Bonaparte -General,"In 'star wars', who was darth vader's face",Sebastian shaw,General,"Which play opens with: ""when shall we three meet again""",Macbeth,Science & Nature,What Do The Lymph Glands Produce ,White Blood Cells  -General,What is the easternmost city in Germany,Berlin,General,How many thousand million tonnes of carbon dioxide are formed each year by the combustion of fossil fuels,Sixteen,General,Head which spanish explorer named the amazon river,Orellana -General,Who is the only baseball player to have been killed in a major league game,Raymond chapman,General,Teheran is the capital of ______,Iran,General,What is the date on Smirnoff Vodka bottles,1818 -General,Which car's name translates from latin as 'I Roll'?,Volvo,General,The USA president lives in the White House - Who Blue House,President South Korea,General,What is the worlds most widely eaten fish,Herring -General,Where's the famed Arch of Hadrian,Athens,General,Which fruit contains the most protein,Avocado,Sports & Leisure,Football: The Pittsburgh ______?,Steelers -General,"Who From The World Of Sport Penned The Autobiography Entitled ""Facing The Music""",Torville & Dean,Art & Literature,Meaning 'fresh' in italian. The technique of painting on moist lime plaster with colors ground in water. ,Fresco,General,Name Irelands oldest licensed whiskey distillery,Bushmills -Music,Fred Scnheider Was A Member Of Which Famous Band,The B 52's,General,What country celebrates its National Day on 26th October?,Austria,Music,"Who Had A Christmas Hit In 1979 With ""Day Trip To Bangor""",Fiddlers Dram -General,What is a dialogue,A conversation,General,A hot spring which shoots steam into the air is a _______,Geyser,General,25% of sexually active people have tried what,Anal Sex -General,Where in the body is the axilla,Armpit,General,"Liquor whose name is derived from uisge beath, Gaelic for aqua vitae",Whisky,General,Whats the nickname for Indiana,Hoosier state -Music,"What Is The Connection Between Jean Luc Ponty, Stephane Grappelli, & Jerry Goodman",Violin,General,The Brownies ( junior Girl Guides) used to be named what,The Rosebuds,General,This bird can also be found on a chess board,Rook -General,What star of the Breakfast Club was also part of the orginal cast of the facts of life?,Molly Ringwald,Sports & Leisure,What is the name of the Manchester City's old home ground? ,Maine Road ,General,The spot on the earth's surface directly above an earthquake's focus is called the ______,Epicenter -Sports & Leisure,Packy East Had 3 Boxing Bouts All Of Which He Lost When Asked About Them He Said & I Quote ' I Was On The Canvas More Times Than Rembrandt '' How is he better known ,Bob Hope ,General,Who won two Nobel prizes in different fields,Marie Curie Physics 1903 Chemistry 1911,General,What does the girls name Donna mean,Lady - From Latin -General,What is the official language of Cuba,Spanish,General,What car manufacturer also makes airplane engines,Rolls royce,General,The study of human pre-history is ___________.,Archaeology -General,Motorphobia is the fear of,Automobiles,General,What city used to be known as Bytown,Ottawa, History & Holidays,"In which Christmas song would you find the lines, 'He's making a list and he's checking it twice. He's going to know who's naughty and nice'' ",Santa Claus Is Coming To Town''  -General,"__________ 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,General,If You Studied Horology What Do You Study,Clocks / Time,Sports & Leisure,In a game of netball how many players on a team are allowed To score? ,Two  -Entertainment,"When not fighting crime, what did Underdog do for a living?",Shoeshine boy,General,What cities underground has the most stations,New York,General,What's missing from a woman suffering from amazia,Breasts -Food & Drink,"Often drunk, this liquid is normally harvested from female cows ",Milk ,General,Richard Attenbourough what character in The Great Escape,Bartlett,General,"What type of particle alongside Helium, is released during the process of Nuclear Fusion in the sun?",Photon -General,Which country grows the most fruit,China,General,Who was once billed as The Atomic Powered Singer,Elvis Presley,Science & Nature,What Does The Acronym ROM Stand For With Regard To Computer Technology? ,Read Only Memory  -Science & Nature,What Vegetables Are Part Of The Family Allium? ,"Onions, Garlic, Leek, Shallot And Chive ",Sports & Leisure,"In the Entire English Football League, Which Football Team Has The Shortest Name? ",Bury ,General,In Alberta what are you not allowed to Paint (its illegal),Wooden Log -General,220 yards equals one,Furlong,General,An ecostate animal lacks what,Ribs,Music,Which California festival brought Jimi Hendrix fame in the US?,Monterey -General,Which Mediterranean island was divided into two in 1974,Cyprus,Sports & Leisure,Which Athlete Won Olmpic Gold In Both The 800m & 1500m At The 1990 Games In Athens In 2004 ,Kelly Holmes ,General,Young man paid by older woman to be escort or lover,Gigolo -General,"To what does the obscure song ""Turning Japanese"" refer?",Masturbation,People & Places,In which county is Uttoxeter? ,Staffordshire ,General,Of what substance are teeth made,Enamel -General,How many years did Hitler predict the Third Reich would reign,1000 years,General,"In Which US State Will You Find ""Lincoln"" International Airport",Nebraska,General,"What does the ancient Greek word ""electron"" mean ?",Amber - Geography,In which state are Gettysburg and the Liberty Bell?,Pennsylvania,General,Who was the first man to run a sub four minute mile,Roger Bannister,General,Citius Altius Fortius is the motto of what organisation,Olympic -General,A collision between a bird and an aircraft,Bird-strike,General,King Zog ruled which country,Albania,Music,"The Lead Singer Of Spandau Ballet Was ""Tony Hadley"" Or ""Martin Kemp""",Tony Hadley - History & Holidays,"""What Did My True Love Give To Me On The """"Tenth"""" Day Of Christmas"" ",10 Lords A Leaping ,General,Which herb is used to make the garnish 'gremolata',Parsley,General,At what age does a filly become a mare,Five -Science & Nature," __________ feel safest when they are crowded together, hundreds in a group.",Flamingoes,General,Who painted the Sistine Chapel,Michelangelo,General,The Chinese apple is another name for what fruit,Pomegranate -General,Which company developed 'instant' coffee in the 1930s,Nestle, History & Holidays,"What was significant about the words (Watson, please come here, I want you) when spoken in 1876? ",First Complete Sentance Spoken On The Phone ,General,What Is The Collective Term For A Group Of Pigs,Drove -People & Places,Who Bought The Ritz Hotel In Paris In 1979 ,Mohammed Al Fayed ,General,"""Janie's Got a Gun"" was on their 1989 album ""Pump""",Aerosmith, History & Holidays,Which English King issued the Magna Carta in 1215?,King John -General,What former british colony has a famed jade market on canton road,Hong kong,General,Cavatina what the theme music to which film,The Deer Hunter,General,Who played the title role in Tom Jones,Albert finney -General,Who was the male star of the film Fatal Attraction,Michael douglas,General,Which animal has legs but cant walk,Hummingbird,General,What is the modern name of the Roman town of Glevum,Gloucester -General,What is the average temperature (f) at the South Pole,Minus fifty six 56,General,What's nero wolfe's favorite drink during office hours,Beer,General,Who was the first Plantaggenet King of England,Henry i -Food & Drink,"In the year 2000, what was the most popular sweet brand in the UK - Rowntree Fruit Pastilles, Starburst or Polo Mints? ",Polo Mints , Geography,"Which country uses the ""yen"" for currency?",Japan,Religion & Mythology,What is the 1st book of the Hindu scripture?,Rig Veda -General,"Which element, discovered by Pierre and Marie Curie, did she name after the country of her birth",Polonium,General,Which two nations built the concorde?,Britain and France,General,What does the lack of iodine in the diet cause,Goitre -General,What is the day called when the earth is closest to the sun,Perigee,General,What is the name of the world's most expensive brand of coffee which is made from Civet poo?,Kopi Luwak,General,Avocados have the highest calories of any fruit at ___ calories per hundred grams,167 -General,What relation was Louis XV of France to Louis XIV,Great grandson,General,What animal is mentioned most in the Bible,Sheep,General,What colour is a robin's egg,Blue -Science & Nature,What two planets dont have moons?,Mercury and Venus,General,What was Maxwell Smarts cover,Greetings Card salesman,General,Who uses roosevelt's phrase 'good to the last drop',Maxwell house coffee -Science & Nature," A baby gray __________ drinks enough milk to fill more than 2,000 bottles a day.",Whale,General,The earth's atmosphere and the space beyond is known as _________.,Aerospace,General,This U.S. state touches 4 of 5 great lakes,Michigan -General,How many inches tall are the bearskins worn by the guards at Buckingham Palace?,20,General,Agnes Gonxha Bojaxhiu born Skopje 1910 other name,Mother Theresa,General,What plant has flowers but no leaves,Cactus -General,What does a polyandric women have more than one of,Husband,General,"With over 41% of the population, which country has the highest ratio of cellular mobile phones",Finland,General,Blood can be artificially cleansed via what process,Dialysis -General,Beethoven's 9th was his interpretation of what work by Schiller,Ode to Joy,General,Los Pedernales is a Spanish translation what TV show,The Flintstones,General,A kind of small domestic fowl,Bantam - Language,What does the abbreviation N/A mean?,Not applicable,General,What sport has you hike out while close hauled,Sailing,General,What country holds the Olympic polo championship,Argentina last contested 1932 -General,"The study of natural phenomena: motion, forces, light, sound, etc. is called ______.",Physics,Music,What Was The Only No.1 Single For The Monkees,I'm A Believer,Music,The Beatles Had 3 No.1's In 1963 Name 2 Of Them,"From Me To You, I Want To Hold Your Hand, She Loves You" -General,Who played clyde to faye dunaway's bonnie,Warren beatty,General,The are six sides on a standard one - a standard what,Pencil,Sports & Leisure,Who Holds The Record For The Most Grand Prix Wins ,Alain Prost  -Sports & Leisure,What is soccer star Pele's real name?,Edson Arantes do Nascimento,General,How often did babe ruth change the cabbage leaf which he wore under his cap,Every two innings every 2 innings two innings 2 innings,General,"Who played Little Joe on ""Bonanza""",Michael Landon -General,What is the sfa associated with,Football,General,"In warfare and law-enforcement, what is the more common name for lachrymators",Tear gas,General,What is usually served at bedouin feasts,Roast camel -General,"Of love 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,Food & Drink,What Is The Main Ingredient Of Paella ,Rice ,Science & Nature," At birth, a __________ is smaller than a mouse and weighs about four ounces.",Panda -General,Which U.S. soul singer was known as 'Lady Day',Billie holiday,General,Who refused to leave the table when gambling & invented a new meal,Earl of sandwich,Music,Which Group Featured Carl Douglas In A Re-Mix Of Kung Fu Fighting,Bus Stop -Science & Nature,What is the meaning of the name of the constellation Cygnus ?,Swan,General,Who invented the lie detector,John augustus larson,General,"What 1,300 foot column of basalt do wyoming indians want to keep people from climbing",Devil's tower - History & Holidays,Who Was The First President Of The United States? ,George Washington ,General,The British call it Shrove Tuesday (pancake day) what in France,Mardi Gras,General,Technophobia is a fear of ______,Technology -General,Institution for young offenders having a tough quasi-military regime,Boot camp,General,Whose cusine would offer you Leberkas,German it’s liver,General,Mlb: who was the last American league player to win the triple crown?,Mickey mantle - History & Holidays,What caused the gremlins in the movie Gremlin to become evil? ,Eating after midnight ,Music,Who Had A Hit With Maneater In The 80's,Hall & Oates,Geography,Under what river does the Holland Tunnel run,Hudson -General,If an alloy is an amalgam what metal must it contain,Mercury, History & Holidays,What Major Event Occured In Russia In 1917 ,The Russian Revolution ,General,It is illegal to take picture of who in Zambia,Pygmies -Sports & Leisure,"What sport do the following terms belong to - ""Sweeper & Advantage Rule""?",Soccer,Religion & Mythology,"Who was the Greek God of prophecy & archery, music & healing, light & truth, agriculture and cattle?",Apollo, Geography,What is the basic unit of currency for Saint Kitts and Nevis ?,Dollar -Religion & Mythology,How many sayings did Jesus say from the cross?,Seven,General,Titus Oates was the instigator of which historical plot,Popish,General,"In 'startrek', who played dr spock",Leonard nimoy -General,"In the opera 'la traviata', what was violetta's occupation",Courtesan, Geography,Luxembourg is the capital of ______?,Luxembourg,Music,Who sang vocals for 'Big Brother and the Holding Company'?,Janis Joplin -Sports & Leisure,In What Sport Might You Need To Perform An Eskimo Roll ,Canoeing & Kayaking ,Music,"Who Had A Hit In 1984 With The Song ""It's A Miracle""",Culture Club,General,"During World War II, which London theatre boasted, ""We never closed""",The windmill -Science & Nature,What name is used to describe permanently-frozen subsoil?,Permafrost,Science & Nature,"Which type of bat can be common, white-winged or hairy-legged? ",Vampire ,Science & Nature,"As Stipulated By The International Code Of Zoological Nomenclature, Dinasaur Names Are In 2 Parts , The First Part Being The Genus. What Is Denoted By The Second Part ",Species  -General,In 1666 Jesuit Bark was used as a prevention against what,Malaria,General,What is measured with a Snodgrass grathodynamometer,Strength Shark Bites,General,When does a full moon always rise,Sunset -General,"Who is the hero of Rider Haggard's adventure, King Solomon's Mines",Alan quartermain,General,The Soviet Sukhoi-34 fighter was the worlds first with what,A Toilet in it,General,What was patented in 1954 - the best thing?,Sliced bread -General,What country is the world's deepest mine located,South Africa,Sports & Leisure,In Which City Does The Cycle Race The Tour De France Finish? ,Paris ,General,Name the Monkeys only film made in 1969,Head -General,Stanley Kubrick Started It In The Early 1970's & Steven Spielberg Finished It In 2001 Name The Movie,A.I,General,"By What Name Is The Notorious ""Richard John Bingham"" More Commonly Known",Lord Lucan,Sports & Leisure,The Gallagher Brothers From The Band Oasis Support Which Football Team? ,Manchester United  - Geography,What is the capital of Croatia ?,Zagreb, History & Holidays,On Which Date Does Halloween Fall ,October 31st ,Music,Which Songwriters Formed Philadelphia International Records,Gamble & Huff -General,For which game would you win the Plimpton Cup,Backgammon,General,A paratrichosic person has extra what,Hair in unusual places,Art & Literature,Which Character Featured In Jules Verne's (Around The World In 80 Days) ,Phileas Fogg  -General,Where are bangtails found,Mailer envelopes,General,What is the name of the weak attractive bonds which exist between molecules,Van der waals forces,General,What was the last European nation to accept the potato,France -Science & Nature,What Is A Particle Of Light Called ,A Photon ,General,A weavers knot is known by seamen as a common what,Sheet Bend,Toys & Games,"If you ""peg out"" what game are you playing?",Cribbage -General,"What, with arabic, is the official language of mauritania",French,General,What was barbara streisand's first film,Funny girl,People & Places,Name The Worlds Richest Woman ? ,Queen Elizabeth II  -General,Zoisite is a semi precious stone - National stone which country,Norway,General,What is contained in a dish described as Lyonnaise?,Onions,General,What country is known to its inhabitants as Suomen Tasavalta,Finland -Science & Nature,What bird has the biggest wingspan?,Albatross,Science & Nature,What Form Of Radiation Has The Shortest Wavelength ,Gamma Rays ,General,What bird is the symbol of Penguin books (children's section),Puffin -General,Large dog of a breed of wolfhound,Alsatian,General,Churchill what kind of bug emerges in the 1975 movie the bug,Beetle,General,The first known what happened in Wisconsin 1878,Organised motor race -Science & Nature, The __________ is the first bird mentioned in the Bible. It was sent out by Noah to see if the waters had abated.,Raven,General,Why was McDonalds fillet of fish invented,Meatless Lent,Geography,The distance from Honolulu to New York is greater than the distance from Honolulu to ___________,Japan -General,In the Canterbury Tales why were the pilgrims travelling,To visit Thomas a' Becketts Tomb,General,Most blue eyed cats are what,Deaf,General,Illinois State law its illegal to speak what language,English – only American is legal -Sports & Leisure,Who Was PFA Young Player Of The Year In 1995 & 1996? ,Robbie Fowler ,General,How many bags of mail were lost by the Pony Express,One,General,An average person does it six times a day - what,Goes to bathroom -General,Who was the first british royal to make people magazine's 'worst dressed list' five times,Sarah ferguson,General,A numismatist collects coins and what else,Medals,General,What U.S. state includes the telephone area code 605,South dakota -General,Meat from animal killed according to Muslim law,Halal, History & Holidays,"In _Rocky,_ what does Apollo Creed's trainer warn him about Rocky Balboa? ",He's Left Handed ,General,Name William Shakespeare son,Hamnet -General,What can be Vulgar Common Simple Improper or proper,Fractions,General,In Singapore you can be fined 10% of income for not doing what,Flushing public toilet,Geography,What is the capital of Uruguay,Montevideo -General,Where are the Guiana Highlands,Northern south america,General,Who is the roman counterpart of hermes,Mercury,General,Which car company features a badge called the lion of Belfort?,Peugeot -General,It was Greek to me is a line from which Shakespearean play,Julius caesar, History & Holidays,To What Was Byzantium Renamed In 330 AD ,Constantinople ,General,Where were Chinese Checkers invented,England -Science & Nature,Where Was The Potters Wheel First Used ,In Mesopotamia c.3000 Bc ,General,"German physicist and Nobel laureate, who was the originator of the quantum theory",Planck,General,What word describes the practice of growing and tending of a forest,Silviculture -Music,"Who Had A Hit With ""I Love A Rainy Night""",Eddie Rabbitt,General,"One of the earliest centers of urban civilization, in the area of modern Iraq and eastern Syria between the Tigris and Euphrates rivers",Mesopotamia,General,What name is given to the horizontal bar found in a window?,Transom -General,Who would be scored on the Apgar scale,Newborn Babies,General,Which African bird is famous for its ability to walk up to 20 miles per day and also for its legendary ability to kill snakes by stamping on them with its giant feet?,Secretary Bird,General,What kind of creature is a mudskipper,Fish -General,Who wrote the 'Aeneid',Virgil, History & Holidays,What colour is Santa Claus' belt? ,Black ,General,Where is the TV space alien ALF from,Melmac -General,What did air cadet frank whittle invent in 1928,Jet engine,General,Which planet was the 'Planet of the Apes',Earth,General,"What,mainly,is added to iron to make steel resistant to corrosion",Chromium -General,"Which famous singer lived at 20 Forthlin Road,Liverpool",Paul mccartney,General,This more efficient distillate of coal was one of the main fuels of the industrial revolution:,Coke,General,"The Band ""Oingo Boingo"" Sang The Theme Tune That Is Also The The Title To Which Cult 1985 Movie",Weird Science -General,"Bill Watterson, cartoonist for Calvin & Hobbes, is the first cartoonist to use what word in his cartoon",Booger,General,"What sports celebrity had the nickname of ""Truck""",Leonard robinson,Geography,Of Which Country Is (Freetown) The Capital ,Sierra Leone  - History & Holidays,What was first worn on the 10th October 1886 ?,Tuxedo,Music,Travelling Without Moving Was A Huge Selling Album For Which 1990's Dance Act,Jamiroquai,General,What is a cockerel,Baby rooster -General,"The chemical phenylethylamine, which your brain produces when you fall in love, is found in what food",Chocolate,General,What was the nickname of the Scottish novelist and poet James Hogg?,Ettrick Shepherd,General,Who once kept live mice in a desk drawer so they'd be available when he wanted to sketch one,Walt disney -General,Who was called The Scourge of God,Attila the Hun,Music,What Popstar With A 185 Inch Waistline & Standing 6”1 Topped The Charts In 1993,Mr Blobby,General,The Golden Bear is awarded at which film festival,Berlin -Music,Who Was The Lead Singer & Producer For Cameo,Larry Blackmon,General,What is the largest state in the USA,Alaska,General,What is the 'd' in dwight d eisenhower's name,David -Art & Literature,Name the author of 'The Catcher in the Rye',J.D. Salinger,Music,Which Row Was Sung About In Porgy And Bess,Catfish Row In Charlston,Food & Drink," Often drank, this liquid is normally harvested from female cows.",Milk -General,This Indian group ruled in early Peru,Incas,Music,Name Archie Bells Backing Group,The Drells,General,What is the atomic number for californium,Ninety eight -General,There are 16 ______ in a cup,Tablespoons,General,In the man from UNCLE who were their enemies,THRUSH,General,What is the expulsion of evil spirits from persons or places through ritual methods,Exorcism -General,What is one of the items that the wood of the sycamore tree is used for,Boxes,General,"What film began ""Most of what follows is true""",Butch Cassidy and the Sundance Kid, History & Holidays,In 1692 The Witchcraft Trials took place in America. Where ,"Salem, Massachusetts " - Geography,On which coast of Australia is Sydney?,East,Sports & Leisure,Which American was Olympic long jump champion in 1996? ,Carl Lewis ,General,In which state is Yale University,Connecticut -General,What sport/game is bobby fischer associated with,Chess,General,Who invented analytic geometry,Descartes,Science & Nature,What Does A Butterfly Use To Taste? ,Its Feet  -General,Eskimo culture encourages male visitors to do what,Sleep with hosts wife,General,Robert Whithead invented what weapon in 1866,Torpedo,General,Who designed the famous cover of 'Sgt Peppers Lonely Heart Club Band',Peter blake -General,Honeydew' is a variety of what,Melon,Sports & Leisure,Which American Horse Race Is Run At Churchill Downs? ,The Kentucky Derby ,General,In the US 20% of all lightning strike deaths occur where,Golf Course -General,"What Cartoon Character Was Created, Inspired by The Frank Sinatra Song Strangers In The Night",Scooby Doo,General,"Who, in the 18th Century, was known as 'sea green incorruptible'",Robespierre,Geography,On which River does the City of Budapest stand ,The Danube  -General,Irish Proverb - If you want to be criticized do what,Marry,General,What is the name of the process whereby plants lose water into the atmosphere,Transpiration,General,A Badger gets its name from badge meaning what,White mark on face -General,Maputo is the capital of ______,Mozambique, History & Holidays,What Saint's Day is celebrated on 26th December ,St. Stephen ,Sports & Leisure,With which sport is Chirs Evert-Lloyd associated ?,Tennis -Food & Drink,What Type Of Fruit Is A Russet ,An Apple ,General,What is evonne cawley's maiden name,Evonne goolagong,General,What subject did critic Mary Whitehouse teach,Art -General,Marengo was Napoleons horse but he rode who at Waterloo,Disiree white Arabian,General,"Who sang for 'bad company' and 'the firm', then went out on his own",Paul,General,What was the most common automobile colour in the depression,Black -General,What were J.B. Priestley's christian names,John boynton,General,Which Country Has The Biggest Proportion Of It's Population In The Armed Forces,North Korea,General,"Where was Robinson Crusoe's home, according to the book",York -Science & Nature," The hippopotamus gives birth __________ and nurses its young in the river as well, although the young hippos must come up periodically for air.",Underwater,People & Places,Which English comedian's real name is Bob Davies? ,Jasper Carrott , History & Holidays,What Song Was Christmas Number One In The UK In Both 1975 And 1991? ,Bohemian Rhapsody By Queen  -General,Which orchestral instrument can play the highest note,The Violin,Music,"Who Had Mid 80's Hits With ""Grimly Fiendish"" And ""The Shadow Of Love""",The Damned,General,"In the pioneer spacecraft, what are the humans on the plaques wearing",Nothing -General,Which kellogg's cereal was advertised by tusk tusk the elephant,Coco,General,Lauris Nobilis is the Latin name of what common herb,Bay,Entertainment,"Whose films include 'Giant', 'Written On The Wind' and 'A Farewell To Arms'?",Rock Hudson -General,In 'Dirty Dancing' what was Baby's real name?,Frances,General,What was the name of the giant panda in the Moscow Zoo in 1977,An-an,Sports & Leisure,Which 150:1 outsider won the Embassy World Snooker Championship in 1986? ,Joe Johnson  -General,What is the alternative name for the Galaxy,Milky way,General,When does a Bride walk up the Aisle,Never Aisles at side only,General,What's the largest island in the Atlantic,Greenland -General,Type of frothy milky coffee,Cappuccino,General,Who said 'et tu brute',Julius caesar,Music,What Was The Best Selling Abba Single In The Uk,Dancing Queen -Music,"""Get Off My Cloud"" Was A Hit For Which Group In 1965",The Rolling Stones,General,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,General,Venice stands on what river,The Arno -Entertainment,In what city does Fat Albert live,Philadelphia,General,What was the shoulder patch US Army 45th in WW2,Swastika,General,"Who is the sumerian goddess of love, fertility and war",Inanna -Music,"Who Were ""Big In Japan""",Alphaville,General,What are Ingrid Marie and Blushing Golden,Varieties of Apple,General,Who was the first Dutch player to become European footballer of the year,Johan cruyff -Food & Drink,McDonald's 'Iced Tea' is actually this brand,Nestea,General,"What are Bullace, Kirke's Blue, and Opal varieties of",Plum,General,What do you call a substance containing only one kind of atom,An element -General,Where was the first public library opened in 1747,Warsaw Poland,Geography,What country is directly north of the continental United States,Canada,General,Which two bodies of water separate Britain from mainland Europe,The english channel & the north sea english channel & north sea north sea & english channel -General,9 p.m. In military time is how many hours,2100, Language,What is the only English word formed by the first three letters of the alphabet,Cab,General,In Celebrity Big Brother 2004 The Non Celebrity Chantelle Houghton Entered The House And Was Asked To Assume The Identity Of A Member Of A Fictional Girl Band What Was It Called?,Kandyfoss (With A K) -General,"Which author wrote ""The Duncton Chronicles""",William horwood, History & Holidays,In What Year Was Abraham Lincoln Assasinated ,1865 ,General,Who wrote the novels on which the films 'Carrie' and 'The Shining' were based,Stephen king -General,Which former member of the group 'Cream' received the OBE in 1995,Eric clapton,Art & Literature,The study of building design is ____________.,Architecture,General,In Greek mythology who placed callisto in the heavens as the constellation of ursa major,Zeus -General,What is the 'pound' or 'number' symbol on the telephone,Octothorpe,General, Which science studies weather,Meteorology,Science & Nature,To What Was The Process Of Vulcanisation Applied ,Rubber  -General,What 1839 innovation changed the face of mail delivery,The envelope envelope,General,Which Mark Twain classic was remade by Disney in 1993,Adventures of huckleberry finn, History & Holidays,"What 19th century war between Russia and England, Turkey, Britain and France, was named after a peninsula in the Black Sea?",Crimean War -General,In Utmost Good Faith is the motto of which organisation,Lloyds of London,Entertainment,"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,General,What were the two cities in 'a tale of two cities',London and paris -General,Harold Edgerton has taken all the worlds photos of what,US nuclear bomb explosions,General,What Shakespeare play Course true love never did run smooth,Midsummer Nights Dream,General,"What was described on TV as, 'Bread wi' nowt taken out'?",Allinsons Bread -Geography,"____________ means ""land of the free.""",Thailand,General,"In Which American City Was ""Martin Luther King"" Assasinated",Memphis,General,The Spink standard catalogue lists information about what,Coins -General,13th century Paris brothels were the first to have what,Red Lights,General,Moored in halifax harbour is a replica of this famous schooner,Bluenose ii,General,Where is the taj mahal,India -General,Name Merlin's owl in Disney's Sword in the Stone,Archimedes,General,Who composed the musical piece Carmina Burana,Carl orff,General,In Arkansas a man can only do what legally once a month,Beat his wife -General,"Compact, opaque gemstone ranging in color from dark green to almost white",Jade,Geography,What is the capital of Zaire,Kinshasa,General,"Who wrote 'little lamb, who made thee'",William blake -Science & Nature, Most __________ lived to be more than a hundred years old.,Dinosaurs,People & Places,Who Was The 16th Century Seer Famous For His Predictions ,Nostradamus ,General,What is the largest city in ecuador,Guayaquil -Science & Nature,"At the equator, what is the brightest star in the night sky?",Sirius,General,Who was the first woman to win an acting Emmy in a sf series,Lindsay Wagner – Bionic Woman,General,One anger Two mirth Three wedding Four birth what are they,Crows -Sports & Leisure,In what sport is the Heisman trophy awarded,American football,Music,Gene Pitney Was How Far From Which Town In 1963,24 Hours From Tulsa,General,What is the highest U.S. mountain,Mt. mckinley -General,The martial art tai quon do translates literally as what,Kick Art Way,General,According to survey what European country has the vainest men,Britain,General,"""Who"" is in every episode of the tv series 'Seinfeld'",Superman -Food & Drink,The Berries Of The Juniper Tree Are Used To Flavour Which Alcoholic Drink? ,Gin ,Music,"Who Had A 90's Debut Hit With The Song ""House Of Love""",East 17,Art & Literature,Who did author Leslie Charteris create?,The Saint -Art & Literature,The surrealist painter Salvador Dali was a native of which country?,Spain, Geography,"What country was the setting for ""Doctor Zhivago""?",Russia,General,In which season are coyote pups usually born,Spring -General,"Who appeared in the films Pulp Fiction, Primary Colors and Staying Alive",John travolta,Science & Nature, A mole can dig a tunnel __________ feet long in one night.,300,General,Where is the BernabaU.S.tadium,"Madrid, spain" -General,What is the largest lake in the u.s,Superior,General,What is the flower that stands for: rupture of a contract,Broken straw,General,Who wrote Gentlemen Prefer Blonds,Anita Loos -General,Viscum Album provides an excuse for stealing what,A Kiss (its Mistletoe),Sports & Leisure,The first cricket one-day international was held between england and ______?,Australia,General,In literature who was the wife of Othello,Desdemona -General,What was the principal wood used by Thomas Chippendale during the 18th century,Mahogany,General,"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,General,The Vistula flows into which sea,Baltic -General,What's miami's most famous suburb,Miami beach,General,The bishop's throne in a cathedral is called a___,Cathedra,General,What type of creature was Salar - that Tarka would like to eat,Salmon -General,"What is stolen by tom, tom the piper's son",Pig, History & Holidays,What was the first movie Disney released through a subsidary company that carried an R rating? ,Down and Out In Beverly Hills ,Science & Nature," There are seven distinctive types of combs on __________: rose, strawberry, single, cushion, buttercup, pea, and V_shaped.",Chickens -General,Which European city has a cathedral located inside an old mosque,Cordoba, History & Holidays,*What arcade game became a hit in 1973* ,Pong ,People & Places,"Whaat Do Lord Lucan, Amelia Earheart , & Buster Crabbe Have In Common ",They All Disappeared Without A Trace  -Music,The Bee Gees Were Born In Manchester But Spent Their Teenage Years Where,Australia,General,"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,General,After who was 'decibel' named,Alexander graham bell -Geography,What is the capital of Micronesia,Palikir,General,What is the worlds most popular first name,Mohammed,General,From which Shakespeare play does the line 'All the world's a stage' come,As you like it -General,What pre-tv radio show turned film caused people to commit suicide when it was first aired,War of the worlds,General,"In music, what does prestissimo mean",Extremely fast,General,In what jurisdiction was elroy p lobo sheriff,Orly county georgia -General,Which Country Is The Largest Importer Of Arms In Europe,Greece,General,Whats the ball on the top of a flagpole called?,Truck,Art & Literature,Which Author Wrote To Books The Shining And Pet Sematary ,Stephen King  -Sports & Leisure,Who is the last British player to win the women's singles title at Wimbledon? ,Virginia Wade ,General,What is the only known animal to have cube-shaped droppings?,Wombat,General,What does the symbol 'sm' represent,Samarium -Sports & Leisure,Who was Martina Navratilova's usual ladies doubles partner in the 1980's? ,Pam Shriver ,General,What is the name of Dilbert's company's competitor,Nirvana co,General,"""Little Boy"" & ""Fat Man"" were the first",Atomic bombs -General,"Once married to Ted Hughes, which American poet committed suicide in 1963",Sylvia plath,General,Which company had slogan You don’t win silver you lose gold,Nike - 1996 Olympics,General,Where are the glasshouse mountains,Queensland Australia -General,"What U.S. state name is sioux for ""south wind people""",Kansas,General,Which Irish writer appeared on the Irish £10 note,James Joyce,General,What nursery rhyme character slept in the mountains for 20years,Rip van winkle -General,Spacephobia is a fear of ______,Outer space,Science & Nature,How many large holes are in your head?,Seven,General,Which period followed Picasso's Blue period,Rose - History & Holidays,This Queen of France was beheaded in 1793.,Marie antoinette,General,Who created the Discworld series of novels,Terry pratchett,Science & Nature,What is a Salamander ?,Amphibian -Music,"Which 2 Musicians Co Wrote & Produced ""Do They Know Its Christmas""",Midge Ure & Bob Geldof,General,What spirit is mixed with ginger beer in a Moscow mule,Vodka,General,Sebhorric Dermatitus Is More Commonly Known Aas What,Dandruff -General,In some religions mistletoe represents God's what,Testicles - balls to you,Sports & Leisure,Which Player Scored The Most Goals In International Football ,Pele ,General,Alcoholics get the DTs what does it stand for,Delirium Tremens -General,What comes in types Rock Ball Greentree Indian Reticulated,Pythons,Sports & Leisure,"Which Ex-Eastenders Actor, Who Is A Massive Arsenal Fan Was the Ghost Writer For David Beckham When He Wrote His Autobiography (Half A Point For Character Name)? ",Tom Watt ( Lofty) , History & Holidays,In which country was the Rosetta Stone found?,Egypt -Food & Drink,Which Nation Eats The Most Chocolate Per Capita (Per Head) ,Switzerland ,General,Which US state is known as the Nutmeg State,Connecticut,Music,"Which Band Sang ""If You Leave"" On The Pretty In Pink Soundtrack",OMD -General,Vasco da Gama rounded the Cape of Good Hope in what year,1498,General,"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,Music,What Did Adolf Sax Invent,The Saxophone -General,Who 'came whiffling through the tulgey wood',Jabberwock,General,Aphids can give birth how long after being born themselves,10 days,Music,"Which word appears in the title of a Police hit in 1981, a Queen hit in 1986 and a Take That hit in 1992?",Magic -General,La Paz is the capital of what country,Bolivia,General,What is the largest native carnivore in England,Badger,General,"What metal makes up most of earth's centre copper, gold or iron",Iron - History & Holidays,"""In which famous Christmas Song is a snowman pretended to be """"Parsons Brown""""?"" ",Winter Wonderland ,General,Titan is a moon of which planet,Saturn,General,Who was the wife of Moses,Zipporah -General,"What is the dire straits song title for 'here comes johnny singing oldies, goldies ___'",Walk of life, History & Holidays,Which British Comedian Was At No.1 In The UK With The Song 'Tears'' ,Ken Dodd ,General,There are over 1000 recognised slang words for what,Vagina -General,From which country did the original vandals come,Germany,Music,Which Guitarist Used A Sixpence To Play His Instrument?,Brian May,General,Name both the Greek and Roman God of Prophecy and Plagues,Apollo -General,What new york city avenue divides the east side from the west side,Fifth,Entertainment,Who was Chief Marshall of the Mickey Mouse Club?,Walt Disney,Food & Drink,What is bouillon? ,A Type Of Soup  -General,Chiuhauha dogs were originally bred for what,Tasty meat,General,Who plays the part of Rachel in TV's 'Friends',Jennifer aniston,General,Who was the first non head of state to appear on a stamp,Benjamin Franklin -General,When Harrison Ford was The Fugitive who was the lawman,Tommy Lee Jones,General,What is the real name of Thomas Dolby,Thomas robertson,General,Over 2500 people are killed annually from using products intended for ______,Right-handed people -General,What shields the earth from the solar wind,Earth's magnetic field earths,General, Eleutherophobia is a fear of ___________.,Freedom,General,Which Film Won An Oscar For “Best Film” In 1997?,Titanic -General,"Proper term for ""Eskimo.""",Inuit,General,What is a quadriga,Roman 4 horse chariot,General,One thousandth of a second is a_________,Millisecond -General,Who was the defeated Labour Prime Minister in the Israeli General Election of May 1996,Shimon peres, History & Holidays,Who Wrote The 1951 Novel The Catcher in the Rye? ,J.D Salinger ,General,Who was defeated at Mantinea in the Peloponnesian war,Alcibiades -General,What is the state fruit of Louisiana,Strawberry,Music,Which Group Currently Holds The Record Of 134 Weeks In The The Charts In One Year,Oasis / 1996,General,What did eric morley found,Miss world competition -General,In Sanskrit it means House of Snow - what does,Himalayas,General,Emelio Marco Palma was the first to do what in 1978,Born in Antarctica,General,Who was the last emperor of Russia,Nicholas ii -General,A vicious one of these is a series of reactions that compound an initial problem,Circle,General,What african country is home to Air Ivoire,Ivory coast,General,Where was the setting for 'shogun',Japan -Science & Nature,Which Is The Most Infectous Disease ,Measles ,General,"A dressing made with oil, wine, vinegar and seasoning is called what",Vinaigrette,General,What do the initials Bt mean after a surname,Baronet -General,Who wrote the epic poem Samson Agonites,John Milton,General,In Alabama it is illegal to be what while driving,Blindfolded,Music,Who Has Released An Album In 2008 Called “The Music Of Spheres”?,Mike Oldfield -General,What is the slogan on license plates manufactured by prisoners in the state prison in Concord,Live Free or Die,General,It is illegal to pawn what in Las Vegas,Your Dentures,General,Former baseball star chuck connors hits a bull's-eye with adult-western,Rifleman -General,The locals call it Firenze what do we call it,Florence Italy,General,Luke wrote two Bible books Luke and what,Acts,Science & Nature,What is the meaning of the name of the constellation Lacerta ?,Lizard -General,In Old English what kind of person often had a 'shite',Gossip - phrase Chit Chat from it,General,"In Greek mythology, who did minos hire to construct the labyrinth",Daedalus,Science & Nature," The __________ eagle, swooping at better than 100 miles per hour, can brake to a halt in 20 feet.",African -General,Pan is the greek god of ______,Shepherds and flocks,Sports & Leisure,"In which sport is the term ""wishbone"" used?",Football,General,Edgar allen poe wrote a famous poem about which animal,Raven -Science & Nature,"What fruit is ""Citrus grandis""",Grapefruit,General,About one-tenth of the earth's surface is permanently covered with ___,Ice,Music,Where did the Beatles stay on their first trip to Hamburg?,A Movie Theatre -General,What is the most common breeding bird in the US,Red Winged Blackbird,General,What is a pugilist?,Boxer,General,Jacque Cousteau's ship Calypso used to be what before he got it,Minesweeper -General,Where is poet's corner,Westminster abbey,General,What is the mathematical diagram in which sets are represented by overlapping circles,Venn,General,1 in 20 children born in US today will do what,Serve time in prison - History & Holidays,Who Succceeded Hitler In 1945? ,Admiral Donitz ,Sports & Leisure,In which city is the Hockey Hall of Fame located,Toronto,General,What was the composer Dvorak's christian name,Antonin -General,What '27 baseball team had a crew of heavy hitters called murderer's row,New,General,Whose first novel was 'Saturday Night and Sunday Morning',Alan sillitoe,Geography,What is the capital of Grenada,Saint george's -Science & Nature,The rate of change of velocity is known as _________.,Acceleration,Sports & Leisure,"Ian Rush said (If I don't drink my milk, I'll only be good enough to play for) which football team? ",Accrington Stanley ,General,Which English king did Robert the Bruce defeat at Bannockburn,Edward ii -Sports & Leisure,Which football team's home ground is Ibrox Stadium? ,Rangers Football Club ,Toys & Games,"In which sport are terms ""spare"" and ""gutter"" used",Bowling,General,Noah's Ark had two of everything including what feature,Windows -Science & Nature,Some animals spend the winter in a sleep_like state known as _________.,Hibernation,General,What were early diaphragms IUD - Dutch cap made from,Orange skin - Half an orange,General,Why does a cynophobe fear,Dogs -General,What is the only flag permitted to be flown over the US flag,United Nations Flag,Music,Which Artist Spent The Most Weeks In The Charts In The 1950's,Elvis Presley,General,Pungent crystalline substance used in medicine and mothballs,Camphor -General,Off what country lies the island of Zanzibar,Tanzania,Entertainment,What famous classical composer continued to compose great music after becoming deaf?,Ludwig van Beethoven,Science & Nature,What name is given to a young frog ?,Tadpole - History & Holidays,"Ex tv detective, turned crooner. Who sang Silver Lady? ",David Soul ,General,In 1776 the first union went on strike in the US what job,Journeyman Printers,General,In 1955 Production announced-first pilot plant to produce man-made,Diamonds -General,Beverly hills has what fictional zipcode,90210,General,In which Olympics did Mark Spitz win seven gold medals,1972, History & Holidays,"Which actor best known for his horror films, did the narration on Micheal Jackson's hit 'Thriller' ",Vincent Price  -General,In Ren and Stimpy what sort of dog is Ren,Chiuhauha,People & Places,Which Zoologist Wrote The Book Man Watching ,Demond Morris ,Sports & Leisure,Which sport allows substitutions without stoppage in play?,Hockey -General,"Who provided the voice for the independent Eilonwy in Disney's often criticized 1985 movie ""The Black Cauldron""?",Susan Sheridan,General,Who is the central figure in Peter C Newmans 'The Establishment Man',Conrad black,General,Collective nouns - A shiver of what,Sharks -General,"What material features in the construction of a ""corduroy road""",Logs,Music,Who Was Known As The Father Of The Waltz,Johann Strauss Snr,General,Which side of a book are the even numbered pages usually on,Left -General,This queen of France was beheaded in 1793,Marie antoinette,Music,How Many Crotchets Do You Get In A Minim,2,General,Micky Dolenz Of The Monkees Briefly Provided The Voice Of Which Famous Cartoon Character,Scooby Doo -General,What is a group of this animal called: Viper,Nest,General,What is the fear of the color white known as,Leukophobia,General,Who wrote the 1958 play Five Finger Exercise,Peter shaffer -General,In the 1954 film A Star is Born starring Judy Garland who played the leading man,James mason,General,What are the only three nations with Jewish populations over one million,"Israel, russia, u.s. israel, russia & us",Food & Drink, Where is the best brandy bottled,Cognac -General,What is a somnambulist,Sleepwalker,General,What is the area of water between alaska and russia,Bering strait,Music,Who won best international female artist at this years Brit awards?,Gwen Stafani -General,Close encounters of the first kind,Sighting unexplained craft sighting ufo's,General,What is the square root of 9801,Ninety nine,General,In Wisconsin by law you must carry fire insurance on what,A Jet Ski -Science & Nature,"On Borneo and Sumatra, the literal translation of this ape's name means ""man of the forest.""",Orang-utan,People & Places,Who Founded the Salvation Army ? ,Wiliam Booth ,General,Who rode a horse called Aethenoth,Lady Godiva -General,What film won the 1943 Oscar as best film,Casablanca,General,Small flat emblem worn as a sign of office,Badge,General,First comic book character to return from death by demand is?,Joker in Batman -Music,Who Immortalised The 1969 Woodstock Festival In Song,Joni Mitchell,Music,Who Were The Beatles Accused Of Snubbing In Manilla In 1966,Imelda Marcos,Technology & 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 -Food & Drink,Caviar Is A Delicacy That Comes From Which Fish ,Sturgeon ,General,In Which US State Was Michael Jackson Born,Indiana,General,"Christine Child won six British titles in the 1970s, in which sport",Judo -General,Barkley name the only animal whose main source of food is the porcupine,Fisher,General,In Iowa pouring what down a pub drain with cop there is illegal,Water it becomes an illegal alcohol,General,What country used the deadly nerve gas SARIN against Kurdish minority factions in the 1990s,Iraq -General,Name the first African American doll produced by Mattel,Francie,General,Tyrannophobia is the fear of _____,Tyrants,General,What was the first product to have a barcode,Wrigley's gum -General,"Which Latin Word Is Used To Express The Meaning ""Word For Word""",Verbatim,General,What does a drosomoter measure,Dew,General,What bird lays the largest clutch of eggs,The Grey Partridge – up to 16 -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,General,Which 50's Actress was born Vera Jayne Palmer,Jane mansfield,General,In what city does a certain church forbid burping or sneezing,"Omaha," -Sports & Leisure,At Which Course Is The Derby Run Each Year? ,Epsom ,General,Name the Honolulu detective whose favourite foe was 'Wo Fat',Steve mcgarrett,General,The Word Emmet Is An Archaic Term For Which Creature,An Ant -General,What is the fictitious name of a defendent,Richard roe,Technology & Video Games,What was the first game created by Rare? ,Slalom,General,What did Teddy Roosevelt ban from the White House,Christmas trees - History & Holidays,Which Of Santa's Reindeer Shares It's Name With A High Street Store ,Comet , Language,Mardi Gras is French for ___________.,Fat tuesday,Music,Who introduced a Disco Duck?,Rick Dees and His Band of Idiots -Tech & Video Games,On what non-Nintendo console can you find Zelda games? ,Philips CD-I,Science & Nature," The Nile crocodile averages about 45 years in the wild, and may live up to 80 years in __________",Captivity,General,"Whose wife was roxana, his horse bacephalus",Alexander the great -Music,Which Song Recorded By Whitney Houston In 1993 Was Originally A Hit For Chaka Khan In 1978?,I'm Every Woman,General,What country consumes the most calories per capita,Ireland,General,Levophobia is the fear of,Things to the left side of the body -Tech & Video Games,What is IRC an acronym for?,Internet relay chat,Music,Who Was The First Member Of Take That To Have A Solo No 1 Hit?,Gary Barlow,General,"To what instrument family do ""french horns"" belong",Brass -General,What is the honeymoon capital of the world,Niagara falls,General,Who is the male lead in the film 'volcano',Tommy lee jones,General,What used to be called (in Europe) Arabian wine,Coffee -Science & Nature,In which county is the UK's Met Office? ,Devon ,General,In which country was Graham Greene's novel 'A Burnt Out Case' set,Belgian congo,General,What is a group of buffalo,Gang -General,Where would you see a stoop or what creature is doing it,A falcons diving,General,What is the Capital of: Grenada,Saint george's,General,Which arabic country has the biggest proportion of Christians?,Lebanon -General,After whom is the month of January named,Janus,General,What did Moldavia & Walachia unite to become,Romania,General,Who is the only real person to ever have been the head on a Pez dispenser?,Betsy Ross - Geography,This is the only borough of New York City that is not on an island.,The Bronx,General,What was KFCs Colonel Sanders first name,Harland,General,What is 'au courant' in english,Well informed -General,What are hiragana and katakana,Japanese alphabets,General,Who wrote the lyrics for Oscar winning song Whole New World,Tim Rice,Food & Drink,What Bird Is Traditionally Eaten For Thanksgiving ,Turkey  -General,Pavarotti popularized Nessun dorma but what does it mean,None shall sleep,General,What did Tantalus serve to the Gods that caused his punishment,His dismembered son Pelops,General,Long tubular Australian Aboriginal musical instrument,Didgeridoo -General,Which companies logo is based on the legend of cats nine lives,Ever Ready,General,"What was the tv name of the one-armed man who pursued ""the fugitive""",Fred,Religion & Mythology,Who is the greek equivalent of the roman god Mars,Ares -General,What do insects do through their spiracles,Breathe, Geography,Which country has the most emigrants?,Mexico,Sports & Leisure,Which league club did Ali McCoist first play for? ,St Johnstone  -Music,Which Members Of The Bee Gees Were Twins,Maurice & Robin,General,What is 'guacamole',Mexican avocado dip,General,Which of the halogens is liquid at room temperature,Bromine -General,What natural product is petrol refined from,Oil,Food & Drink,What is taramasalata made from? ,Smoked cod's roe ,General,Who were the first club to be knocked out of the FA Cup on penalties?,Scunthorpe United -General,What is a chemically castrated cock called,Capon,General,Which British Prime Minister was born in Canada,Andrew bonar law,General,The science of preparing and dispensing drugs is ________.,Pharmacy -General,"What's the international radio code word for the letter ""U""",Uniform,Science & Nature," The striped __________ can fire its musk stream accurately for up to 12 feet, and even farther with a cooperative downwind.",Skunk,General,"Material world Where does the Dicken's story ""A CHRISTMAS CAROL"" take place",England -General,What is the effect of the earth's rotation on the wind called,Coriolis,General,Who won four consecutive Belgian grand prix victories beginning in 1962,Jim clark,General,"Acute, highly contagious viral disease, often fatal, that appears to have been completely eradicated",Smallpox -General,Where in London was the Great Exhibition of 1851 held,Hyde park,General,What is linda mccartney's maiden name,Eastman,General,"Callisto, lo and Europa are moons of which planet",Jupiter -Science & Nature,Where are there over 58 million dogs?,USA,General,Admiral Horatio Nelson suffered from what common condition,Seasickness,Entertainment,What is Batman's butler Alfred's last name.,Pennyworth -General,"In the parable of the Good Samaritan, to which city was the Samaritan travelling",Jericho,Religion & Mythology,"In Greek mythology, who was the beautiful young man Echo fell in love with?",Narcissus,General,Who is Ivanhoe's wife,Rowena -Music,"The Single ""Up Where We Belong"" Is Taken From Which Film",An Officer And A Gentleman,Music,What Was The Name Of The Club At Richmond's Station Hotel Where The Stones Really Came To Prominence,The Crawdaddy,Music,Which Actress Was The Inspiration For Elton Johns Song Candle In The Wind,Marilyn Monroe -General,The Monument In The City Of London Is A Monument To Which Event,The Great Fire Of London,Music,In What Year Did Madonna Marry Sean Penn,1985,Science & Nature,Which meteor shower occurs on the 21st October ?,Orionids -General,Which children's character was created by Mary Tourtel,Rupert the Bear,Music,Which Scot Became A Modern Girl In 1980,Sheena Easton,General,N'Djamena is the capital of which African country,Chad -General,In which country is milk the most popular beverage?,USA,General,"Julias Caesar & Cleopatra Had A Child Together The Name Of Which Can Also Be Encountered In The Medical Profession, What Is It?",Caesarion,General,Which car company makes the Xsara,Citroen -General,It is illegal to cross the Iowa state boundaries wearing what,Duck on your head,Food & Drink,"Which familiar carbonated soft drink contains quinine, a fact which influenced the name it was given? ",Tonic Water ,General,Who played romeo in the 1996 release of romeo and juliet,Leonardo di caprio -General,The worlds first what opened in Brighton England in 1897,Petrol (gas) station,General,"Who used 8,000 different words in his poem, ""Paradise Lost""",John milton,General,In UK its 10 USA its 8 Continental Europe its 38 what is,Women's dress size -Mathematics,What is the maximum number of integer degrees in a reflex angle?,359,Science & Nature,This fingerlike projection is attached to the large intestine.,Appendix,General,Who played hopalong cassidy,William boyd -General,"What is striped on a tiger, besides it's fur",It's skin,Sports & Leisure,Which Scottish Football Club Is Named After An Irish Monk? ,St Mirren ,General,"A step that rocks from one foot to the other, usually in ¾ time.",Balancé -General,What sank German submarine U120 in WW2,Broken toilet,Music,"Who Fell In Love With ""My Little China Girl""",David Bowie,General,What dog is named after a mexican state,Chihuahua -General,US Pres mom said Looking at my children wish I'd stayed virgin,Jimmy Carter,General,What is a group of bison,Herd,Music,"What day of the week is mentioned in The Beatles Song ""I Am The Walrus""?",Tuesday -General,What nationality was the artist Whistler,American,General,"In alphabet radio code, what word is used for 't'",Tango,General,"Who recorded ""blueberry hill"" in 1956",Fats domino -General,In 1961 French army revolts in,Algeria,General,Two short words are combined to give the name of which small stand with several shelves or layers for displaying ornaments,Whatnot,General,What is the most famous song to be re-recorded by the same artist,Candle in -General,Fiochetti is what shaped pasta,Bows,Music,"Which Team Later Married , Wrote ""Ain't No Mountain High Enough"" , ""Reach Out And Touch"" & ""You're All I Need To Get By""",Nickolas Ashford & Valerie Simpson,General,Hockey the vancouver _______,Canucks -General,The electric light first available product what's second,Electric Oven,General,"What are Blenheim, Lord Derby and Peasgood?",Apples,General,"Nutagak, perksertok and pokaktok are Eskimo words for what ?",Snow -General,What do rabbits love,Licorice,Geography,Twenty_three states in the U.S. border an ____________,Ocean,Music,Little Richard Recorded Two Top 20 Hits In The 60's Name One Of Them,He Got What He Wanted / Bama Lama Bama Loo -General,The Germans name for their country,Deutschland,General,"In showjumping, how many points are incurred for knocking down a fence",Four,General,Which American Crooner sang the theme to the TV show `The Love Boat' ,Jack Jones  -General,"He said 'i have nothing to offer but blood, tears, toil and sweat'",Winston, History & Holidays,Who Is The Father Of Queen Elizabeth 2nd ,George VI ,General,The first car with a non_U.S. nameplate to be classified as U.S. domestic.,Mazda mx_6 -General,In which novel by George Eliot is Eppie Cass adopted by a miser whose gold has been stolen by her father,Silas marner,Science & Nature,"Two 1.5 volt batteries, when connected in series, produces _ volts.",3,General,From whom did rocky first win the boxing championship,Apollo creed -General,Where in Huddersfield was the Rugby League formed in 1895,The george hotel,Food & Drink,What Is Scrumpy ,Cider ,General,"In Greek mythology, who was medea's husband",Jason -General,How was William Huskinson killed in 1830 - first ever,Run over by Railway Train,General,Ferrite is a form of which metal,Iron,General,Which group wished it could be Christmas every day,Wizard -General,"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,Sports & Leisure,Who was the last Briton to win the men's singles at Wimbledon?,Fred Perry,General,"Which British actor, famous for roles in horror films, was the cousin of author lan Fleming",Christopher lee - History & Holidays,"In What Year Was Robert Kennedy Assassinated? (2 Points Spot On, 1 Point Year Either Way) ",1968 ,General,Which poet wrote Ode to a Skylark,Shelley,General,What exactly are chitterlings,Fried animals birds small intestines -General,What was banned in Horneytown North Carolina,Massage Parlours,General,1727 Helen Morris put in asylum for putting what in a newspaper,Lonely Hearts Advert,Science & Nature,What are animals called if they are abl to live on land or in water ,Amphibians  - History & Holidays,Which group had a one hit wonder with 'Book of Love''? ,The Monotones ,General,In West Virginia its illegal to snooze where,On a train,General,Name Hercule Poirot's valet,George -General,What is the word for hallucinations and delusions,Schizophrenia, Geography,What is the fifth largest country in the world?,Brazil,General,The Gatun Lake and the Gaillard Cut are found on which waterway?,Panama Canal -Music,Which British Sax Player Fronted The Band Paraphernalia,Barbara Thompson,Sports & Leisure,Which Team Were The England Cricket Team Playing When Michael Atherton Was Involved In The 'Dirt In The Pocket Scandal''? ,South Africa ,Entertainment,What is the stage name of Greta Gustafson?,Greta Garbo -General,"Which herb is used to make ""Pesto Sauce""",Basil, History & Holidays,What war followed the shot heard round the world ,The war of american independence,General,In what country was the longbow invented,Wales - Geography,New Delhi is the capital of ______?,India,General,"In the tv series 'the brady bunch', what was mike brady's occupation",Architect, History & Holidays,Where is the infamous Lubjanka prison?,Moscow -General,Which fruit is used in the drink cassis,Blackcurrant,General,When Boris Becker Won His First Wimbledon Title Aged Just 17 Who Did He Beat In The Final,Kevin Curran,Music,Name The Instrument Connected With Guy Barker,Trumpet -General,"In Greek mythology, who wanted to remain unmarried until she was defeated in a footrace",Atlanta,General,Britain's most dangerous job used to kill one person every 3 days,Trawlerman,General,"Which Group Of Animals Are Collectively Known As A ""Rafter""",Turkeys -General,The Romans called it Numidia what do we call it today,Algeria, History & Holidays,How many states did richard nixon carry in 1972 ,Forty nine ,General,Name the cocktail which consists of Scotch and Drambuie,Rusty nail -General,What is the name of the dog from the Grinch who stole christmas,Max,Food & Drink,What Is 'SPAM' Short For ,Spiced Ham ,General,Alcohol comes from the Arabic word Al Kohl meaning what,The Essence -General,"Samuel Sewall, John Hathome and William, Stoughton were the presiding judges at which series of 17th Century trials",Salem witch trials,General,The Jordanian city Amman was once called what,Philadelphia,General,"What can be types called chordate, needle and cruciform",Tree Leaves -Music,The Daughter Of Which Tv Game Show Host Had A Hit As A Member Of Toto Coelo With I Eat Cannibals,Bob Holness,Art & Literature,"Who is a successful recording artist, talented landscape artist, and author of children's books?",Ricky Van Shelton,General,"Sang by robert palmer, '______ to love'",Addicted -General,An arenaceous plant grown in what type of soil,Sandy,General,"Terrestrial gastropod mollusk, related to the snail, but with the shell represented by an internal horny plate overlying the respiratory cavity",Slug,General,UK what sized by Grains Peas Singles Doubles Trebles Cobbles,Coal -General,Which is the windy city,Chicago,General,Which is the longest river in the british isles,Shannon,Food & Drink,What Does Demi Sec Mean On A Champagne Bottle ,Sweet  -General,Term for the role the atmosphere plays in insulating and warming the earth's surface,Greenhouse effect,General,Who played the part of Claude Greengrass in Heartbeat,Bill maynard,Music,When Radio 2 Conducted A Poll In 199 To Discover The Best Songs Of The Century Which Was The Only Bob Dylan Song To Make The Top 50,Blowing In The Wind -General,30% of women have done it but only 10% do it regularly - what,Multiple Orgasms,General,Who recorded the Album In Through the Out Door,Led Zeppelin,General,From where does the uvula dangle,Palate -General,What does qb vii refer to in leon uris's title,Queen's bench no 7,General,Who did cassius stab,Julius caesar,Science & Nature,How many moons does Mercury have?,None -General,Evidence of what alternative treatment found in 5300 mummy,Acupuncture,General,What is the Capital of: India,New delhi,General,What nationality was Alfred Hitchcock,British -Science & Nature,"In the early 20th century, rattlesnake venom was used to treat which illness?",Epilepsy,General,Rhypophobia is the fear of,Dirt,General,In which country was Auschwitz,Poland -General,What nhl hockey player was sports illustrated's 'sportsman of the year' for 1970,Bobby orr,General,Mcbricker of what did aristotle say all things were made up,"Air, earth, fire, water",General,"Somali, Balinese and Abyssinian breeds of what",Cat -Art & Literature,What is the name of the main character in Homer's Odyssey?,Odysseus,General,A person in his eighties is called a(n) __________.,Octogenarian,Geography,What is the capital of Marshall Islands,Dalap_uliga_darrit -Music,"Which 1982 Chart Topping Singer Had Earlier Appeared On TV As Alex Haley's Mother In ""Roots The Next Generation"" And As A Jim Jones Cult Member In ""The Guyana Tragedy""",Irene Cara,Geography,This is the residence of English monarchs.,Buckingham palace,Science & Nature,This complex substance makes up all living things.,Protoplasm -General,What does 'cassata' ice cream contain,Fruit and nuts,Science & Nature,What term appies to space devoid of matter ,Vacuum ,General,The St. Valentine's day massacre took place in this city,Chicago -General,Who won the women's heptathlon at Seoul in 1988,Jackie Joyner-Kersey,Music,Which Album Cover Had To Be Reshot Because It Featured Unauthorised Shots Of Various Personalities,Some Girls,General,What does 'entre nous' mean,Between ourselves -General,What's a truffle,Edible fungus,Technology & Video Games,What is Ozzie's hyper sister's name in the original 'All-C Saga' game? ,Treli,General,Who was the actress that played Ferris Bueller's sister?,Jennifer Grey -General,What is the Capital of: Cook Islands,Avarua,General,"From which musical did the gongs ""Spring, spring, spring"" and ""The Lonesome Polecat Lament"" come",Seven brides for seven brothers,General,What computer game featured a disco leftover looking for love?,Leisure Suit Larry -General,Christopher Cockerel invented what,Hovercraft,Sports & Leisure,"In ten_pin bowling, how many points does a perfect game consist of",300,General,In which country is the cheese Tome produced,Denmark -General,Klysmophillia is arousal from what,Enemas,Music,With Which Record Did The Lighthouse Family Enter The Charts At No.6 In 1998,Lost In Space,General,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 -Music,In Which Year Was John Lennon Murdered,1980,Music,"Who Had A Hit In 1983 With ""The Chinese Way""",Level 42,General,What Sort Of Creature Is A Greylag,Goose -General,How many celebrities featured on the panel in each episode of the game show 'Blankety Blank'?,6,Science & Nature,What Is An Anechoic Chamber ,An Acoustic Echo Free Room ,Religion & Mythology,Who is the Norse god of justice,Forseti -General,Who is the Greek Goddess of witchcraft and black magic,Hecate,General,A u-shaped bend in a river is called a(n)___.,Oxbow,General,"What is the ""southern lights"" called",Aurora australis -General,What Was The First Product Available In The UK Under Hire Purchase,A Sewing Machine,General,What was the inexpensive designer watch of choice amongst teenagers during the eighties?,Swatch, History & Holidays,Who Released The 70's Album Entitled All Things Must Pass ,George Harrison  -General,Musophobia is the fear of,Mice,General,Turf Stone and Hedge are all types of what,Mazes,General,The refraction of light by ice crystals causes a what to form round the Sun,Halo -Sports & Leisure,Which Country Won The World Cup First Germany Or Brazil ,Germany ,Music,"Who Recorded The Album ""Shaken & Stirred""",Robert Plant,General,Hirohito ascended to the Japanese throne in which year,1926 -General,Leukophobia is the fear of,The color white,General,In New York by law the death penalty is required for what act,Jumping off a building, History & Holidays,What Was A Ballista? ,"An Ancient Siege Machine, A Giant Catapult Or Crossbow? " -General,Which American poet was also a surgeon,Oliver Wendell Holmes, History & Holidays,What Happened To The Apollo I Spacecraft On 27 January 1967 ,Caught Fire On Launch Pad Killing All 3 Crew ,General,Vikings what was the nickname given to the minnesota vikings' defensive unit,Purple -Science & Nature,What fish is the fastest,Sailfish,Music,What Was the Best Selling Single In The UK In The 20th Century By A Duo?,You're The One That I Want,General,What london landmark has an 11 foot long hand,Big ben - History & Holidays,Holy Roman Emperor Charles VI created which principality in 1719? ,Lichtenstein ,General,Funchal is the principal city of which Portuguese province,Madeira,General,Which group's Best of Album is entitled Like You Do,Lightning seeds -General,What animals make up the Suidae family,Pigs,Music,"What Was Snaps Follow Up Single To ""Rhythm Is A Dancer""",Exterminate,General,"If bats are nocturnal and horses diurnal, then coyotes and others animals that roam at dawn and the twilight hours are called?",Crepuscular -Music,What Stevie Wonder song was recorded by 'Beck Bogart and Appice'?,Superstition,General,John Quincy Adams was the only US president to do what,Marry a non American woman, History & Holidays,"In 1972 which flash new motor was advertised with the slogan, ` The car you always promised yourself'? ",Ford Capri  -Science & Nature,What was created with the big bang?,Universe,General,An animal stuffer is a(n) ___________.,Taxidermist,Music,Who keeps a ten bob note up his nose?,Mean Mr. Mustard -General,What was the Rolling Stones first no 1 hit,Its all over now,Music,Johnny Mathis Was Once A World Class Athlete In Which Event,High Jump,General,Of which academy is a goat the mascot,U.s naval academy -General,Alberto Tomba is a name associated with which sport,Skiing,General,Whose name did god change to israel,Jacob,General,Who was the last British king born outside the UK,George II - Hanover -General,What colour was Tweety Bird originally,Pink,General,The weight at the end of a pendulum is a(n) ______.,Bob,General,What is the Capital of: Sri Lanka,Colombo -Sports & Leisure,In April 2003 Who Became The Oldest Man To Be Rated No1 In The World Tennis Association Rankings At The Age Of 33? ,Andre Agassi ,General,What is the flower that stands for: precaution,Golden rod,Science & Nature,Which Is The Only Chemical Element With A Three Letter Name? ,Tin  -Geography,"The muskellunge, a fierce fighting fish that can weigh in at around 70 pounds, is the official state fish of ___________________",Wisconsin,General,What is an australian bandit also known as,Bushranger,Entertainment,Who starred in 'Conan The Barbarian'?,Arnold Schwarzenegger -General,Who is the babylonian goddess of love and fertility,Ishtar,General,Rabbits like _______,Licorice, History & Holidays,"Charlie Chaplin Died On Christmas Day In 1977, How Old Was He When He Died ",88  -General,Belgrade lies on The Danube and which other river,Sava,Art & Literature,Of Which Famous London Landmark Was Sir Alfred Gilbert The Sculptor ,Eros ,Music,"John Parr Sang About What ""Fire"" From The Film Of The Same Name",St Elmo's Fire -General,Who was the king of Judah (800-783 bc),Amaziah,General,Who succeeded Hitler in 1945,Admiral donitz,General,D D Palmer was the worlds first what,Chiropractor – Osteopath -General,Collective nouns - a group of swans are called what,A Bevy,Food & Drink, From which fruit is the liqueur Kirsh made,Cherry,General,What is the ball on top of a flagpole called,Truck -Toys & Games,In poker five cards of the same suit is called a(n) ________.,Flush,General,Venus Observa is the technical term for what,Missionary position,General,How is abba calling for help,Sos -General,How many bones are there in the human body,206,Food & Drink,"Unlike other oranges, what does a navel orange not have ",Seeds ,General,"What was the original title of the movie ""A Hard Days Night""",Beatlemania -General,What dog in ancient China was restricted to the aristocracy,Pekinese,General,What kind of skiing held its first world championship in 1979,Grass skiing,General,Who wrote the autobiographical book My Family and Other Animals in 1956,Gerald durrell -People & Places,Who won a place in the Guinness Book of Records for writing 26 books in 1983? ,Barbara Cartland ,General,"In Which Book Of The Bible Will You Learn Of The Number Of The Beast ""666""",The Book Of Revelations,General,Name the treaty of 1929 which recognised Papal authority within the Vatican City,Lateran treaty -Science & Nature,"What has the chemical formula H2, SO4? ",Sulphuric Acid ,General,Crispies driving: what country is identified by the letter c,Cuba,General,Who was the oldest man in the bible?,Methuselah -General,What is the name of the Israeli national anthem,Hatikvah,General,What is the fear of illness known as,Nosemaphobia,General,Logizomechanophobia is a fear of ______,Computers -General,In the middle of the land is the literal translation of where,Mediterranean sea,Entertainment,"His films include: Giant, Written on the Wind, and A Farewell to Arms.",Rock Hudson,General,What is the science pertaining to the earth's interior heat,Geothermics -Music,"Who Recorded the Album ""Alright Now"" - ""Change"" & ""Heartache""",Pepsi & Shirlie,Sports & Leisure,"At what age can a player join the Seniors Golf Tour 45, 50 or 55? ",50 ,General,Flagg canadian: wild hairy monster of indian lore,Sasquatch -General,Which famous piece of artwork depcits the Battle of Hastings ?,Bayeux Tapestry,General,Silverwood Michigan its illegal to kill what using your hands,A Bear to impress a girl,General,Whats the worlds largest coral reef,Great barrier reef -General,Who was the world's first woman Prime Minister,Sirimavo bandaranaike,People & Places,Who Or What Is The Actress Uma Thurman Named After ,A Hindu Goddess ,General,Who played bass guitar in Suzi Quarto's group,Suzi Quatro -General,In what opera did count almaviva have a page named cherubino,Marriage of,General,"Two South American countries have no coastline, Bolivia is one what is the other",Paraguay, History & Holidays,Who did Henry VIII marry when he was 18?,Catharine of Aragon -General,"Who did arthur h bremer try to assassinate on may 13, 1972",George wallace,General,Who rode a horse called Bucephalus,Alexander the Great,Music,What Type Of Concerto Did The Toys Sing In 1965,A Lovers Concerto -Geography,"A distillery was originally on the site of America's first mint, the ____________ mint, which opened in 1792.",Philadelphia,General,The code name for the allied invasion of Italy in WW II was operation _______,Avalanche,General,Complete the name of the 1970s group Sutherland Brothers and ___.,Quiver -General,"In ""St. Elmo's Fire,"" What city does Billy go to at the end???",New York,General,What book did forrest gump keep in his suitcase,Curious george,General,"What is the English title of the German opera, 'Die lustigen Weiber von Windsor'",The merry wives of windsor -General,What is the principal religion in Romania,Orthodox,Music,"""Damon Albarn, Alex James, Graham Coxon & Dave Rowntree"" Were All members Of Which Band",Blur,Geography,In which country is the dalai lama's palace ,Tibet  - Geography,What is the capital of Colorado?,Denver,General,Name the Greek national airline,Olympic Airways,General,What zone lies between the tropics of Capricorn & Cancer,Tropical zone -General,From where to london was the first commercial boeing 747 flight,New york,General,After English what's the most widely used language on the net,German,General,Who wrote the music for Local Hero,Mark knopfler - History & Holidays,What was the last chinese dynasty?,Manchu,General,What is saltimbocca,An italian dish of ham & veal,General,The filaments for the first electric lamp were made from what,Bamboo -General,A light aircraft without an engine,Glider,Music,"Who Sang The Song ""Danger Zone"" From The Movie Top Gun",Kenny Logins,General,Who was the author of the series of novels referred to as the Raj Quartet,Paul scott - Language,The Scots call it 'shinty' - what do Canadians and Americans call it?,Hockey,General,Water found below the surface of the land,Groundwater,General,Seattle Rome Edinburgh Sheffield what links them,Built on seven hills -General,What is the binary equivalent of decimal 10,1010,General,"In which American state are Toledo, Cincinnati and Dayton",Ohio,General,In 1846 American inventor Elias Howe patented what type of machine,Sewing machine -Music,Who Was Bound For Delaware In 1960,Perry Como,Music,Who Changed His Name From Maurice Cole To Become One Of The UK's Famous DJ's,Kenny Everett,General,What was the name of the Royal Navy's first nuclear submarine,H m s dreadnought -General,What is the flower that stands for: domestic industry,Flax,General,In literature who taught at the Marcia Blain school for Girls,Miss Jean Brodie,General,What culture introduced hats and crackers at Xmas season,Ancient Rome -General,What snake builds a nest,King Cobra,General,The first double_decker bus was introduced in this city.,London,General,What were dachshunds bred to hunt,Badgers -General,What type of food is Lollo rosso?,Lettuce,Technology & Video Games,"Who is the developer at Nintendo responsible for classics like Donkey Kong, Super Mario Bros., and The Legend of Zelda? ",Shigeru Miyamoto,Music,"Who Had A UK No.1 Album With ""Number Of The Beast"" In 1982",Iron Maiden -General,In which of Charles Dickens' novels would you find the character Dora Spenlow,David copperfield,Music,Who Did The Wonder Stuff Serve As The Backing Group For In The 90's,Vic Reeves,General,"What is the term for the study of friction, lubrication and wear",Tribology -General,Who was Hitler's foreign secretary (full name),Joachim von ribbentrop,General,My Name is Mud' was on pork soda released in 1993 by which group,Primus,Geography,The northernmost U.S. state capital is ________________,"Juneau, alaska" -General,What sport exercises all the muscles at once,Swimming,General,What is the fear of paper known as,Papyrophobia,General,The Raven called 'Grip' appears in which novel by Charles Dickens?,Barnaby Rudge -General,Trimontaine was the original name of where,Boston Massachusetts,Science & Nature, The average adult __________ weighs 21 pounds.,Raccoon, Geography,Name the three baltic countries?,"Estonia, Latvia, Lithuania" -General,Nomatophobia is the fear of,Names,General,Name the only country with a national dog,Holland,General,The word Mongol means what in Mongolian,Brave -General,The Detours changed to The High Numbers then what name,The Who,General,Harry Longabaugh A Very Famous Person In History & The Subject Of Many Movies How Is He More Commonly Known,The Sundance Kid,General,The u.s minted a 1787 copper coin with what tongue-in-cheek motto,Mind your -General,In the proverb Heaven protects children sailors and who,Drunken men,General,What are the Boyoma and Tugela,Waterfalls,Geography,"There are four mountain ranges in New York State: Adirondack, Catskill, Shawangunk, and __________",Taconic -General,"What Las Vegas hotel burned in November, 1980, with the loss of 84 lives",Mgm grand,General,"Proverbially, what is rubbed into the wound to make things worse",Salt,Music,Which Song Is The Theme From Midnight Cowboy,Everybody's Talking -Science & Nature,What is another name for the coyote?,Prairie wolf, Geography,What is the capital of Romania ?,Bucharest,General,"Of which country does the group of about 100 islands, known variously as the Spice Islands, the Moluccas, Maluku and PulaU.S.eribu, form part",Indonesia -General,What is the point in the moon's orbit which is farthest from the earth,Apogee,General,Who was the first rock band to perform at NY Opera house,The Who, Geography,What is the capital of Pennsylvania?,Harrisburg -Sports & Leisure,"Which Sport Featured In The Olympics Will You Find The Terms 'Bump, Set, Spike & Pancake'' ",Volleyball ,Music,From which 1951 musical is the song I'm On My Way?,Paint Your Wagon,Science & Nature,In What Conditions Do Thermophilous Plants Thrive ,Warm Or Sunny  -General,Who's band was The Quarrymen,John Lenon,General,In what famous poem does killing an albatross cause disaster,Rime of the,General,In which country is Mount Aspiring National Park,New Zealand (South Island) -General,On which annual day do most heart attacks occur,New years day,People & Places,By what name is Marion Morrison better known as?,John Wayne,General,What era were the first traces of land life believed to appeared,Paleozoic -General,Brooks what is the new name of the mound metalcraft company,Tonka metalcraft,Science & Nature," An __________ can go through 2,000 to 3,000 teeth in a lifetime.",Alligator,Science & Nature,Which Substance In The Skin Filters Out Harmful Rays From The Sun ,Melanin  -Art & Literature,"""Our Town"" is a play by whom?",Thornton Wilder, History & Holidays,What did the license plate on the Delorean in Back To The Future spell out? ,OUTATIME ,General,What is the tallest and thickest kind of grass,Bamboo -General,In the UK which school choir had a No 1 with a song grandma,Saint Winifred's,Science & Nature, The electric organs in an electric eel make up four_fifths of its __________,Body,General,Andrew Patterson wrote which definitive Australian song,Waltzing Matilda -Music,"What was the original working title of the Beatles movie ""Help""?",Eight Arms To Hold You,Sports & Leisure,In what sport do you find 'coursing'?,Greyhound racing, History & Holidays,"Which fictional character created by Steve Coogan, is a presenter for Radio Norwich ",Alan Partridge  -Art & Literature,Which Poet Wrote No Verse During His Time As Poet Laureate ,William Wordsworth ,General,What Roman Emperor was killed by an overdose of laxative,Nero - by an aunt,Science & Nature,What Is Sodium Carbonate Better Known As ,Washing Soda  -Entertainment,Who is Tippi Hedren's daughter?,Melanie Griffith,Science & Nature," When cows graze in their natural head_down position, their saliva production increases by __________",17%,General,What is your job if you have the title Imam,Muslim leader -Food & Drink,Who released the following 'edible' album 'The spaghetti incident' ,Guns & Roses ,Science & Nature,Who spoke the first recorded message?,Thomas Edison,Music,"Johnny Hates Jazz Sang ""Shattered Dreams"" Or Was It ""Dreaming Of You""",Shattered Dreams - Geography,What place is known as 'the land nowhere near'?,Cape Three Points,General,What is the worlds fastest moving insect,Tropical Cockroach,Music,From which Aldous Huxley book did the Doors take the inspiration for their name?,The Doors Of Perception -General,The ancient Egyptians worshiped a sky Goddess name her,Nut,Entertainment,What was Kevin Bacon's first big hit?,Footloose,General,What's the name of the dragon in the Ivor the Engine stories,Idris -Music,"Name The Band: Tony Mortimer, Brian Harvey, John Hendy, Terry Coldwell",East 17,General,Eisenhower trophy is given annually to what best amateur team,Golf,General,What got named by novelist Gilbert Frankau at a party in 1926,Zip he said Zip its open Zip its shut -General,"Which word, taken from the French, translates literally as 'rotten pot'",Potpourri,General,What is the zodiacal symbol for capricorn,Goat,Food & Drink,From What Is Sake Made ,Rice  -General,Where would you find your pollers,Hands its your thumbs, Geography,What is the basic unit of currency for Eritrea ?,Nakfa,General,What did Gabriel Fahrenheit invent,Thermometer -General,Puccini's Turendot is set in which country,China,General,What was the title of Agatha Christie's first Hercule Poirot novel,The mysterious affair at styles,General,Pidgin English started because of trade between UK and where,China -General,What is a sternocleidomastoid,A muscle,General,What is a group of cattle,Herd,General,An Ortaline is a cross between what two items,Tangerine - Orange -General,The flowers of the curry plant are what colour,Yellow,Sports & Leisure,How Many Times Do Entrants Hurdle The Water Jump In The Steeplechase ,7 Times ,Music,"Which pop group of the 90’s were made up of John Hendry, Tony Mortimer, Brian Harvey and Terry Caldwell",East 17 -General,"Which English theologian, who became Dean of Westminster, was the first person to write a full account of a fossil dinosaur?",William Buckland,General,The San Andreas is what type of geological fault,Conservative,General,What vitamin is sometimes called the 'sunshine vitamin'>,Vitamin d -General,"Which Argentinian golfer, aged 44,won the British Open in 1967",Roberto de vicenzo,General,Rubens is considered to be the supreme master of which style of painting,Baroque,General,In which film did Roger Moore first appear as James Bond,Live and let die -Sports & Leisure,Which Olympic Sport Prohibits The Wearing Of A Beard ,Boxing ,General,"All gondolas in venice, italy must be painted what color, unless they belong to a high official",Black,General,Chi is the Chinese year of what,Cock -Music,Which Band Produced the Mega Selling Album “Rumours”,Fleetwood Mac,General,Which children's author wrote the autobiographies 'Boy' and 'Solo'?,Roald Dahl,Music,Reaching No.2 In 1970 Which Record Set T-Rex On The Road To 70's Super Stardom,Ride A White Swan -Music,Ian Brown Fronts Which Band,The Stone Roses,Music,"The Film ""Mermaids"" Featured A Song Called ""It's In His Kiss"" (The Shoop Shoop Song) By Which Singer",Cher,Geography,Which Country Is The Largest ,Russia  -Food & Drink,"Often eaten for breakfast, bacon is actually the flesh of what barnyard animal?",Pig,Sports & Leisure,What do the letters ERA mean in baseball,Earned run average,General,Who said 'Marriage is a wonderful invention but so is the bicycle repair kit,Laurence olivier -General,"In Growing Pains,What was boners dad's name?",Sylvester Stabone,General,Which economist wrote 'The Affluent Society',J k galbraith,Entertainment,What is the term used for 'slowly' in music?,Lento -General,Who plays centerfield for the Seattle Mariners?,Mike Cameron,Geography,"____________ is derived from the Indian word Bhotanta, meaning ""the edge of Tibet."" It is located in Asia near the southern fringes of the eastern Himalayas.",Bhutan,General,"On which town did Mrs Gaskell base ""Cranford""",Knutsford -General,"Most men do this each morning, using a razor.",Shave, History & Holidays,Sugar and ground almonds are the ingredients for which part of a Christmas cake ,Marzipan ,General,What is or was the capitol of Hong Kong,Victoria -General,Name the classic dish of mussels cooked in white wine with garlic and onion,Moules mariniere,Music,Brian Wilson Was The Mainstay Of Which 60's Legends,The Beach Boys,Science & Nature,What Is The Oxygen Carrying Component Of Blood ,Haemoglobin  -General,"Three_letter clothing outlet, or a space or void.",Gap,Music,"With which European city is Ultravox linked,songwise?",Vienna,General,What country does Paul Hogan come from,Australia -General,Which war was ended by the Treaty of Westphalia,30 years war,General,How many animals are used to designate the years of the Chinese calendar,12,Sports & Leisure,In which sport is the Cy Young Trophy awarded,Baseball -General,"What, made from the dried stamens of cultivated crocus flowers, is the most expensive cooking spice",Saffron,General,What is the flower that stands for: rustic beauty,French honeysuckle,General,Which chemical element is named from the Greek for violent,Iodine -General,Virginia McMath became famous as which actress,Ginger Rodgers,Sports & Leisure,When Commonwealth Gold Medalist Judy Simpson Was On Gladiators What Was Her Characters Name ,Night Shade ,Science & Nature,Whats the chemical symbol for Helium ?,He -General,Benjamin Kubelsky 1894 fame as what comedian,Jack Benny,General,Spirit obtained from petroleum and used as a cleaning agent,Benzine,General,In 1953 what was first successfully transmitted in the USA,Colour Television -General,Of which country is voodoo the national religious folk cult,Haiti,General,1970 who announced he was entering a clinic for a sex change,John Lennon (April fool joke),General,Perry Como the singer once worked as what,A Barber -Music,"Which Punk Band Had A Minor Hit In 1982 With A Cover Of Ralph Mctell's ""The Streets Of London""",The Anti Nowhere League, History & Holidays,In Which Month Of Which Year Was The Six Day War Between The Arabs & The Israelis ,Jun-67 ,Science & Nature," 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 - Language,What is the official language of Austria?,German, History & Holidays,Ringing a bell on Halloween is said to do what ,Scare Evil spirits ,General,What is max in 'the grinch who stole christmas,Dog - History & Holidays,What Was The Coronation Year Of Queen Elizabeth 2nd ,1952 ,General,Who played the male lead in the 1965 film entitled the war lord?,Charlton heston,General,Whats the smallest breed of dog,Chihuahua -Science & Nature,What is the only animal that cant stick out its tongue? ,Crocodile ,Religion & Mythology,Name the holiest day in the Jewish calendar.,Yom kippur,General,What do you call the cap on a fire hydrant,A Bonnet -General,Who played the lead female in meet me in las vegas,Cyd charisse,General,"Mount Usborne, at 2,312 feet, is the highest peak in which British dependency",Falkland islands,Science & Nature,From What Material Do Wasps Build Their Nests ,Wood Fibre  -General,Who's the leading rebounder in NBA playoff history,Bill russell,Science & Nature,In the 1980's the Australian Government instigated a vasectomy programme for which wild animal? ,Koala Bear ,General,The coast line around this lake in North Dakota is longer than the California coastline along the Pacific Ocean.,Lake Sakakawea -General,What fruit will keep floating to the top and sinking to the bottom of a glass of champagne,Raisin, History & Holidays,"Traditional in Germany at Christmas, what sort of food is stollen? ",Cake ,General,Which book by James Joyce takes palce on a single Dublin day in June 1904,Ulysses -General,The Gettysburg Address was written on what,Used envelopes,General,What is the range of an aim-7 sparrow,28 miles,Science & Nature,What Is The Male Part Of A Flower Called? ,The Stamen  -General,"What is the name of the rabbit in the film, ""Bambi""",Thumper,General,What dance is most associated with Buenos Aires,The tango,General,"Where was the first gold strike in California, setting off the 1849 gold rush",Sutter's mill -Science & Nature,Which British Flower Is Known As The Lent Lily? ,The Daffodil ,Music,"Which Lyricist Worked With Richard Rogers On Such Songs As Blue Moon , Where Or When, & My Funny Valentine",Lorenz Hart,General,Which biscuit is named after a French royal family,Bourbons -General,What is a kookaburra,Bird,General,What is the worlds fifth largest religion,Sikhism,General,Who played louis in 'interview with the vampire',Brad pitt -Music,"Who Wrote The Words & Music For ""Fifty Ways To Leave Your Lover""",Paul Simon, History & Holidays,Name The German Battleship Sunk In A Norwegian Fjord In 1944? ,The Tirpitz ,Entertainment,What was George of the Jungle always running in to,Tree -General,Steve McQueen played Hiltz Great Escape what's first name,Virgil,General,When was the rechargable storage battery invented,1859,General,Phoenix is the capital city of which U.S. state,Arizona -General,What Roman Emperor was the first to convert to Christianity,Constantine - the great,General,Charles Stratton became famous as what circus act,Tom Thumb,Entertainment,Who wrote Tubular Bells?,Mike Oldfield -General,Saturn is the roman god of ______,Agriculture,General,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,General,Kind of Afro American dance music originally from Southern Louisiana,Zydeco -General,As what is the exclamation point known to mathematicians,Factoria,General,"Which river forms part of the southern boundary of the state of Indiana, separating it from Kentucky",Ohio, History & Holidays,Who Released The 70's Album Entitled Bitches Brew ,Miles Davis  -Science & Nature,From What Is The Heart Drug Digitalis Obtained ,Foxgloves ,Sports & Leisure,In this team sport each player gets a chance to play every position.,Volleyball,General,Which Soviet leader backed down over the Cuban missile crisis in 1962,Kruschchev -General,A carbonade is a dish that must contain what,Beer,General,25% of Americans believe which fictional character is real,Sherlock Holmes,Science & Nature,What Are The Two Female Sex Hormones ,Oestrogen & Progesterone  -General,"What is the meaning of the Latin phrase ""cum grano salis""",With a pinch of salt,General,"What pro athlete did Fortune claim added $10 billion to the U.S. economy, in 1998",Michael jordan, History & Holidays,What group landed in America in 1620,The pilgrim s -General,What is a group of this animal called: Horse,Team pair harras,Geography,How Long Did It Take To Complete The First Circumnavigation Of The Earth By Air ,175 Days ,General,What was the capitol of England before London also a US gun,Winchester -Art & Literature,"Which Thriller Writers Works Include (The Dark Eyes Of London, Four Just Men & Sanders Of The River) ",Edgar Wallace ,General,Which two colours are on a semaphore flag,Red Yellow,General,Which sweet-sounding fungus kills trees,Honey fungus -General,USA favourite computer passwords are love and sex what UK,Fred,General,What is the flower that stands for: cordiality,Peppermint,General,In The African Queen what was the name of the steam launch,The African Queen -Sports & Leisure,What is the heaviest class of weight_lifting,Super heavyweight,Science & Nature,What Is The Method Of Growing Plants Without Soil? ,Hydroponics ,Science & Nature,Which Well Known Video Game Character Features In The Games 'The Tides Of Time'' & 'Defender Of The Future'' ,Ecco The Dolphin  -General,The study of human pre history is ___________,Archaeology,Science & Nature,Which Large Rodents Fur Is Known As Nutria ,Coypu ,General,Whose favourite poodle was called Rufus,Winston Churchill -General,Gemellus is a fancy name for what,Testicles,General,"In a Gilbert and Sullivan opera, who was John Wellington Wells",Sorcerer, Geography,In which state is the Mayo Clinic?,Minnesota -General,"In a church, the area where the transept and the nave intersect, usually emphasized by a dome or a tower. ",Crossing,Entertainment,"Who co-starred with Julie Andrews in ""Mary Poppins""?",Dick Van Dyke,Geography,What is the current name for south_west Africa,Namibia -General,Promise of future benefits e.g. pensions or share options for those who stay with a company,Golden handcuffs,General,Ophidiophobia is the fear of what,Snakes,General,What was the Russian city of St. Petersburg called from 1924 to 1991,Leningrad -Art & Literature,What controversial book did Germaine Greer write?,The Female Eunuch,Science & Nature,Which Is The Largest Species Of Beetle ,The Goliath Beetle ,General,In 1885 Canada sold what to US for $150000,Niagara Falls -General,What is the only planet that is less dense than water,Saturn,General,What city was once called York,Toronto - by British governor 1793,General,Troy was the last Derby winner for which jockey,Willie carson - Geography,What is the capital of Somalia ?,Mogadishu,General,In Which City Were The Most Murders Commited In 2003,Chicago,Geography,The strongest recorded earthquake (8.9) occurred in which country in 1933,Japan -General,What transporter room aboard the enterprise is chief o'brien's favorite,Three,Art & Literature,What Is The Name Of Colin Dexter's Fictional Detective ,Inspector Morse ,General,Which year - Nasser and De Gaulle died and Allende was elected President of Chile,1970 -General,Where would you find a Walloon,South Belgium – Native Flemish,General,What is the most slippery substance known to man,Tufoil,Music,There No.5 Hit Was Also Their Name So Who Was Surrounded By Cardboard In 1987,Living In A Box -General,"What is the nickname for San Antonio, Texas",Alamo city,General,What seductive WW I spy had a daughter named Banda who was also a spy,Mata hari,General,What is on the banks of the river jumna,Taj mahal -People & Places,What Letter Do Most British Names Begin With ,B ,Music,"What Was The Top Selling Album , David Bowie Single, & Box Office Hit In 1986",Absolute Beginners,General,With what instrument is the jazz musician Dexter Gordon associated, tenor saxophone -Music,"Which Peter Was Offered A Record Contract Live On Air After His Version Of ""Don't Be Cruel""",Peter Andre,General,"Who quoted ""Don't count your chickens before they hatch'",Aesop,General,Collective nouns - a sneak of what animals,Weasels -General,In the kama-sutra the art of which game is recommened for women to study ?,Chess,General,"In the rhyme about magpies,'one for sorrow, two for joy', what are 6 magpies for",Gold,Music,"In 2004 The Family Of The Late Johnny Cash Tried To Stop One Of His Songs Being Featured In An Advertisement For Hemorrhoid Cream , Name The Song",The Ring Of Fire -General,In the poem who dug cock robins grave,Owl with his trowel,General,Who was Al Gore's freshman roommate at Harvard?,Tommy Lee Jones,General,Spell the name of the largest city in new mexico,Albuquerque -General,To which plant family (strictly genus) do jonquils and daffodils belong,Narcissus,General,"In Greek mythology, what was attributed to athena",Owl,People & Places,Who Was The Last English Player To Be Sent Off In The World Cup (2006) ,Wayne Rooney  - Geography,What canal connects Lake Ontario and Lake Erie?,Welland,General,Who pushed the Paperwork Reduction Act through Congress,Jimmy carter,General,What does an alopecia sufferer lack,Hair -Science & Nature,What is the process of converting glucose to energy in cells called ?,Respiration,Music,Which opera star was born Helen Porter Mitchell in Melbourne in 1861?,Dame Nellie Melba,General,How did ed mcmahon of the tonite show start his career,Circus clown -General,"Who is the subject of the book ""Longitude"" by Dava Sobel",John harrison,General,Who sat on her tuffet?,Little Miss Muffet,Religion & Mythology,Who is the greek equivalent of the roman god Pluto,Hades -Science & Nature,Who Built The First Tunnel Under The River Thames ,Sir Marc Isambard Kingdon Brunel, History & Holidays,Who plays the lead role of the accident prone Clark Griswold in the 1989 'National Lampoon's Christmas Vacation'' ,Chevy Chase ,Geography,Who renamed the South Sea as the Pacific Ocean in 1520? ,Ferdinand Magellan  -Science & Nature,"In the electomagnetic spectrum, what comes between X-rays and Light?",Ultraviolet light,General,What did you do 10 million times last year,Breathe,General,Who carried on charles babbage's work when he died,His son -Science & Nature,This small gland attached to the brain exerts a control over growth.,Pituitary,General,Who was the first Austrian act to top the U.K singles chart?,Falco,General,The Gulf of Panama leads into which ocean,Pacific -General,What is a group of turtle doves,Pitying,General,Who is the Patron Saint of France,St Denis,General,What is the common name for a five wood in golf,Baffy -Food & Drink,What Fruit Is Used In Making 'Creme de Cassis' ,Blackcurrants ,Religion & Mythology,What is the holy cup of Christ called?,Holy Grail,General,She won the 1979 Nobel peace prize for her work among the poor,Mother teresa -Science & Nature, 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,General, A word like 'NASA' formed from the initials of other words is a(n) _________.,Acronym,General,What name did the Standard Oil Co. of California adopt,Esso -General,What is the sacrament of anointing for dying persons,Extreme unction,General,Kolduns popular in Russia as analysts in America what are they,Witches,General,Which playwrite was nicknamed doc,Neil Simon -General,What is a sorcerer who deals in black magic,Necromancer,Science & Nature,What Kind Of Animal Is A Marmoset? ,A Monkey ,General,Lyssophobia is the fear of,Rabies of becoming mad -General,An area of London got its name from a hunting call what,Soho,General,In the Simpsons name the Police Chief,Chester Wiggum,General,In WW2 what was operation dynamo,Evacuation of Dunkirk - History & Holidays,"Which 60's Movie features The Line wise men and grocers, they weigh everything ",Zorba the Greek ,General,What country is Ulan Bator the capital of,Mongolia,General,Who was the Beatles original Bass Player,Stuart Sutcliffe -General,"What Type Of Vegetable Is Used In A ""Dubarry"" Soup",Cauliflower,General,What roars in the 'roaring forties',Wind,General,Fill in the blank: blind as a ___,Bat -General,Americans consume 2 billion lbs of what each year,Chocolate,Sports & Leisure,What's the nickname of the University of Georgia football team,Bulldogs,General,Which country has won the most Nobel Prizes for Peace,U.S.A. -General,Afrikaans developed from which language,Dutch,General,Which TV series is set in the village of Adensfield,Heartbeat,General,Herpetophobia is a fear of ______,Reptiles -General,What city has the longest metro system,London,General,Phyllophobia is the fear of what,Leaves,Music,"With Strings Prominent Which duo Released The Classic ""Reet Petite"" In 1993",Pinky & Perky -General,What was Helen Keller's first word,Water,Toys & Games,What is the best possible score in blackjack?,21,General,What Do You Call A Group Of Snakes,A Nest -Music,"Who Wanted To Take Things ""One Day At A Time"" In 1979",Lena Martell,Geography,Which Bridge Had Van Gogh Just Finished Painting Before He Cut Of His Ear ,The Lanlois Bridge In Arles ,General,What country celebrates its National Day on 29th October?,Turkey -General,Who ate watercress to dissolve gravel and stones in the bladder,North,General,Yoon-Mi Kim Olympic gold aged 13 years 83 days what sport,Short track speedskating,General,What was the name of the pet monkey aboard the ship Venture,Ignatz -General,Nonpariel Mission Caramel Neplus Peerless types of what,Almonds, History & Holidays,Who shot J.R. Euing? ,Kristin Sheppard ,General,Vodka - Triple Sec and lime juice make what cocktail,Kamikaze -General,Fruit puree thin enough to pour,Coulis,Music,Who Was Velvet Fog,Mel Torme,General,"Back in the day at Walt Disney studios, Walt's brother Ray (yes, Ray) reportedly peddled what to employees on the lot",Insurance -General,What marvel Comics superhero carries a star spangled shield,Captain america,General,Danish variety caraway flavoured liquor driest and most famous,Aquavit,General,Who read casey at the bat for her tv debut on the ed sullivan show?,Lauren bacall -General,What was a Spiney Pear,Pineapple,General,Of which country was Admiral Miklos Horthy the political leader during World War 2,Hungary,Geography,What's the only arab country without a desert ,Lebanon  -General,What European countries flag is square,Switzerland,General,What is the study of the flight path of projectiles under the influence of gravity known as,Ballistics,General,Where do the natives speak tagalog,Philippines -General,Names from jobs - Baker Cook obvious what did a Mercer do,Textile dealer,General,What drink has a totally tropical taste?,Lilt,General,"Which austere Christian sect, founded in 1650, rejects cultural rites and an ordained ministry",Quakers -General,Who was the leader of the notorious Gambino Mafia family,John Gotti,General,"In Norse mythology, what is the name of Odin's six-legged horse",Sleipn1r,Entertainment,"Who was a member of 'Crosby, Stills and Nash' and 'The Hollies'?",Graham Nash -General,A Cow Moos - A Cock Crows - What does an Ape do,Jibber,General,Whose sister Pamela appeared in the 1988 movie Sleepaway Camp 2,Bruce,General,The Russian sled drawn by 3 horses abreast,Troika -General,Whose best-selling album is An Innocent Man which reached number two in the charts in 1983,Billy joel,General,A standard what contains eight holes,Horseshoe, History & Holidays,What was Russian America called after 1867?,Alaska -General,In mythology who are sometimes called the dioscuri,Castor Pollux Zeus twin sons,Food & Drink,What Nationality Is The Lager Giant Grolsch? ,Dutch ,General,What Organization Is Also Known As “La Cosa Nostra”,The Mafia - Geography,Which U.S. state receives the most rainfall?,Hawaii,General,What award can baseball pitchers earn,Cy young award,General,Who composed 'romeo and juliet',Sergei prokofiev -General,Which sci-fi writer adapted his own book for the movie Pet Sematary,Stephen king,General,What does a konimeter measure,Dust,General,"Persian, Siameses and Abyssinian are types fo what",Cats -General,"Discoverer of nine ancient cities including Troy, Heinrich Schliemann made spectacular excavations of which city during 1874 to 1876",Mycenae,General,In what country is Tiahuanaco,Bolivia,General,Tropical mollusc with bright shell used as money in some parts of asia,Cowrie -General,Which is the largest of the Asteroids,Ceres,General,St Appolonia is the patron saint of what,Toothache,Music,What was the first George Harrison composition recorded by the Beatles?,Don't Bother Me -General,"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,General,What was the name of Felix the Cats girlfriend,Phyllis,General,"In the female version of this Simon play, the leads are Olive and Florence",The odd couple -General,What is a group of this animal called: Pony,String,General,The Carmelite monks have what more common name,Whitefriers,General,Which popular singer of the 60's &70's has the real name Clive Powell,Georgie fame -General,Who sang '25 or 6 to 4',Chicago, History & Holidays,She was the first woman premier of Israel.,Golda Meir,General,Name all five New Kids On The Block.,Danny Donny Jordan Joe Jon -Music,"Which 90's Song Opens With The Line ""She Came From Greece She Had A Thirst For Knowledge""",Pulp / Common People,General,Which early rock singer was nicknamed killer,Jerry Lee Lewis,General,"Which Swiss artist, born in 1879, painted Landscape With Yellow Birds, The Twittering Machine and Fish Magic",Paul klee -General,What wondrous creation was built by Sostratus of Cnidos,Pharos of Alexandria,Geography,Guayaquil is the largest city in what country,Ecuador,General,What is the fear of tombstones known as,Placophobia -General,In the Bible what did David give Saul as a dowry for Michal,200 Foreskins from Philistines,Science & Nature,The instrument used in geometry to measure angles is a(n) _______.,Protractor,General,What is your zodiac sign if you are born on july 15,Cancer -Sports & Leisure,In Which Game Might You Peg Out ,Cribbage ,General,Who is the Patron Saint of Spain,St James,General,The Red Arrows display team use which type of aircraft for their performances?,BAE T1 Hawk - Geography,What is the capital of Slovenia ?,Ljubljana,General,"What mechanical cop was described as ""the thinking man's terminator""",Robocop,General,"The Character Of ""Catwoman"" Is Based On Which Star Of The Silver Screen",Rita Hayworth -Science & Nature,What Name Is Given To The Diagram In Which Sets Are Represented By Circles ,Venn Diagram , Geography,Which element makes up 2.83% of the Earth's crust ?,Sodium,General,To which family of birds does the 'Goldeneye' belong,Duck -Music,By Which Name Is Paul Gadd Better Known,Gary Glitter,General,Department what was the worst team in major league baseball in 1991,Cleveland indians,General,What is Mexico's largest seaside resort,Cancun -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,General,What stat is stone mountain located in,Georgia,General,Anything that occupies space & has mass is generally known as ______,Matter -General,What is the second biggest country in South America after Brazil,Argentina,General,Which U.S. President was awarded the 1919 Nobel Peace,Woodrow wilson,Geography,"What's the most southerly city; Toronto, Seattle, Budapest or Bordeaux? ",Toronto  -General,Vodka and orange makes up what cocktail,Screwdriver,General,Which iron warship is docked close to HMS Victory at Portsmouth,Hms warrior,General,What band got their name from the sixties movie Barbarella?,Duran Duran -General,What facial feature contains approximately 550 hairs,Eyebrow,Music,Which Two Legendary Groups Were Having Fun Fun Fun Wogether In 1986,Status Quo & The Beach Boys,General,What is the name of the elephant headed god in India,Ganish -General,Tarlike mixture of hydrocarbons derived from petroleum,Bitumen,General,"What nationality was Boutros Boutros Ghali, once the Secretary General of the United Nations",Egyptian,General,In Monty Pythons Flying Circus Dinsdale was a giant what,Hedgehog -General,The original Peeping Tom had what job,Tailor,General,Who compete in the Maccabiah Games,Jewish world athletes,General,What is an 'earth pig',Aardvark -Religion & Mythology,"In Egyptian mythology, who is known as the god of the desert?",Ash,Science & Nature,Which type of fish are the Sea Wasp and Cubozoa? ,Jellyfish ,General,Who stopped Bjorn Borg's wimbledon winning streak,John mcenroe -General,What word comes from the Latin phrase to crowd together,Constipation Con Sta Pay Shun,General,What is the fear of opening one's eyes known as,Optophobia,General,The 1991 national championship in women's volleyball was won by,Ucla -Geography,"This country's flag has a large ""R"" on it.",Rwanda, Geography,Halifax is the capital of which Canadian province?,Nova Scotia,General,Which city was Axel Foley a cop in?,Detroit -Science & Nature,Saturday is named after which planet?,Saturn,General, A depilatory is a substance used for removing _______.,Hair,Science & Nature,Which Branch of Science is the study of sound? ,Acoustics  -General,What is Israel's domestic intelligence agency called?,Shin Bet,General,"To the nearest 0.1 km, how many kilometers in a mile?",1.6,General,What toxin is found in apple seeds,Cysnogenic glycoside -General,From whom did Peter Mandelson borrow the money for his house,Geoffrey robinson,Art & Literature,The effect of the harmony of color and values in a work. ,Tone,General,What animal comes in types spotted striped and brown,Hyena -General,What does the 'o' used as a prefix in irish surnames mean,Descendent of,Science & Nature,What is a group of donkeys called?,Herd,General,In what year was the first World Snooker Championship held at the Crucible Theatre in Sheffield?,1977 -General,Who could win a PATSY,Picture Animal Top Star of Year,General,The hard piece at the end of a shoelace or piece of clothing is called an_____,Aglet,Sports & Leisure,Harry Redknapp was manager of which club before West Ham? ,Bournemouth  -General,Operation Thunderbolt was the nickname given to which raid,Israeli raid on Entebbe,General,In which industry did Alfred Nobel make his fortune,Dynamite,Food & Drink,"Often drunk, this liquid is normally harvested from female cows.",Milk -General,What is the official language of new caledonia,French,General,What composer was the there of the 1947 film Song of Love,Johannes Brahms,General,The first cartoon character on the Beano was Eggo what was he,Ostrich -General,Which former Soviet Republic in Central Asia has Tashkent as its capital,Uzbekistan, History & Holidays,Where Did King John Sign The Magna Carta? ,Ruunymede ,General,What's the name of Snoopy's secretary,Woodstock -General,Wiccaphobia is the fear of ______,Witches and witchcraft,Sports & Leisure,Wembley Stadium Hosted The FA Cup Final On Saturday But How Many Years Did It Take To Build The New Stadium? ,7 Years ,General,Schmuck in German literally means what,Jewellery -Food & Drink,What gives pasta its green colour? ,Spinach ,General,Who was the lead singer in Herman's Hermits,Peter Noone,General,Who solves the crime in Death on the Nile,Hercule poirot -General,What is sex on the internet called,Cybersex,General,"Gold medal who asked the musical question ""didn't i blow your mind this time""",Delfonics,General,Who was the Head of State of Vichy France,Petain - History & Holidays,Who was the only survivor of Custer's last stand?,His horse,Music,"Who Co-Wrote ""Stop The World I Want To Get Off"" With Anthony Newley In 1960",Lionel Bart,General,In The Chinese Zodiac What Sign Comes Between The Rat & The Tiger ?,Ox -General,In ancient Rome by law prostitutes had to do what,Dye blond or wear blond wig,General,Which U.S. President pardoned Robert E. Lee posthumously of all crimes of treason,Gerald Ford,General,The second largest of the earths four oceans & the most heavily traveled,Atlantic ocean -General,In Curse of the Pink Panther who plays Clouseau after surgery,Roger Moore,General,What sport in Belgium people compete in the Fleche Walloons,Cycling,Science & Nature,What Is Rubella ,German Measles  -General,What type of alcoholic drink is Manzanilla,Sherry,General,"Who was the sponsor of ""Wild Kingdom""",Mutual of omaha,General,"What city's homeowner hoped to discourage tourists with a sign that read: ""Mork doesn't live here, so go away""",Boulder's boulders boulder -Science & Nature,"Like fingerprints, what other print is individual?",Tongueprints,Sports & Leisure,In american football where is the Orange Bowl?,Miami,Food & Drink,What vegetable is known a zucchini in the USA? ,Courgette  -General,What woman won 6 gold medals in the Olympic Summer games,Kristin Otto,General,Who was the first woman to lead a British trade union,Brenda Dean,General,In traditional pantomime who is the sweetheart of Harlequin,Columbine - History & Holidays,Who Released The 70's Album Entitled Superfly ,Curtis Mayfield ,General,Whats the Italian game thats similar to lawn bowling,Bocci,General,Papyrophobia is the fear of,Paper -General,"Who wrote 'born free', 'living free' and 'forever free'",Joy adamson,General,San Francisco by law unleashed what can't walk down market street,Elephants,General,What gets its name from the Aztec meaning bitter water,Chocolate - xocatl -Science & Nature,What is the scientific name for brimstone?,Sulphur,Art & Literature,"The ____ generation included such authors as Jack Kerouac, William S. Burroughs and Allen Ginsburg.",Beat,Science & Nature," 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 -General,What was Gary Gnu's catch phrase?,No Gnus is Good Gnus,General,The Comstock load is a silver deposit in what US state,Nevada,General,"What event was the interview of the Natural Born Killer, Mickey, to be held during?",The Superbowl -General,"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,Science & Nature,What is the chemical symbol for copper?,Cu,General,Missouri has an unusual inalienable right - what,Drunkenness -General,Philippe Pages became famous as who,Richard Clayderman,General,Ben Hurs rival in the great chariot race,Messala,General,"What transparent material is produced by heating lime, sand & soda",Glass -General,Who is the adopted son of Vito Corleone,Tom Hagan,General,Edward Hunter USA Journalist invented what term Korean war,Brainwashing,General,Roy Thines played David Vincent in which TV series,The Invaders -General,What Fashion Accessory Did Mary Quant Design,The Mini Skirt,Music,What kind of pillow did Jefferson Airplane promote?,Surrealistic,General,"The great gothic cathedral of Milan was started in 1386, and wasn't completed until what year",1805 -General,What is the study of poisons called,Toxicology,General,Which movie prompted the style of wearing cutoff sweatshirts over the shoulder?,Flashdance,General,Ancient name for France,Gaul -Music,"Who Had A No.1 Huit In 1967 With ""Let The Heartaches Begin""",Long John Baldry,General,"Which Company In Britain Were Responsible For Pioneering ""The Video Disc""",Decca,General,What drink was named after Queen Mary l of England,Bloody mary -General,"Where did you see Fancy, Spook and Choo-Choo",In Top Cat,Sports & Leisure,What Is The Fastest Swimming Stroke ,The Crawl ,Science & Nature,Who Invented The Hovercraft ,Sir Christopher Cockeral  -General,Judeophobia is the fear of,Jews,General,What sweet fruit grows on certain kinds of palm tress,Dates,General,In the strip cartoon Dilbert name Dilbert's girlfriend,Liz -General,What did north american indians eat to dissolve gravel and stones in the bladder,Watercress,General,Who said 'The way of the warrior is the resolute acceptance of death' ?,Miyamoto Musashi,Art & Literature,How Is Jack Dawkins Otherwise Known As In A Dickens Novel? ,Artful Dodger  -General,In 1911 the archaeologist Hiram Bingham discovered what lost city,Machu Picchu,General,What is 'vichyssoise',Chilled soup,Food & Drink,"To make Drambuie, you add some honey to what type of whiskey?",Scotch -General,Who is the greek counterpart of juno,Hera,General,Who invented the television,John Logie Baird,General,What Is The Closest Living Creature To The T-Rex,A Chicken -General,Who sang the theme to The Spy who Loved Me,Carly Simon,General,Who tell of the mythical Bunyips that eat people,Australian Aboriginal,General,Who was the first woman Prime Minister of New Zealand?,Helen Clark -General,What does the Australian word 'duuny' mean,Toilet,General,Whose only line in his first play was Tennis Anyone,Humphry Bogart,Music,Anita Dels And Kid Ray Slijngaard Aro Known Collectively As,2 Unlimited -General,To which of its games did Hasbro give a red card in January 2000,Subbuteo,General,Time of the Season (1969) was done by what group,Zombies,General,What city has been air-rated the cleanest in the U.S. for a city its size,Amarillo -General,Which is the oldest walled city in the world,Jericho,Sports & Leisure,Which sportsman is mentioned in the Simon & Garfunkel song Mrs Robinson? ,Joe Dimaggio ,General,Collective nouns - A Chair of what (tradesmen),Glass Blowers -Music,"Writer For Michael Jackson, George Benson & Michael Mcdonald Among Others With Which Band Did Rod Temperton First Find Success",Heatwave,General,What would you be watching if you saw a round or waggledance,Honey Bees,Art & Literature,"In 'A Christmas Carol', what was the name of the miser?",Ebenezer Scrooge -General,"In ancient Rome, it was considered a sin to eat the flesh of what bird?",Woodpecker,General,What is the correct form of address for a foreign ambassador?,His/Her Excellency, Geography,Which of the U.S. states borders only one other state?,Maine - History & Holidays,Who starred in the 1957 film showboat as June? ,Ava Gardner ,Geography,What continent is Cyprus considered to be part of,Asia,General,In German cusine what are kartofflen,Potato dumplings -General,What was the first daily comic strip in the USA,Mutt and Jeff,General,Upon which river did Babylon stand,Euphrates,General,In Which English City Was The First Public Library Opened In 1608 (Under Some Dispute),Norwich -General,Former YES drummer Bill Bruford played with what group in 1972,King crimson,General,Who was the US equivalent of Alf Garnet,Archie Bunker,General,In which country is Innsbruck,Austria -General,Telly Savalas played which TV detective,Kojak,Geography,What is the capital of Indonesia,Jakarta,General,Which European city is served by Turnhouse Airport,Edinburgh -General,"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,General,"Immunity of the communications media including newspapers, books, magazines, radio, and television from government control or censorship.",Freedom of the press,General,Name the term for the length of a hawks legs from thigh to foot,In Falconry its an Arm -General,Where might you spend a Won,North or South Korea,Geography,Where are the North Yolla Bolly mountains? ,"USA, California ",Music,T'Pau Sang About China In Your What?,Hand -General,43% of Americans regularly do what,Attend church,General,What is the naval equivalent of an army major,Lieutenant commander,General,What is the Capital of: Malta,Valletta -General,Got a way what sport did andre agassi's dad compete in,Boxing,Science & Nature,What does the Rankine scale measure?,Temperature,General,What is the longest english word that can be typed using only the right hand,Lollipop -General,Approximately how many spoons are there in the 'New Jersey Spoon Museum',Five,General,"In Greek mythology, who was jocasta's son",Oedipus,Sports & Leisure,In 1998 Who Became The Youngest Footballer To Score A Hat Trick In The English Premiership? ,Michael Owen  -General,What word refers to very harsh laws such as those devised by a 7th century BC Athenian legislator,Draconian draconic,Food & Drink,What Is Used To Give Earl Grey It's Distinctive Flavour ,Burgamot Oil ,General,Which type of wood is used to smoke meats,Hickory -General,Stagecoach and Fort Apache starred which actor,John wayne,General,Which plant has the alternative name Lonicera,Honeysuckle,General,Who wrote the title song for Live and let Die,Paul McCartney -General,Marcus Garvey founded what,Rastafarians,General,What does sro stand for,Standing room only,General,Which Duo Where Formally Members Of The 80's Group The Tourists,The Eurythmics -General,"What form of verse is ""paradise lost"" written in",Blank verse,General,In ancient Egypt what food was reserved for the Pharaohs,Mushrooms,General,A Spanish-American farm worker is called a what,Peon -General,A Russian space programs name meant East what was it,Vostok,General,The Romans called it Eboracum name this English city,York,General,"Araucaria or Chile Pine has a more common name, what is it",Monkey puzzle tree -Entertainment,In which opera does Leporello entertain a vengeful jilted lover?,Don Giovanni,General,What colour did Ida McKinley ban from the White House,Yellow,General,Who played the nurse on the rookies,Kate jackson -General,What colour was moby dick,White,General, The study of insects is __________.,Entomology,Sports & Leisure,Which swimming stroke is named after an insect,Butterfly - History & Holidays,"Plus or minus 100 pounds (lb), how much did the world's largest recorded pumpkin weigh ","1,524 lb ",General,I don't like my friends.I don't like your friends either.,Heathers,General,John Henry Deutchendorf famous as who (both names),John Denver -Religion & Mythology,What religion was founded by Lao-tzu ?,Taoism,Food & Drink,Isabella Mayson is the famous author of a Cookery Book. How is she better known? ,Mrs Beeton , History & Holidays,"Which eighties album, that sold 20 million plus copies, featured Vincent Price ",Thriller  -General,What did Barbie first get in 1962,Her car made by Irwin for Mattel,General,In Star Trek what is the name of Spock's father,Sarek,General,Where is spain the southernmost,Continental europe -General,What European Nation Was The First To Drink Tea,The Dutch / Holland,General,What does a barometer measure,Atmospheric pressure,Science & Nature,Onto Whose Back Should The Gingerbread Man Not Have Jumped ,The Sly Fox  -Music,"Where Can you see Lenny Bruce, Edgar Allen Poe, Karl Marx, and HG Wells all in the same place at the same time",Sergeant Peppers,General,Austin is the capital of ______,Texas,General,Captain W E Johns invented which hero,Biggles -Science & Nature,Where Is The World's Rarest Plant? ,The UK. Encephalartos Woodii At Kew Gardens ,General,Who Wrote The Autobiography Entitled Dont Laugh At Me,Norman Wisdom,General,"In the monty python parody 'search for the holy grail', what did patsy say when they reached camelot",It's only a model -Music,Name The Carly Simon US No.1 For Which Mick Supplied A Backup Vocal,You're So Vain,General,"In the 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,General,What coffee concoction is named after the Capuchin monks,Cappucino -Food & Drink,What is the main ingredient of Tapanade? ,Olives ,General,Who succeeded tommy douglas as leader of the new democratic party,David,General,What US state was the last to ratify abolition slavery 1990s,Mississippi -General,1836 Mr Gray a gasfitter 10 years penal servitude stealing what,One Rabbit,General,Who wrote 'Stardust',Hoagy carmichael,General,Oslo is the capital of ______,Norway -General,"""I'm a soldier of fortune, I'm a dog of war ___"" What's the Dire Straits song title",Ride Across the River,General,"What caused a separation of Baja, California and the rest of Mexico?",The San Andreas Fault,Sports & Leisure,What is it called when a football team loses possession of the ball due to a misplay?,Turnover -General,Jean Montgolfier in 1157 built the worlds first what,Paper factory,General,What science ficton author wrote about The Cities in Flight series,James Blish,General,What does a compass needle point to?,North -General,What's the most popular form of bridge,Contract bridge,General,Which classical poet said Amor vincet omnia Love Conquers all,Virgil,Sports & Leisure,Which Horse Won The Grand National In 2007? ,Silver Birch  -General,Elvis Stojko was an ice skating word champion - what country,Canada,General,"Who said ""Public service is my motto""",Al Capone,General,Which law did sir isaac newton discover when he was only twenty three years old,Law of universal gravitation -General,What is the old name for solid sodium hydroxide,Caustic soda,General,What 3 colours are featured on the Australian Aboriginal flag?,Black Red Yellow,General,A pommel is part of a what,Saddle -General,The ore bauxite is the chief commercial source of which element,Aluminium,General,What name is given to a cross fruit of tangerines and grapefruits?,Ugli Fruit,General,The Arcocarpus altilis was involved in a mutiny - what is it,Breadfruit - History & Holidays,What age preceded the Iron Age?,The Bronze Age,General,Market research says what colour makes people spend more,Light Purple,General,Which magazine uses the winged horse Pegasus as it's logo,Readers Digest -Science & Nature," 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,General,If you were doing vaccimulgence what doing,Milking a cow,General,Name group originally called the golliwogs had hit Proud Mary,Credence Clearwater Revival -General,What was the name of the German Republic of 1918-1933 overthrown by Hitler,Weimar republic, Geography,What is the basic unit of currency for Slovakia ?,Koruna,General,USA courts spend half their time with cases involving what,Cars -General,What officer of king pharoah bought joseph as a slave,Potiphar,General,What is the fear of pain known as,Odynephobia,General,Where is the best brandy bottled,"Cognac, france" -General,What is the oldest soft drink in the USA,Doctor Pepper,Music,Ghost Town Was A Number One Hit For Which Group,The Specials,Entertainment,"Name the band - songs include ""Black Night, Smoke On The Water""?",Deep Purple -General,What is the most ordered seafood item in a restaurant,Shrimp,General,Who wrote The Witches of Eastwick,John Updike,General,Who did Mork call to each week on Ork,Orsen -Music,"In Music How Are The Trio Of “Ferguson, Pinkney And Holliday” Better Known",The 3 Degrees,Entertainment,Who is the voice of Darth Vadar?,James Earl Jones,Music,"Which Funkster Had A Hit With ""Living In America""",James Brown -General,Magnus Huss (a Swede) coined which word,Alcoholism,General,What is the name of the oath which doctor's must take,Hippocratic,Sports & Leisure,The Stadium Of Light Is The Home Stadium Of Which English Football Team ,Sunderland  - History & Holidays,What was Gary Gnu's catch phrase? ,No Gnus is Good Gnus ,General,What is the smallest state in the u.s,Rhode island,General,Mlb: who was the last American league player to win the triple crown,Mickey -General,What mountain has the figures of three mounted confederate heroes of the American Civil War?,Stone Mountain, History & Holidays,How is the stockmarket collapse of the 24th October 1929 better known ?,Black Thursday,General,In the US what's the most common reason for a visit to ER,Stomach Cramps -General,Linda Hunt won an Oscar Year of Living Dangerously what 1st,First Oscar playing opposite sex,General,Which fruit has its seeds on the outside,Strawberry,General,What was the first disney film to feature stereophonic sound,Fantasia - History & Holidays,Who Played Jack Nicholson's Wife In The Shining ,Shelley Duvall ,Art & Literature,Which American Author Wrote The Novel (Roots) ,Alex Haley ,General,What pollinates malacophilous plants,Snails - History & Holidays,This U.S. president was fatally shot in 1881.,James Garfield, History & Holidays,Name the cartoon that featured characters who had messages on their clothes to express their feelings. ,Shirt Tales ,Sports & Leisure,Which Rugby League Club Has Won The Challenge Cup More Times Than Any Other ,Wigan (15)  -Entertainment,Name Li'l Abner's favorite Indian drink.,Kickapoo joy juice,General,What us state includes the telephone area code 609,New jersey,General,"What is the name given to a quadrilateral with one, and only one, pair of sides parallel to each other?",Trapezium -General,What bird has two toes,Ostrich,Entertainment,In what year did both Peanuts and Beetle Bailey first appear,1950,General,What links Kelly Highway Block and Wales,Clint Eastwood character names -Music,Which All-Male Group Spent More Weeks On The UK Charts In The 1980s Than Any Other Group?,Madness,General,Where is the cleanest air,Tasmania, History & Holidays,"Oklahoma's four include the ouachitas, arbuckles, wichitas, and the kiamichis. ",Mountain ranges  -General,Gregory Peck played Lt Joe Clements in what 1950s film,Pork Chop Hill,Science & Nature,What is the clear homogeneous liquid portion of a nuclear protoplasm?,Karyolymph,General,On the Beaufort scale what is defined as force 11,A Storm -Music,Kim Smith Is The Real Name Of Wjich Singer,Kim Wilde,General,Which Organization Takes It's Name From The Latin For Table,Mensa,General,What cocktail is made from gin and collins,Tom collins -Music,Which phrase with a French flavour was the titleof Paul Young's debut album?,No Parlez,Music,"""Wouldn't It Be Good"" Was A UK Hit For Which Solo Male Artist",Nik Kershaw,General,Which Apostle didn't believe in the resurrection until he had seen the Saviour's wounds,Thomas -Geography,Which French Explorer Of West Africa Convinced Many African Leaders To Cede Power To France ,Pierre Ne Brazza ,General,What's the largest commercial passenger plane,The jumbojet 747,Sports & Leisure,Who Did John McEnroe Play 3 Times In The Wimbledon Mens Final ,Bjorn Borg  -General,What was jean harris found guilty of,Second degree murder 2nd degree murder,Science & Nature," Some sloths, opossum, and armadillos spend up to 80 percent of their lives sleeping or __________",Dozing,Geography,What is the nearest town to the Lightwater Valley Theme Park? ,Ripon  -General,What is Britain's largest wild mammel,Grey seal,General,What is the flower that stands for: anxious and trembling,Red columbine,General,What actress had made a million dollars by the age of 10,Shirley temple -General,Which country consumes the most chicken per capita,Saudi Arabia,General,Madrid there are more what in one street than all of Finland,Bars,General,Who was the American President from 1923 to 1929,Calvin coolidge -General,How did the crew of Red Dwarf get brought back to life?,By Nanobots,General,What is the only domestic animal not mentioned in the 'bible',Cat,General,Who invented the first completely automated robotic milking machine,Denmark -General,What is a group of herring,Army, History & Holidays,What Type Of Ghosts Are Known To Play Pranks On Humans ,Poltergeists ,General,What flower is the symbol of secrecy,Rose -General,Elvis Presley Adolf Hitler Errol Flynn all had what kinky habit,Peeping Toms,Geography,What famous geyser erupts regularly at the Yellowstone National Park,Old faithful,General,Who fought professionally in roman arenas,Gladiator -General,What titan had snakes for hair,Medusa,General,"The most famous church in Great Britain, enshrining many of the traditions of the British people",Westminster Abbey,General,Oneirophobia is a fear of ______,Dreams - History & Holidays,Who Had An 80's Hit With The Song 'Is There Something I Should Know' ,Duran Duran ,General,Gobo was the male cousin of which Disney character,Bambi,General,"Which U.S. cop series had the catchphrase ""who loves ya baby'",Kojak -General,What Canadian city has the most bars per capita,Halifax Nova Scotia, History & Holidays,Which eighties sitcom featured Tom Hanks in drag on a regular basis? ,Bosom Buddies ,Music,In Which Year Did Albatross Top The Charts For Fleetwood Mac,1968 -General,Which Alabama city was the first capital of the Confederacy during the Civil War,Montgomery,General,Where would you find a coiffe or muselet,Bottle wire cork hold, History & Holidays,"What war lasted from June 5 to June 11, 1967?",Six day war -General,Which elephant cant be domesticated the african or indian,African,People & Places,Who Was The Youngest US President To Die In Office ,John F Kennedy ,General,A long wined sea bird related to the petrel,Albatross -Food & Drink,Sapporo is brewed in this country.,Japan,General,Which Song By Holly Valance Was A UK Chart Topper In 2002 ,Kiss Kiss ,General,"In 1797 Wilhelm Beer, first to map",Mars -General,Mottephobia is the fear of what?,Moths,General,What is the Capital of: Gibraltar,Gibraltar,Science & Nature,Growing plants in liquids rather than soil is known as ________.,Hydroponics -General,"Because metal was scarce, the oscars given out during WW II were made out of what",Wood,General,Who was president when charles lindbergh flew into history,Calvin coolidge,General,Who did gawain accuse lancelot of sleeping with,Guinevere -General,A flag flown upside-down is a signal of a(n) _________,Emergency,General,Who were Thors two sons (the brave & the powerful),Modi & magni,Music,According To The Song By Katie Melua Where Are There 4 Million Bicycles,Beijjing -Music,Who is Pat Andrejewski better known as?,Pat Benatar,General,Who palyed Mork from Ork's son?,Johnathen Winters,General,What is the Capital of: Sudan,Khartoum -General,Egyptian embalmers replaced the bodies eyes with what,Onions,General,"In astronomy, the apparent great-circle annual path of the sun in the celestial sphere, as seen from the earth",Ecliptic,General,Which golfer was nicknamed Supermex,Lee Travino -General,What chicken part is the snack of choice for Chinese movie goers,Feet,General,Bananas are actually what,Herbs,General,In the UK The Elder Brethren of Trinity House manage what,All Lighthouses -General,What type of scientific equipment was named after the german Bunsen,Burner,General,We know what a moussaka is but what does it literally mean,Moistened, History & Holidays,What is a witches broom called ,A Besom  -General,With what sport is gabriela sabatini associated,Tennis, History & Holidays,Mussolini invaded this country in 1935.,Ethiopia,General,The USA call her the Maid of Honour what do the British call her,The Chief Bridesmaid -General,Which Country Consumes More Coca-Cola Per Head Than Any Other?,Iceland, History & Holidays,Who wrote the children's book 'How The Grinch Stole Christmas'' ,Dr Seuss ,Science & Nature,What Is The Rowan Tree Also Known As? ,The Mountain Ash  -General,Which breed of dog was developed from the Bullenbaiser,Boxer,General,Who wrote about a british agent named george smiley?,John le carr,Science & Nature,The name for the group of stars which form a hunter with a club and shield is ________.,Orion - History & Holidays,What Star Sign Would You Be If Your Birthday Fell On Christmas Day ,Capricorn ,General,What 1951 film featured ronald reagan raising a chimp,Bedtime for bonzo,General,A cows stomach has how many compartments,Four -General,The Stasi were an intelligence organisation in what country,East Germany,General,Who played selena in the film 'selena',Jennifer lopez,General,Who wrote the play Androcles and the Lion,George Bernard Shaw -General,Who Was The Very First Actor To Win 2 Consecutive Best Actor Oscars,Spencer Tracy,General,What is a group of oxen,Writing,General,Of who was eva braun the mistress,Adolf hitler - History & Holidays,What was Alaska called before 1867?,Russian America,General,What major league baseball team was forced to endure a 20-day road trip in 1996,The Atlanta Braves, Language,"Many Meanings: Fuel, vapor, flattulence, helium. What is it?",Gas -General,What French word literally means little skip,Cabriolet,Science & Nature,"The leaves of the tomato plant are poisonous, they contain ________",Strychnine,General,David Letterman made his movie debut in what film,Cabin Boy -General,What type of creature is an Orb Weaver,Spider,General,What cemetery is Karl Marx buried in,Highgate,General,Who shared the 1993 Nobel Peace Prize with Nelson Mandela,F w deklerk -General,Who wrote Private Lives - 1930 - Blyth Spirit 1941 (both names),Noel Coward,General,5 African Mediterranean countries share what language,Arabic,General,Name the man who developed the first practical pneumatic tyre.,John dunlop -General,All commercially bred turkeys are what,Artificially Inseminated – males oversized, History & Holidays,Which stormy couple had a hit with Nutbush City Limits? ,Ike & Tina Turner ,Geography,Which British Island is served by Ronaldsway Airport? ,Isle Of Man  -Art & Literature,Who Was The Merchant In Shakespear's (The Merchant Of Venice) ,Antonio ,General,"Which Castle, home of the Dukes of Rutland, is near Grantham in Lincolnshire",Belvoir castle,Music,Which Dire Straits Album Features The Song “Walk Of Life” And “Money For Nothing”?,Brothers In Arms -General,Three fourths of household _____ is used to flush the toilet & take baths & showers,Water,General,What masked hero first appeared 1919 The Curse of Capistrano,Zorro,Science & Nature,What Is The Worlds Largest Mammal ,Blue Whale  -General,Who performed the world's worst circumcision,Lorena bobbit,Music,What Was The Temptations Only Top 10 Hit From The 60's,Get Ready,General,What is a group of partridges,Covey -General,Large amphibious broad tailed rodent,Beaver,General,An average human drinks about how many gallons of water in a lifetime,"16,000",General,Who would wear a Zucchetto,Catholic Clergy – hat like Biretta -General,Topo in Italian Fare in Turkish what in English,Mouse,General,What was the name of the first U.S. communications satellite to amplify radio & tv signals,Telstar,General,In Norway 1980 man fined for being drunk in charge of what,Mobile vacuum cleaner -General,A story by Edgar Allan Poe___Fall of the..,House of usher,General,"Who in fiction rode a horse called ""Shadowfax""",The wizard gandalf,General,"What links Doric, Ionic, Tuscan, Corinthian and Composite",Classical Architecture - History & Holidays,In cockney rhyming slang what are 'Mince Pies'' ,Your Eyes ,Sports & Leisure,"What sport do the following terms belong to - ""Pist & Telemark""?",Skiing,Music,What Is The First Name Of Pauls Fashion Designer Daughter,Stella -General,"Who said ""I have no problems with drugs - only policemen""",Keith Richard,General,"In Terry Pratchett's Discworld series, what was the name of Death's apprentice",Mort,General,What was Super Mario's original name,Jumperman -General,The human body has over 600 what to account for 40% of the body's weight,Muscles,General,"Bean setting, Leap frog, Laudnum bunches types of what dance",Morris dances,Technology & Video Games,"In Chrono Trigger, who is the ""Master of War?"" ",Spekkio -Music,"Who Had A 1994 Hit With ""Them Girls, Them Girls""",Zig & Zag,General,What is the name of the classic dessert of pancakes served in an orange sauce with alcohol,Crepe suzette,General,Who directed the film 'the duel',Steven spielberg -General,Diane Belmont became famous as who,Lucille Ball,General,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,General,Joel Chandler Harris wrote which series of stories,Uncle Remus -General,Which was the first U.S. city to stage the summer Olympics,St louis,Art & Literature,"A painting movement that flourished in France in the 1880s and 1980s in which subject matter was suggested rather than directly presented. It featured decorative, stylized, and evocative images. ",Symbolism,General,George De Mestral Is Credited With The Invention Of Which Non Electrical Product In 1948,Velcro - History & Holidays,Where do bathers traditionally go for a swim in Hyde Park on Christmas Day ,The Serpentine ,General,Who made the first successful balloon flight across the Atlantic,"Ben abruzzo, maxie erson & larry newman",General,What is the product for 'get that 'just brushed freshness' with it',Dentyne -General,What animal has the same name as a high church official,Cardinal,General,45% of Americans use what each day,Mouthwash,Music,Japanese Boy Was A One Off UK Hit For Which Singer In 1981,Aneka -General,Acmegenesis is a fancy name for what,Orgasm,Music,Which Company used the Queen Single “I Want To Break Free” In A Commercial,Shell,General,What is the name given to the side opposite the right angle of a right-angled triangle,Hypoteneuse -General,What well known Russian author was also a doctor,Anton Chekov,General,Which is the only bird that drops it's upper eyelid to blink,Owl,Sports & Leisure,Which Bridge Is Past First In The University Boat Race ,Hammersmith  -Science & Nature,What is a group of larks called,Exaltation,Mathematics,An angle greater than 90 degrees and less than 180 degrees is said to be _________.,Obtuse, History & Holidays,Which Actress played Grotbags the witch in the TV show Emu's World ,Carol Lee Scott  -Science & Nature,What word is used for a female sheep?,Ewe,General,Mount Stuart lies at the centre of which country,Australia,General,How many people did andrew cunanan kill before killing gianni versace,Four -General,In Bonanza what was Hoss Cartwright's characters first name,Eric,General,On Monday Morning July 16 th 1945 The World Was Changed Forever When The Worlds First Atomic Bomb Was Tested In An Isolated Area Of Where?,New Mexico,General,What is the spanish equivalent of the english 'april fool's day',Boob day -Music,How Many Girls Were There In Steps,"3 , Lisa, Claire, Faye",General,"In which constellation is the first magnitude, giant star Aldebaran",Taurus,General,"After five years as ""suzanne sugarbaker"", delta burke leaves the hit show?",Designing women -Music,"According To The Title Of Their 1979 Hit, Where Did The Leyton Buzzards Spend Saturday Night",Beneath The Plastic Palm Trees,General,What is an Oklahoma / Arizona / Harlem credit card,Petrol Siphon hose,General,"What is the longest thing an ""abseiler"" carries with him",Rope -General,When was the date of the Christian festival Easter fixed by the Council of Nicaea?,325 AD,General,What was the name of the dog in Peter Pan,Nana,General,What's the worlds largest selling designer clothing range,Ralph Lauren -General,What is the correct name for the honey bear or potto,Kinkajou,General,What is the naval equivalent of an army Major?,Lieutenant Commander,Geography,What Is The Capital Of Chile ,Santiago  -General,Yogi Bear's sidekick was?,Boo boo,General,Who is the roman counterpart of hephaestus,Vulcan,Sports & Leisure,"According to rules of both sports, the top of which net is highest from the ground, Tennis or Table Tennis ",Tennis  -Geography,Into what sea does the elbe river flow ,North ,General,By Olympic rules what must have 14 feathers,Badminton Bird,General,What country celebrates its National Day on 21st July?,Belgium -General,"Lee Which U.S. state is known as the ""Volunteer State""",Tennessee,General,What mammal lives longest,Man,General,What does the medical abbreviation PM stand for,Post mortem -General,By law what can you not do in Minnesota with your washing line,Put male female washing together,Food & Drink,Which part of the English breakfast was known derisively in Victorian times as Little bags of mystery? ,Sausages ,General, A pugilist is a _________.,Boxer -General,What comedy team's films included 'hollywood or bust' and 'living it up',Dean martin and jerry lewis,General,Alcohol is added to soap to make it,Clear,General,What was the name of the horse before Silver in lone ranger,Dusty -General,Which european country will lose its independence if there is no heir to the throne,Monaco,General,In Blue Earth Minnesota illegal under 12s do what without parent,Talk on Telephone,General,"What is the japanese word for ""squad leader""",Honcho -General,Mark David Chapman was famous for what in 1980?,Shooting John Lennon,General,The Koh I Nor Is The Worlds Largest What,Diamond,General,What's the name of the Bar Restaurant in the TV show Quincy,Danny's - History & Holidays,Which `Rocky Horror Picture Show' actor played Mocata in the 1967 film 'The Devil Rides Out' ,Charles Gray ,General,"What links Escalator, Kerosene, YoYo, Zipper and Thermos",Names into language,Food & Drink,What sort of cheese would you sprinkle on spaghetti? ,Parmesan  -General,Which camera company produces the popular 'Trip',Olympus,Geography,Which European capital city stands on the Manzanares River? ,Madrid ,General,What was Mussolini forced to do when the allies landed in Sicily,Resign -General,Harvey Lee Yeary II became famous under what name,Lee Majors,General,A hot spring,Geyser,General,Who invented the bolometer,Samuel p langley -Geography,"Of the ten strongest earthquakes ever recorded in the world, three have occurred in ____________",Alaska,Music,"Who Recorded The Albums ""Woodface"" And ""Together Alone""",Crowded House,Food & Drink,Where Did Worcester Sauce Originate From ,India  -General,What is wynonna judd's real name,Christina clair ciminella,General,Where could you spend a guarani,Paraguay,General,"Which islands off Northumberland are renowned as a Guillemot, Cormorant and Puffin breeding ground but also host over 180 species?",Farne Islands -General,Somniphobia is a fear of ______,Sleep,General,Tha battle of Salamanca occurred in which war?,Peninsular War,General,Game bird with feathered feet,Grouse -General,What is the default extension given to paintbrush files,It's .bmp,General,The Panmunjon talks ended which war,Korean,General,Of which country was louis philippe the last king,France -General,A Quidnunc is a what - from the Latin Quidnunc what now,Gossip - used to be all politicians,People & Places,Who became the new Poet Laureate in 1999? ,Andrew Motion ,General,In what film did Elvis play a Red Indian,Stay away Joe -General,Which girls name comes from German meaning battle,Hilda,General,Which metal is combined with lead to make pewter,Tin,General,In which religion are the holy writings called the Adi Granth,Sikh -General,A large box for valuables,Coffer,General,What was designed and built in Iowa 1930s by George Nissan,Trampoline,General,"Relating to cookery what are 'lokshen', used in a type of Jewish soup",Noodles -General,Why do Christians fast during the 40 days of Lent leading up to Easter ,To replicate the 40 days Jesus spent in the wilderness ,General,In what film did madeline kahn play 'trixie delight,Paper moon,General,If you had a Colles' fracture which part of the body would be affected,Wrist -General,What kind of pants were first worn during the California gold rush,Denim jeans,Science & Nature,North American Indians ate watercress to dissolve gravel and stones in the ______?,Bladder, History & Holidays,Which nation was led by Genghis Khan?,Mongolia -General,Who founded 'live aid' and 'band aid',Bob geldof,General,What's the nfl penalty for an invalid fair catch signal,Five yards,General,Who Was The First Artist To Record With The Virgin Music Label,Mike Oldfield -Science & Nature,From which plant is the poison ricin obtained? ,The Castor Oil Plant ,General,In the human body what is replaced every three months,Eyelashes,General,"Where in the Ancient World, were the Pillars of Hercules",Straits of gibraltar -General,How was the universe said to have been created,Big bang,General,What 1958 eddie cochran song became his biggest us hit and a rock classic,Summertime blues,Toys & Games,Which British game is known as checkers in the USA,Draughts -Science & Nature,What is the meaning of the name of the constellation Lyra ?,Lyre,Science & Nature,What is the largest lizard?,Komodo Dragon,Science & Nature,An unusual feature of the wombats pouch is that it ______.?,Faces backwards -General,With what song did Status Quo opened the Band Aid concert,Rocking all over the World,General,"Barcelona 1992 Olympics: This countries medal tally was: 44 Gold, 37 Silver, 29 Bronze, 110 in Total",Unified team 1992,General,What does dermatitis affect,Skin -General,Who ate chicken little,Foxy loxy,General,What is the name of the company that was the first shirt sponsor of Liverpool football club,Hitachi,General,"Since 1600, how many species and subspecies of birds have become extinct",One -General,Garnet is the birthstone of January - what does it symbolise,Truth - consistency,General,Which record label signed the Rolling Stones in 1991,Virgin,Science & Nature,"Forked, Sheet, and Ball are types of __________.",Lightning -General,In which country are the Philips company based,Holland,General,"The ______________ has 14,174 teeth (105 rows, 135 teeths in each)",Garden snail,General,"What links Calabria, Liguria, Puglia and Veneto",Regions of Italy -Science & Nature,"Maxillary palps, abdomen, and metathorax are parts of a(n) ________.",Insect,General,What ex-girl friend of prince andrew appeared naked on screen,Koo stark,Sports & Leisure,What do runners pass to each other in a relay race,Baton -Music,"Who Asked ""Am I The Same Girl"" In 1992",Swing Out Sister,General,"In the film 'Titanic', who played Jack",Leonardo Dicaprio,People & Places,What Is The Title Of Tony Adams Biography ,Addicted  -General,Name the Hindu god with the head of an elephant.,Ganesh ganesha ganapati ganesa,General,If you had Naphephillia what turns you on,Being Touched,General,What did Woody ask Kelly's father when they first met,He asked if they could date -Science & Nature,What is normal body temperature for an adult human,97.8 F or 36.5C,Science & Nature,What Did A Professor Of Vocal Physiology At Boston University Use His Deaf Students To Help Him Invent In 1876 ,The Telephone ,General,In which sport would you compete for the Nino Bibia cup,Bobsleighing - History & Holidays,In 1954 Roger Bannister achieved the worlds 1st Sub 4 min mile in what English County did this take place ,Oxforshire ,General,"Who recorded ""tragedy"" in 1960",Thomas wayne,General,What Gilbert & Sullivan operetta subtitled The Peer and the Peri,Iolanthe -General,What tv series was based on the series of books by laura ingalls wilder,Little house on the prairie,General,In Providence Rhode Island its illegal to buy what on a Sunday,Toothbrush,Entertainment,As who is Terry Bollea known?,Hulk Hogan -General,In Maine it is illegal to bite your own what,Landlord,General,What is the minimum number of secret service agents to accompany the u.s. president at all times,Six,General,Involuntary audible spasm of respiratory organ,Hiccup -General,"Which German chemist, along with Fritz Strassmann, is credited with the discovery of Nuclear Fission?",Otto Hahn,General,After the US what country imports the most scotch,France,General,What is the technical term for blood poisoning,Toxaemia -General,How many men have walked on the moon,12,General,Los Angeles alone has more than the whole of France - what,Judges,General,Who directed Full Metal Jacket,Stanley Kubrick - History & Holidays,From what were Jack-o-Lanterns first made in U.K. ,Turnips ,Art & Literature,The Royal Opera House in London is home to which Branch of the arts other than Opera? ,Ballet ,Music,"""R.O.C.K In The USA"" Was A Hit For Which American Rocker",John Cougar Mellencamp -General,What was the top film of 1990,Home Alone,General,In Zion city Illinois its illegal to do what,Make ugly faces at anyone,General,What is the only metal that is liquid at room temperature,Mercury -General,Which cartoon character's vital statistics were 19-19-19 -in inches,Olive oyl,General,Who was Anastasia & Drizella's stepsister,Cinderella,General,The 'Seven Ages of Man' speech appears in which of Shakespeare's plays?,As You Like It -General,In WW1 what warning device was on the top of Eiffel Tower,Parrots,General,The roads on the island of Guam are made with what,Coral,General,How many contestants participated in the first modern olympiad,484 -General,What is installed in the world's deepest mine in carletonville,Refrigeration,General,The Lent Lilly has a more common name - what,Daffodil,General,Who did valeri solanis shoot,Andy warhol -General,In the Bible who climbed Mount Nebo,Moses to see promised land,General,Which company is the largest buyer of sugar in the world,Coca-cola,General,Roy Scherer jr became famous as who,Rock Hudson -General,"The average human body contains enough iron to make how many 3"" nails",1,Geography,What is the capital of Nigeria,Abuja,General,In 1984 Bloomingdale's started selling 100000 year old what,Glacial ice from Greenland -General,"Spanish: How do yoU.S.ay ""sixteen""",Diez y seis,General,"Whose epitaph says ""On the whole, I'd rather be in Philadelphia""",Wc fields,General,What was the original name of paul mccartney's fictional church cleaner 'eleanor rigby',Miss daisy hawkins -Toys & Games,Which exercises are designed to increase O2 consumption & speed circulation,Aerobics,General,In WW2 Germans used a Schlusselmaschine E what do we call it,Enigma coding machine,Science & Nature,Who Invented The British Jet Engine ,Frank Whittle  -General,Where is your zygomatic bone,Cheek,General,What was A.A. Milne's first name,Alan,Geography,___________________ includes the islands of New Britain and New Ireland.,Papua new guinea -General,Run away to marry secretly,Elope,General,Where was formed the disco band Boney M in 1976,Germany,Science & Nature,Does Uranus have an aurora?,Yes - Geography,What is the capital of Florida?,Tallahassee,Geography,Which mainland Latin American country is in neither South America nor Central America,Mexico,Music,What Was The Name Of ABC's First Album,The Lexicon Of Love - Geography,Name the capital city of Utah.,Salt Lake City,General,Murcia is a region in which European country,Spain,Geography,Which islands were named after Prince Philip of Spain,The philippine s -General,"Who fought at the battles of Bastia, Calvi and Toulon",Horatio Nelson,General,What was Paul McCartney's first solo album called,McCartney,Music,"Who Reached No.1 With The Song ""You're The First The Last My Everything""",Barry White -General,"What is often referred to as ""the oldest profession""?",Prostitution,Music,Bon Scott Was The Lead Singer For Which Famous Rock Band?,AC/DC,General,Attribution of human form or qualities to that which is not human,Anthropomorphism personification -Music,What Is The Name Given To A Sailors Work Song,A Sea Shanty,General,Place of shelter for ships,Harbour,General,In 17th century if you got Xmas clap what have you been given,A Kiss under Mistletoe -Science & Nature,What is the SI Unit for pressure? ,Pascal ,General,Which order of monks are famous for their silence,Trappist,Food & Drink,In which country do red onions originate? ,Italy  -General,Who won Best Supporting Actress for her role in Melvin and Howard,Mary,General,"A sugar with the formula c12h22011, belonging to the group of carbohydrates known as disaccharides (sugar)",Sucrose,General,"If a dish is served A la Bretonne, with what would it be garnished",Haricot beans -General,Kigali is the capital of ______,Rwanda,General,A Weaner is a baby what,Elephant Seal,General,What is the speed of a body expressed as a ratio with the speed of sound,Mach number -General,What kind of birds would you find in a gaggle,Geese,Science & Nature,What herbivore sleeps one hour a night?,Antelope,Art & Literature,Who created 'Maudie Frickett'?,Jonathan Winters - Geography,What is the basic unit of currency for Burkina Faso ?,Franc,Sports & Leisure,What is the name of the oldest National Hockey League team in the US?,The Boston Bruins,General,Which TV characters blood pressure was minus 3,Herman Munster -General,The French call it La Mort aux Trousses what Hitchcock film is it,North by Northwest,General,"What sort of athletes do sit spins, axel jumps & flying camels",Figure skaters,Science & Nature, __________ have no ability to taste sweet things.,Cats -General,What common 4 legged animals never walk or trot,Rabbits,Geography,St Catherine's Point is at the most Southerly tip of which island in the British Isles? ,Isle Of Wight ,Art & Literature,"Meaning 'rebirth' in french. Refers to Europe c. 1400-1600. The style began in Italy and stressed the forms of classical antiquity, a realistic representation of space based on scientific perspective, and secular subjects.",Renaissance -General,Where is David Livingstone Buried (Two Places / countries),Westminster Abby / Tanzania,General,"Agni, face covered in butter, is the Hindu god of what",Fire,General,What is the fear of loud noises known as,Ligyrophobia -General,What does the prefix 'pseudo' mean,Pretend,Art & Literature,This Romantic poet and husband to Mary Shelley drowned in a boating accident.,Percy Bysshe Shelley,Food & Drink,"Booze Name: 2 oz. gin, juice of 1/2 lemon, 1 tsp sugar, pour over ice cubes.",Tom collins -General,"Ezekiel, Jeremiah, Eli and Isaiah were all what in The Bible",Prophets,General,What is the fear of mind known as,Psychophobia,General,"In his profession who's entitled to wear the ""traje de luces""",Bullfighter -General,The Venetian island of Murano is particularly associated with the manufacture of which product,Glass,General,"Way Religious phenomenon in which a message is sent by God (or by a god) to human beings through an intermediary, or prophet",Prophecy,General,What's the nickname of the Iowa state football team,Cyclones - History & Holidays,"In 1902 this volcano erupted, killing 30,000",Pelee,General,What is the fear of being last known as,Telosphobia,General,What was tarzan's true identity?,Lord greystoke -People & Places,Who Would You Associate With Lou Costello ,Bud Abbott , History & Holidays,Which city was Axel Foley a cop in? ,Detroit ,People & Places,Which English County Has The Longest Coastline? ,Cornwall  -General,Holland hosted the Olympics in which year,1928,General,Who acquired 4 of the 7 dead sea scrolls in 1955,Israel,Music,"What Was 81 A Good Year For According To ""Elvis Costello""",Roses -General,What company created the gif image file format,CompuServe,Science & Nature,Which Insect Has A Pair Of Prominent Pincers At The Tip Of It's Abdomen ,The Earwig ,General,Film - who played carrie,Sissy spacek -General,What is the binot simon scale used to measure,Intelligence,General,This place in Germany is also the name of a (popular) cake,Black forest,General,What are you caught in if a haboob blows up,Sandstorm -General,50 years ago Texas giving advice on what was prison sentence,Birth Control,General,1 pm In military time is how many hours,1300,General,When was the first transatlantic solo flight,1927 -General,The Murryfield Racers play which sport,Ice Hockey,General,"Who was kidnapped on the night of march 1, 1932",Lindbergh,General,In Which State Is The Mormon Religion Based?,Utah -Science & Nature,In Which City Is The Oldest Metro System In The World ,London ,Science & Nature,Which Is The Largest Of The Migratory Animals? ,The Whale ,Food & Drink,There are only two perennial vegetables. Rhubarb & What? ,Asparagus  -General,"Who sang the song ""Californication""?",Red Hot Chilli Peppers,General,With who did benito mussolini dally,Clara petacci,General,Who was the last member of the bonaparte family,Jerome napoleon bonaparte -General,"In common: detroit, phibes, demento, faustus?",Doctors,General,What English explorer discovered & named Virginia,Sir walter raleigh,General,What Nationality Was The Formula One Driver Jaques Villeneuve,Canadian -Religion & Mythology,Which Roman God was the equivalent of the Greek God Dionysus?,Bacchus,Sports & Leisure,Who Was Beaten By Muhamed Ali In The Bout Entitled The Thriller In Manilla ,Joe Frazier ,General,How many mascots did the Sydney Olympics have?,3 -Music,Where Were typically Tropical Going To In 1975,Barbados,General,What is brady's profession,Singer,General,In what organ is the islands of langerhans found,Pancreas -General,Who was castrated in the time of richard the lionheart,Poachers,General,"In the 1969 Apollo 11 landing, who stayed in the command module",Michael collins, History & Holidays,In which city did the Duke of Windsor die in 1972? ,Paris  -General,Who Was Sportswoman Of The Year In 1971,Princess Anne,General,Who was the victim of the first murder seen live on tv,Lee harvey oswald,General,Who preceded Richard Nixon as President of the U.S.A.,Lyndon b johnson -General,What gemstone has a name literally meaning not intoxicated,Amethyst,Music,Who Wrote The Autobiography A Cellarful Of Noise,Brian Epstein, History & Holidays,What colour is Santa Claus's belt? ,Black  -General,Which record company rejected the Beatles as being past it,Decca,General,In Mens Tennis Players From Which Country Have Won Wimbledon More Times Than Any Other,England,General,Solomon built his temple on a hill name it,Zion -General,Patterson what do you call a person that stuffs dead animals,Taxidermist,General,U.S. captials - hawaii,Honolulu,General,What is the alternative name of Beethoven's sonata number 14 in C sharp minor,Moonlight -General,In what country was the worlds first wildlife sanctuary set up,Sri Lanka 3rd cent BC,Science & Nature,A salt enema was given to children to rid them of ______?,Threadworm,General,Monophobia is the fear of,Solitude being alone -General,Shinguards were introduced into football in which year,1839,General,What is the world largest seed,Coco-de-mare palm – double coconut,General,"What theme park was dubbed by some wags as ""Euro dismal""",Disneyland paris -General,What name is given to sweet chestnuts preserved in syrup,Marrons glace,General,Over what place in india is it forbidden to fly an airplane?,Taj Mahal,General,In which modem day country did the Battle of Austerlitz take place in 1805,Czech republic -Sports & Leisure,Which Boys Name Is Also The Name Of The Object Ball In Bowls? ,Jack ,Music,Reaching No 49 In 1971 Which Record Climbed To No 3 For America On It's Re-Entry In 1972,Horse With No Name,General,What is a person who makes barrels called?,Cooper -Science & Nature," 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,General,What is a group of swans in flight,Wedge,Science & Nature,What Element Can Be Added To Petrol To Eliminate To Eliminate Knock ,Lead  -General,Who used to do naked cartwheels to amuse the English settlers,Pocahontas,General,"What group of minerals are diamond, coal and graphite a part",Carbon,Sports & Leisure,Which Former Heavy Weight Boxing Champion Has An Identical Twin Brother Called George? ,Henry Cooper  -General,Name the first British show to air on US autumn prime time,The Avengers,General,What is a group of wild dogs,Pack,General,What 1942 naval engagement saw the sinking of four japanese aircraft carriers,Battle at midway midway -Science & Nature," A __________ keeps purring, no matter if it is inhaling or exhaling, a baffling accomplishment.",Cat,General,Salvador Allende former president of Chile was assassinated in what year,1973, History & Holidays,In 'Home Alone 2'' which city was Kevin lost at Christmas ,New York  -General,What is the Capital of: Czech Republic,Prague,General,"In 'dawson's creek', who does katie holmes play",Joey potter,Sports & Leisure,Who Won the Men's & Woman's Wimbledon Singles Title In 2007? (PFE) ,Roger Federer & Venus Williams  -General,Which West Bengal town is the centre of production of the tea called 'The Champagne of Teas' because of its grape aroma,Darjeeling,General,An isoneph on a map joins places of equal what,Average Cloud Cover,General,Who did John F Kennedy succeed as U.S. president,Dwight d eisenhower -General,Who was the second man to step onto the Moon in 1969,Buzz aldrin,General,"In Greek mythology, who was the Muse of Tragedy",Melpomene,Music,"""Crazy Train"" & ""Mr Crowley"" Were Songs From Whose ""Blizzard Of Ozz""",Ozzy Osbourne -Geography,In what country is the source of the blue nile ,Ethiopia ,General,Which human rights organisation founded 1961 got Nobel 1977,Amnesty International,Entertainment,To which elemetary school did TV's 'Brady Bunch' go?,Dixie Canyon Elementary -General,Pax was the Roman god of peace who's the Greek equivalent,Irene,Science & Nature,With which island is the puffin associated?,Lundy Island,General,What was the name of the first film where george burns played god,"Oh, god" -General,"In 1968, who invited you to Dance To The Music",Sly and the Family Stones,General,"At 9,970,610 km2, Canada is the world's second-largest ______",Country,General,How did Lawrence of Arabia meet his death in 1935,Motor cycle accident -General,Which Mediterranean island is named after a metal,Cyprus,General,"Thor is the god of thunder, loki is the god of _____",Mischief,General,Who originally patented the safety pin,Walter hunt -General,"In addition to writing novels, Jonathan Swift also wrote social and philosophical commentary. In one satirical piece, ""A Modest Proposal,"" what did he suggest should be made out of the skin of children?",Gloves,General,"In medical matters, what does the letter B stand for in B.C.G.",Bacillus,General,What is the young of this animal called: Hen,Pullet -General,"What deranged movie murderer has been dubbed a ""jaws on land""",Jason, History & Holidays,"Nanny, Sandra Rivett was the victim of which infamous murderer? ",Lord Lucan ,General,"What is the relatively constant, but dynamic internal environment necessary for life",Homeostasis -General,Pieces of vegetable coated in seasoned flour and deep fried,Pakora,General,What is a lacuna,A Space,Music,According To the Lyrics Of One Of his Songs Where Was Bruce Springsteen Dancing,In The Dark -Science & Nature,He designed the first feasible automobile with an internal combustion engine.,Karl Freidrich Benz,Geography,What Scale Is Used To Meausre The Intensity Of An Earthquake ,The Richter Scale ,General,What was Lestat's mother's name,Gabrielle -General,Quercus is the Latin name of what Tree,Oak,General,"In the 1984 movie ""Splash"", the pretty blonde mermaid chooses which street name to be her own?",Madison,General,Who recorded A Walk in the Black Forest in 1965,Horst jankowski -General,"In 'Back To The Future', where did Doc Brown get the plutonium to power the time-travelling DeLorean?",Lybian terrorists,General,"The Pearl River flows south from which major Chinese city, entering the South China Sea between Hong Kong and Macao",Canton,General,"Who was the editor of the magazine ""Babies"" when her husband was elected president in 1932",Eleanor roosevelt -General,Where could you spend a Sol,Peru,General,What is the metal part of a lamp surrounding the bulb & supporting the shade,Harp, Geography,This re-opened in 1975 after being closed for 8 years.,Suez Canal -Music,"Mark King Was The Lead Singer With Which UK Pop Outfit ""Level 42"" Or ""Big Country""",Level 42,General,"In Greek mythology, atlanta wanted to remain unmarried until ______",She was,General,In which part of the world is the EC dollar a unit of currency,Caribbean -Science & Nature," An adult walrus typically eats about 3,000 __________ per day.",Clams,Geography,_____________ is the largest Spanish_speaking country and the second_largest Roman Catholic nation in the world.,Mexico,General,Verminophobia is the fear of ______,Germs - Geography,Name a country which has the same name as a bird.,Turkey,General,What phase of moon precedes a full moon,Gibbous,General,Goyanthlay (one who yawns) famed under what Mexican name,Geronimo -General,"When Jonathan Edwards smashed the world triple-jump in 1995, by how much did he increase it",0.31 metres,Food & Drink,A green gelatinous substance known as calipee is used to make which favorite amongst gastronomes ? ,Turtle soup. Calipee is found beneath the lower shell of the Green Turtle. ,General,"The Rose Bowl, America's oldest college football contest, is held annually in which city",Pasadena -Music,Who Sang In A Pop Duo Alongside Mel Appleby,Kim Appleby,General,What shape is the head of an Allen key,Hexagonal,General,Where would you find a Mott Bailey and Keep,A Castle -General,In which city is the worlds longest skating rink - rideau canal,Ottawa Canada,General,Whic group won the inaugural 'Mercury' music Prize in 1992?,Primal Scream,General,What kind of fish is a 'porbeagle',Shark -Science & Nature," 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,Geography,Name the continent that consists of a single country.,Australia, History & Holidays,How Is St Sylvester's Day Otherwise Known? ,New Years Eve  -General,Table Tennis competitions only two coloured balls allowed what,White and Yellow, Geography,What is the capital of Virginia?,Richmond,General,What is a 'crossbuck',An x -General,Who wrote Last Tango in Brooklyn his third novel,Kirk Douglas,General,What does an average person use approximately six times per day,Bathroom,Food & Drink,What Is Calamari ,Squid  -General,Vincent Furnier is better known as who,Alice Cooper,General,What shape is Anelli pasta,Rings,General,What type of food is a Munster plum,Potato -General,To which tree family does the osier belong,Willow,General,Name Elvis Presley's father,Vernon Presley,General,What is the Capital of: Honduras,Tegucigalpa - History & Holidays,"""What brought Frosty the Snowman to life? (""""Pixie Dust, A Kiss,Magic Snow,An Old Silk Hat"""" "" ",An Old Silk Hat ,General,Capital cities: Mongolia,Ulaanbaatar,Entertainment,Who wrote the song 'Do They Know It's Christmas' with Bob Geldof?,Midge Ure -General,Artistic movement shared name with French for hobby horse,Dada thus Dadaism,General,What form of racial segregation was introduced in south africa in 1948,Apartheid,Sports & Leisure,In The Schoolboys Card Game Of The Same Name What Cancels Out A Black Jack ,A Red Jack  -Music,What Did Hot Chocolate Say It Sterted With In The 1970's,A Kiss,General,What animal can live several weeks without its head,Cockroach,Food & Drink,With What Food Might You Associate Arbroath ,Smokies (Kippers)  -General,Who dropped out of Harvard in 1975,Bill Gates,General,Aurore Dupin b 1804 changed her name what 19th cent author,George Sand,General,What is smocking,Needlework -General,"Art, science, & industry of managing the growth of plants & animals for human use",Agriculture, Geography,The Hebrides are part of this country.,Scotland,General,Who directed the musical 'My Fair Lady',George cukor -Sports & Leisure,Which country was represented by the athlete Don Quarrie? ,Jamaica ,Science & Nature,On what side should you sleep to improve digestion?,Right,Science & Nature," 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 -General,"What actress said ""I acted vulgar - Madonna is vulgar""",Marlene Dietrich,General,"Who said: ""nice guys finish last""",Leo durocher,Entertainment,"Name the European hit, now an animated series about underwater people.",The Snorks -General,What Was The Name Of The Dog In Fraggle Rock,Sprocket,General,What was Margaret Thatcher's nickname?,Iron Lady,General,"In Soylent Green, what was the last resort used for riot control?",Scoups -General,Who breathes through spiracles,Insects,General,What was the name of the alligator on Miami Vice,Elvis,Geography,Which London Bridge Had A Gate Over It On Which The Heads Of Criminals Were Displayed On Spikes As A Deterrent ,London Bridge  -General,"Which eponymous, or title female, cartoon character was created by Max Fleischer",Betty boop,Entertainment,"On 'Dragnet', who played officer Bill Gannon?",Harry Morgan,General,The pop duo '2 Unlimted' are from which country?,Netherlands -General,What are the colours of the five olympic rings?,"Red, Blue, Green, Yellow, Black", History & Holidays,She overcame her handicaps to become a lecturer and a scholar.,Helen Keller,General,Who directed the film Born on the Fourth of July,Oliver stone - Geography,What city is associated with Alcatraz?,San Francisco,General,Who played garp's mother in the world according to garp,Glenn close,General,What was karl marx's term for owners of capitalist production,Bourgeoise -General,Who owned the dog called Peritus,Alexander the Great,General, The wide wall built along the banks of rivers to stop flooding is a(n) ________.,Levee,General,What is the official name of michael knight's car,Knight Industries 2000 -General,What is the fear of dolls known as,Pediophobia,General,What is the Capital of: Thailand,Bangkok, History & Holidays,In Which City Did The Indian Mutiny Start? ,Meerut  -General,Which is the highest mountain outside Asia,Aconcagua,Sports & Leisure,Which Boxer Sacked His Manager Frank Maloney In 2001? ,Lennox Lewis ,Geography,What london museum features a chamber of horrors ,Madame tussaud's  -General,Hormone used in treating inflammation and allergy,Cortisone,General,In North Carolina it is illegal for what to race down the street,Rabbits,General,What part of Betty Grable was insured for over a million dollars?,Her Legs -General,What is the worlds most polluted major city,Mexico City,General,"Who plays many voices, such as dr nick, and moe on 'the simpsons'",Hank,Sports & Leisure,What Colour Caps Are Worn By The Australian National Cricket Team? ,Green  -General,What was the capital of east germany,East berlin, History & Holidays,His wife was Roxana. His horse was Bacephalus. He was ________.,Alexander the great,General,John Huston scored a hit with his first film - what?,Maltese falcon - History & Holidays,Who invented crop insurance?,Benjamin Franklin,General,Who succeeded U Thant as Secretary General of the United Nations,Kurt waldheim,General,What presidents birthday is a national holiday,George washington -General,A pudding of stewed fruit under bread,Charlotte, History & Holidays,In 1921 Who Founded The First Birth Control Clinic In London ,Marie Stoppes ,General,"Who was Evander Holyfield's trainer talking about when he said, in 1991, ""Some say he's as fit as a fiddle, but he looks more like a cello to me"".",George foreman -General,With what day does a month start if it has a friday 13th,Sunday,General,Which freezes faster - hot or cold water,Hot,General,What country is accessed with the international telephone calling code 60,Malaysia -Music,Name 3 Of The Four Members Of The Classic REM Lineup,"Bill Berry, Peter Buck, Mick Mills, Michael Stipe",General,Where did Lord Byron die,Greece,General,The largest tree in the world grows in the U.S.; which tree is it,Redwood tree -General,Proverb: the early bird __________,Catches the worm,General,Which new engine regulation replaced the 2.5 litre rule at the start of the 1961 season,1.5 litre,Entertainment,What is the name of Jaleel White's character in the tv series 'Family ties'?,Steve Urkel - Language,"What three letter word means the same as ""to ingest""",Eat,General,The ice cream soda was invented in what year,1874,Music,"Who Duetted With Elton John On 1976's ""Don't Go Breaking My Heart""?",Kiki Dee -General,"In Korean, what does seoul mean",The capital,General,What was Butch Cassidy's original profession,Butcher hence Butch,General,The female side of a family tree is known as the distaff side. What is the male side called,Spear -Music,Which Declaration Brought The Beastie Boys Into The Charts In 1987,You Gotta Fight For Your Right To Party,General,"What U.S. academy is located in Kings Point, New York",Us merchant,General,What's the echidna's favorite food,Ants -General,The Underworld in Greek mythology,Hades,General,Bee Gees Movies: Neve Campbell and Courtney Cox are terrorized by a murderous horror movie fan in what movie,Scream, Geography,In what island group is Corregidor?,Philippines -General,Who was the first winner of the British version of the TV reality show 'Big Brother'?,Craig Phillips,General,"What in history were the Beaver, Dartmouth and Eleanor",Ships Boston Tea Party,Music,What Were The Names Of The 2 Gangs In West Side Story,Jets & Sharks -Sports & Leisure,"Who was football manager at Southampton, Rangers and Liverpool in the 1980's & 1990's? ",Graeme Souness ,General,We know what a fez is but what does fez mean in Turkish,Hat,General,What does a potometer measure,Water intake -Sports & Leisure,"Other than Alain Prost, which driver won three Formula One World Championships in the 80's? ",Nelson Piquet ,General,Annually 2500 left handed people die doing what,Using right handed products,General,"Fandible, lateral line, & dorsal fin are parts of a(n) ________",Fish -Music,What Was Dire straits 1982 Album Called,Love Over Gold,General,"What links Elvis Presley, Bruce Willis, Richard Gere",Married in Las Vegas,Science & Nature,Which bird has the best sense of smell? ,Kiwi  -General,What kind of animal was the now extinct Dodo,Bird,General,In the bible - Leviticus - what was lapidation,Death by stoning,General,Blue red green yellow four Olympic rings colour what's missing,Black -General,The character Lieutenant Pinkerton appears in what work,Madam Butterfly,General,What planet is considered the earth's twin in size & mass,Venus,General,"In ballet, a slow turn of the body on the whole foot.",Promenade -General,What term is applied to animals or plants that are not nocturnal,Diurnal,General,In 1971 which USA space probe was first to orbit another planet,Mariner 9,General,Sabastian Melmoth died in Paris 1900 better known as who,Oscar Wilde -General,Who said 'public service is my motto',Al capone, Geography,Where is the wailing wall?,Jerusalem,General,What is the 'cresta run',Toboggan course -General,Which group of Australian origin had a top twenty hit in 1965 with The Carnival is Over,The seekers,General,In medicine what do the letters HRT stand for,Hormone replacement therapy,General,What was the name of Barbie's first horse,Dancer -Science & Nature,What Colour Is The Australian Swan? ,Black ,Music,"Who Was The Lead Singer Of The Group ""Visage""",Steve Strange,Food & Drink,A black Russian cocktail is made with one part coffee liqueur and two parts of which spirit? ,Vodka  -General,The largest internal organ of the human body is,Liver,General,Peccatophobia is the fear of,Sinning,General,"Disease of animals, especially birds, monkeys, & humans, caused by infection by protozoans of the genus plasmodium & characterized by chills & intermittent fever",Malaria -General,What is measured in fathoms,Depth of water,General,"Robin, Rugby and Simple appear in which Shakespeare play",The Merry Wives of Windsor,General,What is the capital of the U.S. state of Oregon,Salem -General,What muscles provide about 200 pounds of force,Jaw muscles,General,What is the compulsive desire to give gifts,Doromania,General,To what do opposite faces of a dice always add up,Seven - Geography,What is the basic unit of currency for Belarus ?,Rubel,General,To whom are the Jews Gentiles,The Mormons,Toys & Games,What toy was originally made from the bladder of an animal?,Balloon -General,80% of Americans say they believe in what,Miracles,General,What is the Capital of: Guinea-Bissau,Bissau,General,What activity is featured in the magazine Winkers World,Tiddlywinks -General,What gift is associated with the 40th Wedding Anniversary?,Rubies,General,What is a baby whale called,Calf,General,In traditional wedding anniversaries what is given on the 14th,Ivory - History & Holidays,From what country did the U.S. buy the Virgin Islands?,Denmark,General,Proctophobia is the fear of,Rectum,General,What is the wife of a baron called,Baroness - Geography,What is the basic unit of currency for Uruguay ?,Peso,General,What calculating aid was invented by William Oughtred in 1662,Slide Rule,Science & Nature,Female Honeybees That Receive Royal Jelly Throughout Their Larval Stage Develop Into What ,Queens  -General,The Fagus is the Latin name of what type of tree,Beech,Science & Nature,What plant is opium derived from?,Poppy, Geography,In which city is the Canale Grande?,Venice -General,What does a heliologist study?,The sun,General,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,Forty seven 47,General,Ei-Hajj Malik Ei-Shabazz better known as who,Malcolm X -General,What colour is the the Northern Line on the London underground?,Black,Geography,Khartoum is the capital of which country,Sudan, Geography,The City of Fireze is better known is english as what?,Florence -General,In Texas its illegal to shoot a buffalo from where,Hotel second story, Geography,What country is known as the Hellenic Republic?,Greece,Food & Drink,What is the name of the Scandinavian alcoholic drink made from Potatoes? ,Aquavit  -General,Isms: a painful stiffness of the muscles and joints,Rheumatism, History & Holidays,Which token vegetable is often included in the ingredients of a Christmas pudding? ,Carrot ,Science & Nature,"What Was The Colossus, Developed In Buckinghamshire In 1943 ",An Electronic Computer To Help Break Codes During World War 2  -Geography,___________________ has the largest rural population in the United States.,Pennsylvania,General,"A dance for two, usually a woman and a man. In its traditional form, it begins with an entreé and adagio, followed by solo variations for each dancer, and a coda.",Pas de deux,General,Type of moist aerated Italian bread,Ciabatta -General,"What links Catalonia, Andalusia, Cantabria, Galicia",Regions of Spain,Music,"What Was The Title Of The 1956 Musical Remake Of ""The Philadelphia Story""",High Society,Science & Nature,What Planet In Our Solar System Is Closest To Earth ,Venus  -General,What is the name of Jonny Quest's Dog,Bandit,Music,What Sort Of Girl Took Jamiriquai To No.6 In 1996,Cosmic Girl,General,Which state became the 14th state of the u.s,Vermont -Sports & Leisure,Which Country Has Had The Most Wins At The Angling World Championships ,France ,General,What constellation is represented by a goat,Capricorn,General,What company made the first color arcade game?,Atari -General,Betsy Ross is the only real person to ever have been the head of a ______?,Pez dispenser,General,What would be kept in a humidor,Cigars,General,Who directed 'the godfather',Francis ford coppola - History & Holidays,Who was the first dog in space ?,Laika,General,A person with a strong desire to steal is a(n) ________.,Kleptomaniac,General,"In golf, we call '3 under par' an 'albatross'. What do Americans call it",Double eagle -General,Nipper is the RCA dog in the US what's he known as in the UK,HMV dog,General,What veteran of tv commercials died at the advanced age of 17,Morris the cat,Science & Nature,What is the meaning of the name of the constellation Leo Minor ?,Lesser Lion -General,What is the significance of the moth found in the Harvard Mark I computer,"First computer ""bug""",Geography,Where is the Admirality Arch,London,Science & Nature,A __________ can go without water longer than a camel can.,Giraffe or Kangaroo Rat -General,A large French country house,Chateau,General,Where did Spam get its name,Spiced Ham,General,Give one of Michael Portillo's other Christian names.denzil,Xavier -Art & Literature,A Russian abstract movement originated by Malevich c. 1913. It was characterized by flat geometric shapes on plain backgrounds and emphasized the spiritual qualities of pure form. ,Suprematism,General,Who was winnie the pooh's neighbor,Piglet,General,Which planet is named after the sky God in Greek mythology,Uranus -General,All living things contain what,Water,General,In what movie did Richard Drefus make his one line debut,The Graduate,People & Places,Whose Real Name Is Eric Clap ? ,Eric Clapton  -General, What is the common name for the Aurora Borealis,Northern lights,Music,Shortly After Discovering His Brother Was A TV Detective Who Died In FEb 1997,Brian Connolly,General,"In Roman mythology, who was the father of Romulus and Remus",Mars -Sports & Leisure,What do runners pass to each other in a relay race?,Baton,General,With which instrument is the musician Dennis Brain associated,French horn,General,Who recorded 'hejira' in 1976,Joni mitchell -General,Which planet did John Couch Adams and Urbain Leverrier work out the existence and position of before it could actually be seen,Neptune,Geography,What is the capital of Sweden,Stockholm,Food & Drink,"After 1066 the French introduced such joys as cidre to England with 'staggering' success. If pears replaced apples in the process, what was it called ? (Clue, if needed, a famous lawyer.) ",Perry  -General,What was the worlds first patented synthetic food in 1869,Margarine,Food & Drink,What do you get when you add fresh fruit to red wine?,Sangria,General,Rogers what film features the song 'born free',Born free -General,In what Australian state would you find Fremantle,Western australia,General,What does the columella separate,Nostrils,Music,Who Was Was Ther Lead Singer With Cockney Rebel,Steve Harley -People & Places,Formerly known as East Pakistan what is this country now called ,Bangladesh ,General,A Greek type mandolin,Bouzouki,General,In what Australian state would you find Maitland,New south wales nsw - History & Holidays,Live Aid was to benefit which starving country? ,Ethopia ,General,"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,Science & Nature,Which Disease Is The Most Widespread ,Tooth Decay  -General,Jr how many tunes blared from the 1948 wurlitzer model 1100 jukebox,24,General,What soul great appears in the flick Ski Party,James brown,General,As what is the Bowery known,Street of forgotten men -Toys & Games,"This chess term means ""in passing""",En passant,People & Places,"Whose Last Words Were Reputedly, 'ET TU BRUTE' ? ",Julius Caesar ,General,Complete the title of this Johny Cash song 'A Boy Named___.,Sue -Music,What Song Was Christmas Number One In The UK In Both 1975 And 1991?,Bohemian Rhapsody By Queen,General,What new york city avenue divides the east side from the west side?,Fifth avenue,General,Which british colony was returned to the Chinese in 1997,Hong kong -Entertainment,Which of Paul Simon's musical characters was told to hop on the bus?,Gus,Music,"Emerson Lake And Palmer Had A No.2 Hit With ""Fanfare For The Common Man "" Who Wrote It",Aaron Copland,General,Cereology Is The Study Of What,Crop Circles -General,What martial arts name means gentle way,Judo,General,What is the Japanese Shinkasen,High speed Train,General,What is the Roman Numerals for 4000,MMMM -Music,Which Group Sat Down In The Top Ten Twice,James,Music,Who Was The First Person To Play Evita On Stage,Elaine Paige,General,What sequence is this the start of: 1 2 4 8 16 32 64,Power of 2 -General,Arnold Cream was a famous (early) boxer - who,Jersey Jo Walcott,General,What is the lowest rank of the british nobility,Baron,General,What Is Unusual About a Polydactyl Person,More Than 10 Fingers Or Toes -Sports & Leisure,Who was voted BBC's Golden Sports Personality for the last 50 Years in 2003? ,Steve Redgrave ,General,Which English porcelain factory used an anchor as its mark,Chelsea,General,What city is at the mouth of the Menam river,Bangkok - History & Holidays,What Shakespearean king was actually king of Scotland for 17 years?,Macbeth, History & Holidays,In Which Century Did Lady Godiva Live? ,11th Century ,General,What is the common name for an integrated circuit,A Chip -General,J D Sallenger wrote Catcher in the Rye what's the J D stand for,Jerome David,General,What is a hoblet,A Vasectomised ferret,General,What is the most air polluted city in the united states,Los angeles -General,Which tough guy actor was once a drop hammer operator,Robert Mitchum,General,"Queen Berengaria never came to England, although she was married to the King. Which King",Richard the first, Geography,The Thatcher Ferry Bridge crosses what canal?,Panama Canal -General,What is the flower that stands for: death preferrable to loss of innocence,White rose,General,When is Saint George's day celebrated,April 23rd,General,What do chimpanzees do when nervous,Masturbate -General,"What part of an eatery do some restaurant owners call ""the cancer ward""",The smoking section smoking section,General,Fear of one's mother in law,Pentheraphobia,General,What was discovered in 1922 by Howard Carter,Tutankamen tomb -Sports & Leisure,In Australian Rules Football How Many Players May A Team Have On The Field At One Time ,18 ,General,"According to an old proverb, what is 'the soul of wit'",Brevity,General,Whets the difference between fog and mist,Seeing Distance under 1000yd -General,"In boy meets world,what is the crazy older brother's name?",Eric,General,"Often eaten for breakfast, the egg comes from what barnyard animal",Chicken,General,Dionea Muscipula is the Latin name for which flesh eater,Venus Fly Trap -General,What element is lacking in a diet causes goitre,Iodine, Geography,What is the basic unit of currency for Paraguay ?,Guarani,General,Encephalopathy what is the richest country,Switzerland - Geography,What is the capital of Mauritius ?,Port Louis,Music,"What Contribution Was Made By Tony Gilbert, Sidney Sax, Kenneth Essex & Francisco Gabarro To The Recording Of The Help! Album",String Quartet On Yesterday,Science & Nature," The blue whale weighs as much as thirty elephants, and is as long as three __________",Greyhound buses -General,Charles Henry Stuard Gmelin was the first UK what 6 Apr 1896,Olympic competitor 4th 3rd heat 100 m,General,Approximately how many species of butterfly are there,"100 thousand 100,000",General,Who was the first to speak to Jesus after he had risen from the dead ,Mary Magdalene  -General,"In motor racing, what is yellow",Danger flag,General,Who advocated planting peanuts and sweet potatoes to replace cotton and tobacco,George washington carver,General,What is the Capital of: Costa Rica,San jose -Food & Drink,"The French call it Sabayon, what do the Italians call it? ",Zabaglione ,General,"What family do these fruits belong to - Kumquat, Pommelo, Ugli Fruit?",Citrus,Art & Literature,Which Literary Character Had A Dog Called Bulls Eye? ,Bill Sykes (Oliver!)  -General,Nylon was invented in 1934 what product first used it,Toothbrush,Sports & Leisure,In The World Of Snooker Disappeared In 1991 & Was Brought Back In 2005 ,Pot Black ,Science & Nature,Which Part Of A Computer Is Responsible For Carrying Out Instructions ,CPU / Processor  -Science & Nature,Which Significant Beverage Did Dr John Pemberton Of Atlanta Georgia Invent In 1886 ,Coca Cola ,Sports & Leisure,Where were the 1908 Olympics held ?,"London, England",General,What does a cooper make,Barrels -Sports & Leisure,In Professional World Cup Rugby How Many Minutes Does The Game Actually Last ,80 Mins ,General,Who preceded Bobby Robson as England Football Manager,Ron greenwood, History & Holidays,Who invented the ballpoint pen?,Georgo and Laszlo Biro -General,"Which Country Did The 1998 Eurovision Song Contest Winner ""Dana International"" Represent",Israel,General,"In Ferris Buellers Day Off, who is Cameron going to marry?",The first girl he lays,General,In Peter and the Wolf what instrument represents the cat,The Clarinet -General,"What is the common name for a ""canis lupus""",Timber wolf,General,Boned steak cut off sirloin,Entrecote,Music,Name Wayne Fontana's Backing Group,The Mindbenders - History & Holidays,How Did UN Secretary General Dag Hammarskjoeld Die In September 1961 ,In An Air Crash ,General,In what country is the language Fanti spoken,Ghana,General,In Bristol Rhode Island its illegal to smoke during what event,Public Hanging in town square -General,Engine that employs gas flow as the working medium by what heat energy is transformed into mechanical energy,Gas turbine,General,What science deals with the origin and structure of the universe,Cosmology,Food & Drink,"What is a `kiwano', a spiky orange fruit, a fish dish, or a cocktail? ",A spiky orange fruit.  -General,Approximately what percentage of the earth do the oceans cover,71%,People & Places,Which Actors Real Name Is Morris Micklewhite ,Michael Caine ,People & Places,Thomas Hamilton A Former Scout Master Shocked The Nation On 13 th March 1996 But Why ,Dunblane Massacre  -General,In which European country is the world's deepest known cave,France,General,What is the fastest fish in the world,Sailfish,General,Who sailed in a ship called Queen Ann's Revenge,Blackbeard -General,The Composer Mozart Wrote The Music To Which Popular Tune?,Twinkle Twinkle Little Star,General,J Worthington Foulfeather was the name of what Disney character,The Fox in Pinocchio,General,Whose ghost haunted scrooge with clanking chains and wierd sounds,Jacob -General,A is Alpha is the international alphabet but A used to be what,Able,General,In what American State is the city of Nevada?,Missouri,General,What's the soft tissue inside bones called,Marrow -General,What is the Capital of: Sierra Leone,Freetown,General,A tropical house lizzard,Gecko,General,Crab is the only named one in any Shakespeare play - what,Dog - Two Gentlemen of Verona - Geography,What is the basic unit of currency for India ?,Rupee,Entertainment,Who wanted 'a new drug'?,Huey Lewis and The News,Sports & Leisure,At what age did Will Carling first become England skipper? ,22  -General,The Zoastrian religion began in what country,Persia or Iran,Science & Nature,What is a young goose called?,Gosling,General,In Which City Was The Singer Lonnie Donegan Born?,Glasgow - Geography,What was the former name of Thailand?,Siam,General,In which game is banjo and tooty,Banjo-kazooie,Sports & Leisure,In What Game Might You Get A Cannon ,Billiards Pool Or Snooker  -Science & Nature,Which video game series is sometimes referred to as GTA? ,Grand Theft Auto ,General,What is the fear of teeth or dental surgery known as,Odontophobia,General,"If a bear lives in the southern hemisphere, the opening of the cave in which he hibernates is always on which slope",South -General,Who played Beau Geste in the 1939 film,Gary Cooper,General,"The word ""cumulus"" refers to a type of ___________",Cloud,Entertainment,"What was the name of the motel in the film ""Psycho""?",Bates Motel -General,What is the second largest state in the u.s,Texas,Music,The Lover Speak's Only Chart Entry Was Later Covered By Annie Lennox . What Was It Called,No More I Love You's, Geography,On what river is Blackpool?,River Fylde -General,What is the scent of an artificial hare at greyhound tracks,Anise,General,Photographic inventor suicided 1932 said my work is done why wait,George Eastman Kodak Brownie,General,"What U.S. president was known as ""the rail splitter""",Abraham lincoln -General,Potamophobia is the fear of,Rivers running water,General,What's the capital of Syria,Damascus,General,Who's first play was The Room,Harold Pinter -General,What is a group of this animal called: Cur,Cowardice,General,Spectrophobia is the fear of,Specters ghosts,Music,With whom did Westlife team up with on the 2000 single ‘Against all Odds’?,Mariah Carey -General,Who invented the hamburger,Louis lassen,General,What makes up about 85% of all the greenery on earth,Ocean plants,General,What Object Was Bought By The Yasuda Fire And Insurance Company Of Tokyo For A Record 24.75 Million Pounds In 1987,Van Gogh's Sunflowers -Science & Nature,What device is used to measure weather pressure ?,Barometer,General,"What three words mean the same as 5,880,000,000,000 miles",One light year, Geography,If you climbed the Euromast what country would you be in?,Rotterdam -General,What was invented by James Dewer in 1872,Vacuum or thermos flask,General,Rene Laennac invented which aid for doctors in 1810,Stethoscope,General,What name is given to a substance in which resistance decreaces as temperature increases,Semiconductor -General,Almost half the bones in your body are in what two body parts,Hands & feet,General,What is a resident of liverpool?,Liverpudlian,Music,Name Depeche Modes First Album,Speak & Spell - History & Holidays,In which English town was the Co-Operative Society formed in 1844? ,Rochdale ,General,What is the registry number of the enterprise in the original star trek,Ncc,General,Who recorded the tune 'dream weaver',Gary wright -General,In February 1990 160 million bottles of what were withdrawn,Perrier – contaminated benzine,General,Guiyaquil is the largest city in which country,Ecuador,General,Who sang about 'the bugle boy of company b',Andrews sisters -General,How many eyes are there in a deck of 52 cards,Forty two,Art & Literature,In what opera would you find Lt. Pinkerton?,Madame butterfly,General,Manticore was a mythical beast head of a man body of what,A Lion -Music,"Their Debut Album was Called ""Lexicon In Love"" Who Was The Band",ABC,Geography,What is the capital of Papua New Guinea,Port moresby,Science & Nature," __________ eels are not really eels but a kind of fish. Although they look like eels, their internal organs are arranged differently.",Electric -General,A spool or reel for thread,Bobbin,General,Anonymous letters of hostility towards the recipient,Hate mail,Sports & Leisure,What Is Denise Lewis Main Athletic Event ,Heptathlon  -Sports & Leisure,In Which Sport Would Win The Federation Cup ,Womens Tennis ,Music,"Who Wanted To Know ""Have You Ever Been In Love""",Leo Sayer,General,Gabriel Fallopius is credited with inventing what,Condoms -General,What is a 'kiwano' a type of,Fruit,General,"What FBI agent tracked Charles ""Pretty Boy"" Floyd to Ohio, where Floyd died",Melvin purvis,General,Which nazi leader had his 6 children poisoned prior to his own death,Goebbels -Music,Tammi Terrel Died From A Brain Tumour 3 Years After Collapsing In The Arms Of Another Motown Singer Who Was He,Marvin Gaye,General,Whets the correct name for golf club called Texas Wedge,Putter,Food & Drink,"Generally speaking, on a restaurant menu, what might be presented in the style referred to as Macedoine? ",Vegetables or Fruit  -General,"Which book has the statement 'all pigs are equal, but some pigs are more equal than others'",1984,Science & Nature,What is the only other animal besides humans to have unique prints?,Koala Bears,Music,Alex Turner Is The Lead Singer With Which Band?,Arctic Monkey's -General,For whom did colonel tom parker act as manager,Elvis presley, History & Holidays,What was the nationality of Marco Polo ?,Italian,General,What is the worlds largest inland sea,Caspian sea -Toys & Games,How many squares are there on a chessboard,64,General,What is a Shofar,Carved Rams Horn Jewish faith,General,What French word means liquor is half frozen,Frappe -General,What's the adhesion of molecules to the surfaces of solids called,Absorbtion,General,"Who was the head villian on ""The Smurfs"" and what was his cat's name?",Gargamel and Azreal,General,"Due to precipitation, for a few weeks k2 is bigger than",Mt everest -Geography,Why Is The Golden Gate Bridge Painted In International Orange ,The Colour Helps Visibility In The Frequent Early Morning Fog ,General,What is the flower that stands for: artifice,Acanthus,Music,Who Had A Number One Single With A Song With A Song About A Rat,Michael Jacksons (Ben) -General,The wallendas were noted as,High wire performers,General,Hartford is the capital of ______,Connecticut,General,Athropod with worm like body and many legs,Centipede -General,Which relative of John Travolta's made a cameo appearance in Saturday Night Fever?,His mother,General,The Sydney Olympics had 3 mascots. What type of animals were they?,Kookaburra Echidna Platypus,Food & Drink,These beans are the most often used in the production of bean sprouts.,Mung beans -General,What march did Felix Mendelssohn compose,Wedding march,General,What island do most of the North Atlantic icebergs come from,Greenland,Music,Amount that the Fab Three were recently offered to play 10 concerts,$100 million -General,"Who was the first person to reach the North Pole, in 1909",Robert peary,Food & Drink,What is made of fermented grape juice?,Wine,General,Ouagodougou is the capitol of what country,Bakina Faso -General,A belemnoid is what sort of shape in zoological terms,Dart shaped,General,Who was the last prisoner in the Tower of London,Rudolf Hess,General,What term describes a pain in the chest usually caused by lack of oxygen,Angina -General,In What UK Town Did The First Branch Of The Body Shop Open,Brighton,Science & Nature,What is the meaning of the name of the constellation Camelopardalis ?,Giraffe,General,Hodophobia is the fear of,Road travel -General,What is the most common plastic surgery done on US men,Breast Reduction,General,N is the civil aircraft marking for which country,USA,General,How many lines does a sonnet have,Fourteen -General,Churchill what are phalanges,Finger bones,General,Where might you spend a Ceti - Capital Accra,Ghana,Food & Drink,What are Pershore eggs and Marjorie's seedlings? ,Plums  -General,Vaselina and Brillantino were alternate names which film,Grease, Geography,What is the basic unit of currency for Samoa ?,Tala,General,What is the flower that stands for: rendezvous,Chickweed -General,From what did julius caesar and napoleon suffer,Epilepsy,Religion & Mythology,Who is the greek equivalent of the roman god Jupiter,Zeus,Music,"What Is The Surname Of The Brothers Who Wrote, Among Others, Chim Chim Cheree, Chitty Chitty Bang Bang & The Bare Necessities",Sherman -General,Plate tectonics theory contends there are how many major plates,Seven,General,In 1800 Free black commission of Philadelphia petitioned Congress to abolish,Slavery,Sports & Leisure,Which American Football Team Are Known As The Falcons ,Atlanta  -Music,"Who Had A 1983 Hit With ""Si Si Je Suis Un Rock Star""",Bill Wyman,Science & Nature,What Is The Technical Term For Memory Loss ,Amnesia ,General,Who staged a major musical comeback with his 1988 album Cloud 9,George -General,In the Bible who came from Gath,Goliath,General,Which is the only country that has every type of climate,New zealand,Art & Literature,Which Author Penned The Disc- World Series Of Sci-Fi Novels? ,Terry Pratchett  -General,What toe is the foot reflexology pressure point for the head,Big toe,General,Vanilla is part of which plant family,Orchids,General,Who released 'tell him' in november 1962,The exciters - History & Holidays,What type of animal is a caribou? ,A Reindeer ,General,What is a resident of moscow,Muscovite,General,There is enough iron in a human being to make ______,One small nail -General,In Greek mythology the place of ideal happiness,Elysium,General,What does 2thwrk do for a living,Dentist,General,What 4 Words Are Written On The Tombstone Of Mel Blanc,That’s All Folks -General,Gwizador in Poland is who in English,Santa Claus,General,What popular bird derives its name from Abo for Good to Eat,Budgerigar,Geography,In which state is the kennedy space center ,Florida  -General,"Who sang the song ""I'll Be Missing You""?",Puff Daddy,General,Indian fig tree with self-rooting branches,Banyan,General,"Teresa Quotations: ""Do one thing at a time, and do that one thing as if your life depended on it.""",Eugene Grace -General,The lowest elevation in the usa is,Death valley, History & Holidays,"This war began on June 25, 1950.",Korean,Music,"Who Sang The Song ""The Lion Sleeps Tonight"" In The 80's",Tight Fit -Geography,"The city name ________________ is derived from an Algonquin word meaning ""traders.""",Ottawa,General,Which Lakeland poet was born in 1770,William wordsworth,General,Which actress starred in the film Love Story,Ali mcgraw -General,Alma Mater means what,Bountiful mother,Entertainment,What is Hulk Hogan's real name?,Terry Bollea,Geography,What is the world's highest city,"Lhasa, tibet" -Entertainment,Who said 'you'd be surprised how much it costs to look this cheap'?,Dolly Parton,General,A dolphin can remember a specific ______ better than a human,Tone,General,Marge Simpson has the same maiden name as a former First Lady. Name the former First Lady,Jackie Kennedy -General,"What shouts 'tip me over,pour me out' in a children's song",Little teapot,General,"Contagious disease of warm-blooded animals, including humans, caused by the bacterium Bacillus anthracis",Anthrax,General,As what was Anne Bonney notorious in the 18th century,Pirate -General,"Which character did Berlioz, Gounod and Liszt all compose music about",Faust,Science & Nature,What Electrical Device Can Change The Magnitude Of Voltage Or Current ,A Transformer ,General,Riotous Assembly' was the first novel by which author,Tom sharpe -General,What is the study of weather technically called?,Meteorology,General,What measures wind velocity,Anemometer,General,What colour is caffeine,White powder -General,Who was & romedas mother,Cassiopeia,General,Which Northumberland castle is claimed to be the second largest inhabited castle in the world,Alnwick,General,"""Gotta have 'em"" is this cereal's slogan",Corn pops -Music,Who Was The Lead Vocalist With Haircut 100,Nick Hayward,General,President Woodrow Wilson May 6th 1919 first to do what,Take out Air accident Insurance,General,The royal 'House of Savoy' ruled which country from 1860 to the end of Word War II?,Italy -Sports & Leisure,In What Context Did Thierry Replace Ian Who Had Previously Replaced Cliff ,Leading Top Scorer for Arsenal ,General,Garuda is the national airline of which far-eastern country,Indonesia,Art & Literature,"A print made by carving on a wood block, which is then inked and printed.",Woodcut -Food & Drink,How many standard bottles of wine are in a Methuselah ,Eight ,General,Small rectangular instrument played by blowing and sucking air through it,Harmonica,Entertainment,Who began his career with 'The Yardbirds' and established himself as one of the best rock guitarists of his generation?,Eric Clapton -General,Country singer vince ____,Gill,General,Cheval-vapeur in France is equal to what in English,Horse power,General,Which country makes panama hats,Ecuador - Geography,What country is Phnom Penh the capital of?,Cambodia,General,What year did Yuri Gagarin become the first human in space,1961,Music,"Who Had A 1984 Hit With The Song ""The Longest Time""",Billy Joel -Sports & Leisure,What Is The First Event In Three Day Eventing ,Dressage ,General,"A gigantic mass of snow and ice, mixed with stones and earth, which falls from the mountains into the valleys is called a ______",Avalanche,General,Radiophobia is the fear of,"Radiation, x-rays" -General,What is the Jack of Hearts holding up in a deck of cards,Leaf,General,What is the name of the ridge seperating two glacial valleys,Arete,General,In Slovenian if you heard Na Mesta Pozor Zdaj what sport,Athletics - Marks set Go -General,Who played the title role in the 'mad max' series of films,Mel gibson,General,Who developed the first jet fighter,Germany,General,What is the Capital of: Saint Pierre and Miquelon,Saint-pierre -Music,Who Was The Reggae Legend Who Died From Cancer In Miami Florida On 11th May 1981,Bob Marley,General,In the Bible the good Samaritan was travelling to where,Jericho,Sports & Leisure,What are large snow bumps known as in skiing terms,Moguls -General,With which instrument is jazz musician Charlie Mingus principally associated,Bass, Geography,What is the capital of Sierra Leone ?,Freetown,General,The dunnock is another name for which common bird,Hedge Sparrow -General,Mary Donaldson was the first woman to hold which post,Lord mayor of london,General,Chrometrophobia is the fear of what,Money,General,"Which East Anglian county shares its name with a city in Virginia, USA",Norfolk -General,What boy scout merit badge is earned most often,First Aid,General,"When It Comes To Flowers Especially Roses, What Colour Is The Rose The Silver Jubilee ?",Pink,General,In 1958 who had a pop music hit with 'willie and the hand jive',Johnny otis -People & Places,What Radio Program Did Roy Plomley Dream Up ,Desert Island Discs ,General,How did Marvin Gaye die,Shot by his father,General,Which author wrote screenplay Bonds You Only Live Twice,Roald Dahl -General,"The creature Hirudo medicinalis was used extensively by doctors, what is it",Leech,General,Who sang 'beauty and the beast',Celine dion,General,In Auburn Washington men can get five years for doing what,Deflowering Virgins -Music,Pink Floyd Featured A Chorus Of Pupils From A North London School For Which Of Their Hits,Another Brick In The Wall,Science & Nature,What is the chemical symbol for radium?,Ra,General,By law in Boston what is banned from the back seat of a car,Gorillas -Science & Nature,Which Model Ferrari Has A Name Which Means Redhead ,Tetarossa ,Science & Nature,What Theory Did Darwin Propose ,Theory Of Evolution ,General,What does a herpetologist study,Reptiles and amphibians -General,"Which Brand Name (Often Seen In The High Street) Get's It's Name From the Finnish For ""Wild Grass""",Timotei,General,What are the three colours on a roulette wheel,"Black, green & red",General,What Was The Name Of The Founder Of The Mcdonalds Chain,Ray Croc -General,Which disease is now known as Hansen's disease,Leprosy,Geography,"What notable geographical feature is shared by Oxford, Reading, Windsor and London? ",The River Thames ,General,What was the trademark of mobile gasoline,Flying red horse -General,"Brilliant red or black mineral, with diamondlike luster, composed of titanium oxide, tio2",Rutile,General,"An ""omniscient"" person has unlimited __________.",Knowledge, History & Holidays,Which quirky brunette was one of the first MTv VJ's? ,Martha Quinn  -General,What Sport Very Popular In The USA Was Created In 1973 After A Discussion By A Group Of Locals In A Pub In Wisborough Green Near Horsham In West Sussex,Lawn Mower Racing,General,Word for slight of hand comes from the French for nimble finger,Prestidigitation,General,In what Australian state would you find Salisbury,South australia -General,"What do Julius Caeser, Ghandi and Trotsky have in common",All assassinated,General,Which metal is the main constituent of Gunmetal?,Copper,Science & Nature,What name is given to a female swan ,Pen  -General,What is the US slang term for formal male evening dress,Monkey Suit,General,What Greek runner of 5 bc is said to have run 241 km in 48 hours to summon help for Athens,Pheidippedes,General,"Born Yaron Cohen, to the dismay of a number of her fellow countrymen, she won which international competition in May 1998",Eurovision song contest -General,Who is gaylord the buzzard's buddy,Broomhilda, History & Holidays,Which nursery rhyme was the first gramophone recording?,Mary Had A Little Lamb,General,What do you call a creature that is going to change into a frog,Tadpole -General,Who played the alien in Predator jumping and climbing scenes,Jean-Claude Van Damme,Music,What is Paul's McCartneys middle name?,Paul,General,"What is 9 metres high, 7 metres wide & 2,500 kilometres long",Great wall of china -General,Victoria is the only Australian state without what,Letter S in name,Science & Nature,Which Colours Are Most Commonly Confused In Colour Blindness ,Red And Green ,General,An algophile loves what,Pain -Entertainment,"Name the band - songs include ""Heart of Glass, The Tide is High""?",Blondie,General,"In the movie ""Rainman"", what was the only airline that Raymond said had never crashed?",Quantas, History & Holidays,"Who Coined The Phrase 'Turn On Tune In, Drop Out'' ",Timothy Leary  -General,Ivan Maugher won six world titles at what sport,Speedway,General,What is the commonest name used in London streets,Victoria,General,In the 1920s what was a Chicago Overcoat,A coffin -Music,"In Which Movie Did Madonna Play The Character ""Gloria Tatlock""",Shanghai Surprise,General,Where would you have found Binky Inky Pinky and Clyde,Pac Man Ghosts,General,What bean is used in the production of chocolate,Cocoa -General,What Bird Lays The Smallest Eggs,Hummingbird,Music,Which Suitable Named Cars Single Re-Entered The Charts In 1985 Reaching No.4,Drive,General,What is the minimum number of degrees in an obtuse angle,91 degrees -General,What was the first film musical based on a Shakespeare play,The boys from Syracuse C of Error,Art & Literature,Painting in which natural scenery is the subject. ,Landscape,Science & Nature,What does a camel store in its hump,Fat -General,What was Dr. Zhivago's first name,Yuri,General,Small polecat used in catching rabbits and rats,Ferret,General,What U.S. state boasts the most gasoline stations,California -General,The Hawaiian alphabet has how many letters,12,General,My Word were the final words of which famous TV character,James Tiberius Kirk,General,Which Country Was The First To Introduce A Driving Test,France -Music,Raymond O Sullivan Changed His Name To Become Who,Gilbert O Sullivan,Science & Nature,Which freezes faster - hot or cold water?,Hot,General,What does 'HTTP' stand for,Hypertext Transfer Protocol -General,Barrel size - what wine barrel size contains 10 gallons,Anker,General,After whom is the month of July named,Julius caesar,General,Who invented crop insurance,Benjamin franklin -General,In 1961 which Henry Mancini record won Grammy record of year,Moon River,Science & Nature,What Is The Name Of The Russian Born US Pioneer In Aircraft Design Who Is Best Known For His Successful Development Of The Helicopter ,Igor Sikorsky ,Science & Nature,What is the meaning of the name of the constellation Cassiopeia ?,Cassiopeia -Music,Name The Album for Kula Shaker Titled After A Single Letter From The Alphabet,K,General,A piece of soft leather from sheep or goats,Chamois,General,Who wrote the song of songs,Solomon -General,"Who recorded the album ""business as usual"" in 1983",Men at work,General,Who were lucy and ricky's next door neighbours and best friends,Fred and, History & Holidays,"In 1959, Tibet was invaded by which country?",China -General,How many days did the first successful trans-atlantic balloon flight take,6 days,General,What product did the first commercial in the USA advertise,Bulova Watches,General,In Germany what can you not wear during a strike,A Mask -General,In 1974 Somalia created its first ever what,Written language,General,Starliters what's the only video game that became a television show,Pac-man,General,No US president has ever been what,An only child - History & Holidays,Who Released The 70's Album Entitled Madman Across the Water ,Elton John ,General,What was the name of the film star Gene Autry's horse,Champion,General,In 1951 the shortest ever lasted 2.5 minutes - shortest what,Boat race Oxford sank -General,The teeth used for biting or cutting are known as _______,Incisors,General,What's Margaret Houlihan's nickname,Hot lips,General,For how much did peter minuit buy manhattan island,24 dollars -General,What can't roosters do if they can't fully extend their necks,Crow,General,What hereditary defect of vision is sex-linked affecting more men than women,Colour blindness,General,"Which Fruit Is A Cross Between A Tangerine, A Grapefruit And An Orange?",An Ugli Fruit -Tech & Video Games,What is the reason behind the layout of the Qwerty keyboard ?,To slow down typing rates,General,What light operas name literally means Honourable Gate,The Mikado,Geography,"From 1835 - 1843 14,000 Dutch Boers Moved Inland To Set Up New Colonies, What Was This Journey Called ",The Great Trek  -General,Which tyre company withdrew from formula 1 at the end of 1986,Pirelli,General,Ray WilkingsWas The First English Player To Be Sent Of In A World Cup Final But Which Country Were England Playing At The Time,Morocco, Geography,What is the basic unit of currency for Singapore ?,Dollar -General,What Is The First Name Of Inspector Morse In The Tv Series,Endeavour, History & Holidays,"Which 60s sex symbol was, in film at least, attacked by anti-bodies ? ",Rachel Welch ,General,What would you do if someone gave you a Twank,Drink it - it's tea -General,"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,General,Who had the motto Non Sans Droit - not without right,William Shakespeare,General,How many calories are there in a glass of water,0 -Entertainment,Who played Dr. Frankenfurter in the pop-culture film 'The Rocky Horror Picture Show?,Tim Curry,General,Who shot J.R. Euing?,Kristin Sheppard,General,How long does it take a fully loaded supertanker to stop from travelling at normal speed,20 minutes -General,The first spaghetti western starring Clint Eastwood was made in what year,1964,General,In which 1974 disaster movie did fireman Steve McQueen need a long ladder,The towering inferno,Sports & Leisure,Hockey: The Vancouver ________.,Canucks -General,"What animal may be stag, rhinoceros or dung",Beetle,General,Where is Kloster beer brewed,Thailand,General,Andy Fletcher Dave Gahan Martin Gore Alan Wilder what group,Depeche Mode -General,What links Steve McQueen Ian Botham Spike Milligan,All called Terence, Geography,Which U.S. city is known as Beantown?,Boston,General,What was used at Wimbledon for the first time in 1971,Tie Break System -General,What was the name of the show that featured Sniglets?,Not Necessarily The News,General,What is cuneiform,Writing system,General,Who wrote the childrens classic 'The Borrowers',Mary norton -General,Baseball: The San Diego _______?,Padres,General,Whose daughter became the wealthiest three year old in 1988,Christina,General,What county first used pepper,China -General,Where on a woman is her J spot,Nape of the neck,General,Which Mediterranean Country Has The “Livre” As It's Basic Unit Of Currency?,Lebanon,General,In what game/sport is the McRobinson shield played for,Croquet - History & Holidays,Who discovered the Grand Canyon?,Francisco Coronado, History & Holidays,"In what country did ""Sepoy Mutiny"" occur",India,General,Name the columnist: 'At Wit's End',Erma Bombeck -General,What is another name for the sport of logrolling,Birling,Music,"Who Had A No.1 With ""She Wears Red Feathers"" In 1952",Guy Mitchell,General,The Kremlin is located in this city?,Moscow -General,Inches who at buckingham palace wears bearskins,Guards,Food & Drink,Which contribution to western tea culture was introduced in New York restaurants in 1908 ,Tea Bags ,Science & Nature,What Is The Most Common UK Bird? ,The Blue Tit  -General,In what modern country is mount Ararat,Turkey,General,Bearbrass founded by John Batman the original name of where,Melbourne,General,For which 1949 film did Anton Karas write and perform the music,The third man -General,What kind of birds are most commonly raced,Pigeons,General,Which dancer found guilty of espionage was shot dead during WWll,Mata hari,Entertainment,Who played Louis in 'Interview With The Vampire'?,Brad Pitt -General,Johan Schober the first president of what organisation in 1923,Interpol,General,Which Australian state capital was named in honour of a British naturalist,Darwin,General,A castrated male reindeer is known as what,Bull -General,How many spots are on a dice,21,Food & Drink,What Is The Origin Of The Word Gammon ,From The French Word For Ham Jambon ,Music,In The 1960's Who Acquired The Nickname Of “The White Queen Of Soul”?,Dusty Springfield -Geography,Name the sea between Asia Minor and Greece.,Aegean,Science & Nature,What Is The Liquid Portion Of Blood Known As ,Plasma ,General,Horse brasses - on dreyhorses - originally what purpose,Charms - ward off evil -General,Florida is often referred to as 'The Sunshine State' what place in Australia also has the same nickname,Queensland,General,Name the NYC club where Blondie and the Ramones got their start?,CBGBs,General,Who directed the 1976 film All The President's Men,Alan j pakula -General,What is the voice box,Larynx,Music,Who sang the theme tune for the James Bond film “Die Another Day”?,Madonna,Art & Literature,"On a represented form, a point of most intense light. ",Highlight -General,What is a nidologist interested in,Birds nests,Toys & Games,"In which sport or game is the term ""rook"" used",Chess,General,What is the proper name for a whale's penis,Dork -General,Which Real Island Famed In Fiction Is Some 25 Miles South Of Elba,Monte Cristo,General,Who played the mother in lost in space,June lockhart,General,Saigon is the capital of ______,South vietnam -General,"What film gave the following hype ""brando sings!""?",Guys & dolls,Music,What Was Frank Sinatra's Middle Name,Albert, History & Holidays,What mistake did Coca-Cola make in 1985? ,New Coke  -General,Inspecting Galvaynes Groove tells you what,Age of horse – it’s on its teeth,General,"In Greek mythology, who ruled over the island of samos",Polycrates,General,Who recorded the song 'Space Oddity',David bowie -General,"ON Tv In 1987 ""Marion Chanter"" Became The First And Only Female To Do What",Win The Krypton Factor,General,What sinatra hit did he dooby dooby do in,Strangers in the night,General,What dam is said the be the largest hydroelectric station in the world,Itaipu -General,How many stitches are on a regulation baseball,108,General,4000 patents for a variation of what issued since first 1838,Mousetrap,Food & Drink,Which TV Chef Shares His Surname With A Popular Holiday Island Populated By Uk Tourists? ,Gary Rhodes  -General,The port of Piraeus serves which European capital,Athens,General,The first Apple Mac hard disk was how big,5 Megabytes,General,Saint Homobonus is the Patron Saint of who,Business People -General,At the end of TVs MASH what character stayed in Korea,Corp Maxwell Klinger,Music,Which Female Singer Had Two No.1 Hits In 1998 At The Age Of Fifteen,Billie,General,Wind speed is measured by a(n)___.,Anemometer -General,What is the name for 100th of a second,A Jiffy,General,What Show did the Simpsons first appear?,The Tracy Ullman Show,General,What animal comes in both spotted and striped varieties,Skunk -General,What was the first US TV series broadcast in the USSR,Daktari,General,What is the capital of Kosovo,Pristina,General,"In fashion, what do the letters 'LBD' mean",Little black dress -General,What appear when the sun activates your melanocytes,Freckles,Science & Nature,Of What Is A Jenny The Female? ,Donkeys ,General,"Where was the movie ""running brave"" filmed",Edmonton -Science & Nature, Ducks will lay eggs only in the __________,Early morning,General,What is the most critical thing keeping bananas fresh transport,Temperature not below 13 C 55F,General,What is a female swan called?,Pen -Geography,The highest temperature ever recorded on Earth was in which country?,Libya,General,What was the name of William Tells son (the apple head boy),Walter,General,Synthetic hormone used to build muscle,Anabolic steroid -General,Sophophobia is the fear of,Learning,General,Who Owns The Worlds Most Valuble Stamp Collection,Queen Elizabeth II,General,Leaflike part of plant growing before flower,Bract -Science & Nature," When thirsty, a camel can swig down 25 gallons of water in less than __________",Three minutes,General,"Which film, directed by Jonathan Demme, won the 1991 Academy Award for Best Picture",Silence of the lambs,General,Why did Disney recall his first celluloid Donald Duck toys,They exploded into flames - History & Holidays,Which artificial fiber was invented in 1938 ?,Nylon,General,Name Leonard Nimoy's autobiography,I am not Spock,Music,"Which Pianist Had Hit Albums In The 1980's With Records Like ""The Music Of Love"", ""The Classic Touch"", & ""The Love Songs Of Andrew Lloyd Webber""",Richard Clayderman -General,What was St. Petersburg called immediately before its name was changed to Leningrad,Petrograd,General,What sea animal looks like a pin cushion,Sea urchin,Entertainment,In the 60s Mokees Song Here comes Tommorow who does Davey Jones say he Loves?,Sandra and Mary -General,Which character did David Jason play in the T.V. series Porridge,Blanco,General,Joni mitchells hit from ladies of the canyon album says what came and took away her old man,Big yellow taxi,General,"What, specifically, won’t Meatloaf do for love",Screw Around -General,"""Vissi D'Arte"" is a famous aria from a Puccini opera in which the eponymous heroine is an opera singer. Name the opera",Tosca,General,George Washington carried a portable what,Sundial,General,What was unusual about Joe Davis the World Snooker Champ,Blind in one eye -General,Around which French town is the champagne industry located,Epernay,General," Rats, mice, beavers, and squirrels are all ________.",Rodent,General,What vegetable has a name that sounds like a letter of the alphabet,Pea -Food & Drink,What type of sweets was American President Ronald Reagan known for having on his desk? ,Jelly-beans ,General,"Who's Autobiography Is Called "" Is It Me""?",Terry Wogan,Music,Glad All Over Was A Hit For Which Five Piece Band In 1963,The Dave Clark Five -Entertainment,What is the drummer's name in 'The Muppet Show'?,Animal,General,"In the nursery rhyme, who ran away when the boys came out to play",Georgie,General,If you committed Vaticide who would you have killed,Prophet -General,"In 'Star Trek', what is Data's rank?",Lieutenant Commander,General,Which great artist and sculptor designed the fortifications when the Florentine Republic was besieged by the Medicis in 1530,Michelangelo,General,What bird is associated with the Tower of London ?,Raven -General,Which new york city building was finished in 1931,Empire state building,General,What do you mix with equal amounts of coffee to make 'cafe au lait',Milk,General,Who wrote 'the starry messenger',Galileo -General,"A painting of which famous Old Testament ruling, completed in 1495, is one of the earliest works by the artist Giorgione",Judgment of solomon,General,Turkish soccer team wich won UEFA Cup in 2000,Galatasaray istanbul,General,After King Henry VIII Died Who Became The Next King Of England,Edward The VI -General,Who broke Bearings bank and inspired the film Rogue Trader,Nick Leason,General,"What are pink, pram, snow, koff, buss, bark and dory types of",Boats or other water craft,General,Erving Inky and Dinky were the nephews of what comic book cat,Felix the cat -General,Who discovered the River Zambezi,David livingstone,General,Charles Conrad took a cassette to the moon on Apollo 11 who,Jerry Lee Lewis,General,The guillotine was invented for chopping off what,Hands -General,Artist Marc Chegal died in 1985 in what country was he born,Russia,General,Which camera company produces the popular 'Sureshot',Canon,General,What was a reeve in a shire,Law -Music,Which Musical Concerned A Strike At The Sleep Tite Factory In Iowa,The Pajama Game (1954),Geography,Name the second largest lake in North America.,Huron,Art & Literature,What Colour Is Art & Literature In The Standard Edition Of 'Trivial Pursuit''? ,Brown  -General,Galahad what woman poet only left her home state of massachusetts once,Emily,General,Hypengyophobia is the fear of,Responsibility,Music,Which Christmas song contains the line “sleigh bells ring are you listening”,Winter Wonderland -General,"Where did Stalin, Churchill, Attlee and Truman meet in 1945 to determine the future of Germany after their unconditional surrender",Potsdam, History & Holidays,What missionary station was built by Albert Schweitzer?,Lambarene,General,"The ""brat"" was a model of which car",Subaru -Art & Literature,How is Samuel Clemens better known ?,Mark Twain,General,What is the name given to young deer,Fawns,General,This Toy is based on a Filipino Hunters Weapon what is it?,Yo Yo -General,On who's show did carol burnett rise to prominence,Gary moore,Music,Name The EP Which Reached No.1 In Fenruary 1980 From The Specials,AKA Live (EP),General,Fill in the blank: chomping at the ____,Bit -General,There are more telephones than people in what city,Washington USA,General,Which authors personal publishing venture is Philtrum Press,Steven King,General,Who was nicknamed The Brocton Bomber,Rocky Marciano -General,What colour are French letter boxes,Yellow,General,What instrument was named after Laurens Hammond,Organ,Entertainment,Which superhero loves peace enough to kill for it,Peacemaker -General,Na is the chemical symbol for which element,Sodium,Music,Which group were all out of love in 1980,Air Supply,General,The art of beautiful handwriting,Calligraphy -General,In film making what is a martini shot,Last of day before pub,Science & Nature,The thylacine (considered extinct) is more commonly know as the?,Tasmanian Tiger,General,The Statue of Liberty arrived in New York City in 1885 aboard what French ship,Isere -General,Caesar Salad originated in which country,Mexico,General,Who was the leader of the khmer rouge,Pol pot,General,Which nation did moshoeshoe found,Basotho -Geography,Khartoum is the capital of which country ,Sudan ,General,What is a group of this animal called: Porpoise,Pod,Geography,More than two_thirds of Earth's land surface lies north of the _____________,Equator - History & Holidays,Christmas Crackers is cockney rhyming slang for which part of the male anatomy? ,Testicles ,General,What is the highest peak in fiji,Mount victoria,General,Which Actress Married Dennis Quaid On Valentines Day In 1991 ,Meg Ryan  -General,What is the fear of the color purple known as,Porphyrophobia,General,Name John Huston's last film,The Dead,General,Archaeologists found 145 what in King Tuts tomb,Loincloths -Science & Nature, The average cod deposits between 4 and 6 million eggs at a single __________,Spawning,General,"Which TV Series Began It's Life With The Working Title ""Woodentop""",The Bill,General,The Pips Of Which Fruit Contain A Minute measure Of Cyandide?,Apples -Geography,What Is Officially The Largest Sea By Area ,South China Sea , History & Holidays,The following is a line from which 1970's film 'you talkin to me' ? ,Taxi Driver ,General,"What common dog breed takes its name from the fact that they were originally bred to hunt a game bird called ""woodcocks""",Cocker spaniels -General,With what is sulphur and saltpetre mixed to make gunpowder,Charcoal,General,"""Harry Wayne Casey"" A Record Store Worker In Miami Florida Formed Which Group In 1973",KC And The Sunshine Band,General,Who was the first golfer to get hole in one on British TV,Tony Jacklin -Music,How Old Was Donny Osmond When He Topped The UK Chart With The Song “Puppy Love”?,Fourteen,Entertainment,What TV network features programming just for children?,Nickelodeon,Music,Who Is The Lead Singer If John Entwistle Is The Bass Player,Roger Daltrey -Music,What Beatles song did Dr. John remake?,Yesterday,Science & Nature,Which isotope of carbon is used for dating (give number) ?,14,Science & Nature, The average adult __________ pig weighs two pounds.,Guinea -General,What was innovative about Co-op winter warmer ale,Labelled in Braille, History & Holidays,How was the 1839-42 Anglo-Chinese war better known ?,The Opium War,Science & Nature," 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 -Sports & Leisure,With which sport is Pele associated ?,Soccer,General,In which country would you find the site of the World War One Battle of Tannenberg,Poland, History & Holidays,"Who was assassinated on November 22, 1963 in Dallas, Texas?",President John F. Kennedy -Art & Literature,In What Work Does The HAL 9000 Appear ,"2001, A Space Odyssey ",Geography,In which continent would you find the ob' river ,Asia ,General,In Victoria Australia by law only electricians may do what,Change a lightbulb -General,"Which BBC TV comedy featured spoof news and current affairs, and introduced Alan Partridge",The day today,General,Ringo Star narrates which children's TV series,Thomas the tank engine,General,"What British royal was dubbed ""fish face"" by his wife",Prince Charles -General,What is a sound called when it bounces back to the person who made it,Echo,General,Which star appears brightest in the northern constellation Lyra -it is also the fourth brightest in the night sky,Vega, Geography,What is the capital of Mozambique ?,Maputo -General,What was a symbol of welcome in the 1700's to 1800's and can often be seen on doorknockers today,Pineapple,General,The Original Hovis Advert (1974) Was Voted The Most Popular Advert Of All Time In 2010 But Who Actually Directed It,Ridley Scott,General,Of which country was Achmed Sukarno president from 1945 - 1962,Indonesia -General,What is the average speed of a running pig,7.5 mph,General,"On German pottery, which factory's mark was from 1724 a pair of crossed swords",Meissen,People & Places,Who was the first ever president of the united states ,John Hanson (1715 - 1783)  -General,"In the film 'the day of the jackal', who played the jackal",Edward fox,General,What was Hoyt Wilhelm's best pitch,Knuckleball,General,What character on TV and film must have sex every 7 years,Mr Spock -General,What is a group of locusts,Plague,General,The US IRS manual gives the plan for collecting taxes after what,Nuclear War,General,A point to which rays of light converge is called a(n) ________,Focus -Music,Name the legendary fourteen hour show that was held at London's Alexandra Palace in 1967?,The 14-Hour Technicolour Dream,General,In what Australian state would you find Stirling,Western australia,Music,"Which Country Artist Starred Alongside John Wayne In The Film ""True Grit""",Glen Campbell -General,What ingredient causes the shine in expensive eye shadow,Fish Scales,General,What is a group of this animal called: Plover,Wing congregation,General,How many miles are there in a league,Three -General,Where would you see sprites blur jets and elves,Thunderstorm electrical discharge,General,What did drinkers first see on Jan 24 1935,Beer Can,General,What would be happening if you suffered from canitis,Greying Hair -General,In English its worth 10 points but in Polish only one what is,Letter Z in scrabble, History & Holidays,In which century was the first pantomime in Britain ,18th (1717) ,General,"Brickbat, Pecorino, Mycella and Tilsiter all types of what",Cheese -General,RCA released the first LP in 1959 without artists name - who,Elvis Presley,General,What was winston churchill's wife's name,Clementine,Science & Nature,What branch of science studies the motion of air and the forces acting on objects in air,Aerodynamics - Geography,What is the basic unit of currency for Hungary ?,Forint,Science & Nature," Each day, 100 or more whales are killed by __________",Fishermen,General,AA Gill a writer for the Sunday Times comments in which field?,Food/Cooking Critic -General,What links the Cassowary Kakapo and the Kagu,Flightless Birds,General,When was the chair developed,2181 bc,General,Where is Landino spoken,Spain by Spanish Hebrew mix -General,Back Blanket and Button Hole types of what,Stitches,Music,What Was The Name Of Spike Jones Comedy Band,The City Slickers,General,"Where would you find a Bonnet, Course, Dabbler and Driver",Ship they are sails -General,Which food was rationed after WW2 ended but not during it,Bread, History & Holidays,In what language was the (Communist Manifesto) by Karl Marx written? ,German ,General,Language derived from Dutch and used in South Africa,Afrikaans -Food & Drink,Which countrys does one associate with the following foods or drinks 'Dum Aloo' ,India ,General,Which king's only legitimate heir was killed in the White Ship disaster?,Henry I,General,"Which Female Singer Named Her First Daughter ""Chastity"" After The Film In Which She Made Her Acting Debut",Chastity -General,Who was the first Chancellor of the German Federal Republic,Konrad adenauer,General,"Whose funeral train traveled from Washington, D.C. to Springfield, Illinois",Abraham lincoln's,General,What is the Capital of: Djibouti,Djibouti -Entertainment,"In the TV series 'Seinfeld', who does Michael Richards play?",Kramer,General,Ontology is the study of what,Being,General,Salvatore A Lombino used Ewan Hunter what famous pen name,Ed McBain -General,In what country is the northernmost point of Africa,Tunisia,Music,What Do The Police Tell Roxanne Not To Put On,The Red Light,General,Which modern day country was formerly known as Dutch East Indies?,Indonesia -General,Who was the greek god of war,Aeries,General,Name first monochrome film converted electronically to colour,Yankee Doodle Dandy,General,"Who was the female lead in ""the deep""",Jacqueline bisset -General,What is a 'somnambulist'?,Sleepwalker,General,Who is the voice of darth vadar,James earl jones,General,What country eats most turkey per capita annually,Israel -General,Field of physics that describes & correlates the physical properties of macroscopic systems of matter & energy,Thermodynamics, History & Holidays,The collective noun for a group of witches is a ____ of witches. ,Covern ,General,What kind of dancer was Mister Bojangles,A Tap Dancer -General,What is the english word for 'fiesta',Festival,General,"Active volcano in the Philippines, in the central part of Luzon?",Mount pinatubo,General,What game was patented under the name Sphairistrike,Lawn Tennis -General,What percentage of Earth's circumference does the Great Wall span,Ten,General,Name the first manned spacecraft to be launched into orbit for the second time.,Columbia,General,In Michigan it is illegal to chain what to a fire hydrant,An Alligator -General,A kamikaze shooter contains Vodka Triple sec and what,Lime juice,General,The song I know him so well comes from what stage musical,Chess,General,What Is The Only American State Where The Legal Age Of Consent Is Just 14,Hawaii - History & Holidays,What food was almost non-existent in Ireland in the 1840's?,Potatoes,General,Where was the Grand National raced three times during World War I?,Gatwick,General,"At funerals in ancient China, when the lid of the coffin was closed, mourners took a few steps backward incase their WHAT got caught in the box?",Shadow -General,Noel Coward gave what director his start on In Which we Serve,David Lean,General,From what country does the Elkhound originate,Norway, Geography,What is the capital of Malta ?,Valletta -People & Places,Who Was William Bonney Better Known As ,Billy The Kid ,General,Europa is a satellite of which planet in the solar system,Jupiter,General,Where was Holmes pal Dr Watson wounded during the war,Shoulder -General,As what was Sir Matthew Baillie Begbie known as in the late 1800's,Hanging judge,Music,Whose debut solo album was called Faith?,George Michael,General,What is the state capital of South Dakota,Pierre - History & Holidays,Who starred in Funny Girl and Lawrence of Arabia? ,Omar Sharif ,General,What is the largest bone in the human body?,Femur,Food & Drink,What is the main constituent of Guacamole? ,Avocado  -General,What is heaven called in the Pilgrims Progress,Celestial city,General,What food item are most people allergic to,Cows Milk,Science & Nature, An elephant may consume 500 pounds of hay and 60 gallons of water in a __________,Single day -General,"In the Bible, Goliath was the champion of which people or tribe",Philistines,General,"Who did the barons Fitzurse, De Tracy, De Morville and Le Breton conspire to murder",Thomas becket,Religion & Mythology,In Greek mythology who did Athena turn into a spider?,Arachne -General,Who was the first thoroughbred horse to win one million dollars,Citation, History & Holidays,What Were (Mulberries)? ,Floating Harbours Used On D-Day,General,What is the most common sexually transmitted disease in USA,Herpes -General,"In 1938, Pearl S. Buck became the first American woman to be awarded what international honour",Nobel literature prize,General,Which Cornish town lends its name to the second largest city on the island of Tasmania?,Launceston,General,What kind of sword did Thundar the Barbarian have?,A Sun Sword -Food & Drink,"Which soft drink was invented by the Nicholls family of Wythenshawe, near Manchester, during the 1900's and is sold in both still and sparkling forms? ",Vimto ,General,A type of windsurfing board that is less stable but faster than the standard one,Funboard,General,The human body contains enough phosphorous to make ______,"2,200 match heads" - Geography,What is the basic unit of currency for Austria ?,Schilling,General,Which US comapny makes the most profit per second??,Ford,General,"Which comedian, born in 1893, was 'The man who found the Lost Chord'",Jimmy durante -General,What is the Capital of: Liechtenstein,Vaduz,General,In 1986 Which Film Was Nominated For A Staggering 11 Oscars And Never Won A Damn Thing,The Colour Purple,Music,"Which Famous Album Included The Tracks ""Maxwell's Silver Hammer"" & Carry The Weight",Abbey Road -General,Which singer married Renate Blauel on Valentine's Day 1984? The same year that Watford reached the FA cup final ,Elton John ,General,Where is fujiyama,Japan,General,Who was the mother of King John,Eleanor of aquitaine -General,Which is the largest of the Greek islands,"Crete,",General,Fill in the blank: ____ maids all in a row,Pretty,General,"In the galapagos islands, what has an upturned shell at its neck",Tortoise -Entertainment,What is a Hurdy-Gurdy?,A Fiddle, History & Holidays,Who Released The 70's Album Entitled Transformer ,Lou Reed ,General,Any of the non-metallic elements which forma salt when combined with a metal,Halogen -General,What is the name of the main European broadcasting system,Pal,Music,What Was Film Star Lee Marvins UK Chart Success,Wand'rin Star,General,What was invented over 3000 years ago that is now considered the first 'computer',Abacus -Art & Literature,Who Was Samuel Clemens Better Known As ,Mark Twain ,General,In the Beverly Hillbillies what did Jethro get Jed for his birthday,Electric Pencil sharpener,General,What international rugby team perform The Hakka before match,All Blacks - History & Holidays,"If you kiss someone under the mistletoe, what should you then remove ",One of the berries (for good luck) ,General,A legendary or moral tale,Fable,General,What is a Hindi in Turkey,A Turkey -Music,Which Of Carol Kings Songs Gave James Taylor A Big Hit In 1971,You've Got A Friend,General,What was the first name of Mr. Valentine who had a 1954 number 1 hit with `Finger of Suspicion' ,Dickie ,General,A condition characterized by self-absorption and withdrawal,Autism -General,Who did Michael Caine play in the Ipcress File (both names) ,Harry Palmer, History & Holidays,"""The words """"Myrrh is mine, its bitter perfume breathes of life, of gathering gloom___"""" come from which Christmas carol?"" ",We Three Kings of Orient Are ,General,Speedy Gonzales was fastest mouse in Mexico who slowest,Slowpoke Rodriquez - Geography,What is the capital of Wyoming?,Cheyenne,General,Munich hosted the Olympic games in which year,1972,General,What is a malamute,Eskimo dog -Science & Nature,If You Studied Histology What Would You Be Involved In ,Cells ,General,Who owned a cat called Apollinaris,Mark Twain,General,Sudden overthrow of government,Coup d'etat -General,Which of the brightest stars is furthest north,Capella,General,Who created the TV series - The man from UNCLE,Ian Fleming,Science & Nature,What colour identifies an ordinary diesel pump at a service station? ,Black  -General,Six ounces of what contains the minimum daily requirement for vitamin c,Orange juice,General,On what scale are there 180 degrees between freezing point & boiling point,Fahrenheit scale,General,What does a Bedouin use an agal to secure,Head cloth -General,"What links Samuel Delaney, Fredrick Pohl, Harlan Ellison",Science Fiction,General,"Seven Dwarfs Hammer, anvil, and stirrup are parts of the ______.",Ear, History & Holidays,Which mother and daughter both appeared in John Carpenters The Fog ,Jamie Lee Curtis / Janet leigh  -General,What's the largest alluvial flood plain in the U.S.,Mississippi delta the mississippi delta,General,What's the capital of Vermont,Montpelier,Geography,He invented the most common projection for world maps. ,Mercator  -General,Moses 10 plagues on Egypt - what was the fourth,Flies,General,Who owns The Oval cricket ground,Prince Charles,Science & Nature," An __________, despite its ponderous appearance, can reach speeds up to 25 miles per hours on an open stretch.",Elephant -General,In what sport would you find a coffin,Cross country riding it’s a fence,General,Which novel opens and closes with the letters of Robert Walton,Frankenstein,General,What's the capital of kentucky,Frankfort -Science & Nature," Because its eyeball is fixed, the __________ must move its huge body to shift its line of sight.",Whale,Music,What time did the Everly Brothers' Wake Up Little Susie,Four a.m.,General,What was mussogorsky's first name,Modest -General,The quokka is a member of which animal family,Wallaby,General,Which Film Won An Oscar For Best Makeup In 1992,Bram Stokers Dracula,General,Who saught to create The Great Society,Lyndon johnson -General,"______________________________ 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, History & Holidays,"What black muslim leader was assassinated on feb. 21, 1965 ",Malcolm x , History & Holidays,Peter Jackson Is Responsible For Directing Which Famous Trilogy ,Lord Of The Rings  -General,Of the seven colours of the rainbow which is the middle one,Green,General,What Was The First Man Made Object To Move Faster Than Sound,A Whip,General,99% of India's Truck Drivers can't do what,Read Road Signs -General,Who was anatasia and drizella's stepsister,Cinderella,General,If you were performing a fillip what are you doing,Snapping Fingers,General,The word bank comes from the Italian banco - literal meaning what,Bench – where moneylender sat -General,What type of solution is made when a base dissolves in water,Alkaline,Entertainment,"Who played Scarlette O'Hara in ""Gone With the Wind""?",Vivien Leigh,Geography,The two Canadian provinces that are landlocked are __________ and Saskatchewan.,Alberta -General,Melvin R Bissell invented what in 1876 in the USA,Carpet Sweeper,Science & Nature,Which Road Runs From Alaska To Chile ,The Pan American Highway ,General,Which film begins Friday December 11th 2.43pm,Psycho -General,What does Karaoke literally mean,Empty Orchestra,Music,At Which Summer Event In 2000 Did Christina Aguilara Make Her Life UK Debut,London Party In The Park,General,What state has the most workers employed by the travel & tourism industry,California -Sports & Leisure,At Which Sport Was Hungarian Victor Barna World Singles Champion 5 Times ,Table Tennis ,General,What company pioneered floppy discs,IBM,General,What shape is Fusilli pasta,Corkscrews -General,What is the atomic number for thalium,81, History & Holidays,"Name the remake of a 1960's film with the aid of the following actors. The first actor was in the 60's original, the second actor played the same role in the remake David Niven and Daniel Craig ",Casino Royale ,General,Baghdad is the capital of ______,Iraq -General,"On Different Strokes,who got kidnapped?",Sam,General,Which us state has the fewest gas stations,Alaska,Music,"Who Was ""Walkin In The Rain"" With The One I Love",Love Unlimited -Music,What Do The Lyrics In The 1st Line Of The Elvis Presley Song “Blue Suede Shoes” Add Up To,6,General,Hovercrafts can be described as A.C.V.s. For what do the letters A.C.V. stand,Air cushion vehicle,Entertainment,"What kind of creature was Chewbacca in ""Star Wars""?",Wookiee -General,Who designed the steam engines Flying Scotsman and Mallard,Sir nigel gresley,Music,With Which Group Do You Mostly Associate Jimmy Paige & Robert Plant,Led Zeppelin,General,What is the flower that stands for: pretension,Spiked willow herb -General,What large animal has a less than two inch erect penis,Gorilla,General,Who composed the Illiad,Homer,General,The character Marion Crane died in what film,Psycho in the shower -Science & Nature,What Is Diazepam Better Known As ,Valium ,General,What is the smallest time interval,A picosecond picosecond,General,Who died in 1821 from arsenic poisoning from the wallpaper,Napoleon Bonaparte -Entertainment,"Name the band - songs include ""Forgiven Not Forgotten, Runaway""?",The Coors, History & Holidays,Queen Cleopatra proclaimed herself to be which Egyptian goddess?,Isis,General,The Necromancer in The Hobbit became who in later works,Sauron -Entertainment,Group of heroes led by Dick Grayson,New titans,Science & Nature,What is Cytology the study of?,The Structure of Cells,General,What Individual Has Won The Most Oscars Ever?,Walt Disney -General,Indiana jones: name the second challenge,Word of god,General,What hill lies to the north-west of the Acropolis in Athens,Areopagus,General,Which people are known in their own language as Saami,Lapps -General,Which city is served by Schwekat airport,Vienna,General,President Roosevelt was the first president to do what,Fly 1943 secret trip Casablanca,Music,What Hit Song Did Aerosmith Team Up With Run DMC For,Walk This Way -General,Romanian comunist president shot in december 1989,Nicolae ceausescu, Geography,In what country is Banff National Park?,Canada,General,What colour is the flesh of the Charentais melon,Orange -General,Famous book divided into three parts Mosques Caves Temples,Passage to India,General,BCG vaccine is used against which infectious disease,Tuberculosis,Music,"Name Four Of The Five Original Members Of ""Take That""","Gary Barlow, Howard Donald, Jason Orange, Mark Owen, Robbie Williams" -General,Which English composer wrote a Sea symphony,Ralph Vaughan Williams,General,What are animals that live in tree called,Arboreal,General,"Who portrayed eliza doolittle in broadway's original ""my fair lady""",Julie -General,Who Is The Only Boxer To Win More Heavyweight Title Fights That Muhammed Ali,Joe Louis,General,"What was the name of the owner of the talking horse, Mr. Ed on TV",Wilbur post,General,Which Romantic Movie Had The Tagline 'Can two friends sleep together and still love each other in the morning' ,When Harry Met Sally  -Food & Drink,Which Brand Of Pizza Was Also The Title Of A 1990 Movie ,Goodfellas ,General,Who strangled two snakes that attacked him & his brother in their cradle,Hercules,General,Which Modern Day Female Pop Star Released The Album “Alright Still ”,Lily Allen -General,Alopecia meaning baldness comes from Greek word for what,Fox - Mange = Bald,General,"A herb or drug described as 'diaphoretic', causes what condition",Perspiration,Music,"What Nationality Was Sylvia Who Had A 1974 Hit With ""Y Viva Espania""",Swedish -General,BA British Airways AA American Airways what is AI,Air India,General,"Which cathedral city, sixty miles from Paris, has two spires",Chartres,General,"In 'the wizard of oz', where did dorothy live",Kansas -Entertainment,"Which actor said, ""Love means never having to say you're sorry""?",Ryan O'Neil,General,Who was banned from writing USA Constitution - secret Jokes,Benjamin Franklin,General,What is a chief of the algonquian confederation,Sachem - Geography,What is the basic unit of currency for Kuwait ?,Dinar,General,I'm Gonna Be'(500 miles) was a hit for who,The proclaimers,Science & Nature, __________ for most snakes is accomplished with one lung only. The left lung is either greatly reduced in size or missing completely.,Breathing -General,Rome is the capital of ______,Italy,General,What are the only two london boroughs that start with the letter 'e'?,Ealing and Enfield,Music,Which Celebrity Named Their First Child Brooklyn,David & Victoria Beckham -General,What is another name for a spiny anteate,Echidna, History & Holidays,"""In the Christmas song 'Have Yourself A Merry Little Christmas' what """"will be out of sight"""" ? "" ",Troubles ,Art & Literature,Who Designed The Album Sleeve For The Rolling Stones LP (Sticky Fingers) ,Andy Warhol  -General,Which dog was originally bred by a tax collector in Germany for protection on his rounds,Doberman,General, The study of sound is ________.,Acoustics,General,What did the license plate on the Delorean in Back To The Future spell out?,OUTATIME -General,Where was the worlds first supermarket built (country),France,General,"Who, in 1902, made the first million selling record",Enrico caruso,General,4% of women never do what according to survey,Wear Underwear -General,What is the general designation for the period in English history from 1640 to 1660,English Revolution,Music,"Which Keyboard Player Had An ""Arkestra"" & Claimed To Have Come From Another Planet",Sun Ra,Music,"In The Beatles Track ""Lucy In The Sky With Diamonds"", what were the colors of the Celophane Flowers?",Yellow and Green -General,The cecum is the pouch at the beginning of the..,Large intestine,Science & Nature,What Is The World's Largest Mammel? ,The Blue Whale ,General,What is a male swine called (no ex boyfriends names___),Boar -General,In Greek mythology who was the son of Hypnos God of sleep,Morphious - God of dreams,General,Taurophobia is a fear of ______,Bulls, Language,"Which word means ""profound boredom"" in both french and english?",Ennui -General,Admiral Horatio Nelson lost his arm at which battle,Tenerife,General,Starting the engine of a car by bypassing the ignition switch,Hot-wire,General,"Whose last words were reportedly, 'I shall hear in heaven!'",Beethoven -Food & Drink,What Is The Alcoholic Ingredient In A Bloody Mary ,Vodka ,General,"Which Long Running Tv Show Screened It's Final Episode In 1983 And Was Entitled ""Goodbye, Farewell & Amen""",MASH,Entertainment,"She played Lois Lane in the 1978 film version of ""Superman"".",Margot Kidder -Science & Nature," Cattle branding was practiced 4,000 years ago. Old tomb paintings show __________ branding their fat, spotted cattle.",Egyptians,General,What is a group of hawks spiralling in flight,Boil,Science & Nature,Which Country Is The Worlds Main Supplier Of Teak ,Burma (Myanmar)  -General,What was thailand formerly known as,Siam,General,What is the second largest ocean,Atlantic ocean,General,Where Are You Most Likely To Find A Tittle,"The Dot Above The Letter ""i""" -General,What is the branch of theology which concerns itself with the grounds and defense of the christian faith,Apologetics,General,Who was captured and kept in a cage by Stromboli,Pinocchio,Science & Nature,Who invented dynamite?,Alfred Nobel -General,What is the state capital of New York,Albany,General,What is the young of this animal called: Salmon,Parr smolt grilse,General,What was the Soviet Vostok 3 space flight the first to do,Send back TV pictures -General,Sharp pointed projection on a plant,Thorn,General,What is the name of the stretch of water that separates Iceland and Greenland,Denmark strait,Food & Drink,What berries give gin its flavour ,Juniper Berries  -General,The Marino sheep originated in what country,Spain,Science & Nature," 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, History & Holidays,Who discovered the tomb of Tutankhamen?,Howard Carter -General,"If you were waiting in Yonkers, in which U.S. state would you be",New york,General,What sporting trophy is named after the US sec of war 1920s,Davis Cup – Dwight Filley Davis,General,"In The Back To The Future Movie Trilogy Doc Brown Had A Dog Called Einstein In 1985, But What Was The Name Of His Dog In 1995",Copernicus -Music,Better Known Down On The FarmWho Took The Starring Roll In Grease In 1997,Ian Kelsey,General,Which car company makes the 'Avensis',Toyota,General,Who composed the opera buffo The Golden Cockerel in 1909,Rimsky-korsakov - History & Holidays,With Which War Is Florence Nightingale Associated ,Crimean ,General,Whose last words were 'thus with a kiss i die',Romeo,General,What book translates as My Struggle,Mein Kampf -General,Fax is short for which word,Facsimile, History & Holidays,February 6th 1958 saw a plane carrying Manchester United home from a match in Belgrade crash during take-off at which city's airport ,Munich ,General,"The film ""The Innocents"" was based on which Henry James story",The turn of the screw -Music,Will Smith Is Better Known As Who,The Fresh Prince,Geography,In which country is Madras,India,General,Modern Olympics - only Greece and which country in all,Australia -General,In which American state is Baltimore,Maryland,General,Who wrote man and superman,George bernard shaw, History & Holidays,"In a 60s film, who was the bravest of them all ? ",The Man Who Shot Liberty Valance (Gene Pitney)  -General,The first person to swim the English Channel did so in what year,1875,General,Philip Glass wrote an opera about which famous person,Albert Einstein,Geography,In Which Country Is The Bridge Over The River Kwai ,Burma (Myanmar)  -General,What is the Capital of: Fiji,Suva,Science & Nature,What non-working stingless bee mates with the queen ,A drone ,Entertainment,In which movie did Bruce Willis play the role of Corben Dallas?,The Fifth Element -General,What is a group of elks called,Gang,General,A beating movement of the legs.,Battement,General,Canada is seperated on an imaginary line along the ______,49th parallel -Music,The Presenters Of The Classic Saturday Morning Show Swap Shop Released A Single But What Was The Name Of The Band,Brown Sauce,General,Where would you find a Terret,Dogs Collar – ring lead fits on,General,What was David Shepherd's position before he became Bishop of Liverpool,Bishop of woolwich -General,What fruit family do almonds belong?,Peach,General,"Which crosby, stills, and nash's debut album included a song about a girl and the colour of her eyes",Sweet judy blue eyes,General,Horseradish sauce originated in which country,Japan -General,This vegetable is a variety of broccoli,Calabrese,General,As Of 2008 Who Is The Only Prime Minister To Die At No.10 Downing Street,Henry Campbell Bannerman (Lib),General,International aircraft registration letters what country is PP or PT,Brazil -Music,"Who Sang About ""The King Of Rock & Roll"" In 1988",Prefab Sprout,General,"Of what are Raucous, Spadefoot or Bounties Dwarf types",Toads,Science & Nature,This ugly creature has patches of red on his rear_end.,Mandrill -General,In mythology the fountain Aganippe was famous to whom,Muses,General,What's the main boulevard of paris,Champs elysee,Music,How Are Ed Symonds And Tom Rowlands Better Known,The Chemical Brothers -General,In 1954 Girls Names Were First Applied To And Used To Identify What,Hurricanes,General,Where was atahualpa king,Peru,General,"Who said ""I've no problem with drugs - only policemen""",Keith Richard -General,"In What Famous Event In World History Did ""Thomas Farynor"" Play A Fundmental Role",The Great Fire Of London (Baker),General,Which types of wood are most often used for firewood in the home,Hardwood,General,"Who wrote the book ""Outwitting The Gestapo""",Lucie aubrac -General,A herb or drug described as 'haemostatic' performs which effect,Stops bleeding, History & Holidays,What was the inexpensive designer watch of choice amongst teenagers during the eighties? ,Swatch ,Music,Which British Dance Act Was Master Minded By Jazzy B & Nellee Hooper,Soul II Soul -General,To coat metal with a protective layer by electrolysis,Anodize,General,What is the largest inhabited castle in the world?,Windsor Castle,Science & Nature,This animal is the symbol of the U.S. Republican Party.,Elephant -General,"What group drove ""drive"" into the top five",Cars,General,What is the fear of being contagious known as,Tapinophobia,General,In which city is the worlds busiest MacDonald's,Moscow -General,A nudist is Spain fined £65 - £60 for being nude and £5 for what,Having no ID papers,General,Who Penned The Autobiography “Wrinkles And All” ?,Kathy Staff,Music,"Who Found Chart Success With ""Rock My Heart""",Haddaway -General,Which American state is called 'The Silver State',Nevada,General,The highest man-made temperature was ___. million degrees Celsius?,70,Music,After Singing The Praises Of Muhammad Ali Who Then Found Himself In Zaire,Johnny Wakelin -General,What is a 'california long white',Potato,General,"What group did ""louie louie""",Kingsmen,General,An American in Maine got a divorce cos wife fed him only what,Pea Soup -General,Which gestalt entity produced the cult TV show Red Dwarf ?,"(Grant( &| and|,)? Naylor|Naylor( &|and|,) Grant)", History & Holidays,What is the nickname of oklahoma ,Sooner state ,Music,Which Charity Single Was A UK Number One Hit For “Various Artists” In 1997?,Perfect Day -General,What is the nickname for Alaska,Land of the midnight sun,General,And who was commissioned to rebuild them,Sir Christopher Wren,General,What is the state capital of South Australia,Adelaide -Entertainment,"This was the sequel to ""The Empire Strikes Back"".",Return of the Jedi,General,In Peter and the Wolf what instrument represents the duck,The Oboe,General,This instrument measures the velocity of the wind.,Anemometer -General,1980 Pac Man was released arcade version by which company,Midway,General,"Dog Breeds: This small, sausage shaped dog was bred to hunt small underground mammals in their dens.",Dachsund,General,What is the fear of crosses or the crucifix known as,Staurophobia -General,BaseBall: The Texas _______,Rangers,General,Which australian duo took 13 nominations and 10 wins at the aria awards,Savage garden,General,A cappella is unaccompanied singing but what it literally mean,In the style of the chapel -People & Places,Where is the comemoration statue of fictional character Sherlock holems?,"Baker Street, london", History & Holidays,Name The Slave Who Lead An Unsuccessful Revolt By The Gladiators Against Rome? ,Spartacus ,People & Places,Who Was Born And Also Died During Halley's Comet Passing ? ,MArk Twain  -General,Jack Palance won best supporting actor Oscar in what 1991 film,City Slickers, Geography,What is the capital of Italy?,Rome,Geography,On what island is Honolulu,Oahu -General,Which canadian province has the largest population,Ontario,General,Charles Atlas promised to make you a new man - what system,Dynamic Tension,General,Harold J Smith a Canadian changed name famed as sidekick,Jay Silverheels Tonto -General,Apparatus or specially constructed chamber for maintaining living organisms in an environment that encourages growth,Incubator,General,Name Frank Sinatra's Yacht,My Way Again,General,What was jack nicklaus' nickname,Golden bear -Art & Literature,What Is Tthe Ballet Term For Spinning On One Foot ,A Piroutte ,Sports & Leisure,Other Than The Epee & Foil What Other Weapon Is Used In Fencing ,The Sabre ,General,What Japanese name means fried food often at the table,Tempura -Music,Who recorded 'Cuts Like a Knife' in 1983?,Bryan Adams,General,What do homodonts have that hetrodonts don’t,Same shaped teeth,General,Farina is Italian for what,Flour -General,Who was the only English King crowned on the battlefield,Henry VII,General,Who sang 'ben',Michael jackson,Food & Drink,In Which City Was Chop Suey Invented? ,San Francisco  -General," The science of providing men, equipment and supplies for military operations is called ___________.",Logistics,General,Which American city is served by Dulles Airport,Washington d c,General,What is the highest French civil decoration awarded,Legion de Honour -Science & Nature,Which Bird Has The Largest Wingspan? ,The Albatross ,General,In Greek legend what was Pygmalion's kingdom,Cyprus, History & Holidays,Whats the resting place of those buried at sea ,Davey jones locker  - Geography,What American state has a Thames river?,Connecticut,General,In computing there are 8 bits to a byte what are 4 bits called,Nibble,Entertainment,Secret Identities: Arthur Curry,Aquaman -Art & Literature,Which Character Created By Dodie Smith Drove A Black & White Car & Wore A Black & White Fur Coat? ,Cruella De Vil ,General,What colour is grover,Blue,General,Calgary University offers a two day course in what,Igloo Building -General,Mageiricophobia is a fear of what,Having to cook,General,Golden and Argus are varieties of what bird,Pheasant,Food & Drink,Italian egg-shaped tomatoes are named after which fruit? ,Plum  -Science & Nature,How is german measles also known ?,Rubella,General,Nekal was the first type of what product (Germany 1917),Detergent,General,Where is the Cape of Good Hope,"Cape town, south africa" -General,"In which musical was the song ""I remember it well""",Gigi,General,Where would you find a porcelator,Sink - it’s the top drainhole,General,In which TV series did Michael Douglas first make his mark,The streets of san francisco -General,How many engines does the saturn rocket boast,Eight,Science & Nature,Which Cartoon Family Have A Pet Dinosaur Called Dino ,The Flintstones ,General,What type of bomb was invented by Sir Barnes Wallis,Bouncing bomb -General,Dr David Hessian 2nd Catherine Cookson what type his books,Gardening,General,Who got best actor award for the character Charlie Allnut,Bogart - The African Queen 1951,General,74% of American women say what is biggest dating turn off,Swearing – Foul Language -General,The Demologos was the first steam powered what,Warship,General,What kind of fruit is a kumquat,Small Orange,General,"What author penned such books as ""Mila 18"", ""Trinity"" & ""Exodus""",Leon uris -General,Since 1991 Crufts London dog show has been held where,Birmingham NEC,General,What is a harness racer's vehicle called,Sulky,Music,"Which Which Instrument Would You Associate Tommy Dorsey, Glen Miller & Trummy Young",Trombone -General,What is the chemical formula for water,H2o,General,As what is the glue on israeli postage stamps certified,Kosher,Art & 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 -General,What name is given to the crater at the top of a volcano caused by its collapse,Caldera,General,Who was the runner up in the 1979 Le Mans 24 hour race,Paul Newman,General,Who is Dick Tracy's sweetheart,Tess trueheart -General,What airport has the code MME,Marseilles,General,"In Greek mythology, alcemene was the child of ______",Heracles,Geography,What Is The World's Most Northerly Capital City? ,Reykjavik ( Iceland )  - Geography,What is the capital of Turkey ?,Ankara,Art & Literature,"Which Writer , Archaeologist & Soldier Joined The RAF After The First World War & Changed His Name To Shaw In 1927 ",T E Lawrence ,General,What is the sacred animal of Thailand,White Elephant -General,What does an otologist study,Ears,General,"What movie had the line ""We're on a mission from God""",The Blues Brothers,Food & Drink,The Turkish dish of small pieces of meat and vegetables cooked on a skewer? ,Shish Kebab  -General,"A health profession concerned with the prevention, diagnosis, & treatment of disorders of the teeth & adjacent tissues of the head, neck, & mouth",Dentistry,General,What animal - faster horse - longer no h20 camel - see behind,Giraffe,General,The balboa is the unit of currancy in which country,Panama - Geography,What is the capital of Malawi ?,Lilongwe,General,What is the world's largest rodent,Capybara,General,What would you do with a nan prick in Thailand,Eat it - It’s a hot sauce -Music,"Who Had A Hit With ""Jacobs Ladder""",Huey Lewis & The News,General,When was the worlds first human heart transplant performed,1967,General,What are the height and width of a horse measured in ?,Hands -General,As what is California also known,Golden state,General,In what Australian state would you find Devonport,Tasmania,Music,"Who Had An Early 90's Hit With ""Things That Make You Go Hmmm""",C & C Music Factory -General,A young dogs a pup what's the correct name for a young skunk,A kit or kitten,General,What Country Has Won The Worlds Strongest Man Competition The Most Times,Iceland,General,What flavour is kirshwasser liqueur,Cherry -Music,On Which Label Did Oasis Rise To Fame,Creation,General,Rich blue-veined Italian cheese,Gorgonzola,General,Who wrote 'the rose tattoo',Tennessee williams -Music,Who replaced Ronnie James Dio in Black Sabbath?,Ian Gillan,General,For what would an Edgar be awarded or won,Mystery Writing,General,As who is Vincent Furnier known,Alice Cooper -General,Who composed the opera Turendot,Giacomo Puccini,General,Who was the first golfer to officially earn over $1 million a year,Curtis Strange,General,Which film won the oscar for best picture in 1987,The last emperor -General,Who was dingaan's predecessor,Shaka,General,If a dish is served Florentine what will it contain,Spinach,Science & Nature,Who Invented The Steam Engine ,James Watt  - History & Holidays,For which label did Elvis first record? ,Sun Records ,Music,"Who Had Minor Hits With ""Wasteland"" & ""Tower Of Strength""",The Mission,General,What was the name of Isaac Newton's dog - caused fire in lab,Diamond -General,In Omaha Parents can be arrested if child does what in church,Burps,Science & Nature,Dugongs & Manatees Belong To Which Family Of Animals ,Sirenia Or Sea Cows ,General,Israel's equivalent to the dollar is the ______?,Shekel -General,What do zoologists call the leader of a wolf pack,The alpha male,Geography,What is the capital of United Kingdom,London,General,Who won the Eurovision song contest with Jack in a Box,Clodagh Rogers -Music,"Who Co Wrote The Band Aid Single ""Do They Know It's Chrismas""",Bob Geldof & Midge Ure,General,Where is the oldest brewery in the u.s,"Pottsville, pennsylvania", History & Holidays,Which Michael Jackson song Was Christmas Number One In 1995 ,Earth Song  - History & Holidays,Which Horror Film Star Was Portrayed In An Oscar Winning Performance By Martin Landau In Tim Burtons 1994 Film About Cult Filmaker Ed- Wood ,Bella Logosi ,General,What 1988 movie reunited william hurt and kathleen turner,Accidental tourist,General,There are one what for every 6 people in Canada,River - History & Holidays,"""When are the '12 Days of Christmas'? """"Dec 14th - Dec 25th) - (Dec 21-Jan 1) - (Dec 26 - Jan 6) - (Christmas Eve-Jan 4th) "" ",(Dec 26 - Jan 6) , History & Holidays,How many countries joined the United Nations at it's start ?,51,General,"What Sudanese city's name means ""elephant trunk""",Khartoum -General,Which star of films such as 'Ryan's Daughter' died in 1997,Robert mitchum,Religion & Mythology,Who founded the People's Temple Commune,Jim jones,General,What was the former name of the Chrysler Corporation,Maxwell Motors -General,Who was the female star of Basic Instinct,Sharon Stone,General,Sadat what athlete released the photo book rare air in 1993,Michael jordan,Geography,What Asian city was once called Edo,Tokyo -General,Which U. S. State provided the title of a Bee Gees hit single,Massachusetts,General,What is the present use of the tobacco factory which features in the opera Carmen,University of seville,General,What are meteors,Falling stars -General,1500 paces was what Roman measurement,League,Science & Nature,Name the largest of the dinosaurs.,Brachiosaurus,Music,All Of Connie Francis's Hit Singles Appeared On One Label Which One,MGM - Geography,Which sea is located between Australia and New Zealand?,Tasman,General,Ab Ovo Latin for the very beginning but what's it literally mean,From the egg,General,This cereal features a honey bee as its mascot (very specific),Honey nut cheerios -General,"The city of Sheffield stands on the River Sheaf; and on which other, major, river",Dublin,General,What is the family name of the Dukes of Bedford,Russell,General,"From Which US State Did Frank Sinatra, Bruce Springsteen And Thomas Edison All Come From",New Jersey -General,In the Bible David played the Kinnor what is a Kinnor,Lyre,Sports & Leisure,What Is The Green Fabric That Covers A Snooker Table Called ,Baize ,General,What is a group of this animal called: Roebuck,Bevy - Geography,Acadia was the original name of which Canadian province?,Nova Scotia,Sports & Leisure,Where were the 1972 Olympics held ?,"Munich, West Germany",Sports & Leisure,Which Former Sports Person Became MP For Falmouth & Cambourne In 1992 ,Sebastian Coe  -General,How much did greta garbo insure her legs for,One million dollars,General,Grilled on a Ploughshare literal meaning what Japanese dish,Sukiyaki,General,Ping Pong and Pang are characters in which opera,Turendot - by Puccini - History & Holidays,What eighties TV show starred Bruce Willis in a detective agency? ,Moonlighting ,Sports & Leisure,How many players are there on a soccer team,Eleven,General,In which building do they elect a new Pope,Sistine Chapel -Sports & Leisure,Football: The Seattle _______.,Seahawks,General,Which drink should be served in a glass called a copita,Sherry,General,What was the title of Madonna's Very first greatest hits album,The Immaculate Collection -General,Odontophobia is the fear of,Teeth dental surgery,General,What English word meaning disaster comes from Italian for flask,Fiasco,General,On which motorway are the Trowell and Woodhall service areas,M1 -General,Which Sport Was Banned In England In 1849,Cock Fighting,General,What is extracted from the ore cinnabar,Mercury,General,What two countries sandwich the Dead Sea,Israel & jordan -People & Places,Who Batted With An Aluminium Bat ,Dennis Lillee ,Sports & Leisure,How Many Players Are There In A Baseball Team ,9 Players ,General,Who wrote 'the birds',Alfred hitchcock -General,On what island is pearl harbor,Oahu,General,What is the correct name for a Hawaiian Goose,Nene,General,From which American state do the Bighorn Mountains arch northwest into southern Montana,Wyoming -General,What kind of surface is tennis' French open tournament played on,Clay,Art & Literature,"Which Famous Book Begins With The Line 'Marley was dead, to begin with. There was no doubt about that' ",A Christmas Carol ,General,Who would use a caret,Printer it’s an insertion mark - Geography,Into which estuary do the Trent and Ouse flow?,Humber,General,Alfred Packer in the USA was convicted of what strange crime,Cannibalism,General,The Greek word meaning The writings of prostitutes now what,Pornography -Sports & Leisure,Who has played in the most consecutive baseball games?,Cal Ripken Jr,General,What do navel oranges lack,Seeds,General,What nationality was first person in space besides US or Russian,Czech – Vladimir Remek Soyuz 28 -General,Selaphobia is the fear of,Light flashes,General,When was the date of the christian festival easter fixed by the council of nicaea,325 ad,Geography,Which City Is The Capital Of Taiwan ,Taipei  -General,Wedding rings are normally worn on what finger of your hand,Ring,General,"In The World Of Music How Are ""Rob Pilatus & Fabrice Morvan"" More Commonly Known",Milli Vanilli,Music,"Which song contains the line “One Dream One Soul, One Prize, One Goal?",A Kind Of Magic (Queen) -General,In Norse mythology women were made from a tree - which tree,Elm,General,Ichthyology is the study of ________.,Fish,Food & Drink,"What colour is pistachio nut, often used in ice cream and confectionery? ",Light Green  -General,75% industrial accidents happen to people who ain't done what,Eaten Breakfast,Music,"What Connects Bob Dylan, Absolutely Fabulous, Julie Driscoll",This Wheels On Fire,General,On average what contains 5 - 7 calories,Single ejaculation -General,Which Suffolk town can boast no fewer than three 15th century perpendicular gothic churches?,Sudbury,General,What is the Capital of: Jamaica,Kingston,General,Which country invented the concentration camp,Britain - Boer war -General,"What word come from the Latin phrase ""to be ashamed of""",Pudenda,General,Butterfly Chisel Lead Pipe Mallet Occult Willow all types of what,Bone Fracture,General,"To the nearest minute, how long does it take for light to travel from the sun to earth",Eight -General,What was steven spielberg's first film,The duel,Science & Nature, Pigeons and hummingbirds have tiny magnetic particles in their heads that respond to the Earth's magnetic fields and are used for __________,Navigation,General,What is the Capital of: French Polynesia,Papeete -General,Which drink does Melanie Sykes advertise on TV,Boddingtons,Science & Nature,"What does ""Ursa Major"" mean in everyday English",Big bear,General,Who created jergens lotion,Andrew jergens -Music,Who recorded the Immaculate Collection?,Madonna,Music,In Which Year Was Culture Clubs Karma Chameleon A Hit,1983,Science & Nature,"To The Nearest 250 Grams, What Is The Weight Of An Average Liver ",1.75kg (4lbs)  -General,Name Alfred Hitchcock's first sound film as director,Blackmail, Geography,What city boasts the Copacabana Beach and Ipanema?,Rio de Janeiro,General,"What vitamin is most commonly added to milk, becasue it is not found in milk naturally",Vitamin d -General,Which Hitchcock film starred Margaret Lockwood and Michael Redgrave,The lady vanishes,General,Elizabeth Bennett is the central character in what novel,Pride and Prejudice,General,"Which British Singers Real Name Is ""Gaynor Hopkins""",Bonnie Tyler -General,What did friar roger bacon invent,Magnifying glass,General,Born Aug 24 to Sept 23 what star sign,Virgo,General,If you had Cynophillia what type of sex turns you on,Sex with dogs -Food & Drink,Complete the classic advertising slogan 'Good Old Bertie Bassett_____'? ,He's Britain's Greatest Asset ,General,From which modern country did the Franks come,Germany,General,"In the film 'jurassic park', in which comical place did someone hide when the t-rex escaped",Toilet -General,Which country saw the Mau Mau uprising,Kenya,Sports & Leisure,What game features the largest ball,Earthball, Geography,What is the capital of Barbados?,Bridgetown -General,Parasitophobia is a fear of ______,Parasites,Music,Bjorn Ulvaeus & Benny Andersson From Pop Supergroup Abba Collaborated With Tim,Chess,General,Chu is the Chinese year of what animal,Boar - Geography,What is the highest peak in Fiji?,Mount Victoria,Music,Name One Of Shirley Basseys Two No.1 Hits,As I love You / Reach For The Stars / Climb Every Mountain,Music,Who Was Ringo Stars first wife?,Maureen Cox -General,Rheoboam is a bottle size but also the last king of where,Israel,General,What does an insect do through its spiracles,Breath,General,Iraq's premier infantry corps,Republican guard -General,What did Captain Matthew Webb swim first?,English Channel,General,Mont Dore is the highest point in which French mountain range,Massif central,General,Jeri Ryan plays what character in the Star Trek series,Seven of nine in Voyager -General, Animals that once existed but don't exist now are said to be ______.,Extinct,General,In medicine what is boric acid used for,Antiseptic, History & Holidays,Which American President Was Assassinated In A Theatre? ,Abraham Lincoln  - History & Holidays,Which Axis Powers In World War II Fought With The Allies In World War I? ,Japan & Italy ,General,The Pacific Ocean accounts for roughly what volume of the world's oceans,Half,Geography,What Was (Ho Chi Minh) City Previously Known As ,Saigon  -General,What golden yellow gem sounds like a fruit related to lemons,Citrine,General,Who wanted 'a new drug',Huey lewis,Science & Nature,Which Shrub Was Introduced To England In 1598 Can Be Used In Cooking & Is Also A Component Of Eau De Cologne ,Rosemary  -Food & Drink,Where Might You Drink The Wine Retsina ,Greece ,Music,"Who had a hit single in 1989 with the song ""We Didn't Start The Fire""?",Billy Joel,General,Moldings and ornamentation projecting from the surface of a wall.,Relief - History & Holidays,"According to some legends, what holiday decorating practice is attributed to spiders? ",Tinsel ,General,What is a jockey's uniform called,Silks,Food & Drink,Saffron Comes From The Stamen Of Which Flower ,Crocus  -Sports & Leisure,Who is Edson Arantes do Nascimento better known as?,Pele,General,Who wrote the musical Porgy and Bess,George gershwin,General,What is the Capital of: Togo,Lome -General,Which Country Used More Condoms Last Year Than Any Other? (2005),Japan, Geography,What is the capital of Thailand ?,Bangkok,General,"Plant with pink, red or white flowers with backward turned leaves",Cyclamen -General,Who steals the Pink Panther in the original film,The Phantom,General,By law every fifth song on Canadian Radio must be what,By a Canadian,Entertainment,Who sings 'Sweet Home Alabama'?,Lynyrd Skynyrd -General,"What is the only river that flows both north and south of the equator, crossing it twice",Congo,General,In Winnie the Pooh what's the name over the door Pooh's house,Mr Sanders,Mathematics,"He is known as ""The Father of Geometry"".",Euclid -Entertainment,The Hard Rock Cafe is named after a song by what band?,The Doors,Music,"""Sense"", ""Pure"", ""Joy"", And ""Happy"" Are All Tracks Taken From Which Lightning Seeds Album",Pure,Food & Drink,"What On A Bottle Of Wine, Is The Punt? ",The Dent On The Base  -General,Tomatillo is a feature in what countries cusine,Mexico,General,What people founded cheese making in England,Romans,Science & Nature,What Is The Largest Plant In The World? ,The Giant Redwood Or California Sequoia  -General,Walrus tusks are made of ________,Ivory, History & Holidays,Which 1972 musical won eight Oscars ? 'divine decadence darling' ,Cabaret ,General,"The small intestine is made up of the duodenum, the jejenum and the ______",Ileum -Music,Which Famous Rapper Was Born Stanley Kirk Burrel In 1962,MC Hammer,General,What was the name of the older brother on Happy Days?,Chuck Cunningham,Entertainment,Benny and Cecil were at odds with whom,John -General,The Titanic has a sister ship - name it,The Olympic,Toys & Games,The object of this card game is to meld sets of 7 or more cards.,Canasta,General,Fast food franchise: Taco ____,Bell -General,The Inquisition forced this person to recant his belief in the Coppernican Theory. Who was he,Galileo,General,3-D that can be seen without glasses is also known as this,Stereoscopic,General,"The four throwing events at the olympics are shotput, discus, javelin & ______",Hammer throw -General,"How In The World Of Music First Discovered On A 2007 Reality TV Show Is ""Vivien Smallwood"" Better Known",The Rapping Granny,General,"In ballet, leaning forward.",Penché,General,Scriptophobia is the fear of,Writing in public -General,Which Hollywood heart throbs real name was Roy Scherer,Rock hudson,General,What ocean is found along the east border of asia,Pacific ocean,General,In which Irish county can you kiss the Blaney stone,Cork -General,How long is a giraffe's tongue,21 inches,Geography,Which element makes up 46.6% of the Earth's crust,Oxygen,General,In Fort Madison Iowa Firemen must do what before attending fire,Practice for 15 minutes -General,Which Car Manufacturer's Name Means I Hear?,Audi, History & Holidays,Whose radio production of War Of The World's caused panic in America in 1938? ,Orson Welles ,General,Where was the worlds first oil well drilled,Pennsylvania -General,Wayne Brazel shot and killed what Western figure in 20th cent,Pat Garret,General,Ursus Artus Horribilus - the Latin name of what creature,Grizzly Bear,General,On What Day Is Easter Celebrated ,Sunday  -Geography,Which borough is northeast of and adjacent to Manhattan? ,The Bronx ,General,The initials pc on a medicine means it should be taken when,After Meals, History & Holidays,In Which Country Is The Auschwitz Concentration Camp Located ,Poland  -Geography,Name the world's most photographed and most climbed mountain.,Fuji,Art & Literature,Who wrote the famous series of Discworld books?,Terry Pratchett,General,In 1998 there were 508 hospital causing injuries what sport,Snooker Pool -General,What is Jane Fonda's middle name,Seymour,General,Who is known as Tuhkimo in Finland,Cinderella,Music,"Who Had A Hit In 1988 With ""Monkey""",George Michael -General,What is the capital of albania,Tirana,General,"Who wrote a series of novels about C.I.A. analyst, Jack Ryan",Tom clancy,General,What fashion did General Ambrose Burnside start in Civil War,Sideburns -General,"In ballet, a closed position of the feet.",Fermé,General,As Of 2010 Which Footballer Holds The Record For The Fastest Hat Trick Scored In The Premiership,Robbie Fowler,Music,Who Worked As An Arranger For Glen Miller & Later Wrote The Scores For The Pink Panther & Breakfast At Tiffany's,Henry Mancini -Science & Nature, __________ communicate in sound waves below the frequency that humans can hear.,Elephants,General,"What's a ""cat-o'-nine-tails""",Whip,General,What is the spanish word for 'festival',Fiesta - History & Holidays,Which 60s film was the true story of Helen Keller ,The Miracle Worker ,Music,Aged 15 Who Had Success In 1964 With Her Version Of An Isley Brothers Track,Lulu,General,What country does China have its longest land border with,Mongolia -General,What have Jan Zajic and Quang Duc got in common,Self Immolation,General,What is the state capital of Nevada,Carson city, Geography,What is the capital of Mali?,Bamako -Sports & Leisure,What Is The Technique Called In Which You Right A Capsized Canoe ,Eskimo Roll , Geography,What is the capital of Guinea-Bissau?,Bissau,General,"Who, in 1990, was the first professional boxer to beat Mike Tyson",James (buster) douglas -Music,"Whose Songs Were Recorded By A Variety Of Artists On The Album ""Red Hot And Blue""",Cole Porter,General,What was the name of the plantation in Gone with the Wind,Tara,Music,Bjork Was Originally A Member Of The Sugarcubes Or Was It The Sugababes,The Sugacubes -General,What links horses rabbits and rats,Cannot Vomit,General,In Natoma Kansas illegal to throw knives at people wearing what,Stripped Shirts,General,Who was president of france's first fifth republic,Charles de gaulle -General,Which Italian city was severely damaged by an earthquake in 1908,Messina,General,What nationality was prince albert,German,General,Name the first car model with transverse engine front wheel drive,Austin Mini -General,What book of the Bible does not mention the name of God,Esther,General,What is the staple food of the Maori people of New Zealand,Sweet Potato,Entertainment,The rolling stones first recorded song was?,Come On -General,The Volga is Europe longest river what is the second longest,Danube,General,In Minnesota its illegal for a woman dressed as what on street,Santa Clause,Geography,"""Oceania"" is a name for the thousands of islands in the central and southern _______________. It is sometimes referred to as the South Seas.",Pacific ocean -General,What is a kissing gourami,Tropical fish,General,The ancient Egyptian word for cat was mau - what does it mean,To see,General,Which European city has the tomb of the three wise men,Cologne -General,Who wrote The female of the species more deadly than the male,Rudyard Kipling,General,Clinton Oklahoma see two having sex in car what's illegal you do,If you Masturbate,General,What type of insect performs a waggle dance,Hive bee -General,Limnology is the study of what,Marshes from Greek,General,What's david bowie son's name,Zowie bowie,General,Name Pink Floyds only single,Oranges and Lemons -Music,Who Is Martin Fry Lead Singer With,ABC,General,What Russian city's name translates to 'ruler of the east',Vladivostok, Geography,What is the basic unit of currency for Bahrain ?,Dinar -General,If the vestal virgins were caught having sex what punishment,Burried Alive,General,"Africa's four great rivers Nile, Congo Zambezi and what",Niger,General,"What was the name of the t.v. show with the theme song that began: ""Believe it or not,I'm walking on air___""?",Greatest American Hero - History & Holidays,"Who was, ""First in war, first in peace and first in the hearts of his countrymen""?",George Washington,General,What type of line on a weather map joins places with equal rainfall?,Isohyet,General,What does a soccer player have to do when the referee shows him a red card,Leave the game -General,In which European city are the headquarters of OPEC (Organisation of Petroleum Exporting Countries),Vienna,General,What is a hot spring that shoots steam into the air,Geyser, History & Holidays,Which Christmas carol contains the lines 'O Tidings of Comfort and Joy ,God Rest Ye Merry Gentlemen  -Art & Literature,Who was the author of 'Dracula'?,Bram Stoker, Geography,What is the capital of Iowa?,Des Moines,Entertainment,Who plays the lead role in The Usual Suspects?,Kevin Spacey -General,Measure for Measure deals with what contemporary theme,Angelo harasses Isabella sexually,General,What was the only remake to win the best picture Oscar,Ben Hur,General,What serious umderwater ailment was named after a Victorian notion of chic posture,The bends bends -Music,Which Teen Idol First Found Success In The Partidge Family,David Cassidy, History & Holidays,Through the streets of what town did Lady Godiva ride naked?,Coventry,General,Where was the canning process for fish first developed,Sardinia -General,UK group who had a hit with 'House of the Rising Sun',Animals,General,Near what river is the temple of karnak,Nile,General,"Name the American President assassinated in 1901 in Buffalo, New York State.",William mckinley -General,"What's the international radio code word for the letter ""M""",Mike,Food & Drink,What is the main ingredient of Sauerkraut? ,Cabbage ,General,Who wrote 'the grinch who stole christmas',Dr seuss -General,If you have Chlorosis what colour does the skin go,Green,General,In which EEC country is abortion still illegal,Ireland,General,"In the TV show ""Scarecrow and Mrs King"", what is Mrs King's first name",Amanda -Sports & Leisure,Dwight York & Jimmy Floyd Hasselbaink Were Two Foreign Players Who Were First To Score 100 Goals In the English Premiership Who Was The Third? ,Thierry Henry ,General,Insectophobia is the fear of,Insects,General,What was banned in US movie theatres in the 1920s,Popcorn - too noisy -General,"What film gave the following hype ""brando sings!""",Guys and dolls,General,In what US City is most blond hair dye sold,Dallas Texas,General,What was the first million dollar seller paperback,I the Jury – Mickey Spillane -General,Over 90% of the worlds total population of what gone since 1970,Rhinoceros,General,In LA by law you can't hunt what at night in streetlight,Moths,General,"What is the title of Peter Shaffer's play about Mozart, also made into a film",Amadeus -Music,Who Is The Author Of High Fidelity A Tale Set In An 80's Record Store,Nick Hornby,General,Horse statue - mounted man - on two legs - how man die,Killed in Battle,Science & Nature,"From what animal is ""ambergis"" obtained?",Sperm whale -General,What eponymous Dickens character born with a caul over head,David Copperfield,General,What is sclerotinite,Fungal remains,General,What automaker bought Rolls Royce in 1998,Volkswagen -General,What is the official residence of the Lord Mayor of London?,Mansion House,General,"Who was nominated for a Best Actress Oscar for the film Mary, Queen of Scots",Vanessa redgrave,Geography,What is the capital of Wisconsin,Madison - History & Holidays,What wonder stood 32m high in rhodes harbour?,Colossus of Rhodes,General,What kind of vegetable is 'calabrese',Broccoli,General,Which bank did the jailed Nick Leeson work for and ruin,Barings -General,What is the Capital of: South Africa,Pretoria,Music,Who Was Shouting For Lager Lager Lager,Underworld,General,A method of resolving questions of conscience by applying moral principles or laws to concrete cases?,Casuistry -General,Jan 21 1976 What linked Bahrain and Rio de Janeiro,1st Concord passenger destinations,General,Who sings the song Clint Eastwood?,Gorillaz,General,What film featured a cat named mr. bigglesworth,Austin powers -General,What was awarded to a football player who scored 3 goals in one match,Hat,General,In Key West Florida what are barred from racing in city limits,Turtles,Music,Which Hymn Traditionally Closes The Last Night Of The Proms Every Year?,Jerusalem -General,"Caracul, Dorset, Urial, Mufflon and Jacobs are types of what",Sheep,General,What is the purple ink used to stamp meat made from?,Dark Grape Skins,General,Which large area of scrubland plains lies just to the north of the Pampas in South America?,Chaco -General,Which English cathedral is famous for its whispering gallery,St paul's,General,What profession was lillian hellman,Authoress,Music,What Nationality Was The Singer Roy Orbison,USA / Texas -General,Fill in the blank: ___ on a limb,Out,General,What member of the weasel family is over 1 meter or 3 feet long,Badger, History & Holidays,Which City Did The Allies Liberate On August 25th 1944 ,Paris  - History & Holidays,What is the name of the summer camp in the Friday 13th movies ,Camp Crystal Lake ,General,What is the standard unit of measure for weighing gems,Carat,General,Gaddafi came to power in which year,1969 -General,What was the name of the hit by The Archies,Sugar sugar,General,What actress's legs were insured for one million dollars,Greta garbo,General,"Coolidge Colorless, corrosive liquid that has the chemical formula HNO3",Nitric Acid -General,Which country's borders was established in 1919 by the 'Treaty of St.Germain',Austria,General,What product can be found in four out of five American homes,WD40,General,Maryland No1 Montana No 1 Minnesota No 3 types of what,Pigs American Breeds -General,"Mary Somerville said ""It wont last, a flash in the pan"" what",Television,General,Who is the only cricketer in Wisden 2000's Five cricketers of the Century not to have a knighthood,Shane warne,General,The natural process of rock disintegration is better known as _______,Erosion -Geography,On which River does the City of Dublin stand ,The Liffey ,General,Which is the only planet that rotates clockwise,Venus,General,In which country could you spend a taka,Bangladesh - History & Holidays,Alanis Morrisette appeared on what 80's cable children's show? ,You Can't Do that On Television ,Music,"Which Group Did ""Sounds"" Magazine Describe As ""Provincial Clods Trailing In The Wake Of The More Sophisticated Spandau Ballet""",Duran Duran,General,Kain(ol)ophobia is a fear of ______,Novelty -General,What is the alternative name of the foodstuff called scallions,Spring onions,Music,Steven Tyler Is Lead Vocalist With Which Rock Band,Aerosmith,General,"Which wild flower is also known as Fireweed, because it is the first to grow back after a fire",Rose bay willow herb -People & Places,Complete This partnership Hinge and ? ,Bracket , History & Holidays,Which Popular Christmas Movie Featured A Must Have Toy Called 'Turbo Man'' ,Jingle All The Way ,General,Who won Oscars for Jaws ET Star Wars Schindlers List,John Williams (music) -General,"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,Music,Who Was The First Black Country Singer To Be Successful In Nashville,Charley Pride,General,Ornamental band worn on wrist or arm,Bracelet -General,Who is the subject of Anouilh's play L'Alouette ( The Lark ),Joan of arc, Geography,What is the basic unit of currency for Canada ?,Dollar,General,What two mountain ranges does the Tour de France race through,Alps & pyrenees -General,Who said 'hitch your wagon to a star',Ralph waldo emerson,General,What is the fear of certain fabrics known as,Textophobia,Science & Nature," By age 6 months, the voracious __________ will have increased its 3_pound birth weight by 7,000 percent.",Pig -Music,Who Established Paisley Park As His Own Record Label,Prince,Entertainment,Casper the Friendly Ghost frolicked with which witch,Wendy,General,What was king george vi's first name,Albert -General,Actor ______ Borgnine,Ernest,Entertainment,Rolling Stones first hit was written by what group?,The Beatles,Geography,What is the capital of Saint Kitts and Nevis,Basseterre -General,What dinosaurs name translates as three horned,Triceratops,Geography,In which country is angel falls ,Venezuela ,General,Who performed the first heart transplant in South Africa,Christian Barnard -General,What does a dowser do,Find water,General,On which river is the Kariba Dam situated,Zambesi,General,What is LCD an abbreviation of ?,Liquid Crystal Display -General,From which album did the original version of Elton John's Candle in the Wind come,Goodbye yellow brick road,General,With which instrument is Larry Adler associated,Harmonica,General,The Eggplant is part of what family of plants,Thistle -General,What confection named for a French field marshal chef made it,Praline,General,What is the common name for the star Sirius,Dog Star,Sports & Leisure,In Which Year Did Eddie the Eagle Edwards Leap To Stardom At the Winter Olympics? ,1988  -Music,Which Hot Dance Classic Did The Trammps Bring Us,Disco Inferno,General,Uncultured or primative person,Barbarian, History & Holidays,In the 1970s films directed by Robert Fuest (Pronounced Feast) how did Dr. Anton Phibes become disfigured ,Car Crash  -General,Name the carnivorous mammal related to the hyena,Aardwolf,Religion & Mythology,"His wife was Penelope and his son, Telemachus. He was exiled from his home on Ithaca for angering the gods.",Odysseus,Sports & Leisure,What is the period of play in a game of polo called ,A Chukka  -General,In Yugoslavia if you asked for Pljeskavice what do you get,Hamburger,General,Beethoven gave up what while writing his ninth symphony,Bathing,General,From what BBC TV series comes the phrase 'And now for something completely different,Monty python's flying circus -General,What item would you see on the flag of Malta,George Cross,General,Can a short-sighted person see objects more clearly when they are close up or far away,Close up,General,What are Wa Cha Wej Vagh Hut Soch and chorgh,Numbers - In Klingon -General,"Which actress was in the TV movies: The Oddyssey,and Merlin?",Isabella Rosselini,Music,According To The Lyrics Of The Song “House Of The Rising Sun” What Was The Occupation Of His Mother,Tailor,General,What oval shaped organ near the stomach purify's blood,Spleen -General,"Claylike mineral, chief source of aluminium",Bauxite,Science & Nature,What is a the technical name for a heart attack?,Myocardial infarct,General,Which trio was originally known as the 'primettes',Supremes -General,International Airline Registrations OO is what country,Belgium, History & Holidays,In pantomime what is Alladin's surname ,Twankey ,General,"In 1891, film was introduced to replace ______ in making photographic negatives",Glass -People & Places,What is the county town of Cornwall? ,Truro ,General,"In-the film world, whose real name is Melvin Kaminsky",Mel brooks,General,"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 -General,In Scottish Gaelic what is a clarsach,A Harp,General,The earths atmosphere & the space beyond is known as _______,Aerospace,General,What took place on London's serpentine first time 16 June 1930,Mixed Bathing -Music,Which had a hit with the song “Obviously” in 2004?,McFly, History & Holidays,Which British Crime Author And Dame Died In January 1976 Aged 85 ,Agatha Christie ,Entertainment,What show/game has characters such as Bulbasaur and Pikachu?,Pokemon -Entertainment,"In the TV series 'Seinfeld', who plays Kramer?",Michael Richards,General,Leona Lewis Achieved A UK No.1 Hit With Her Debut Single In 2006 Who Was The Last Female To Achieve This Feat,Kym Wilde,General,What country produces the most tobacco in the world,China -General,How many days are there in a fortnight,Fourteen,General,The last descendant of what musical family died on christmas day 1845,Bach,General,A stellate object is shaped like what,Star shaped -General,What type of instrument is a celeste,Keyboard,General,What country lies north of france and south of holland,Belgium,Geography,In which country is cusco ,Peru  -Geography,Name 2 Of The 3 South American Countries Through Which The Equator Passes ,"Brazil, Equador, Columbia ",General,"In ancient egypt, the brain was extracted through the nasal passages during what process",Mummification,People & Places,Who Was Known As The Face That Launched A Thousand Ships 'Helen Of Troy' ,Helen Of Troy  -General,Crosby Stills and Nash debut album included this captivating song about a girl and the colour of her eyes,Sweet judy blue eyes,Science & Nature, Adult electric eels 5ft to 7ft long produce enough electricity __ 600 volts __ to stun a __________,Horse,Entertainment,What is the mother's name in Family Circus?,Thelma -General,Who starred in the 1916 film 'intolerance',Seena owen,General,Division what's popeye's official age,R thirty four 34,General,What was the first country to use postcards,Austria -Science & Nature," Cats have more than one hundred vocal sounds, while dogs only have about __________",10,General,What was the name of the second Pope,St linus,Science & Nature,What Was Don Quixote's Faithful Horse Called ,Rozinante  - History & Holidays,"Soleil Moon Frye was the real name of which young eighties sitcom star, whose character name was also the title of the show? ",Punky Brewster ,Sports & Leisure,"In a maximum snooker break of 147, how many points are scored on the black ball alone ",112 ,General,In what film would you find The Orgasmitron,Woody Alan's Sleeper -General,What is the medical term for ear wax,Cerumen,General,What's Cheops's profession,Egyptologist,General,What is the yellow of an egg,Yolk -General,Which Historical Figure Sadly Passed Away On The 18th April 1955,Albert Einstein,General,How did Dr Watson's first wife die,Diphtheria,General,Cod what three colors are the arrow poison frogs of south america,"Orange, red" -Music,"All Were Released In Which Year: ""Anarchy In The Uk"", ""Fernando"", ""A Star Is Born""",1976,Religion & Mythology,"In Greek mythology, who was the son of Peleus and Thetis?",Achilles,General,In Which Country Is Bild The Top Selling Newspaper,Germany -General,What 18th century German soldier told very tall tales of himself,Baron Munchhausen,General,Rhytiphobia is the fear of,Getting wrinkles,General,Who was the first US to have indoor plumbing installed,Henry Wadsworth Longfellow -General,What country is home to the bank of alexandria,Egypt,General,What was the name of the host of Double Dare?,Mark Summers,General,Roland Orzabel and Curt Smith were better known as what,Tears for fears -Food & Drink,What ingredient is added to wine to make port? ,Brandy ,General,What does Shrove Tuesday have to do with Easter? ,Shrove Tuesday is the last day to indulge before Lent. ,General,What is the Capital of: Pitcairn Islands,Adamstown -General,Americans eat approximately 100 acres of what each day?,Pizza,General,In which country is Tobruk,Libya,General,"Umber, sienna and sepia are all shades of which colour",Brown -General,Traditionally what should be given on an 11th anniversary,Steel,General,The penny-farthing was an early form of what transportation,Bicycle,General,What is the fear of crowds or mobs known as,Ochlophobia -People & Places,Who Is Julie Andrews Married To ? ,Blake Edwards ,General,Which building features the largest clock face in Great Britain?,Royal Liver Building (Liverpool),General,What is the young of this animal called: Fish,Fry -Geography,What Nationality Was The Chemist Alfred Nobel ,Swedish ,General,Meeting place for public discussion,Forum,Art & Literature,"A technique in abstract painting developed in the 1950s. It focuses on the lyrical effects of large areas of color, often poured or stained onto the canvas.",Color field painting -General,"What is the deleterious gas in the air, which is exhaled by humans called",Carbon dioxide,Geography,What is the capital of United States,Washington,General,Who are Britain's oldest publisher dating from 1469,Oxford University Press -General,What is the second book of the old testament,Exodus,General,What word is given to the line which forms the boundary between the day and night hemispheres of the moon,Terminator,General,Which part of the body will expand three times when excited,Iris -General,What does per capita literally mean,Per Head,General,Which Tennessee Williams play features a character called 'Big Daddy',Cat on a hot tin roof,General,Papa Doc' was president of which Caribbean republic until his death in 1967,Haiti -General,How many pockets are there on a true billiard table,None,General,Which country won the first Cricket World Cup,West indies,General,Orthophobia is the fear of,Property -General,To which saint is the cathedral in Prague dedicated,Saint vitus,Music,Which song is credited to Harrison-Lennon?,Cry For A Shadow,General,Where would you find the original Mr Plod,Noddy books - History & Holidays,Which famous mathematician and astronomer was born on Christmas day in 1642 ,Sir Isaac Newton ,General,What Was The Name Released By Michael Jackson In 2001,Invincible,General,Paronite and caronite are the ores what is extracted,Titanium -General,Which is Shakespeare's shortest play,The Comedy of Errors,General,Where is the Blarney Stone?,"Blarney Castle, Ireland",General,Where is the blue grotto,"Capri, italy" -General,What instrument is used to measure the strength of a magnetic field,Magnetometer,General,Montgomery and rommel directed the forces in which battle,Battle of el,General,"To 25 Years Either Way In What Year Was ""Robert The Bruce"" Born",1274 -General,When is the longest day in the southern hemisphere,December,General,"Which actor, best known for his portrayal of a hero of the Napoleonic wars, secretly married Abigail Cruttenden in November 1997",Sean bean,General,Which cricket player holds the world record for the highest individual score in first-class cricket,Brian lara -Sports & Leisure,What Does A Black Flag Signify In Motor Racing ,Driver Disqualified ,General,How - two thieves convicted 1984 executed in Sudan Aug 1990,Crucified,Science & Nature,In Which Country Is The Daewoo Company Based ,Korea  -Food & Drink,"In Which Country Did The Cheese Emmanthal Originate Was It France, Switzerland, Denmark Or Belgium? ",Switzerland ,Music,Which Disco Legends Might Have Asked Several Detectives To Find A Missing Angel,Tavares,General,Which US state drinks the least beer per capita,Utah -General,Who rode a horse called Diomed,Duke of Wellington,General,What would you be doing if you were suffering from somniloquy,Sleep Talking,General,Luiphobia is the fear of,"Lues, syphillis" -General,Thick light bark of S.European oak,Cork, Geography,What is the basic unit of currency for Saudi Arabia ?,Riyal,General,What is polenta,Cornmeal and water -General,Which literary character takes his name from Latin for nobody,Captain Nemo,General,What English word comes from Latin for Sheath for a Sword,Vagina,Music,"Which 1991 CD Sleeve features Quotes From Blake, Freud, And Father X",Enigma / MCMXC AD -General,"Which film director created ""Olympiad"" - a celebration of the 1936 Olympics and Nazi ideology",Leni riefenstahil,Music,"What Picture Features The Classic Album / ""Money For Nothing""",A Faceless Guitar Player Wearing A Blue Jacket Hair & Shirtsleeves,General,"Island Infectious virus disease of the central nervous system, sometimes resulting in paralysis",Poliomyelitis -General,Fran Philps of Canada was the first woman to do what,Reach the North Pole,General,"What cocktail does bourbon, sugar and mint make",Mint julep,General,"Link Apollo, Ghengis Khan and Abraham Lincoln on TV",All met James T Kirk -General,Which part of the body suffers from opthalmia,Eyes,General,What is the largest (in population) state/territory in Australia,New south wales,General,"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 -General,"Tarsus, metatarsus, and phalanges are parts of a ______",Foot,General,What silvery liquid metal is used in thermometers,Mercury,Science & Nature,What foul smelling compound is commonly known as rotten egg gas?,Hydrogen sulphide -Food & Drink,Chablis comes from which French wine region? ,Burgundy , Geography,What is the basic unit of currency for Luxembourg ?,Franc,Religion & Mythology,What is the birthstone for January?,Garnet -Science & Nature,What Common Affliction Makes The Lens Of The Eye Go Opaque ,Cataracts ,General,Which country has the highest per capita divorce rate,1 Latvia - 2 Russia – 3 Belarus,General,What does cb stand for,Citizen's band -General,"Dogs bark, donkeys ______",Bray,Music,Who Choreographed Cats,Gillian Lynne,General,"When Spencer Tracy won his first Academy award in 1937, his Oscar statuette mistakenly bore the name of which detective",Dick tracy -Food & Drink,What Is The Annual Yield Of A Single Coffee Plant ,1kg ,General,In 1856 John C Freeman was the first what,Republican candidate US president,General,Who had a dog called Boatswain,Lord Byron -General,What tribe walked the 'trail of tears',Cherokee,Music,"Upon Which Shakespearean Play Is The Musical ""Kiss Me Kate"" Based",The Taming Of The Shrew,General,What is the young of this animal called: Fowl,Chick chicken -Religion & Mythology,He was the second King of Israel.,David,General,What was Buzz Aldrin's mother's maiden name,Moon,General,In Bewitched name the witch doctor who treats Samantha,Doctor Bombay -General,When Dino was Fred's pet what was Barney's called,Hoppy a Hoparoo,Music,Who Won The 1983 Record Of The Year Grammy With Rosanna,Toto,General,What is the collective name for a group of frogs,Army -Music,"In ""Don't You Want Me Baby"" By The Human League Where Did The Waitress Work",In A Cocktail Bar,General,Which Team Won The First Scottish FA Cup Cup Final,Queen's Park (NOT) QPR,General,Mythological beasts name comes from the Greek chimney man,Salamander -General,Who created the 'purple heart' decoration in 1782,George washington,General,Combine a Van & a Car & you get this word.,Caravan,Music,Which Singer Began His Career In The Moonglows With Motown Boss Berry Gordy's Brother In Law Harvey Fuqua?,Marvin Gaye -General,What does ring a ring a roses refer to,The Black Death,General,Which artist painted the work popularly known as 'Bubbles',Millais,General,The underside of a horse's hoof is called a what,Frog -General,Person who undertakes commercial venture,Entrepreneur,Science & Nature,At Which Point Do The Temperature Scales Fahrenheit & Celcius Coincide ,-40 ,General,Who wrote the best-seling novel 'The Family'?,Martina Cole -General,"Who earned the moniker ""Lady Lindy""",Amelia earhart,General,Who directed the film The African Queen,John Huston,General,What is the stratosphere higher than,Troposphere -Entertainment,Who sang with 'The Dakotas'?,Billy J. Kramer,General,What actor played the lead in the remake of breathless,Richard gere,General,"Whose autobiography is entitled ""Life is a Roller Coaster""",Ronan keating -General,What is the Capital of: Philippines,Manila,General,The members of a ballet company who do not perform solo.,Corps de ballet,Music,Name the group led by violinist David La Flamme?,It's A Beautiful Day -General,The Aetherius Society believes who is alive and living on Venus,Jesus Christ,General,How many cycles per second in one megahertz,1 million,General,In MASH name Radars pet mouse,Daisy -General,In Memphis Tennessee beggars must have what before begging,A $10 begging licence 1996 law,General,U.S. Captials - Minnesota,St. Paul St Paul,General,What is the deepest land gorge,Grand canyon -General,French artist Aquabouse paints cows in what material,Cow shit,General,"Who is Oscar, Zoroaster, Phadrig, Isaac, Norman,Henkle, Emmanual, Ambrose Diggs",Wizard of Oz,General,Which psychologist invented the terms introvert and extrovert,Carl Jung -General,Where could you legally flash your dong - then spend it,Vietnam currency,Science & Nature, Flamingoes live remarkably long lives _ up to __________,80 years,General,Which plant gets its name from the Persian for turban,Tulip -General,Which actor played Mozart in the 1984 film Amadeus,Tom hulse,General,Who gets the 'picayune intelligence',Frostbite falls,Music,What girls name gave Derek & the Dominoes a 1972 single?,Layla -General,Turnov Rusty and Bobo appear in what stage musical,Starlight Express,General,Name Popeye's hungry friend,J Wellington Wimpy,Music,Which 1999 Pop Hit Translates To English As “The Crazy Life”,Livin La Vida Loca -General,Dan Emmett a northerner wrote which song,Dixie,Music,"Who Had A Hit In 1991 With The Song ""Jump to The Beat""",Danni Minogue,General,"What is defined as 'Dry winged fruits, as of ash or maple, often hanging with others in bunches'",Keys -General,Who was not an original 'charlie's angel',Cheryl ladd,General,"In Greek mythology, leda was visited by zeus in the the form of a swan, and become the mother of ______",Helen and pollux,Music,Who re-recorded 'Secret Agent Man' in 1979?,Devo -General,What is the flower that stands for: suspceptibility,Passion-flower,General,In Wisconsin its against state law to serve apple pie without what,Cheese,General,Caneletto is famous for landscapes of Venice and where,London -General,Roman men had to swear on what to testify,Holding their testicles,General,Who founded the Fascist party in Italy in 1919,Benito mussolini, History & Holidays,Which Government Post Was Held By John Profumo At The Time Of The Affair Involving Christine Keeler ,Secretary Of State For War  -General,Cathy Rigby was the first woman to do what,Pose Nude sports illustrated,General,Quality Street Toffee And Chocolate Assortment Is Named After A Play From Which Famous Author,J.M Barrie,General,"Who led the first band of outlaws to rob a U.S. train, in Adair, Iowa in 1873",Jesse james -General,What is the Capital of: Bermuda,Hamilton, History & Holidays,Which 60's Movie features The Line you wouldn't be able to do those awful things to me if I weren't still in this chair ,What ever happened to Baby Jane ? ,General,Burke and Hare supplied which doctor with cadavers,Dr Knox -General,From the bull what colour is fourth on an archery target,Black,Music,"Maurice White Was A Session Drummer Playing On Chess Hits Such As ""Rescue Me"" By Fontella Bass. Which Soul/Funk Band Did He Go On To Form In The 1970's",Earth Wind And Fire,Food & Drink,What breakfast cereal was invented at Battle Creek Sanitarium?,Cornflakes -Science & Nature, The bat is the only mammal that can __________,Fly,General,U.S. Captials - Califorina,Sacramento, History & Holidays,"Who Had An 80's Hit With The Song 'Politics of Dancing', ",Re-Flex  -General,A shark is the only fish that can do it - do what,Blink with both eyes same time,Entertainment,"What city is also known as Music City, U.S.A.?",Nashville,Science & Nature,How many hearts do earthworms have?,Five -General,"Mozart wrote Ah, Vous Dirai-Je, Maman what's its English title",Twinkle – Twinkle little star,General,"Roosevelt Quotations: ""Do you realize the responsibility I carry I'm the only person standing between Nixon and the White House.""",John F. Kennedy,General,From what modern country does damask come from,Syria -General,What object is said to bring bad luck if it is broken,Mirror,General,What province of Canada has French as its major language,Quebec,General,Which Saints day is 1st March,David -General,Who was Agrippa's son,Nero,General,Connors who did bobby fischer beat to win the world chess championship,Boris spassky, Language,What is the English word for 'fiesta'?,Festival -General,What was the highest grossing american silent movie,Birth of a nation,General,Who captured the first confederate flag in the US civil war,George Armstrong Custer,Sports & Leisure,In Which Sport Is The Americas Cup Awarded? ,Yacht Racing  -General,Collective nouns - a streak of which creatures,Tigers,General,Name vegetable banned different times causing leprosy rickets,Potato, History & Holidays,Which is the name of the baddie in the Harry Potter series ,Lord Voldemort  -General,"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,Food & Drink,What is 'water of life' in 'French' ,Eau de vie ,General,98% of Americans feel better about themselves after doing what,Flushing Toilets -General,"Which British statesman, Minister of Labour in the National Government 1940-45, became Foreign Secretary in 1945",Ernest bevin,General,The African Queen Bogart Hepburn but who should it have been,David Niven Bette Davis,General,Which Mediterranean island once housed Napoleon,Elba -General,To which group of artists does Vincent Van Gough belong,Post Impressionists,Science & Nature,Which Record Breaking Video Game Character Made It's Debut May 10 th 1980 ,Pac Man , History & Holidays,Who invented the gatling gun?,Richard Gatling -General,Where did the bay of pigs take place,Cuba,General,In what country is the Pageant of the Golden Tree celebrated,Belgium,General,What did the repair technicians of the first 'modern' computers wear while working,Shorts & roller skates - Geography,What is the basic unit of currency for Cambodia ?,Riel,General,What u.s president did robert montgomery coach for tv,Dwight eisenhower,Music,Who had hit a in the 1990's  with 'Cotton Eye Joe'?,Rednex -Geography,What is the capital of Canada,Ottawa,General,Where in the body are the Haversian canals,Inside bones,General,"Arc, radius, & sector are parts of a(n) _________",Circle -General,"The Mask In The Movie ""Scream"" Was Inspired By The Painting ""The Scream"" But Who Painted It",Edvard Munch,General,Which football team plays home games at Gay Meadow,Shrewsbury,Music,In 1983 To Whom Did The NME Give The First Annual Bryan Ferry 3 - Fitting Suit & Ungainly Dancer Award,Martin Fry -General,"Which motorway is, being developed as a ring motorway round Manchester",M60,General,What job is most likely to make the practitioner an alcoholic,Barbers,General,What airline used to be called Dobrolet,Aeroflot -General,"In ancient Assyria and Babylonia, a tower in the shape of a stepped pyramide. It formed the base of a temple.",Ziggurat,General,What does a lachrymose person do - a lot,Cry,General,"How Is Singer, Actor, Writer & Producer “ Tracy Marrow ” Better Known?",Ice T -Music,What was Richard Wagner composing intermittently between 1848 and 1874?,The Ring Cycle,Food & Drink,What is the head waiter at a French restaurant called? ,Maitre d' or maitre d' hotel ,Sports & Leisure,Before Alex Ferguson Who Was Manager Of Manchester United ,Ron Atkinson (Red Ron)  -Music,Who Are The 2 Members Of Wilson Phillips,Carnie & Wendy Wilson,General,Walt Disney Died Right Before The Completion Of Which Disney Movie?,The Jungle Book,General,What country was the world's oldest man from?,Nepal -General,"Who sang the song ""We Didn't Start The Fire""?",Billy Joel,Music,Which Olivia Newton John 81' album could describe some exercise?,Physical,General,Who was the only sister on petticoat junction to marry?,Betty jo -General,What type of creature is a Fritillary,Butterfly,General,In which sport is the Lance B Todd memorial award won,Man of the Match Rugby League,General,"Other than humans, which is the only animal that can get sunburned",Pig -General,Who was the first British monarch to visit America,George VI in 1939,General,"Which character in ""The Avengers"" drove a Lotus Elan",Emma pefl,General,What instrument is used to measure atmospheric pressure,Barometer - History & Holidays,What 'SG' Do The Salt And Pepper Say To Eachother At Christmas Time ,Seasons Greetings ,General,After Oxford & Cambridge What Is The 3 rd Largest University In Britain ?,Durham,General,As what was Surinam formerly known,Dutch guiana -General,"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,General,What is the astrological sign for death?,Pluto,General,What sea lies to the west of Japan,The sea of japan -General,In London when did the Globe Theatre catch fire,1613,Science & Nature,To Which Country Is The Carrot Native? ,Afghanistan ,General,A professional boxer is limited to 36 feet - feet of what,Bandages on hands -General,What pet did Florence Nightingale carry with her,An Owl (in her pocket),General,What is the name of the instrument that is used to test the level of charge in a car battery,Hydrometer,General,"Which writer quoted, 'Men seldom make passes at girls who wear glasses'",Dorothy parker -Music,What Was The Mistake On Elvis Presleys Birth Certificate,Middle Name AAron Was Mispelt,Food & Drink,In Which Alcoholic Drink Might You Find A Worm ,Mescal ,General,Hylophobia is the fear of,Forests -General,What is a flat-bottomed conical laboratory flask with a narrow neck,Erlenmeyer flask,General,What's the capital of jordan,Amman,General,Which island gets its name from the Portuguese for bearded,Barbados -General,In 1778 name the first country to send an ambassador to US,France,General,A short womens jacket without fastenings,Bolero,Music,What is Paul's real birth name?,James Paul McCartney -General,Mohs scale hardest substance is diamond - what's the softest,Talc,General,Bill justis was a studio musician when he recorded this 'sloppy' instrumental in october 1957,Raunchy,General,What is the monetary unit of Malaysia?,Ringgit -Music,Which Best Selling Band Named Themselves After A Price Buster Song,Madness,General,Who became the first President of the French Fifth Republic in 1958,Charles de gaulle,Science & Nature,What is the term for the path followed by a body in space,Orbit -General,Drinking vessel with foot and stem,Goblet,Geography,What is the capital of Jamaica,Kingston,General,What is the name of the ruling house of Monaco,Grimaldi -General,Which company produced the syndicated mouse factory series,Walt disney,Sports & Leisure,Who Was Sportswoman Of The Year In 1971 ,Princess Anne ,Science & Nature,What does the body release that dilates small blood vessels and so causes a person to blush?,Peptides -General,"What term has gradually replaced ""jungle"" because it ""has a nice ring to it,"" according to William Safire",Rain forest,General,What is a dish of fried potato often eaten for breakfast,Hash browns,General,A Curofact is a sexual fetish about what,Legs - History & Holidays,Who wrote Auld Lange Syne? ,Robert Burns ,General,What is a slang name for diamonds,Ice,General,In Las Vegas which gambling thing generates the most profit,Slot Machines -Science & Nature,Term for an emasculated male pig,Barrow,General,What is the name given to male sheep?,Ram,Food & Drink,What Is The Main Ingredient In A Black Pudding ,Pigs Blood  -General,What is the main food of most bats,Insects, History & Holidays,"Deriving its name from the Latin word meaning knowledge and a Greek word meaning branch of learning which church was founded in 1954 in California, moving it's headquarters to Sussex in 1959? ",Church of Scientology ,Science & Nature," 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 -General,What appears in the middle of the Rwandan flag,Capital R,General,Which river seperates Buenos Aires from Montivideo,River plate,General,"What has u.s. patent no 174,465",Telephone -Entertainment,This film starring Richard Beymer and Natalie Wood won the best picture Oscar for 1961.,West Side Story, History & Holidays,Which Wall Did The Romans Build To Keep Out Marauding Scots? ,Hadrians Wall , Geography,"Linz, Austria is a leading port on which river?",Danube -Music,What Is The Real Name Of Rick Nelson,Erick Nelson,General,What Was The First US State To Abolish The Death Penalty,Michigan,Sports & Leisure,Baseball: The Atlanta ______?,Braves -Music,The Chipmonks Were The Bran Child Of David Seville But What Was Sevilles Real Name,Ross Bagdasarian,General,VH is the international aircraft registration for which country,Australia,Science & Nature,What Is The Main Diet Of The Pangolin ,Ants & Termites  -General,What countries international car registration letters are DZ,Algeria,General,The Dance of the Sugar Plum Fairy comes from which piece by Tchaikovsky,Nutcracker suite,Science & Nature, The ancient nautilus is considered the most intelligent of the invertebrates; it is said to have been as intelligent as a __________,Young cat -General,"In medical descriptions, what is the meaning of the term ""chronic""","Lingering, lasting",Food & Drink,From what country does Advocaat originate? ,Holland ,General,Who was murdered by the Manson family in 1969,Sharon tate -General,Which item first appeared in Superior Hotel Montana in 1908,Gideon Bible,General,What motto do brownies pledge,Lend a hand,General,Who are Mickey Mouse's nephews,Mortie and Ferdie -General,On which river does the city of Oporto stand,Douro,General,What kind of feathers does an emu have,Double-plumed,General,What is a bouvier des flanders,Dog -Sports & Leisure,"How Many Times Was Stephen Hendry Crowned World Champion In The 1990's Was It (6,7,8,9) ",Seven ,General,"Which country's name means ""equator""",Ecuador,Sports & Leisure,"Which Of These Sports Does Not Allow You To Play Left Handed (Polo, Squash, Fencing, Tennis) ",Polo  -General,McLean Stevenson played which character in MASH,Colonel Blake,General,The term Sesquitercentennial represents how many years ?,350,General,Calvados or Apple Brandy and Dubonnet make what cocktail,Bentley -General,Old fashioned word for a prostitute,Harlot, History & Holidays,In What Year Did Great Britain Gain Control Of Hong Hong ,1842 ,General,The Glis Glis was fattened and eaten by the Romans what is it,Edible Dormouse -General,Who was the Norse god of peace & prosperity,Frey,Art & Literature,What Is The Nationality Of Picasso ,Spanish ,Geography,What Was So Special About Brooklyn Bridge ,It Was The Worlds First Steel Suspension Bridge  -General,Which comic character is both a princess and a prince,Wonder Woman – Diana Prince,General,In what country do they answer the phone by saying I'm listening,Russia,General,"Forked, sheet and ball are types of ______",Lightning -General,"Film title ' ______, a space odyssey'",2001,General,Which Long Running TV Show (1976-1981) Took Place At The Vaudeville Theatre,The Muppet Show,General,Where would you find Fiordland National Park,New zealand -General,Colonel Jacob Schick invented what in 1928 in USA,Electric Razor,General,Who became emperor of France in 1804,Napoleon,General,"Sand, Soda and what are the main ingredients of glass",Limestone -General,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,General,Who is the most filmed comic strip character,Zorro,General,Frank Gorshin played what role in a 60s series films,The Riddler -General,What is the opposite of allopathy,Homeopathy,Science & Nature," In the air, puffins are powerful flyers, beating their __________",Wings,General,"In England, what is the Speaker of the House not allowed to do?",Speak -General,Who owns the Audi car company,Ford motor company,General,Which companies first product was an audio oscillator,Hewlett Packard,General,Agatha Christie disappeared for 10 days in which year,1926 -General,"What does the word ""amen"" mean",Let it be,People & Places,Which Sportsmans Name Was Hurricane ,Alex Higgins ,General,In which Jane Austen novel does Fanny Price appear,Mansfield park -Geography,In which state is hoover dam ,Arizona ,General,Which author created Dick Tracy,Chester Gould,General,Which Actress Played Queen Amidala's Double In The Sci Fi Movie Star Wars The Phantom Menace,Keira Knightley -General,Who wrote the children's classic Ann of Green Gables,L M Montgomery, Geography,What is the capital of Uruguay ?,Montevideo,General,What name is Samuel Langhorne Clemens known by,Mark twain -General,Gertrude Ederlie (USA) was the first woman to do what,Swim English Channel,General,Russian word means dissolute - nickname Gregory Efimovitch,Rasputin,Science & Nature,What is the device in a common household microwave called ,Magnetron  -General,Whats the name given a star that has collapsed into no dimensions,Black hole,General,A small informal restaurant,Bistro,Music,Which Musical Includes the ’1978 hit “ Summer Nights”?,Grease -Entertainment,What is the name of the Family Circus's dog,Barf,General,"What Is The Name Of The Boy In The Christmas Animation ""The Snowman""",James,General,Which U. S. State did Ray Charles have on his mind on a 1960 single,Georgia -Music,Singer Chrisssie Hynde Married Which Member Of Simple Minds,Jim Kerr,General,"On Saved By The Bell,what was the name of the beach club that the gang worked at?",MalibU.S.ands Beach Club,General,In heraldry gules are what colour,Red -General,The flower convallaria is better known as what,Lily of the Valley,General,A bergschrund is a crevasse at the head of a(n),Glacier,General,The Nobel Peace Prize Is Awarded Every Year In Which European City,Oslo -General,Norse mythology who was killed with mistletoe by blind Hodur,Balder - most loved god,General,What is the fear of german or german things known as,Teutophobia,Technology & Video Games,What type of printer did Seiko develop for the 1964 Tokyo Olympics?,Dot matrix -Food & Drink,Which vegetable has the most calories? ,Avovado ,General,What is the flower that stands for: slighted love,Yellow chrysanthemum, History & Holidays,Which entertainer famous for the one liner 'My Little Chickadee'' died on Christmas Day 1946 ,W.C. Fields  - Geography,Through which ocean does the International Date Line approximately follow the 180 degree meridian?,Pacific Ocean,General,What was Yosser's catchword,Gizzajob, Geography,Which element makes up 46.6% of the Earth's crust ?,Oxygen -General,What is the more common name for 'self contained underwater breathing apparatus,Scuba,General,What is the Capital of: Nigeria,Abuja,General,Musical instrument of bells or metal bars played with hammers,Glockenspiel -General,Who starred in cartoon where the Tasmanian Devil 1st appeared,Bugs Bunny – Devil may Hare,General,Which french dramatist's works include Phedre and Andromaque,Jean racine,General,What did the 1st u.s federal legislation in 1909 prohibit,Narcotics -Art & Literature,"This man was Time magazine's 1938 ""Man of the Year""",Adolf hitler,General,Baseball: the toronto ______,Bluejays,General,Where could you find a 1925 humpmobile car,Back of a US $10 bill -General,What is the Capital of: Cyprus,Nicosia, Geography,What is the basic unit of currency for Saint Vincent and the Grenadines ?,Dollar,Geography,Which U.S. city is known as the Biggest Little City in the World,Reno -General,How fast does the tip of a standard rotary mower travel? (in km/h),200,People & Places,What is the only country which is crossed by both the Equator and the Tropic Of Cancer? ,Brazil ,General,What game are the Pilgrim Fathers known to have played on the Mayflower,Darts -General,Who is the Roman Goddess of Hunting,Diana,General,Who was known as the Little Brown Saint,Ghandi,General,What is the Capital of: Netherlands Antilles,Willemstad -General,"On Full House,what was Jesse's REAL first name?",Hermes,Geography,In what country is mandalay ,Burma ,General,What is the Capital of: Faroe Islands,Torshavn -General,What is a nibong a type of,Palm tree,General,"One of the twelve members of the administrative council of the Mormon church, is called a(n) ______.?",Apostle,Music,"What recording artist made ""Call Me"" into one of the top hits of 1980",Blondie -General,Who won an Oscar as Best Supporting actor in the 1993 film 'The Fugitive',Tommy lee jones,General,In what Elvis film does he play a hillbilly garage hand,Loving You, History & Holidays,Who in March 1958 became known by the number 53310761? ,Elvis Presley  -General,Who is frank cujo now known as,Jean-claude van damme,Science & Nature,What word is used for a female fox?,Vixen,General,Where is the 'Day of the Dead' celebrated,Mexico -General,What is the fruit of the hawthorn called,Haw,General,Septime Is a Position In Which Sport?,Fencing,General,February 21st 1878 the first what was published in New Haven,Telephone Directory -General,"What can be Safety, Tableaux or Swag",Curtains in theatre,General,What did andrew jergens create,Jergens lotion,Science & Nature, __________ are powerful jumpers. A 20_inch adult can leap 20 feet in a single bound.,Jackrabbits -General,What did eli whitney invent,Cotton gin,Sports & Leisure,Which Italian football club did Paul Gascoigne turn out for? ,Lazio ,General,Which childrens classic did Johann David Wyss write,The swiss family robinson -General,1899 what first was installed Palace Royal hotel San Francisco,Jukebox, History & Holidays,Which Bond film does the character Dr Christmas Jones feature ,The World Is not Enough ,Entertainment,Who always tried to kill Krazy Kat?,Captain Marvel -General,Martin what 1980's tv series starred bruce willis,Moonlighting,General,What's the telephone area code for Chicago?,312,Music,"From the 1980's “ Let's hope you never leave old friend, Like all good things on you we depend”?",Queen / Radio GaGa -General,"In mediaval history, who was the lover of Heloise",Abelard,General,"Where are ""coquis"" fluently from",Puerto Rico, Geography,What is the capital of Liechtenstein?,Vaduz -General,"Who is only artist that toured with Elvis, Beatles and Eagles",Roy Orbison,General,The term Sesquiquadricentennial represents how many years ?,450,General,In 1969 John Lennon & Yoko Ono Staged Their Honeymoon Protest By Staying In Their Hotel Beds For A Week. But In Which European Capital City Did This Take Place,Amsterdam -General,"H.R. Haldeman and Ron Ziegler, who helped plan the __________ burglary for President Nixon, both worked at Disneyland when they were younger. ",Watergate,General,What is the high flying swing in a circus called,Trapeze,General,The film Chinatown was released in what year,1974 -General,Official scrutiny of accounts,Audit,General,Name the Indian triangular pastries stuffed with meat or vegetables,Samosas, History & Holidays,"Rudolph the Red-Nosed Reindeer was a character created in a story written in: A=1939, B=1949, C=1954,D=1959 ",A=1939  -General,What is the only Christian country in Asia,The Philippines,General,In medieval times what was a mangonel used for,It was a siege catapult,General,"In Greek mythology, who did Ganymede replace as Cup-Bearer to the Gods",Hebe -General,Collective nouns - Team Plump Flush Safe Smeath of what,Ducks, History & Holidays,Which Actress Starred As Columnist 'Jane Lucas'' In The TV Sitcom Agony ,Maureen Lipman ,General,What star only began singing when she broke her leg,Doris Day was a dancer -General,"Rhapsody, Aromel, Tamella Cambridge favourite types of what",Strawberry Varieties, History & Holidays,Which witch is credited in the Bible with raising the spirit of Samuel at the request of King Saul ,Witch of Endor ,General,Which item of clothing do Eskimos (or Inuit) call mukluks,Sealskin boots -General,During which conflict did the battles of Alma and Inkermann take place,The crimean war,General,What is the young of this animal called: Rhino,Calf,General,What item used in offices was voted the product of the century,The Paperclip -General,What is Bart Simpson's middle name,JoJo,Music,"Who Was A Member Of The Byrds & The Flying Burrito Brothers, & Recorded The Solo Albums ""Gp & Grevious Angel""",Gram Parsons,General,As What Are Craig & Charlie Reid Better Known as?,The Proclaimers -General,Building for housing aircraft,Hanger,General,What elements name comes from the Greek for light bearing,Phosphorous,Science & Nature,What is the term for the group of plants that catch and digest insects?,Carnivorous -General,Where did the card game 'bridge' originate,Turkey,Music,"Who Had A Hit With The Song ""The Tide Is High""",Blondie,Music,In 1983 Rita Coolidge Performed The Song “On An All Time High” But In What Bond Movie Did It Feature?,Octopussy -General,The official 'Battle of Britain Memorial Flight' museum is based at which RAF station?,RAF Coningsby,General,Whose first 2 books are entitled The Lost Continent and Neither Here Nor There,Bill bryson,General,In which country do they play houlani - type of hockey,Turkey -General,Architectural style developed in the Eastern Empire,Byzantine,Sports & Leisure,Who beat Betty Stove to win the women's singles title at Wimbledon in 1977 ,Virginia Wade ,General,Frozen dew or vapour,Frost -Geography,Bridgeport is the largest city in which state ,Connecticut ,General,Thurle Sandstorm first world champion in 1923 at what sport,Ten Pin Bowling,General,What is the hole in a pencil sharpener called,Chuck -Science & Nature,What Type Of Mammel Is The Tasmanian Devil? ,A Marsupial ,General,Englund what was the first ironclad warship launched,Hms warrior,Music,What Did Odetta Tell Harry To Fix,The Hole In His Bucket -General,Where is the dalai lama's palace,Tibet,General,"The ""l.l."" In l.l. Bean stands for what",Leon leonwood,General,"Which horticultural fungicide, consisting of equal parts of copper sulphate and lime, bears the same name as a French port",Bordeaux mixture -General,In law what is a co-parcener,Joint Heir,General,An exultation is a group of what animals,Larks,General,In publishing what is the verso,Left page - Recto right page -General,Frigophobia is a fear of ______,Cold,General,"In a game of horseshoes, how many feet apart must the stakes be",Forty feet,General,What is the flower that stands for: a beauty,Orchis -General,Thomas Minton at Stoke on Trent created what in 1789,The Willow Pattern,Science & Nature,"In Edward Lear's Poem, Which Bird Sang To The Pussycat ",The Owl ,Music,"Who Recorded The Album ""Around The World In A Day""",Prince -General,What was first used at the 1904 St Louis Olympic games,Gold medals silver was first before, History & Holidays,What is the most popular Halloween decoration ,Jack-o-Lantern ,General,To what family does the wigeon belong,Duck -General,Why did eggs become significant at Easter? ,They represent fertility & new beginnings at spring time ,General,Who is the Patron Saint of learning,St Ambrose, Geography,Which is the Earth's second largest continent ?,Africa -General,80% of vibrator using English women don’t do what with it,Insert it,General,The Vietnamese call it The Brother the Chinese The Friend what,Bamboo,Science & Nature,On which planet are the craters Brahms and Liszt?,Mercury -General,The film 'The Wizard of Oz' was released in which year,1939,General,Cheap ornaments and trinkets,Bric-a-brac, Geography,In which continent would you find the Mekong river ?,Asia -General,Who was born in Limbini Nepal,Buddha,Music,In 2007 What Song Was Recently Voted The Most Annoying Song Of The Decade?,James Blunt / You're Beautiful,Music,"Who Had A Hit In 1989 With ""I Drove All Night""",Cyndi Lauper -Music,Name The First Top Ten Hit For Genesis Reaching No 7 In 1978,Follow You Follow Me,Food & Drink,"A Linzer torte, named after an Austrian town has a ground nut pastry base spread with Jam. What type of topping does it have? ",Criss Cross pastry strips ,General,What's the American term for a flat,Apartment -Music,"With Which Rock Band Does ""Slash"" Play Guitar",Guns N Roses,Geography,What is the capital of Sudan,Khartoum,General,Where was the greatest snowfall ever recorded in a single storm,Mount shasta -General,John Hetherington in London introduced what in 1797,Top Hats,General,"Which country has been called ""the gift of the nile""",Egypt,Music,"Which 2 Singers Married In 1969 , Divorced In 1975, & Recorded One Last Album Together In 1995",George Jones & Tammy Winette -General,In their lifetime the average human grows 8 feet of what,Nose Hair,General,A large fortified residential building,Castle,General,"Film - Who played ""Annie Hall""",Diane keaton -Music,Who Is Generally Credited With Freeing The Role Of The Jazz Guitar To That Of A Solo Instrument,Charlie Christian,General,What was Peter Blake a pop art designers most famous work,Beatles Sergeant Peppers cover,General,What state has a former pro wrestler as governor,Minnesota -General,"Who recorded the album ""Freak Out""",Frank zappa,General,Who would wear motley,Jester clothing,General,Which actor appeared in drag in two Marlene Dietrich films,John Wayne -General,Who was codenamed Napoleon by the secret service,Frank Sinatra,Food & Drink,What is common name for the fruit Citrus Grandis? ,Grapefruit ,General,What is a Cattalo,Buffalo and cow cross - Geography,What is the capital of Singapore?,Singapore,General,What does a pilot drop to slow an airplane,Flaps,Entertainment,Who invented the electrical bass?,Leo Fender -Music,Name The European City Tjhat Was A Hit For Ultravox In The 80's,Vienna,General,In which G&S operetta is eating a sausage roll a secret sign,The Grand Duke,Food & Drink,Which ingredient was added to ale in Bavaria around 900 AD and worked the Wonder that gave us beer ,Hops  -General,During which month is the longest day in the Northern hemisphere?,June,General,What city was the leader of the delian league,Athens,General,Who figured out how to win friends and influence people,Dale carnegie -People & Places,For what are Allen and Wright most famous?,Root beer,Geography,Where Was Henry Stanley When He Uttered The Phrase (Dr Livingstone I Presume) ,Ujiji On The Shores Of Lake Tanganyika ,General,Where would you be if you landed at Santa Cruz airport,Bombay - History & Holidays,"Who took the title ""Lord Protector of the Commonwelth of England, Scotland, and Ireland"" ?",Oliver Cromwell,General,In Animal Farm what kind of creature was Bluebell,A Dog,General,Female bathing caps were invented to prevent what,Clogged up Drains -General,What U.S. state includes the telephone area code 601,Mississippi,Food & Drink,What Is Feta A Type Of ,Cheese ,General,"What struck honshu island, japan in 1934 killing 4,000 people",Typhoon -General,The remains of prehistoric organisms that have been preserved in rocks are called ________,Fossils,General,In which sport would you hear the term cleek,Golf it’s a wood,General,A young unmarried woman,Damsel -General,Who was john reid,Lone ranger,General,What is the scientific name for earwax?,Cerumen,General,What type of fish is Scomber Scombrus,Mackerel -General,What is a person who maliciously starts fires,Arsonist,General,What is another name for the Feast of the Annunciation,Lady day,General,What colour is the ferrari emblem,Yellow -General,Who painted the Laughing Cavalier?,Franz Hals,General,Who sang about Sylvia's Mother,Dr Hook,General,Who predicted in the 1500s that a man named Franco would provoke a civil war in Spain,Nostradamus -General,In the abbreviation VDU what does the V stand for,Visual,Entertainment,Who played 'The Scorpion King' in the recent movie 'The Mummy Returns'?,Dwight Johnson,General,The Chinese only do it every 10 years – what,Celebrate Birthdays -General,What name is given to a boxer who leads with his right hand,Southpaw,General,What sport was observed by Captain James Cook in 1771,Surfing,Music,"How Big Was The First Ever Chart In 1952 , Top 10, Top 12, Top 20, Top 100",Top 12 -General,What job has a pudentacurist,Shapes pussy hair,Science & Nature,Where Was The First Alam Clock Produced ,In Germany In 1360 ,General,After The Red Baron was shot down who took over his squadron,Herman Goering -General,Many female children are named 'friday' after which patron saint of oxford,St frideswide, Geography,What is the largest lake in Europe?,Lake Lagoda,General,"Generation X Toys: Once scarce, pudgy dolls that came with their own birth certificates",Cabbage patch kids -Music,Ride On Time Spent 6 Weeks At No.1 In The UK In 1989 For Whom,Black Box,General, Legal Terms: The people chosen to render a verdict in a court.,Jury,Music,Who Has Both The Top Two Best Selling Heavy Metal Albums Of All Time In The UK,Meatloaf (Bat Out Of Hell and Bat Out Of Hell 2) - History & Holidays,Which 1950s films took place in Hawaii 1941 ,From Here to Eternity ,General,Which is the largest island in the Caribbean,Cuba,General,What do the letter RCMP stand for,Royal canadian mounted police -Music,"Name The Group That Had A Hit With ""Inside"" The Musical Backdrop To A Levi's Ad",Stiltskin,General,In the 1976 Olympics who were the Yellow Bananas,Officials (cos of uniform colour),General,Where was the battle of Hastings fought,Senlac hill -Science & Nature,"If you're in the northern hemisphere, Polaris, the North Star, can be found by looking which direction",North,General,What disease do the French call la rage,Rabies,General,What is a whale's penis called,Dork -General,"Who recorded the album ""Troubadour"" in 1976",Jj cale,Science & Nature,In Engineering What Do The Initials CAD stand for ,Computer Aided Design ,Food & Drink,What name is given to rough cider distilled from withered apples? ,Scrumpy  -General,From which team did marlboro switch its backing to mclaren in the 1974 season,Brm,Art & Literature,Who wrote 'Valley Of The Dolls'?,Jacqueline Susann,General,Ancient China Treason Robbery Adultery what punishment,Castration -General,What common item were once called moth patches,Freckles, History & Holidays,What automotive flop was named for the only child of henry ford ,The edsel , History & Holidays,Who Was Shot Dead In Dallas On 24th November 1963 ,Lee Harvey Oswald  -General,In what did ray walston play 'uncle tim',My favourite martian,Music,"How Many Times Was George Michaels Video ""I Want Your Sex"" Re-Edited Before MTV Would Show It",3 Times,General,Who performed the original version of the song entitled 'Song to the Siren' which has since been covered by numerous well known artists?,Tim Buckley -General,What TV series had a signature tune called Liberty Bell,Monty Pythons Flying Circus,General,The Creators Of Which Cartoon Characters Were Threatened With Legal Action By Oasis In 1996 If They Covered Any Of Their Songs?,The Smurfs,General,What language has the most words,English -General,What is the most famous 500 mile car race in the U.S.,Indianapolis 500,General,In what sport would you find a Tell Tale,Squash - Tin strip ball can't hit, History & Holidays,"Bing Crosby famously sang 'I'm dreaming of a white Christmas'', what is the next line. ",Just like the ones I used to know  -Food & Drink,What Is A Boullabaisse ,A French Fish Soup Or Stew ,General,What did the word bald originally mean,Clean or White,General,What is a receptacle for holy water,Font -Art & Literature,What is the opposite of an utopia?,Dystopia,General,Who recorded blue morning blue day in 1978,Foreigner,Entertainment,What is the frog's name in 'The Muppet Show'?,Kermit D Frog -Music,Terry Hall Of Fun Boy Three Later Formed A New Band Was It Called The Colourbox Or The Colourfield,The Colourfield,General,What Is The Worlds Most Tornado Prone Country,Uk because of it's large coastline in ratio to it's surface area,General,Montevideo is the capital of ______,Uruguay -General,What act do the French call The English Perversion,Whipping Flagellation,General,In Denver Colorado it is illegal to lend what to your neighbour,Vacuum Cleaner,General,What is the study of mankind called,Anthropology -General,Lauds Prime Tierce Sext Nones what comes next,Vespers,Sports & Leisure,Who was the only woman to win an athletics gold medal for Britain in the 1992 Barcelona Olympics? ,Sally Gunnell ,General,"In Greek mythology, phoebe was the goddess of the ______",Moon -General,What U.S. state grants the most fishing licenses,California,General,EL is the international aircraft letters of which country,Liberia,General,In a survey 32% of wives would change their husbands what,Weight -General,What was the language of ancient india,Sanskrit,General,What author said 'accidents will occur in the best regulated families',Charles dickens,General,Jerome napoleon bonaparte died in 1945 of injuries sustained from tripping over his ______,Dog's leash -General,Humbert Humbert' is a character in which book,Lolita,General,Sufferers from lambdacism cannot do what,Pronounce letter R,Mathematics,What is the minimum number of integer degrees in an acute angle?,One -Entertainment,"Formerly with Spencer Davis, he went on to form Traffic with Dave Mason. He is?",Steve Winwood,General,Your ____ holds your head to your shoulders,Neck,General,"Who was the ""gatekeeper"" in Ghostbusters?",Sigorney Weaver -General,Who was the author of the novel 'The Midwich Cuckoos'?,John Wyndham,General,"Where, on cattle, is the dewlap",Under the throat,General,"In England what can be private, public or approved",Schools -Sports & Leisure,Who is known as (King Kenny)? ,Kenny Dalglish ,General,Stepping directly onto the point of a foot.,Piqué,General,What is measured by an interferometer,Wavelength of light -General,What bone connects your shoulder blade & elbow joint,The humerus humerus,General,Until 1955 in England you needed a licence to take what on road,Lawn Mower,General,What is the symbol for iron,Fe -General,The German New Year's carnival,Fasching,General,"Like a lady in 'the simpsons', sideshow bob's criminal number is the same as what character in 'les miserables'",Jean valjean,General,What is the Latin name for the North Star,Polaris -General,Who was the male star of the 1967 film Barefoot in the Park,Robert redford,General,Whose first book was called Child Whispers,Enid Blyton,General,Which Country Has Montivideo As It's Capital,Uruguay -General,Over which islands did britain and argentina fight in 1982,Falkland islands,Science & Nature,Which Carnivorous Plants Natural Habitat Consists Of A Small Coastal Area Between North & South Carolina ,Venus Flytrap ,General,As sick as a ______,Dog -General,What was the first Pink Floyd album,Piper at the gates of dawn,General,"Anthropoid (Ape) of equatorial Africa that, physically and genetically, is the animal most closely related to humans?",Chimpanzee, History & Holidays,In December 1967 53 Year Old Louis Washkansky Became The First Person To Undergo What ,A Heart Transplant  -Sports & Leisure,As who is Cassius Clay now known?,Mohammed Ali,General,"Who, in Greek mythology, was chained to rock with an eagle picking at his liver",Prometheus,General,"Where Will You Come Across The Substances Of Sodium Thiopental, Pancuronium Bromide, Potassium Chloride",Lethal Injection -Toys & Games,Where did the card game 'bridge' originate?,Turkey,Food & Drink,What Does The Name Of The Veal Dish 'Saltimbocca' Mean? ,Literally 'Jump In The Mouth' In Italian ,Food & Drink,The flop 1960's diet drink Minivitine was a spinoff of this drink mix.,Ovaltine - History & Holidays,The festival of Halloween was first celebrated by which ancient tribe ,The Celts , History & Holidays,With three words complete this movie trailer catch line for the film Alien. 'In space no one can_____' ,Hear you scream ,General,"What submarine vanished on May 21, 1968",The scorpion -General,The city with the most riders in it's subway system is what,Moscow,General,"Who said ""Bigamy is one husband too many like Monogamy""",Erica Jong - Fear of Flying 1973,General,Who was the first driver to wear a helmet in the indy 500,Eddie Rickenbacker -General,"James Hepburn, the fourth Earl of Bothwell, died in 1578. Who did he marry in 1567",Mary Queen of Scots,Sports & Leisure,What are the two basic aids in orienteering?,Map and compass,General,What actor was born Krishna Bhanji,Ben Kingsley -General,What is the Hobbit's favourite food,Mushrooms,General,What is the white part of an egg called,Albumen,Geography,How Many Countries are There In South America ,Thirteen  -General,"Which eighties album, that sold 20 million plus copies, featured Vincent Price",Thriller,Technology & Video Games,secret of Evermore' was entirely produced in which country? ,U.S.A.,General,What would you do with your koko in Japan,Play it – Musical instrument -General,In the Winnie the Pooh stories what is Kanga’s baby called,Roo,General,What is the Capital of: Nepal,Kathmandu,General,New Orleans USA - Southampton GB same nick football team,Saints -General,What is the most popular South American aphrodisiac,Piranha head soup,General,"What country is headed by King Fahd Ibn Abdul Iziz, one of 44 sons sired by a 22 wife dad",Saudi arabia,General,From which fruit is the liqueur obtained,Cherry -General,What did clio represent in the nine muses,History,General,USA has most roads what country has second most,India,General,How many Nightmare On Elm Street movies were made in the 80's?,5 -General,What is the name of the leading female star in an opera,Prima donna,General,In which London park do deer roam free,Richmond, History & Holidays,What duo lost their Grammy for Best New Artist from the eighties? ,Milli Vanilli  -General,What was George Hepplewhite's profession,Furniture maker,General,Beagles were a hunting dog bred to hunt what,Hares,Art & Literature,"Design style prevalent during the 1920s and 1930s, characterized by a sleek use of straight lines and slender forms.",Art deco -General,What is a collection of penguins known as,Rookery,Music,What Do PJ Harveys Initials Stand For,Polly Jean,General,In which sport would you hear the term bedposts,Ten Pin Bowling a 7 – 10 split - History & Holidays,In the Christmas song 'White Christmas' what did children listen for? ,Sleigh Bells ,General,What is the flower that stands for: chaste love,Acacia,General,"What's the international radio code word for the letter ""Y""",Yankee -General,What is the more common name of Sildenafil Citrate,Viagra,General,Which Country Has The Currency The Tugrik,Mongolia,General,Who was the world's first public computer information service,Compuserve -General,One person every 6 seconds dies from what,Contaminated water diseases,General,Daffodils' belong to which genus of bulb,Narcissus,General,"A curved triangle at the corners of a square or polygonal room, used at the opening of a dome.",Pendentive -General,Girls name can mean big fruit basket or a meeting whaling captains,Molly,General,What did the first issue of Playboy in 1953 not have,Date - unsure if it would continue,Music,Which Re-Issued Abba Track Got To Number 16 In 1992,Dancing Queen -Science & Nature,A bone specialist is a(n) ________.,Osteopath,General,Which is considered the most powerful piece on the chess board,Queen,General,What US city is named after vice president of the mid 1840s,Dallas -General, Legal Terms: A crime more serious than a misdemeanor.,Felony,General,Which is the earliest US military award for service beyond duty,Purple Heart,General,Who ordered John the Baptists execution,King Herod -General,Who was the longest reigning Prime Minister of Britain in the 20th Century?,Margaret Thatcher,General,Which canadian province was formerly called acadia,Nova scotia, History & Holidays,Who Released The 70's Album Entitled New Boots and Panties ,Ian Dury  -General,Who was the male star of the 1998 'blockbuster' film Titanic,Leonardo di caprio,General,Who hosted the 1999 cricket world cup,England,General,Who was The First Actor To Refuse An Oscar?,George C Scott -General,Which actor played the marine expert Matt Hooper in the film Jaws,Richard dreyfuss,Geography,In which city is the Bridge of Sighs,Venice,General,Who Is The Singer Michael Barret Otherwise Known?,Shakin Stevens -General,Which former British TV celebrity designed the logo for children's TV programme 'Blue Peter'?,Tony Hart, History & Holidays,"Born on Christmas Day 1887, this American tycoon, created one of the largest hotel chains in the world (Surname) ",Conrad Hilton ,General,A Robert Heinlein book won 1960 Hugo award name it,Starship Troopers -General,"Martin British rock-music group that rivaled the popularity of the group's early contemporaries, The Beatles",The rolling stones,General,How many sides does a baseball homeplate have,Five,General,Which islands wildlife is 90% unique,Madagascar -General,Which American state is nicknamed 'The Empire State of the South' or 'Peach State',Georgia,General,Which county has the most MEPs 99,Germany,General,What was ludwig von beethoven once arrested for,Vagrancy -General,Galena is a major ore of which metal,Lead,General,Which planet has a satellite called Cordelia,Uranus,General,What was banned in China in 1911 as a sign of feudalism,The Pigtail -Food & Drink,Roast turkey: does white/dark meat have most calories? ,Dark ,Music,Which Group Released The Album Definitely Maybe,Oasis, History & Holidays,What is the name of the Russian Czar's daughter who might_or might not_have survived the Russian revolution,Anastasia -General,The canary islands in the pacific are named after what animal,Dog dogs,Science & Nature,Which tree only produces acorns after it is fifty years old?,Oak, Geography,What is the basic unit of currency for Liberia ?,Dollar -Sports & Leisure,Susan Brown Was the first woman to Take Part In which race ,The Boat Race ,General,What was the name of the ghostly st bernard in topper,Neil, History & Holidays,What late night news show became popular in the eighties after the Iranian Hostage takeover? ,Nightline  -General,Fly that bites cattle,Gadfly, Geography,What is the capital of Grenada ?,Saint George's,Music,In Which Musical Was There A Dance Routine Set At A Barn Raising,7 Brides For 7 Brothers -General,Name the ship lost off Zuyder Zee in 1799 from which a famous item was salvaged in 1858,Lutine,General,Which Bands Name When Translated To English Literally Means Fast Fashion,Depeche Mode,Sports & Leisure,Why Was Number Six Valverde Famous In The Year Of 2006? ,Won The Grand National  -General,The skin of which animal is used to make Morocco Leather,Goat,Music,"""Debora"" And ""One Inch Rock"" Were The First Chart Entries For Which Soon To Be Legends",T-Rex,Music,"Who Recorded The Albums ""Lets Dance"", ""Tonight"", And Black And White Noise",David Bowie -General,Which French actor director takes the role of 'Monsieur Hulot' in films such as Mon Oncle and Traffic,Jacques tati,General,What film star was born in Sakhalin Siberia,Yul Bryner,General,What was the name of the I.B.M. computer which played Chess against Gary Kasparov,Deep blue -General,What is the world's largest desert,Sahara desert,General,What ocean current moderates the weather in north-western europe,Gulf stream,General,Which was Dickens' first novel,Pickwick papers -Geography,Where Is The Glenveagh National Park ,"County Donegal, Ireland ",General,What is the fruit of a rosebush called,The hip,General,What is the stage name of film actress Caryn Johnson born 1949,Whoopi goldberg -General,A ship due to leave port flies a 'Blue Peter'. What does the flag look like,Blue rectangle with a white rectangular centre,General,What canadian city was carling beer first brewed in,Toronto,General,Who was the first U.S. President to visit China,Richard m nixon - History & Holidays,Which actress caused a sensation by appearing naked in the opening scene of the 1957 film _And God Created Woman _directed by her then husband Roger Vadim ,Brigitte Bardot ,General,Mother the car what's the name of garfield's teddy bear,Pooky,General,Traditional 7 Seas N S Atlantic N S Pacific Arctic Antarctic ?,Indian -General,What is the name for the number 1 followed by 100 zeros,Google,General,What is the Capital of: Botswana,Gaborone,General,"Which sport is featured in the book and film ""This Sporting Life""",Rugby league -General,According to psychologists the happiest people watch what TV,Soap Operas, History & Holidays,Who is generally given credit for the term 'Rock and Roll? ,Alan Freed ,General,What German city is best known for its Oktoberfest,Munich - Geography,The sun sets in the ____?,West,Entertainment,Name the late actor who played Obi-Wan Kenobi in Star Wars?,Alec Guiness,General,What is a group of chicks,Brood -General,What Foodwise Is A Munster Plum,A Potato,Sports & Leisure,"What sport has sprint, tandem and team pursuit events?",Cycling,Art & Literature,Who Said When A Man Is Tired Of London He Is Tired Of Life ,Dr Samuel Johnson  -General,Luxembourg is the capital of ______,Luxembourg,General,"What's the parent company of the ""jack-in-the-box"" hamburger chain",Ralston,General,What is the third part of the 'Lord Of The Rings' trilogy,Return of the king -Music,Name One Of The Two Classic Tracks On A Barry Manilow Single Released In 1978,Copacobana & Somewhere In The Night, History & Holidays,What Happened To Alaska In 1867? ,It Was Sold By Russia To The United States ,General,Who was known as 'The last of the Red Hot Mommas',Sophie tucker -Science & Nature,What Does A Chiropodist Treat ,The Feet ,General,Arthur Flegenheimer died Oct 1935 was better known as who,Dutch Schultz,General,What male human feature was taxed in Elizabethan times,Beards -General,Who made his debut in a 1955 Warner Brothers cartoon,Speedy Gonzales,General,What does yellow gold contains 10% of,Copper,Music,Who Was Originally Known As Harry Webb,Sir Cliff Richard -General,Spanish dictator Franco nominated whom as his successor,Prince juan carlos,General,What colour would the sky be if viewed from mars,Pink,Sports & Leisure,In which country was netball invented? ,America  -General,Oriental market,Bazaar,General,What did Edwin Land invent in the 1940's,Polaroid camera,General,What are scallops,Shellfish -General,"If the groundhog sees his shadow on Feb. 2, there will be how many more weeks of bad weather?",Six,General,In what film did john wayne get stranded in labrador,Islands in the sky,General,What is a Boodie,A Marsupial related kangaroo rat -Food & Drink,Salted and glazed biscuit shaped like a knot ,Pretzel ,General,Which country rejected membership of the E.E.C. in 1972,Norway,General,Process of heat treatment by what glass & certain metals & alloys are rendered less brittle & more resistant to fracture,Annealing -General,What's ibm's motto,Think,Science & Nature,What Is The Common Name For A Baby Kangeroo? ,Joey ,Music,What event Occurred At Finsbury Park On The 8th And 9th Of August 1992,Madstock / Madness Reunion Concert -General,In which ocean is mauritius,Indian ocean,General,The term Semicentennial represents how many years ?,50,General,What is the only european country where monkeys live free,Gibraltar -General,What food item in French literally means twice cooked,Biscuit,General,"Who recorded the album ""diver down"" in 1980",Van halen,General,What are Puli Sloghi and Kuvaszok,Exotic dog breeds -General,Heliophobia is a fear of ______,Sun,People & Places,Which Labour MP Attempted To Fake His Own Disappearance ,John Stonehouse ,Music,Which Famous 1960's Band Was Jane Ashers Brother In,Peter & Gordon -General,Do the pupils in a person's eyes get larger or smaller in bright light,Smaller,General,What is the more common name for the Buddleia,Butterfly Bush,General,What chilean president was killed in a 1973 coup d'etat,Salvador allende -General,"How is ""Rodrigo Diaz de Vivar"" better known",El cid,General,What kind of insect is a 'whirligig',Beetle,General,The potato arrived in Spain in which year,1565 -General,Which country is indicated by the car identification letters RA,Argentina,General,What musical term means 'slowely and stately',Largo,Science & Nature,"To what group of elements do cerium, praesiodymium and promethium belong?",Rare earth metals -Science & Nature,Why Did Henry Ford Say People Can Have A Model T Ford In Any Colour Just So Long As It Was Black ,Japan Black Enamel Was The Only Paint That Would Dry Quick Enough to Keep Up With The Assembly Line , History & Holidays,Who is considered the father of medicine?,Hippocrates, History & Holidays,Which singing family was David Cassidy a member of ,The Partridge Family  -General,Lansing is the capital of ______,Michigan,General,If you were given some marlite what would you do with it,Dig into soil it’s a clay lime mulch,Science & Nature,Who invented the telescope?,Galileo Galilei -Music,What Did Slipstream Tell Us They Were Doing In 1992,We Are Raving - The Anthem,General,What is the birth flower for January,Carnation,Science & Nature,Which Is The Only Bird That Casn Fly Backwards? ,The Hummingbird  -General,In the US what links Fort McHenry with the moon,Flag flies 24/7 president decree, Geography,What is the basic unit of currency for Dominican Republic ?,Peso,Technology & Video Games,"The Internet Relay Chat Program, which normally connects to port 6667, is more commonly known as ___.",IRC -General,Which author wrote about the fictional Napoleonic war hero Sharpe,Bernard cornwell,General,Evidence of the first recorded brothel was found in which city,Athens Greece, Entertainment,What is know as 'The Greatest Show On Earth'?,Barnum & Bailey Circus -Mathematics & Geometry,A triangle with three equal sides is called _______.,Equilateral,General,"In a uniform gravitational field, the center of gravity is also a______",Centre of mass,General,What does bmx stand for,Bicycle motocross -General,Freya was the norse goddess of ______,Love and fertility,General,What is someone who collects banknotes called?,Notaphile,General,What is the perforated tag with advertisements that are put in mailer envelopes,Bangtail -General,Second city: St. Croix (U.S. Virgin Islands),St. thomas, History & Holidays,"Played subsequently by Sarah Michelle Geller on tv, which character was played in a movie by Kirsty Swanson ",Buffy theVampire Slayer ,General,"The Olympic motto 'citius, altius, fortius' means what?","Faster, higher, stronger" -General,Who invented popcorn,American Indians,Music,"Who Had Hits With ""Don't Stop Believing"", ""Faithfully"" & ""Open Arms""",Journey,General,Who played harvey weskit on mr peepers,Tony randall -General,"What song does Rodney Dangerfield sing in ""Back To School""",Twist and,People & Places,Who Was French President From 1969 Until 1974 ,Georges Pompidou ,General,The Finnish know her as Tuna what do we call her,Cinderella -Entertainment,In the Gene Pitney how many hours was it from Tulsa?,24,General,What was the name of the Rat who was seen as a master of the Teenage Mutant Turtles and an arch enemy of Shredder?,Spilnter,General,What was the forerunner of croquet,Pall mall -General,Which course was the first on the European mainland to host the Ryder Cup?,Valderama,General,"On Little House on the Prairie,what was Laura's horse's name?",Bunny,General,What is a group of this animal called: Jellyfish,Smack -General,What was the first cartoon character called,Oswald the rabbit,General,The word Angel derives from the Greek meaning what,Messenger,Sports & Leisure,"How Many Times Did Nick Faldo Win The Masters Golf Tournament? Is It (3,5,7) ","3 (1989, 90 , 96) " -People & Places,Who Was Assassinated By Two Sikh Bodyguards ,Indiri Gandhi ,General,"Are periwinkles animal, vegetable or mineral",Vegetable,General,Nut - Neuth - Nuit alterative names Egyptian goddess of what,Sky - History & Holidays,Name the loner rebel reindeer with the red shiny nose.,Rudolph,General,What movie were the passengers on the plane in Executive Desicion watching?,Born to be Wild,General,What country singer's duets with loretta lynn ended when he died at age 59,Conway twitty -Sports & Leisure,Football: The Baltimore ________.,Colts,Music,Which 1969 Hit Was The Biggest Foreign Language Single Of The Decade In Britain,Je T'Aime / Jane Birkin & Serge Gainsborough,General,"In which musical was the song ""The Girl that I Marry""",Annie get your gun -General,Time during which a machine esp. computer is out of action or unavailable for use,Down time, History & Holidays,Who was King Arthur's foster-father?,Ector,General,The rivers Lahn and Mosel are tributaries of what river,The Rhine -General,What Georgia town did the first Dukes of Hazzard episodes take place?,"Covington,Georgia",Religion & Mythology,Who was the Greek goddess of spring?,Persephone,General,A poster depicting Lord Kitchener pointing outwards stated what message,Your country needs you -General,In which play does dame pliant appear,Alchemist,General,What album by george michael won the grammy in 1988,Faith,General,Where was Harry Houdini born,Budapest Hungary -General,Which peoples name translates as eaters of raw flesh,Eskimo,Music,Who Sang With The Attractions,Elvis Costello,General,"Although it doesnt sound like a dog, ____dust is ornamental wood chips often placed in flowerbeds",Bark -Science & Nature,This is the symbol for tin.,Sn,General,In what sport is the arena 8 metres square,Karate,General,Which biologist has written the books The Selfish Gene and Climbing Mount Improbable,Richard dawkins -General,What was betty grable's nickname,The legs,Religion & Mythology,Where was Methodism founded ?,Oxford University,General,Who was Stan Laurels partner,Oliver Hardy -General,What name is given to any muscle with three heads,Triceps,General,What river did John baptize Christ in,Jordan,Religion & Mythology,"In Greek mythology, where did Perseus kill his grandfather?",Larrisan games -General,Who was the 32nd president of the U.S.,Franklin d roosevelt,Science & Nature, A cat has 32 muscles in __________,Each ear,General,Which battle is sometimes called the Battle of Three Emperors,Austerlitz -General,Who invented popsicles,Frank epperson,General,"What are brick, fontina, port salut, quargel types of",Cheese, Language,"The word rodent comes from the italian 'rodere', which means?",Gnaw -General,Which nation has an AK-47 assault rifle on its flag?,Mozambique,General,What did george harrison discover on the witwatersrand,Gold,General,"What is the Christian (Latin) name for the place which the Hebrews called Golgotha, (In Aramaic, 'The Place of the Skulls)",Calvary -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,Sports & Leisure,What was the first London club that David Seaman played for? ,Queens park rangers ,General,What name is given to music that constantly syncopates a straightforward tune,Ragtime -General,What is the name of the cartilage flap at the trachea which prevents food going down the wrong way,Epiglottis,General,Toxiphobia is a fear of _________.,Poison,General,What does an ombrometer measure,Rainfall -Entertainment,What is tattooed on Glen Campbell's arm?,Dagger, History & Holidays,Which country was split into two zones by the Yalta agreement?,Germany,General,"On which badge are Minerva, Clipper ship, Grizzly bear, Eureka",California Highway Patrol - Chips -Sports & Leisure,Where were the 1960 Olympics held ?,"Rome, Italy",General,Clemintina Campbell famous as who,Cleo Lane,Music,The Drum Break From Funky Drummer Is One Of The Most Used Samples Of All Time Who Recorded The Original Track,James Brown - Geography,What is the highest mountain in the world?,Mount Everest,Sports & Leisure,On which cricket ground was the first test match in England played? ,The Oval ,General,"Which Hollywood Actor Not Really Known For His Action Roles Baffled Movie Producers In 1987 When He Turned Down The Role In What Went On To Become The ""Die Hard"" Series Of Movies",Richard Gere -General,Who was born Mark Feld,Marc Bolan,General,Where would you find a planchette,Oiuja board indicator,General,Which actress played The Sculptress on TV?,Pauline Quirke - History & Holidays,In The Inspirational 1946 Film 'Its A Wonderful Life' What Is The Name Of George Baileys Guardian Angel ,Clarence Oddbody ,General,Where could you spend a Rufiyya - Capital Male,Maldives,Entertainment,What group's biggest-ever hit was Be My Baby?,The Ronettes -General,East berlin was the capital of ______,East germany,Science & Nature,What Advance In Sound Recording Was Made By British Engineer Alan Blumlein In 1933 ,Stereophonic Sound ,General,"Better known by her maiden name, who was the 1930s aviation pioneer Mrs. Mollison",Amy johnson -General,The second tallest mountain on earth,K2,General,What number jersey was synonymous with Ice Hockey legend Wayne Gtrezky?,99,Science & Nature,What first appeared beside the roads outside the houses of parliament in 1868 ,Traffic lights  -General,What vegetable was Emperor Nero's favourite,The Leek,General,Which country set up the world’s first chemistry lab in 1650,Netherlands,General,In USA by law only 2 paid services limited to one sex - what,Sperm Doner Wet Nurse -Art & Literature,"In painting, the degree of lightness or darkness in a color.",Values,General,"On whose life is the film 'The Music Lovers', based",Tchaikovsky,General,Who was the star of the post appocolyptic sci-fi film A boy and his Dog?,Don Johnson -General,What is the middle name of author Arthur C. Clarke,Charles,General,Peggy is a diminutive for which girls name,Margaret,General,The toronto maple leafs used to be originally called what,The toronto arenas -Tech & Video Games,What is Mario's profession? ,Plumber,Music,Tom Jones What Prince Song In 1989,Kiss,General,Domenikos Theotocopoulos born Crete - died Spain - who,El Greco -General,There are 20 days in the week in whose calendar,Aztec,General,What is the flower that stands for: pleasures of memory,White periwinkle,Sports & Leisure,What Is The Down Wind Sail On A Yacht Called ,The Spinnaker  -General,Philosopher Jeremy Bentham has a very unusual pet - what,Tea Pot,General,The first what was installed in Antarctica in 1997,ATM cash point machine,Music,"Who Recorded Ther Album ""Diva""",Annie Lennox -Sports & Leisure,Which county cricket team play their home games at Grace Road? ,Leicestershire ,General,"Who wrote ""Damn Yankees"" in 1955",George abbott,General,What word comes from Arabic means reunion of broken parts,Algebra -Music,"Who Sang About ""Skipping The Light Fandango"" & Turning Cartwheels",Procol Harem,General,Who discovered the tomb of Tutenkhamen,Howard carter,General,"Apart from Police, what other word is prominent on Welsh Policemen's uniforms?",Heddlu (Welsh for Police) -General,Keats Who was the first astronaut to return to space,Gus grissom, History & Holidays,Britain and Argentina fought over these islands in 1982.,Falklands Islands,General,"In Beatrix Potter's Tale of Tom Kitten, what was the name of his mother",Tabitha twitchett -Art & Literature,"Who is the author of ""Harry Potter"" ?",Joan Rowling,Religion & Mythology,The Lord's Prayer appears in the Bible how many times (written numerically)?,Two,General,Which was the first magazine to publish a hologram on its cover,National -General,Arachnoid refers to what kind of insect,Spider,Music,Who Had the best selling Album Entitled Diva,Annie Lennox,Music,What Was The Full Name Of The Artist Formely Known As Prince,Prince Rogers Nelson -Food & Drink,Who had a number 1 record in 1963 with Sweets For My Sweet? ,The Searchers , History & Holidays,In 1715 Louis XIV Of France Was Succeeded By Louuis XV What Relation Was He ,Great Grandson ,General,"In Greek mythology, which king made a statue of a woman which Aphrodite brought to life",Pygmalion -General,Name the pain-inflicting person you go to to get your teeth fixed.,Dentist,Food & Drink,"Which South-East Asian fruit's smell reminds people, to put it mildly, of various stages of decay ? ",Durian ,General,Portrait of a Man is the real title of which artistic work,The Laughing Cavalier Franz Halls -Entertainment,Fat Albert and friends was created by ______ ?,Bill Cosby,General,What is the central part of a backgammon board called,The Bar,General,In 1945 Marines land on,Iwo jima -General,"""Night of he Hunter' was the only film directed by which actor",Charles laughton,Music,Which 1995 Album Cover Features A Wedding Photo With One Of The Band Members Shown In Black & White,Pulp / a Different Class,General,What sort of sexual practice is Lectamia,Caressing in bed no coitus -General,"What Cheers actor was in ""The Empire Strikes Back?""",John Ratzenberg,General,In Ancient Mesopotamia people worshiped what,Pigeons,General,Apparition or double of living person,Doppelganger -General,"In the Ian Fleming novel ""Goldfinger"", what was Goldfinger's first name",Auric,General,What was Professor Moriarties first name,James, History & Holidays,What is the first ghost seen by Ebenezer Scrooge in 'A Christmas Carol'' ,His ex-partner Jacob Marley  -General,On the PH scale what does PH stand for,Potential Hydrogen,General,Somniphobia is the fear of,Sleep,General,What's the world's largest cat,Tiger -General,"Which Company Advertised With The Slogan ""Someday All Watches Will Be Made This Way""",Seiko,General,"Who recorded ""love is all around"" in 1968",Troggs,General,Rice what was lestat's mother's name,Gabrielle -General,Who played The Fugitive,David Jason,General,"What job links Paul Clifford, Claude Duval, Capt. Macheath",Highwayman,General,What is the storage polymer of plants,Starch -General,What was in Catherine's crucifix in the movie Cruel Intentions?,Cocaine,General,"Which film director coined the term ""Paparazzi"" to describe intrusive photographers",Fellini,General,Grammy Awards: What single by Tina Turner won the grammy in 1984,What's love -General,To who did the lady of the lake give excalibur,Sir lancelot,General,How many buttons does a double breasted suit have?,Six,General,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 -General,Which film was grace kelly making when she met prince ranier,To catch a,General,Only one miracle is mentioned in all four gospels what is it,Feeding of 5000,Food & Drink,What does iron deficiency cause?,Anaemia -People & Places,"Who Said 'I Hope Harry Secombe Goes Before Me, I Don't Want Him Singing At My Funeral'? ",Spike Milligan ,General,The orchestra usually tunes up to what instrument,Oboe,General,What Was U2's Very First UK No.1,Desire -General,In which 1989 film did Kevin Costner play Ray Kinsella?,Field Of Dreams,General,Allergic Rhinitis has what more common term,Hay Fever,General,"If Brazil had won the 1998 tournament, how many times would they have won the soccer World Cup?",Five -General,Which mountains are between the Caspian Sea and the Black Sea,Caucasus,General,"What film links Cher, Michelle Pfeiffer and Susan Sarandon",The witches of eastwick,Art & Literature,Who Painted The Blue Boy ,Gainsborough  -General,Bantu-speaking people of southern Africa,Zulu,General,Ii what is the round fruit of the sycamore tree called,A buttonball,General,Gjetost is the national cheese of what country,Norway - Geography,In which city is the famous Bond Street?,London,General,A castrated bull,Bullock,Music,"""George O Dowd, Roy Hay, Mikey Craig, Jon Moss"" Were All Members Of Which 80's Band",Culture Club -General,Where are Bay of Heats and Bay of Dew Sinus Aestuum - Roris,Near side of Moon,Geography,Which Group Of Islands Are Known As The Friendly Islands ,The Tonga Islands ,Entertainment,What was The Beatles' biggest hit single?,Hey Jude -General,Square of cloth used to wipe nose,Handkerchief,General,To which Berkshire destination did C.N.D. march from London each Easter beginning in the late 1950s,Aldermaston,General,"Who said 'Everything must either be or not be, whether in the present or in the future' ?",Aristotle -Geography,Which Famous City Bridge Is Known Locally As The Coathanger ,Sydney Harbour Bridge ,General,What is a Characin,Small Fish,General,On which continent are the Iguaca waterfalls,South america -General,A Stag with 12 point antlers is known as a what,Royal, History & Holidays,Who Was Nick-Named (The Desert Fox)? ,Field Marshal Rommel , History & Holidays,Who Commanded The Confederate Armies During The American Civil War? ,General Robert E.Lee  -Science & Nature,Which Bone Is The Patella ,The Knee Cap ,Music,"Who Recorded The Album ""Eat Em And Smile""",David Lee Roth,Music,Who Said Go West In 1993,The Pet Shop Boys -General,You can have a troop of actors and what group of animals,Monkeys,Food & Drink,What delicatessen dish is highly seasoned beef prepared from a shoulder cut called? ,Pastrami ,General,What is the literal Greek translation of Sarcophagus,Flesh Eater -Science & Nature, 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,General,What is the oldest known cultivated vegetable,The Pea,General,24-karat gold has to have a small amount of _____ in it to keep it from being too soft,Copper -General,Vinnie Jones is associated with which sport,Football,General,What beautiful hotel commands a matchless view of quebec city,Chateau,General,"The Slave of Duty', is the alternate title for which Gilbert and Sullivan operetta",Pirates of penzance -Music,Name The UK Label Associated With A Dog Named Nipper,HMV,General,What is the Capital of: Uzbekistan,Tashkent toshkent,General,What is a group of this animal called: Heron,Hedge -Music,Who Preceded Phil Collins As The Lead Singer Of Genesis?,Peter Gabriel,General,What type of large vehicle is named after a Hindu God,Juggernaut,Geography,Which is the Earth's fifth largest continent,Antarctica -General,Creator of Perry Mason,Erle stanley gardner,General,Which jockey rode a Derby winner called Pinza,Gordon richards,General,Formal or informal agreement among business firms designed to reduce or suppress competition in a particular market.,Cartel -General,What's the word for the front of a dogs chest and joint of beef,Brisket,General,Who appeared as the infant Moses 1956 film 10 commandments,Frazer Heston – Charlton's son,General,Which two male fish give birth,Sea horse and pipe fish -General,Which novelist created Crown Prosecutor Helen West,Frances fyfield,General,What is a group of this animal called: Walrus,Pod,Music,"Which Group Had A Hit LP With ""Babylon By Bus""",Bob Marley & The Wailers -General,Who directed the 1989 film The War of the Roses,Danny devito,General,What job does an Oikologiost do,Housekeeper,General,Collective nouns - A Husk of what,Jackrabbits -General,"Who did a version of 'one bourbon, one scotch, one beer' on his 1977 debut album",George thorogood,General,Pair of briefs consisting of small panels connected with strings,Tanga,General,Whose headstone reads 'she did it the hard way',Bette davis -Sports & Leisure,Name the hockey trophy awarded to the player demonstrating the best sportsmanship.,The lady byng trophy,General,What's the name of the holy book of Islan,The koran,General,Name Santa Clauses (St Nicholas) French brother,Bells Nichols -General,Who wanted 'a lover with a slow hand',Pointer sisters,General,King Henry VIII trained as what ,A Priest,General,Game show: which of the 60 minutes men hosted several game shows in the early part of his career,Mike wallace -Food & Drink,Who is the American artist who uses Campbell's Soup cans in his pop art? ,Andy Warhol ,Music,Which Musical Opens At Uncle Jocko's Kiddie Show In Seattle,Gypsy, History & Holidays,Who invented the exploding shell?,Henry Shrapnel -Sports & Leisure,Which English Football Team Has The Longest One Word Name? ,Middlesbrough ,General,What was originally called olive oil water,Vaseline,General,"Who recorded ""king of the road"" in 1965",Roger miller -Music,Which US superstar has had over 70 chart albums in his career?,Frank Sinatra,General,What is the British equivalent of the US Navy rank Rear Admiral (lower half) ?,Commodore,General,What is the top speed in mph that cheetahs have been clocked at,71 -General,Wings of Desire a foreign film remade as what with Nicolas Cage,City of Angels,General,What nation on average takes most time to eat meals,French,General,Who was the American President from 1869 to 1877,Ulysses s grant -Science & Nature,What is the meaning of the name of the constellation Ursa Major ?,Great Bear,General,Frederick Gowland Hopkins won a Nobel prize in 1929 for which medical discovery,Vitamins,General,"If you drive on a parkway, you park on a _______",Drive -Science & Nature,The spiral galaxy nearest ours is the ________.,Andromeda,General,Which country left the Commonwealth in 1987 and has not rejoined,Fiji, Geography,What is the capital of Norway ?,Oslo -Entertainment,Who sings and plays the theme song for the TV show 'Frasier'?,Kelsey Grammer,General,Bacteriophobia is a fear of ______,Bacteria,General,Workshop for casting metal,Foundry -General,What is the name of the evil spirit in Polterguise?,Kane,General,What was the most prescribed drug in the u.k in 1985,Valium,General,In Wyoming it is illegal to wear what in a theatre,A Hat if others can’t see over it -General,Fourth letter of the Greek alphabet,Delta,General,What is the toothpick capital of the world,Maine,General,U.S. capitals Alaska,Juneau -General,"Justin Hayward-Young, great grandson of English painter and postcard artist Walter Hayward-Young, is the lead singer of which band?",The Vaccines,Entertainment,Who sang 'We've only just begun'?,Carpenters,General,Someone who is androphobic has a fear of what?,Men -General,What is the Capital of: Northern Mariana Islands,Saipan,Science & Nature," The once popular dog name __________ is from Latin and means ""fidelity.""",Fido,General,What country is nearest to the North Pole,Greenland -General,Of what are quemoy and matsu part,Taiwan,Sports & Leisure,Who Were Man Utd Playing When Eric Cantona Performed His Famous Kung Fu Kick On A Fan ,Crystal Palace ,Music,"Who Had A Hit In 1988 With ""Don't Go""",Hot House Flowers -General,What popular party drink gets its name from Sanskrit meaning 5,Punch - originally 5 ingredients,General,What do New Zealanders claim Jack Lovelock did in 1935,Run a four minute mile,General,What was Christopher Deans job before Ice Skating,Policeman -Food & Drink,From Which Country Does The Drink Tequila Originate? ,Mexico ,General,"In which tv series are joey potter, pacey witter, dawson leary and jennifer lindley",Dawson's creek,General,Which Sidney Pollack film won the Oscar for best film in 1985,Out of africa -Science & Nature, The underwater mating song of the __________ is so loud that sometimes it can be heard by humans on the shore.,Toadfish,General,What Was Hung Upside Down In The Piazzale Loreto In Milan In 1945,Mussolini's Body,General,Which English writer was named after a Staffordshire lake,Rudyard kipling -General,What's Princess Aurora's better-known name,Sleeping beauty,General,"Which plant has gills, a veil and scales",Mushroom,General,"Xanthic, Fallow and Aureate shades of which colour",Yellow -Geography,In which country is the machu picchu ,Peru ,General,A pair of small drums played with the fingers,Bongo, History & Holidays,Which river did George Washington cross on Christmas night in 1776 in the American Revolutionary War? ,Delaware  -Music,Give The Title Of The 1973 Mott The Hoople Single Featuring A Tennessee City,All The Way From Memphis,General,Faith Hope Charity Fortitude Justice Prudence what's missing,Temperance,General,Which is the most famous engine to run on the Merioneth line,Thomas the tank -Entertainment,Who played Matt Helm in the movies?,Dean Martin,General,In the Hindu pantheon Hanuman is the King of which creatures,Monkeys, Geography,Name the highest mountain in Africa.,Mt. Kilimanjaro - History & Holidays,Who shot Abraham Lincoln?,John Wilkes Booth,General,Heliotaxis means the response of an organism to what,Sunlight,Science & Nature,How many planets are there in our solar system?,Nine -General,The number unemployed consists of all those people in a country who are willing and able to work but are unable to ___ ? ,Find jobs,General,What famous artist could write with both his left and right hand at the same time,Leonardo da vinci,General,Ralph Wonderone became better known under what name,Minnesota Fats -General,What liqueur is prepared from cumin and caraway seeds,Kummel,Science & Nature,Who Took The First Practical Photograph ,Louis Daguerre In 1826 ,General,Musophobia is a fear of what,Mice -General,What is the actual vat in Romania,19%, History & Holidays,How Many Children Did Queen Victoria Have ,Nine ,Science & Nature,The molten material from a volcano is ________,Lava -General,In Star Trek Generation who was the chief of security killed off,Tasha Yar,General,"In the song American Pie, who did the word 'jester' refer to?",Bob Dylan,General,The bering strait lies between alaska and ______,Russia - Geography,What is the basic unit of currency for Vatican City ?,Lira,General,What does Abraham Lincoln never do in any photographs,Smile, History & Holidays,"Name the remake of a 1960's film with the aid of the following actors. The first actor was in the 60's original, the second actor played the same role in the remake James Mason and Jeremy Irons ",Lolita  -General,A plant allied to the thistle with a partly edible flower,Artichoke,General,Lack of Vitamin D results in ___. ?,Rickets,General,The first modern Olympiad was held where,Athens -General,What is the Capital of: Tunisia,Tunis,General,"Which Cecil B. De Mille classic carried the publicity tag, 'The mightiest dramatic spectacle of all the ages'",The ten commandments, History & Holidays,What Was The 9th Century Tax Levied To Fight The Vikings? ,Dane Geld  -General,Firm Music: What was the first album Roger Waters released after leaving Pink Floyd,The Pros and Cons of Hitch Hiking,General,One quarter of people who lose sense of small also lose what,Desire for sex,General,"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 -General,In which game are there hashmarks on each five-yard line,Football,General,Ball point pen ink is made from dye and what,Castor Oil,General,What game has only 7 possible opening moves,Draughts - Checkers -General,"The puma, cougar, lynx & other wildcats are all",Catamounts,Music,What Kind Of People Did REM Take To No.6 In 1991,Shiny Happy People, Geography,What is the capital of Mongolia ?,Ulaanbaatar -General,In WW2 what was unique about the US 222 Infantry battalion,All Japanese or Hawaiian immigrants,General,The study of insects is __________.,Entomology,Music,"Name The Year John Lennon Was Shot, Crying By Don Mclean Was Released & So Was The Movie Blues Bros",1980 -General,"What sport does ""FISA"" govern",Auto racing,General,Who discovered radium,The Curies,Food & Drink,In which country did the word 'biscuit' originate?,France -General,Where did Jim Morrison die,Bath - in Paris hotel,General,Genoa overlooks which sea,Ligurian,Science & Nature,What Is The Largest Carnivore Native To The UK? ,The Badger  -General,Who was john merrick,Elephant man,General,English festival word from French literally Farewell to Flesh,Carnival,Music,"""There But For Fortune"" Was A 60's Classic For Which Female Soloist",Joan Baez -General,"When a U.S. army bomber crashed into the New York's Empire State Building, how many people did it kill",Fourteen,General,A small atmospheric vortex that comes from surface heating is known as what,Dust devil,Food & Drink,What Was The First Nationally Distributed Beer In The USA ,Budweiser  -Religion & Mythology,Which tree do Druids regard sacred ?,Oak,General,"In 1936 King Edward VIII abdicated from the British throne to marry an American divorcee, who was she",Mrs. Wallis Simpson,General,In Macbeth what witch speaks first,The first witch -General, What does a heliologist study,The sun,General,Islands what is ice cube's real name,O'shea jackson,Science & Nature,Which Steam Locomotive Won The Prize For Providing The First Regular Passenger Service ,The Rocket  -General,Nephologists study what,Clouds - Meteorology,General,Who said - Remember time is money,Benjamin Franklin,Science & Nature,Who discovered X-rays?,Wilhelm Roentgen -General,What year did Chernobyl explode,1986,General,"In the film 'pulp fiction', what was the name of uma thurman's pilot character",Fox force five,General,"""Albuquerque"" International Airport Is In Which US State",New Mexico -General,Which breed of dog gets its name from the French for earth,Terrier,General,Osiris was the egyptian god of ______,Underworld and vegetation,General,What would you expect to see at Santa Pod,Drag Racing -Science & Nature,In Computing of what is the term 'bit'' an abbreviation? ,Binary Digit ,General,Pinatubo The application of science to law,Forensic science,General,What forms when a diamond is cut with a laser,Graphite dust -General,"Which Victorian explorer and translator was best known for his translations of the ""Kama Sutra"" and ""Arabian Nights""",Richard burton,Sports & Leisure,How Many Draughts Are On The Board At The Start Of A Game ,24 (12 White 12 Black) ,General,Whose business was ran from 2222 South Wabash,Al Capone -General,Who Wrote The 1972 Mott The Hoople Hit All The Young Dudes?,David Bowie,Music,What group is Phil Lesh a member of?,The Grateful Dead,General,What is the flower that stands for: deceitful chams,Thorn-apple - History & Holidays,"In 1785, Blanchard and Jeffries became the first to cross the English channel using which method of transport? ",Balloon , Geography,Which city has the highest population ?,Mexico City, Geography,What is the largest country in Central America?,Nicaragua -General,Fidelity Bravery Integrity is which organisations motto,FBI,General,Bowling for lizards was whose favourite TV program,Fred Flintstone,General,"Life what major does david bowie's ""space oddity"" refer to",Major tom -General,How many pairs of ribs are there in a male skeleton,12,General,Where did forrest gump keep the book 'curious george',In his suitcase,General,When did the Fuller Brush Company begin using catalogs,1986 -Music,Who Had A Number One Hit In 1962 With The Song Telstar?,The Tornados,Sports & Leisure,This football team was formerly known as the Frankford Yellow Jackets?,Philadelphia Eagles,General,The name Malissa means what,Bee -Music,"Who Had A Surprise Hit With ""Atmosphere"" In 1984",Russ Abbot,General,Two most commonly sold items in stores are sodas and what,Breakfast Cereals,General,"Shakespeare character says ""Blow winds and crack your cheeks""",King Lear -General,In Kiplings How the Leopard got its Spots name the Leopard,Best Beloved, History & Holidays,"In Harry Potter And The Goblet of Fire, What ingredient was needed to resurrect the dark lord ",Blood of an enemy ,General,Where is terre haute,Indiana -General,"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,Music,Which Motown Singer/Songwriter Was Once Described By Bob Dylan As America's Greatest Living Poet,Smokey Robinson,General,On what is an 'octothorpe' found,Telephone -Science & Nature,When does a full moon rise?,Sunset,General,Where was Bobby Kennedy shot,California,General,"Which band had members Robert palmer, Andy and John Taylor, and Tony Thompson?",The Power Station -General,"Which book is subtitled ""the Mistakes of a Night""",She stoops to conquer,General,Dick Tracy the comic strip started life as what name,Plainclothes Tracy,General,ET drank which brand of beer,Coors -General,Name the legless fighter pilot of ww2,Douglas Bader,General,What classic novel sold only 50 copies authors lifetime,Moby Dick,General,What is the Capital of: Moldova,Chisinau -General,What U.S. senator gives out the golden fleece awards,William proxmire,Food & Drink,Which vegetable is a Welsh emblem? ,Leek ,General,St Stevens Tower is usually misnamed what,Big Ben -Geography,Which U.S. state receives the most rainfall,Hawaii,General,What does an ornithologist study?,Birds,Science & Nature,What is another name for consumption?,Tuberculosis - Geography,What is the capital of Guatemala?,Guatemala,General,How fast did the bus in the movie Speed need to go in order not to blow up?,Below 50mph,General,"Who is famously buried in the churchyard at Bamburgh, Northumberland",Grace darling -General,As what is a giraffe also known,Camelopard,General,"""As free as the wind blows, as free as the grass grows'. What is the song title",Born Free,General,When I Was Lying There In The VA Hospital With A Big Hole Blown Through The Middle Of My Life Are The Opening Lines To Which Movie,Avatar -General,Steven Georgi is now Yussef Islam what other name had he,Cat Stevens, History & Holidays,Which Annual Event First Hit Our Screens On The 5 th February 1988 ,Red Nose Day ,General,"What Olympic event's winner is considered to be the ""world's greatest athlete""",The decathlon's the decathlons decathlon's decathlons decathlon -General,After his death what bit Walter Raleigh did his wife carry around,His Head,General,What is the largest lake in australia,Eyre,General,What Was The Former Name Of The Sellafield Nuclear Power Plant?,Windscale -General,How tall was the world's shortest man,670 mm,Science & Nature, More species of __________ live in a single tributary of the Amazon River than in all the rivers in North America combined.,Fish, History & Holidays,The Character Jack Skellington Appears In Which 1993 Tim Burton Film? ,The Nightmare Before Christmas  -General,Goodfellow's Lumholtz's and Bennett's type of what animal,Tree Kangaroo,General,According to its name what major Italian city is the new city,Naples - short for Neopolis,General,Kellogg's Corn Flakes were invented to do what,Reduce Masturbation -General,Which is the world's second largest monolith,Ayers rock,General,Which unfinished castle is found on the island of Anglesey?,Beaumaris,General,"In 1898 , the Bayer company began marketing what they claimed was a non addictive opiate what was it",Heroin -General,In food labelling what does GM mean,Genetically Modified,General,What is the tartan skirt worn by Scottish men called,Kilt,General,Which magazine is most often stolen from US libraries,Sports Illustrated -Geography,Acadia was the original name of which Canadian province,Nova scotia,General,What 1968-71 tv series did ken berry star in,Mayberry rfd,Food & Drink,What Is The Earliest Known Cereal To Be Cultivated ,Barley  -General,I see your schwartz is almost as big as mine.,Spaceballs,Science & Nature,What Type Of Glass Darkens When Exposed To Light ,Photochromic ,General,"For women, what is the least favourite part of the male body",Feet - Geography,"The ""Old City"" of this holy location is divided into four quarters — a Christian quarter, a Muslim Quarter, a Jewish Quarter, and an Armenian Quarter.",Jerusalem,General,In which war did Ulysses Grant & Robert Lee fight on the same side,Mexican,Entertainment,"Mentor of Titan had two children in the Marvel comics, Thanos and ____",Ero -General,Where did abraham lincoln gave his historic speech,"Gettysburg, pennsylvania",General,What animals did hannibal lead over the alps for the first time,Elephants,General,"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 -General,What is the flower that stands for: evanescent pleasure,Poppy,General,"In ""10,000 Leagues Under The Sea"", what ship did Captain Nemo travel in",Nautilus,General,What is unusual about the crab eating seal,It don't eat crabs -General,"Countries of the world: east-central Europe, the capital is Kiev",Ukraine,General,Who is the Patron Saint of hunters,St Hubert,Geography,On what island is Pearl Harbour,Oahu -General,Ncaa: what team won the men's basketball championship game in 1976,Indiana,General,A Lady Paramount judges at what sport,Archery,General,"Chekhov Quotations: ""Doctors can bury their mistakes, Architects can only advise their clients to plant vines.""",Frank Lloyd Wright -General,What was the name of Hannibal's father,Hamilcar barca,General,Who always ended his show in a white e-type jaguar,Simon dee, History & Holidays,"U.S. President, Chester Alan ________.",Arthur -General,What trio were originally called The Rattlesnakes,The Bee Gees,General,Where would you find a howdah,Back of Elephant (basket),General,In Which Asian Country Is Divorce Illegal ?,The Phillipines -General,"Who is known as the ""Father of History"" ?",Herodotus,General,"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,Food & Drink,Which German spirit is flavoured with caraway seeds and distilled from potatoes? ,Schnapps  -Sports & Leisure,In which decade was cricket's first World Cup Final played? ,1970's ,General,Which u.s state gets the most rainfall,Hawaii,Entertainment,Which Australian duo took 13 nominations and 10 wins at the ARIA awards?,Savage Garden -General,"The cardinal is the state bird of 5, 7 or 9 u.s states",Seven,General,Who many gallons of fuel does a jumbo jet use during take off,Four thousand,General,In Tejo a S American game players throw stones at buried what,Gunpowder - try to explode it - History & Holidays,Who led 900 followers in a mass suicide in 1979?,Jim Jones,General,Contralto and Soprano are female voices what comes between,Mezzo - soprano,General,Who was the last living person on a US postal stamp,Nobody it's illegal -General,What religious movement was founded by william booth,Salvation army,General,The French call it creame anglaise what do we call it,Custard,Music,"A Huge Hit For Whitney Houston, Who Wrote The Song ""I Will Always Love You""",Dolly Parton -General,What is more effective than caffeine for waking up in the morning,Apples,Entertainment,Tippi Hedren is best known for her lead role in which film?,The Birds,General,Who might make use of a maulstick?,Artist -Music,Which Song Was A Hit For Both Cliff Richard And Elvis Presley,The Twelth Of Never,General,"What is a moist, fertile spot inside a desert called",Oasis,Food & Drink,If wine is made from grapes what is Tequila made from ,Cactus  -Sports & Leisure,"In Which Sport Would You Encounter a Bed Post, A Six Pack, A Blow And A Cherry ",Ten Pin Bowling ,General,What is the fear of being severely punished or beaten by a rod known as,Rhabdophobia,Science & Nature,Who was the first man to return to space ,Virgil grissom  -General,What is a young Irish girl called,Colleen,General,Who was Prince Charles' mistress while he was married,Camilla parker bowles,General,Why was Clark Kent rejected military service during WW2,Failed eye test -General,"The world's rarest coffee, Kopi Luwak, comes from which country",Indonesia,Science & Nature,What Is The Value Of Sine 30 Degrees ,0.5 ,General,Temperature at which a liquid congeals into the solid state at a given pressure,Freezing point - History & Holidays,Which (Age) Occured Between The Stone And The Iron Ages? ,Bronze Age ,General,Which 'Eastenders' character was found guilty of the murder of Saskia,Matthew rose,General,"Who wrote the novel ""Brighton Rock""",Graham greene -General,"Which actor and muscle man, a former 'Mr. Universe', gained fame and fortune in Italy, playing mythical heroes such as Hercules",Steve reeves,General,Dybowski's Formosa and Japanese are types of what,Sika or Saki Deer,General,What island group is named after a type of crocodile,Cayman -General,2% of Americans admit to doing what,Affair with Postman,General,"In Rome, what was the Cloaca Maxima",Main sewer,General,What was the first nation to resign from the united nations,Indonesia -General,What mountain overlooks Rio de Janeiro harbour,Sugar Loaf,General,3.26 light years equals one___.,Parsec,General,Who shot lee harvey oswald,Jack ruby -General,An old sweet scented rose,Damask,General,Who searched for the holy grail,Knights of the round table,General,Who invented punched cards used in early computing 1880s,Herman Hollerith -General,What was rod serling's last television series,Night gallery,General,"In 'David Copperfield', which of his so-called ""Aunts"" has the Christian name Clara",Aunt peggotty,General,What was banned in Indonesia for stimulating passion,Hula Hoops -General,What is a Tam Tam,Orchestral Gong,General,"The song Love is All Around, performed by Wet Wet Wet, is featured in which Richard Curtis film",Four weddings and a funeral,Sports & Leisure,In a nine-ball pool set what colour is the number 2 ball? ,Blue  -General,What colour was the maltese falcon,Black,Science & Nature,"In organic chemistry nomenclature, the prefix ""meth"" means how many atoms of carbon?",One,General,Who was married to Leofric Earl of Mercia in the 11th century,Lady godiva -General,Joseph Hobson Jagger broke it in 1886 broke what,Bank at Monte Carlo,General,"The administration of which U.S. President was known as ""The thousand days of Camelot""",Kennedy,General,Who is Anne Mae Bullock better known as?,Tina Turner -General,A short legged hunting dog,Basset,General,"In The World Of Entertainment How Is “Erik Muhlheim” Or ""Eric Claudin"" Better Known",The Phantom Of The Opera,General,What did Elisha Otis invent in 1852,Elevator -General,The Albert Canal links Liege with which city,Antwerp,General,What is Barbara Streisands middle name,Joan,General,"Which outdoor game is won by ""pegging out""",Croquet -Science & Nature,What Name Is Given To A Plant That Grows From Seed & flowers And Dies Within A Year ,An Annual ,General,By what other name do we know table tennis,Ping pong,General,Who succeeded tommy douglas as leader of the new democratic party?,David lewis -People & Places,Who is Joley Richardson's famous mother? ,Vanessa Redgrave , History & Holidays,"Traditionally children in Italy and Spain don't get their presents on Christmas day. On what day do they get them, is it Christmas Eve, Boxing Day, January 1st or January 5th ",Januray 5th ,General,Epistemology is the study of what,Knowledge - History & Holidays,Who signed the 'thanksgiving proclamation'?,Abraham Lincoln,General,The larva of the click beetle is called what,Wireworm,General,What was the name of the first synthetic plastic made in 1908,Bakelite -General,Which Scandinavian alcoholic spirit is made from potatoes,Aquavit,General,Locomotive 4472 is better known by what name,Flying Scotsman,General,Which decorative art means in Arabic stripped cloth,Macramé -General,Small graceful antelope,Gazelle,General,What US state was once an independent republic?,Texas,General,18% of animal owners do what with their pets,Share beds -Music,The Rise Of Cuban Music In The Late 90's Was Represented By Which Album,Buena Vista Social Club,General,Which part of the body is most affected by the disease diptheria,Throat,General,"In 1950, which mountain was the first of over 26,000 feet to be climbed to the summit",Anapurna -General,In what sort of landscape would you find an erg,Desert,General,"In the final scene of the film ""White Heat"", James Cagney stands on a roof and shouts, ""Made it, Ma!"" Which four words follow","""top of the world!""",General,What is paedology,Study of soil - History & Holidays,What is the name of the telescope that was placed in orbit in the eighties? ,Hubble ,General,Who designed the mini skirt,Mary Quant,General,The opal is the birthstone for which month of the year?,October -General,Is South America or Australia closer to the Antarctic,South america,General,"What star, most popular of 1925 was born in a trench in France",Rin Tin-Tin during WW1,General,What state boasts the highest peak in the bighorn mountains,Wyoming -Science & Nature,As what is a moose also known?,Algonquin,Music,Where Did George & Ira Gershwin Experience A Foggy Day,London Town,General,Of what is mycology the study,Fungi -Art & Literature,Who painted the Mona Lisa,Leonardo da vinci,General,Who was the last amateur to win US tennis open 1968,Arthur Ashe,General,What is a six sided polygon called,Hexagon -General,What city stands on the river Torens,Adelaide - Australia,Music,"On the song ""Dear Prudence"", who's Prudence?",Mia Farrow's sister,General,The triangular area between the two sides of two adjacent arches.,Spandrel -Music,What was the Beatles' first single in 1962?,Love Me Do,General,What did Mother Hubbard look for in her cupboard,A bone,General,Name the first full length color cartoon talking picture.,Snow White and the Seven Dwarfs -Music,"Billy Joels ""Uptown Girl"" Video Featured Which Super Model",Christie Brinkley,Art & Literature,This Romantic poet and wife of Mary Shelley drowned in a boating accident?,Percy Bysshe Shelley, History & Holidays,He advocated the planting peanuts and sweet potatoes to replace cotton and tobacco.,Carver -Music,What Was The Name Of Phil Collins First ever Solo Album,Face Value,General,In December 2004 Which Piece Of Artwork Was Voted Most Influential Of The 20th Century,Marcel Duchamps / Fountain,General,Carrie all what is the capital of ohio,Columbus -General,Which Wild Animal Has The Proper Name Of Acinonyx Jubatus,Cheetah,General,What did He-man say when he lifted his sword and gained his strength?,By the power of Grayskull I am He-Man,General,What breed of dog advertises hush puppies,A basset hound -General,What is the first book of the Bible,Genesis,Science & Nature,Every Few Years Lemmings Do Something Rather Stupid___.What? ,Throw Themselves Off Cliffs ,General,In which cartoon series did the chartacter 'Snagglepuss' first appear,Yogi bear -General,"The Allman Bros Song Entitled ""Jessica"" Is The Theme Tune To Which Long Running Tv Show",Top Gear,Music,"Name The Band That Had Hits With ""Freedom Of Choice"" ""Beatiful World"" & ""Working In A Coalmine""",Devo,General,In what Australian state would you find Gladstone,Queensland -General,What name is given to the hypothetical super-continent which consisted of all the present continents before they split up,Pangaea,General,What country's cavalry used dried milk as long ago as the 13th century,Mongolia,Music,Who Is Janet Jacksons Famous Older Sister,LaToya -Food & Drink,"What name is given to the unripe, ground or whole berries of Piper nigrum? ",Black Pepper ,General,John Le Carr invented what common term used in espionage,Mole,Music,"""Hello Nasty"" In 1998 Was The Beastie Boys 5th Album Name 2 Of The Previous 4","Licensed To Ill, Pauls Boutique, Check Your Head, Ill Communication" -General,Musical terms - what does De Capo mean on a score,From the beginning,General,"What is the song ""Pass the Dutchie"" about?",A Cooking Pot,Entertainment,Who was Miss Hungary in 1936?,Zsa-Zsa Gabor - History & Holidays,Which former dictator was executed by firing squad on Christmas Day 1999 ,"Nicolae Ceausescu, (Romania) ",General,Little used name for either corner of the eye?,Canthus,General,Who was the 16th president of the united states,Abraham lincoln -Art & Literature,"From which Shakespeare play is this line taken: Double, double",Macbeth,Food & Drink,In what US state are 75% of world's pineapples grown? ,Hawaii ,Art & Literature,Which Author Described World War One As The War To End All Wars? ,HG Wells  -General,"The ""canebrake"", ""timber"" & ""pygmy"" are types of what",Rattlesnakes,Music,What did Joy Division change their name to?,New Order,General,Able to be decomposed by bacteria or other living organisms,Biodegradable -General,"What is the nickname for Mobile, Alabama",Gulf city,Music,"During the 1980's, which song and who sang “These mist covered mountains, Are a home now for me, But my home is the lowlands, And always will be, Some day you'll return to, Your valleys and your farm”?",Dire Straits / Brothers In Arms,General,Where was Freddie Mercury born,Zanzibar -General,What is a resident of Manchester called?,Mancunian,General,What animals cannot swim,Gorillas,General,The fibrous form of several minerals and hydrous silicates of magnesium,Asbestos -General,Lee Marvin won his only Best Actor Oscar for the dual role of Kid Sheleen and Tim Strawn in which film,Cat ballou,General,In the USA the government says its a crime to give false what,Weather Reports,Entertainment,This movie directed by Woody Allen won the best picture Oscar in 1978.,Annie Hall -Geography,Which Woman Lived With Natives In West Africa & Became The First European To Visit Parts Of Gabon In 1894 ,Mary Kingsley , History & Holidays,"In 1979, Jeremy Thorpe was found not guilty of plotting to murder whom? ",Norman Scott ,General,What word is used for the branches of willow used to make baskets,Osier -General,Who directed the Halloween series of films,John Carpenter, Geography,Where is George Washington buried?,"Mt. Vernon, Virginia",General,Which artist painted the picture Guernica,Pablo picasso -General,What is the middle name of author H.G. Wells,George,General,What common word comes from the French for purse or wallet,Budget,General,What's the highest position attained in the loyal order of moose lodge,Supreme governor -General,How many 'southpark' episodes have there been that kenny didn't get killed,One,Geography,Where did the most powerful explosion ever witnessed on Earth occur?,Krakatoa,Sports & Leisure,Which Country Won The 2007 Woman's World Cup Final ,Germany (Beat Brazil 2.0)  -General,Which British director founded the Theatre Workshop in Manchester in 1945,Joan littlewood,Food & Drink,"Which fruit has varieties called Concord, Niagra and Muscat? ",Grapes ,General,What was Vivaldi's profession apart from composing,Priest -Music,Who Was On Paul Evans Telephone Answering Machine In 1978,Joanie,General,Which Danish word means 'play well',Lego,General,What is Madame Tussaud's,Wax museum -General,Percent in which county are all ten of england's highest peaks,Cumbria,General,Where is the coldest desert in the world?,Antarctica,General,Who was known as 'the iron lady',Margaret thatcher -Sports & Leisure,Which British Driver Was Formula One World Champion In 1996 ,Damon Hill ,General,"Which word is related to these three rat, blue, cottage",Cheese,Music,Who Replaced David Lee Roth As Lead Singer Of Van Halen,Sammy Hagar -General,The locals call it Shqiperia what do we call this country,Albania,Science & Nature,"What is the name given to elementary particles originating in the sun and other stars, that continuously rain down on the earth?",Cosmic rays, History & Holidays,When Did The Storming Of The Bastille Take Place? ,"July 14th, 1789 " -Sports & Leisure,Which Female Tennis Star Was Handed A Two Year Ban After Testing Positive For Cocaine At Wimbledon In 2007? ,Martina Hingis ,General,What is a Roastchaffer,A Beetle,General,The are 336 on a standard one 336 what on what,Dimples on a Golf Ball -General,Who did anthony eden succeed as british prime minister in 1955,Winston, Geography,Which capital is known as the Glass Capital of the World?,Toledo,General,What is the Capital of: United Arab Emirates,Abu dhabi -General,Gaye on which show were we introduced to ernestine the operator,Laugh in,General,Whose girlfriend had a pet snake called Enid,Adolf Hitler,General,What australian food was discovered by john macadam,Macadamia nuts -Food & Drink,"Popular in the Netherlands, what type of food is a frikandel? ",A Sausage ,General,When did disneyland open,1955,Music,What Instrument Did Count Basie Play,Piano -General,Spermophobia is the fear of,Germs,General,What part of you is an orthodontist most interested in,Teeth, History & Holidays,"In the 17th Century, how did Matthew Hopkins become known and feared ",The Witchfinder General. He hung 60 witches  - Geography,What is the name for the deepest part of the ocean ?,Abyss,General,Men without chest hair are more likely to get what disease,Cirrhosis of the liver,Science & Nature,Where Would You Find Your Uvula ,The Back Of Your Mouth  -General,How much were betty grable's legs insured for,One million dollars,General,"In Greek mythology, who was oenone's husband",Paris,General,How did multi millionaire Russell Sage save money,Not wear underwear -General,What was the full name of the cat,Thomas hewitt edward cat,Food & Drink,In Indian cuisine what is ghee? ,Clarified butter ,General,Nosophobia is the fear of,Disease -People & Places,Who Is Kenneth Brannagh Married To ,Emma Thompson ,Science & Nature,"Who was the first person to notice ""canals"" on Mars ?",Schiaparelli,General,After how many points do players change service in table tennis,Five -General,"What links Bass, Messina, Hormuz and Torres",Straits of water,General,Women compete between USA and UK in Wightman Cup - Sport,Tennis Lancaster,Entertainment,Which superhero loves peace enough to kill for it?,Peacemaker -General,What is a person with a strong desire to steal,Kleptomaniac,People & Places,What instrument does Vanessa Mae play ,Violin , Geography,What is the largest city in Switzerland?,Zurich -Music,"What Was Barbara Disksons Only Top 10 Hit, Reaching No 9 In 1976",Answer Me,General,Who is the Greek equivalent of the Roman goddess Diana,Artemis,Music,Which Beach Was Far Away In Time,Echo Beach -General,What is the offspring of a male horse and a female donkey,Hinny,General,According to Elvis Presley who / what was Little Elvis,His Dick or Penis,General,What's the ancient language of India,Sanskrit -General,Where would you find your Glabella,Space between your eyes,Science & Nature,How many degrees are there in a circle ,360 ,General,"What sport penalises for spearing, slashing, boarding and butt-ending",Ice -General,Who sang the theme song in the Bond film For Your Eyes Only,Shena Easton,General,If you had pogonophobia what would you be afraid of,Beards,General,How many senators comprise the U.S. Senate,100 -Music,What Was The Name Of Elvis Presley's Manager?,Colonel Tom Parker,Art & Literature,"A movement in European painting in the seventeenth and early eighteenth centuries, characterized by violent movement, strong emotion, and dramatic lighting and coloring.",Baroque,Science & Nature,To The Nearest 250 Grams What Is The Average Weight Of An Adult Brain ,1.5kg (3lbs)  -General,Which planet in the solar system was discovered in 1846,Neptune,General,Yorick in Shakespeare's Hamlet had what job (when alive),Jester,Science & Nature," __________ bats do not suck blood. They bite, then lick up the flow.",Vampire -General,Who starred in the Alfred Hitchcock film 'To Catch a Thief,Cary grant,General,What is measured with a sphygnomanometer,Blood pressure,Science & Nature,What is the symbol for silver?,Ag -General,In France what is Framboise,Raspberry,General,Baseball: the boston ______,Red sox,Food & Drink, Where was Budweiser first brewed,St. louis -Science & Nature,For which illness did Lois Pasteur develop a cure ,Rabies ,General,What is the flower that stands for: admiration,Amethyst,General,Transylvania is in which present day country,Romania -Music,The Song Mr ________ Man Was A Hit For The Birds,Tambourine,General,"Who wrote the book ""A Clockwork Orange""",Anthony burgess,Music,"Ub40's ""Red Red Wine"" Was From Which Album",Labour Of Love -General,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,General,In Portugal if you bought sem chumbo what is it,Unleaded Petrol,General,What is the capital of wyoming,Cheyenne -General,What does Sweden call itself on its stamps,Sverige,People & Places,By What Name Was William Bonney Better Known As? ,Billy The Kid ,General,What Team Sport Was Invented By William George Morgan Of Holyoke Massachusetts In 1895,Volleyball -Science & Nature,Some animals spend the winter in a sleep-like state known as _________.,Hibernation,General,Who is Wendy Darling's friend,Peter pan,General,What is the fear of heat known as,Thermophobia -General,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,General,What is the more popular name for the Londonderry Air,Danny Boy,General,Which President weighed 352 pounds?,Taft -General,"Cocktails: whiskey, angostura bitters, and sugar make an",Old fashion,Entertainment,What is the sequel to the film 'Every Which Way But Loose'?,Every Which Way You Can,General,What egyptian object is also known as 'the key to the Nile'?,Ankh -Sports & Leisure,Which Jump Event Did Carl Lewis Specialize In As Well As The Sprint? ,Long Jump ,General,"On Friends,what did Phoebe promise to give Chandler if her never smoked again?",7000, History & Holidays,Who invented the record player ?,Thomas Alva Edison -Science & Nature,"What does ""Ursa Major"" mean in everyday English?",Great bear,General,What is a group of curs,Cowardice,General,Which one of the A Team was a Pilot?,H.M. Murdoch -General,"Who said ""Too much of a good thing is wonderful""",Mae West,General,What is the flower that stands for: pure and lovely,Red rosebud,General,T H White wrote the book for which Disney animated feature,Sword in the Stone -General,"The legendary creature ""sasquatch"" was also known as_________",Bigfoot,General,Babies are born without what,Knee Caps - form at 2 - 6 years,Food & Drink,What is beeswing? ,Film that forms on the side of a bottle of port  -General,What is the young of this animal called: Fox,Cub pup,General,"On a ship, what is the line that indicates the maximum load that may be transported?",Plimsoll Line,General,What is the atomic mass of sulphur,32.06 -Science & Nature,What was the first recorded message?,Mary had a little lamb,Geography,"The ____________ is actually a desert environment, averaging about the same amount of monthly rainfall as the Sahara Desert.",South pole,General,"In the book Goodbye Mister Chips, what subject did Mr. Chipping teach",Latin -General,Who is robert van winkle,Vanilla ice,Music,According To The Beatles How many clubs a day did the girl who came in through the bathroom window work at?,Fifteen,Music,Which Radio One DJ Used To Feature A Daily Slot Known As Our Tune?,Simon Bates -People & Places,"Which film star's statue stands in Leicester Square, London? ",Charlie Chaplin ,General,According to the nursery rhyme which bush do we go round on a cold and frosty morning,Mulberry,General,What is the literal meaning of Graffiti,Scratched Drawings -General,What product was originally called Baby Gays,Q Tips,General,In the Jewish religion what's banned during The three weeks,Marriage or Haircut,Music,What Was The First No.1 For The Searchers,Sweets For My Sweet -General,The word negligee is French and suggests wearer does what,Avoids refrains from housework,Science & Nature,What is also known as the 'bishop's stone'?,Amethyst,Religion & Mythology,"In Greek mythology, who ruled over the island of Samos?",Polycrates -General,What saint's day is march 17,St. patrick's,Food & Drink,What shape is macaroni? ,Tubular ,Sports & Leisure,California Dolls Is An 80's Movie Comedy About Which Sport ,Wrestling  -General,US civil war Confederate Kingston hospital Georgia specialised,Soldiers with Venereal Disease,General,"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,Entertainment,What was the relationship between Superman and Supergirl?,Cousin -General,US school buses are Chrome Yellow but they used to be what,Omaha Orange,General,What is the former name of Istanbul,Constantinople,General,What is a langouste,Crawfish -General,What type of food is a sacatorta,Chocolate cake or gateau,General,By what Alias does Ferris Bueller get into Chez Luis?,Abe Frohman,Music,"In Which Country Was Duran's Duran's ""Hungry Like The Wolf"" Video Shot",Sri Lanka -General,Doctors often have this instrument around their neck,Stethoscope,General,What armys motto is blood and fire,Salvation army,General,Germanophobia is a fear of ______,Anything german - Geography,Where is Tabasco?,Mexico, History & Holidays,The USA's official National Christmas Tree is in which National Park? ,"King's Canyon National Park, California ",General,What is the Capital of: Saint Vincent and the Grenadines,Kingstown -Entertainment,In which London recording studios did The Beatles record the majority of their work?,Abbey Road,General,How many herbs and spices are used in kentucky fried chicken,Eleven,Sports & Leisure,What sport/game is Chris Evert associated with?,Tennis -General,Who wrote The Deceiver 1991 and The Fist of God 1993,Frederick Forsyth, History & Holidays,What did Rudolph never get to join in ,All the other reindeer games ,Music,Which was the last album recorded by the Beatles?,Abbey Road -General,The Sam Maguire Trophy is played for in which sport,Gaelic Football,General,In what country did stamp collecting start,France,General,"What's the international radio code word for the letter ""Z""",Zulu -General,In What Year Did Blackburn Rovers Last Win The FA Cup Final,1928,General,Ilex is the botanical name of which shrub,Holly,General,"There Are 3 Countries In The World Where Chinese Is The Native Language ""China & Taiwan"" Are 2 Name The Other",Singapore -General,In Australian slang what kind if food is a mystery bag,Sausage,General,What word connects a blacksmith and the human ear,Anvil,General,Who invented the first safety razor in 1895,King Camp Gillette -General,"What are Grapnel, Bruce, Danforth, Plough types of?",Anchor,General,Rawdon Crawley was a character in what classic novel,Vanity Fair,General,Who wrote the supernatural tale The Turn of the Screw,Henry james -General,When is turkey traditionally eaten in america,Thanksgiving,Entertainment,"What actor appeared in all three of these films, Straw Dogs, Midnight Cowboy, and The Graduate?",Dustin Hoffman,General,In a recent survey what % of US wives thought husband cheating,90% -General,Which European country has the largest percentage of forest and woodland,Finland,Toys & Games,Which game has 361 intersections ?,Go,General,Name the Italian dish made from pasta squares filled with meat,Ravioli -Food & Drink,What two fruits grow on palm trees? ,Coconuts and dates ,Music,Which Group Won The Prestigious Mercury Music Prize In 2006?,Arctic Monkeys,General,What year did the first baby boomers turn 50,1996 -Geography,What Is The Most Popular English City? ,London ,General, Any object worn as a charm may be called a(n) _______.,Amulet,General,Who was the last communist leader of East Germany,Egon krenz -General,By royal decree in Jidda 1979 women banned from using what,Hotel swimming pools,General,Can you name the 5 original MTV VJ's?,"Martha Quinn,J.J. Jackson,Mark Goodman,Alan Hunter and Nina Blackwood",Science & Nature,What Type Of Car Did Micheal Caine Drive In The Film Get Carter ,Jaguar Mk 2 3.4  -General,What does the dalmatian have on each individual hair follicle,Barb,General,"Which 1995 film, starring Tom Hanks, used the publicity blurb ""Houston, we have a problem.""",Apollo 13,Science & Nature,Which breed of dog has a name derived from the old name for Greece ?,Greyhound -General,What treaty ended the American revolution,Treaty of paris,General,The correct name for the voice box is the _________,Larynx, History & Holidays,She was the first woman to fly the Atlantic solo.,Amelia Earhart -General,Johnny rivers sang 'secret ______ man',Agent,Geography,Which is the largest lake in the world? ,Caspian Sea ,Geography,Name The Straight Between The North And South Islands Of New Zealand ,Cook Strait  -General,Where is alsace-lorraine,France, History & Holidays,Who Released The 70's Album Entitled Cant Buy a Trill ,Steely Dan ,General,What nocturnal bird is traditionally believed to be wise,Owl -General,"A structure usually attached to a building, such as a porch, consisting of a roof supported by piers or columns.",Portico,Science & Nature, Camels were used as pack animals in __________ and Arizona as late as 1870.,Nevada,Sports & Leisure,In Which County Is Lord's Cricket Ground ,Middlesex  -General,A small crown,Coronet,General,"Somerset Maugham, A J Cronin, Richard Gorden - in common",Not Writers - Doctors,General,"What story features flopsy, mopsy and cottontail",Peter rabbit -Food & Drink,What is a `rosti'? ,A pancake of fried grated potatoes,General,What was the name of the Roman God of sleep,Somnos,General,What kind of animal was Rikki Tikki Tavi in The Jungle Book,Mongoose -General,"What was the name of the Duke of Wellington, who defeated Napoleon at the battle of Waterloo",Arthur Wellesley,General,What is the capital city of Australia?,Canberra,Science & Nature,What appears when the sun activates melanocytes?,Freckles -General,What is the 'bishop's stone',Amethyst,General,A Vexilliologist is an expert in what,The history of flags,General,How many days do dragon flies live for on average?,One -General,A sumptuous formal dinner,Banquet,General,The largest _______ bottle is a 170 ft. tall water tower,Ketchup,General,Who was the founder of Judaism,Abraham -Sports & Leisure,Which female gymnast won 3 golds and a silver at the 1972 Olympics? ,Olga Korbut ,General,Daniel Defoes first novel was published in which year,1719,Toys & Games,"In Monopoly, What is the cost to buy Electric Company",150 -Art & Literature,Who wrote 'The Time Machine'?,H.G. Wells,General,The Naira is the currency of which African country,Nigeria, History & Holidays,What late night show replaced Tom Synder's show? ,David Letterman  -Sports & Leisure,How Much Did NewCastle Pay For Alan Shearer ,15 Million ,General,Which U.S. President won the Nobel Peace Prize in 1919 for securing the League of Nations covenant at Versailles,Woodrow wilson,Science & Nature,What Is The Name Of The Phenomenon In Which Light Bends When Passing Through a Lens ,Refraction  -General,A Tiercel is the correct name for a male what,Hawk or Falcon,General,What's the capital of oman,Muscat,General,The Amati family were famous for making what,Violins -Science & Nature, The owl is the only bird to drop its upper eyelid to wink. All other birds raise their lower __________,Eyelids,General,What scandinavian capital begins and ends with the same letter,Oslo,General,Whose song 'Keep the Home Fires Burning' was one of the most successful during WWl,Ivor novello -Religion & Mythology,Who is the greek equivalent of the roman god Venus ?,Aphrodite,General,Pulkovo airport serves which Russian city,Lenningrad,General,Which Country's Parliament Is Called The Storting,Norways -General,Who invented the electric razor in 1928,Jacob schick,General,With what branch of medicine is Franz Mesmer associated?,Hypnotism,General,Trees give off excess water through microscopic holes in leaves called,Stomata -General,"In ""The Karate Kid"" what color did Daniel have to paint Miagi's house, as part of his training",Green, Geography,What is the capital of Cambodia ?,Phnom Penh,Science & Nature,What Is A Diamond Made Of ,Carbon  -General,What is the unit of currency in Thailand,Baht,General,What is a group of this animal called: Goat,Herd tribe trip,General,What theologian claimed he could drive away the devil with a fart,Martin Luther -General,"Whe Beat ""Martina Navratilova"" In The Wimbledon Woman's Singles Final In 1994",Conchita Martinez,General,Whose recent books include 'Shattered' and 'Second Wind',Dick francis,General,What are Berner Florin Parisian frill types of,Canaries - Geography,In what country is the Mekong River Delta?,Vietnam,General,This fingerlike projection is attached to the large intestine,Appendix,Sports & Leisure,Which Sport Commences With A (Face Off ) ,Ice Hockey  -General,What alcoholic drink is distilled from molasses,Rum,General,Which country has the most daily newspapers,India,General,What role did ken osmond play on leave it to beaver,Eddie haskell -General,What is the pope's pontificial ring,Fisherman's ring,General,What is the world's largest lake,Caspian sea,General,What letter is probably on most cold water taps in frankfurt,K -General,Little Jimmy Osmond topped the charts with 'Long Haired Lover from___,Liverpool,Geography,What is the capital of Yugoslavia,Belgrade,General,What is a flowering plant that lives three or more years called,Perennial -General,Who rode a horse called Morengo,Napoleon at Waterloo,Music,Which Band Had A Hit With Banana Republic In 1980,The Boomtown Rats,Sports & Leisure,In Which Year Did Daley Thompson Win BBC Sports Personality Of The Year? ,1982  -General,What river is spanned by the George Washington Bridge,Hudson,Geography,What Was The River Zaire Formerly Known As ,The Congo ,Music,"How Were New Kids On The Block Billed After A 2 Year Absence From The Charts With Their 1994 Efforts ""Dirty Dawg"" & ""Never Let You Go""",NKOTB -General,What country's currency is the Bolivar?,Venezuela,General,Which cathedral features on the back of a UK £20 bank note?,Worcester Cathedral, History & Holidays,In Us Dollars How Much Did America Pay Russia For The State Now Known As Alaska ,7.2 Million  -General,To what instrument family do french horns belong,Brass,General,Tequila Cointreau (triple sec) and lime make which cocktail,Margarita, History & Holidays,"What was the nationality of the prisoners in the ""Black hole of Calcutta""",British -General,How many johns have been pope,21,General,"The Oklahoma bombing suspect obtained a copy of the ""Turner Diaries,"" a book which advocates the violent overthrow of government, from where",Internet,General,And what happened to Tigris 3rd April 1978,He burned it anti war protest -Music,Name Culture Clubs Debut No.1,Do You Really Want To Hurt Me,General,Smooth barked glossy leaved tree,Beech,General,What nationality was Pontius Pilot by birth Scottish -,Fortingale nr Dunkeld -General,What boxer was nicknamed The Boston Strong Boy,John L Sullivan,General,What is the young of this animal called: Swan,Cygnet,Science & Nature,Which Aply Named Spider Devours Its Partnet After Mating ,The Black Widow  -General,Which comedian created the character of maude frickert,Jonathan winters,General,"The greatest snowfall ever in a single storm was ___ inches at the Mount Shasta ski bowl in february, 1959",189,Science & Nature," 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 -General,The hamburger was invented in what year,1900,General,What beating victim's 23-lawyer defense team handed the city of los angelesfor $4.4 million?,Rodney king,Science & Nature,Which 3 Colours Are Used To Form The Picture On A TV Screen ,"Red, Green, Blue " -Music,Pat & Greg Made A Bit Of A Hue & Cry With Which 1993 Remix Of Their 1987 Hit,Labour Of Love,General,Zoophobia is the fear of ______,Animals,Sports & Leisure,At which sporting venue can you visit the oldest sports museum n the world? ,Lord's ( MCC Museum )  -General,Who burned atlanta in 1864,General sherman,Science & Nature," a camel with one hump is a dromedary, while a camel with two humps is a __________",Bactrian,General,Who owns: Right Guard deodorant,Gillette -General,What is a group of apes,Shrewdness, History & Holidays,Who Released The 70's Album Entitled Germ Free Adolescents ,X-Ray Spex ,General,What band recorded the 1978 hit album: 'Briefcase Full of Blues',The Blues -Geography,In which continent would you find the volga river ,Europe ,General,Which literary prize started in 1968,Booker McConnell,General,Popular term for RCMP officers.,Mounties -General,Which actress has the real name Diane Hall,Diane keaton,General,What is the more common name of nitrous oxide,Laughing gas,Science & Nature,What is the name given to the art of miniaturising trees and maintaining their small size?,Bonsai -General,FDA regard 5 Fruit fly maggots 3oz per can acceptable - what,Canned Mushrooms,General,Lygophobia is the fear of,Darkness,General,Who was dr zhivago's great love,Lara -Entertainment,Who is married to Eddie Van Halen?,Valerie Bertanelli,Music,"Who Duetted On The 1982 Christmas Hit ""Peace On Earth - Little Drummer Boy""",David Bowie & Bing Crosby,General,Name all of Bob the Builders friends?,"Wendy, Muck, Roley, Loftey and Dizzy" -General,"What is produced by putting a whole ""maris piper"" in an oven until it goes soft inside",Baked potato,General,"Which group sang the song ""Fuel""?",Metallica,General,What city do batman and robin patrol,Gotham city - Geography,What is the basic unit of currency for Cyprus ?,Pound,General,What do you have alot of if you are hisute,Hair,General,Which British City Was Crowned Curry Capital Of The The UK In 2006 & 2007,Glasgow -Geography,Where do tangerines live ,"Tangier, morocco ",General,What's malcolm x's real name,Malcolm little,General,Which SF author wrote The Day it Rained Forever,Ray Bradbury -Music,Who Had A Hit In 1985 With the Gambler,Madonna,Science & Nature,Linen is obtained from the fibers of what plant?,Flax,General,What does al capone's headstone say,My jesus mercy - History & Holidays,What colour was Rudolph the Reindeer's nose? ,Red ,General,Who was upper Canada's first chief justice,William osgoode, History & Holidays,Who Released The 70's Album Entitled For Your Pleasure ,Roxy Music  -General,Which magazine is subtitled 'The International Magazine for Men',Penthouse,General,Edward Ricardo Braithwait wrote what novel,To Sir with Love, History & Holidays,Who was patricia hurst with the night she was kidnapped ,Steven weed  -General,What WW II British medal carries the words For Gallantry,George Cross,General,What do humans shed about 1.5 pounds of every year,Skin, History & Holidays,"Who is ""The Iron Lady""?",Margaret Thatcher -General,If you ain't done it by age 40 chances are you never will - what,Go to Prison,General,Collective nouns a Host of,Sparrows,General,Which Famous Pop Groups Name Means Far From These Things,Procal Harem -Geography,Montevideo Is The Capital Of Which South American Country? ,Uruguay ,General,Which Bird Is The Symbol For The RSPB,Avocet,General,Which television and radio personality wrote the historical novel Credo in 1996,Melvyn bragg -Sports & Leisure,Who Won His Only World Snooker World Championship In 1979? ,Terry Griffiths ,General,On what street in New York does the city's famous Easter parade take place ,5th Avenue ,General,What came down on jesus' head after he was baptised,Dove -General,What is a group of this animal called: Ferret,Business fesnyng,General,In 1848 The London Daily News carried the worlds fist what,Weather report / forecast,Sports & Leisure,What Is The Only Sport Where The Defending Team Are Always In Possession Of The Ball & The Attacking Team Can Score Without Even Touching It ,Baseball  -General,In Illinois you can get three years for eavesdropping on who,Your conversation,General,What links Wade - Spode - Misen - Delft,Pottery, History & Holidays,Which british comedian was the first man to appear on the cover of 'playboy'?,Peter Sellers -General,For what movie did Humphrey Bogart win his only Oscar?,The African Queen,General,What creature can live up to one year without eating ( you? ),Bedbug,General,What author married Leon Trotsky’s secretary in 1924,Arthur Ransom -Food & Drink,How many herbs and spices are used in Kentucky Fried Chicken ,Eleven ,General,In North Carolina $50 fine for having what furniture on front porch,Upholstered,General,Who was Jungle Jim's pet dog,Skipper - History & Holidays,Whose Scary Movie Character Has The real name is Charles Lee Ray ,Chucky ,General,Whats the international radio code word for the letter O,Oscar,General,What Type Of Person Lives In A Krall,A Zulu -General,What was Buddy Hollies current single when he died,It doesn't matter any more,General,"Who, at USA customs declared, nothing but my genius",Oscar Wilde,General,Where are one quarter of the bones in the human body,Feet -General,In the body where would you find your villus,Small Intestine,General,In which U.S. TV soap opera were the 'Barnes Family',Dallas,General,What countries are known as the abc powers,Argentina brazil chile -Science & Nature,Who Designed The VW Beetle ,Ferdinand Porsche ,Sports & Leisure,Where were the 1952 Olympics held ?,"Helsinki, Finland",General,In Equatorial Guinea its illegal to name your child what,Monica -General,Wedding rings are normally worn on what finger of your hand?,Ring finger,Art & Literature,Who had decieved the Lord of Rohan for a number of years,Wormtongue,General,Franklin was a US state till 1796 what's it now called,Tennessee -General,"Which Famous Composer Wrote The Famous Opera ""Carmen""",Bizet,General,The famous Woodstock music festival took place in what year,1969,Sports & Leisure,The Phrase 'You Cannot Be Serious'' Was Made Famous By Which Former Tennis Star ,John McEnroe  -General,Who is harold lloyd jenkins,Conway twitty,Music,"Who Had A Hit In 1996 With ""Don't Look Back In Anger""",Oasis,General,What legendary table seats 150,King arthur's round table - History & Holidays,Between which countries was the shortest war in history?,Zanzibar and England,General,Gone to Texas by Forest Carter is the basis for what film,The Outlaw Josey Wales,General,Who wrote the myth series,Robert asprin -General,What is the flower that stands for: poverty,Evergreen clematis,General,Which Steven Spielberg film was based on a book by Peter Benchley,Jaws,General,"Which Mediterranean island has coasts on three seas - Mediterranean, Ionian, and Tyrrhenian",Sicily -General,What Team Were Liverpool Playing When The Hillsborough Disaster Occurred In 1989 ?,Nottingham Forest?, Geography,How many countries have an area less then 10 square miles ?,"Four (Vatican City, Monaco, Nauru and Tuvalu)",General,Dari is a dialect of which language,Persian - farsi -General,What english city was known to the romans as venta bulgarum,Winchester,Music,Which Single Has Been Released By The Greatest Number Of Artists,The Beatles / Yesterday,General,Ancient Carthage is in what modern country,Tunisia -General,Who sang 'all right now',The free,General,What is the more common name of the Chaparral Cock,The Road Runner,General,What creature will only mate if the females mouth is full,Spiders -Sports & Leisure,What Score In Darts Is Known As The Madhouse ,Double One ,Music,"In Which Year Did ""Country House"" Go Straight In At Number One For ""Blur""",1995,General,The mathematical notation for a summation is designated by what greek letter,Sigma -General,What is measured in Darwin's,Rate of evolutionary change,General,What is the norway maple often mistaken as,Hard maple,General,"In psalm 46, what is the 46th word from the first word",Shake -General,Which acid gives nettles their sting,Formic acid, Geography,Khartoum is the capital of which country?,Sudan,General,Whih royal wedding of the eighties is now scandelously coming apart?,Charles and Di -Music,Who Blew Toni Basil's Mind In 1982,Mickey,General,What palindromic grass grows at the seashore,Marram,General,Stew of meat and vegetables seasoned with paprika,Goulash -General,What was the name of Australia's first girlie magazine in 1936,Men, History & Holidays,Axl Rose was an anagram for what phrase? ,Oral Sex ,General,"Chamberlain whose funeral was attended by more than 100,000 in new york city in 1926",Rudolph valentino -General,Hawaiian Pia Polish Piwo Hungarian Sor - what is it,Beer,General,What did Peter Sellers use as an ink blotter in the Pink Panther,A Cat,General,What Spanish artists surrelistic paintings feature items such as clock faces,Salvador dali -General,What was lucy's maiden name on 'i love lucy',Mcgillicuddy,General,What is the main constituent of natural gas,Methane,General,"Give another name for hydrocyanic acid (HCN), sometimes wrongly called cyanide",Prussic acid -Science & Nature," Because birds carrying messages were often killed in flight by hawks, medieval Arabs made a habit of sending important messages __________",Twice,Food & Drink,What is ciabatta? ,Italian bread ,Food & Drink,What are the ingredients in the most famous trick pie? (in English literature) ,4 and 20 black birds. (Sing a song of 6 pence)  -General,"A cathedral built between 1554 and 1560 for Ivan the Terrible, to which saint is this Russian Orthodox church in Moscow dedicated",Saint basil,General,"In a famous opera, siegfried understood the speech of birds after tasting ______",Dragon's blood,Music,"Who Spent 14 Weeks In The Charts In 1989 With ""Love Changes Everything""",Micheal Ball -General,Which very select organisation has a table as its logo,Mensa,General,In which country would you find McLaks (grilled salmon sandwich) on the McDonalds menu,Norway,Toys & Games,Number of points lost for scratching off the blue ball in snooker,5 -General,On a carving in Coventry Cathedral what did Lady Godiva ride,A Goat,General,"Whose nicknames included "" The Idol of the American Boy """,Babe Ruth,Food & Drink,Pilaf is this cooked in a broth of meat or poultry.,Rice -Sports & Leisure,At Which Sport Did James Bond Play Auric Goldfinger Waging A Gold Bar On The Outcome? ,Golf ,General,"Who recorded ""Sixteen Candles"" in 1958",Crests,General,What is the most common surname in the Barcelona telephone directory,Garcia -General,Who in 1958 was the first British Formula one champion,Mike Hawthorne,General,In a poll newlyweds spend most time on honeymoon doing what,Arguing or Fighting,General,What countries people had the longest life expectation,Iceland -General,"In religion, the assumption of an earthly form by a god",Incarnation,General,"By finding what, can the slope of a curve at any given point be determined",Derivative,General,In which film did Elvis Presley play an Indian,Stay away joe -General,Who was the first to climb Mt Everest,Sir edmund hillary,General,Which is the largest of the Italian lakes,Garda,General,Carrantual is the highest peak in which country,Ireland -General,"According to the title of the film, what is the profession of Ace Ventura?",Pet Detective,Music,With Which Teen Band Did Bobby Brown Sing With Before Going Solo,New Edition,General,In Connecticut a pickle must do what to be legal,Bounce -Religion & Mythology,He led the Israelites out of Egypt.,Moses,General,Name the actress who played the pretty blond girl Elliot danced with in E.T. The Extra-Terrestrial?,Erika Eleniak,Science & Nature,Which substance has the chemical formula NaOH?,Sodium Hydroxide -General,Which Yorkshire town has the same name as the capital of Nova Scotia,Halifax,Art & Literature,Who Is Pips Benefactor In Dickens's Great Expectations ,Abel Magwitch ,General,What is the flower that stands for: color of my life,Coral honeysuckle -Sports & Leisure,In The 1998 World Cup Which 3 Teams Were Knocked Out On Penalties (Point For Each) ,"England , Italy , Holland ",Entertainment,In which film did Jay Leno play 'Mookie'?,American Hot Wax,General,Who did the music for the 1970's film 'saturday night fever',Bee gees -Science & Nature," Within the hawk, or birds of prey, family, there are __________ species _ eagles, hawks, kites, and Old World vultures, which are found nearly worldwide.",208,General,Rocketbuster make the worlds largest authentic what,Cowboy boots,Science & Nature,What Is A Clavicle ,The Collar Bone  - Geography,What is the capital of Mauritius?,Port Louis,General,"According to a Beatles song, where is the place where nothing is real",Strawberry Fields,General,"What's the international radio code word for the letter ""S""",Sierra -General,What was the name of the home that Sofia Patrillo lived in before moving in with her daughter on the Golden Girls.,Shady Pines,General,What was the name of Ernest Shackleton's ship which was trapped and crushed by polar ice in 1915,Endurance,General,What starts the breakdown of food when it is still in the mouth,Enzymes -People & Places,Which Politician Is Known As Tarzan ,Micheal Hestletine ,General,What is the symbol for tin,Sn,General,George Stephenson was born in what year,1781 -Entertainment,Who married Mutt Lange?,Shania Twain,General,In 1659 Massachusetts outlawed what,Christmas - it was illegal,General,What company owns Rolls Royce motors,Volkswagen -General,What first appeared on Page 1 of the Times 3 May 1966,News stories,General,Pasteur developed a vaccine for rabies in which year,1885,General,What was the name of Dorothy Parkers Parrot,Onan - He spilled his seed on the ground -Science & Nature,What is the only sign in the zodiac which doesn't represent a living thing,Libra,General,Messina was damaged by an earthquake in what year,1908,General,What would you do with a maris piper,Eat it - it’s a potato -General,"What types can be saddle, plane or pivotal",Body Joints,General,Judeophobia is a fear of ______,Jews, History & Holidays,"The first successful organ transplant occurred in 1954. What organ was it A= Kidney, B= Liver, C= Heart? ",A= Kidney  -Science & Nature,How Do Procumbent Plants Grow ,They Spread Overground ,People & Places,Who was The First Man To Run A Mile In Under 4 Minutes ,Roger Bannister ,General,"In an average lifetime, the average american wears 7,500 ___",Diapers -General,"The male gypsy moth can ""smell"" the virgin female gypsy moth from how far away (its a decimal)",1.8 miles,General,What Was Discovered In 1824 By Jean Baptiste Joseph Fourier?,The Greenhouse Effect,General,"Common ore of iron, and one of the most commonly occurring minerals in nature",Goethite -General,What did Americans call the first Cuban in space,Castronaut,General,The foghorn of the QE2 plays in what note,A Flat, History & Holidays,Which London Theatre Referring To The 2nd World War Used The Slogan (We Are Never Closed) ,The Windmill  -General,What word describes the dominance of one state over a group of other states?,Hegemony, History & Holidays,Of which country did Robert Menzies become Prime Minister in April 1939? ,Australia ,General,What was the name of the character on the 1st Garbage Pail Kids Pack?,Blasted Billy or Adam Bomb -General,The Musee de Orsay in Paris was originally what,Railway Station,General,"Which TV Presenter First Hosted The TV Show ""Ready Steady Cook""",Fern Britton,General,What colour is an aircraft's 'black box' flight recorder,Orange -General,"In Which Play Tennesee William Do You Encounter The Character ""Big Daddy""",Cat On A Hot Tin Roof,General,What is the flower that stands for: shyness,Vetch,General,Richard Bachman is a pseudonym of which author,Steven King -General,Frank Oz was the voice of who,Miss Piggy in the Muppets,General,What would a gardener do with secateurs,Prune plants,General,The Marie Celeste sailed from which port,New York -General,What is the oldest town in belgium,Tongeren,General,This is the capital of Ukraine?,Kiev,General,Who wrote The Screwtape Letters,C S Lewis -General,What country lost the Crimean War,Russia,General,What is the medical name for 'hardening of the arteries',Atherosclerosis,General,Which part of your body might suffer from a stigmatism,Eyes -General,What city ranks second after New York as America's advertising hub,Chicago,General,What is the name for the study of cells,Cytology,General,Which country is the only one to have won the Rugby Union World Cup twice,Australia -General,"Devil's tower, the first us national monument, is located in what state",Wyoming,General,Narrow saw on frame for cutting thin wood in patterns,Fretsaw,General,"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 -General,What is the society for the advancement of science also known as,British,Art & Literature,"An artwork humoously excaggerating the qualities, defects, or pecularities of a person or idea. ",Caricature, History & Holidays,"How are Caspar, Balthazar and Melchior better known ",The Three Wise Men  -General,Who on TV played Jeeves to Hugh Lawrie's Bertie Wooster,Stephen fry,General,What line on a map connects all points of the same elevation,Contour line, Geography,In what city is the Leaning Tower?,Pisa -Music,Who Spent Four Weeks In The Charts As The High Numbers,The Who,General,What was the name of the ant people created by zeus,Myrmidons,Sports & Leisure,Which Football Team Won the 2005 FA Cup ,Arsenal  -General,"Space indiana jones: what did drinking from the grail ""grant""",Immortality,General,What kind of plane is a CT-114 Tutor,Jet trainer,Entertainment,Who played the 'Universal Soldier'?,Jean-Claude Van Damme -General,"According to the Acts of the Apostles, from where did Christ's Ascension into Heaven take place",Olivet mount of olives,People & Places,Who Is Actress Charlotte Rampling Married To ,Jean Michelle Jarre ,General,At least a quarter of humanity is what,Short Sighted -General,"Who live longer, on average men or women",Women, History & Holidays,Who succeeded Churchill when he resigned in 1955?,Sir Anthony Eden,Geography,In Which 4 Countries Are The Alps Located (PFE) ,"France , Italy , Switzerland , Austria " -General,Which cricketer has played more tests than any other,Allan border,Art & Literature,Whose Smile Remained After The Rest Of It Had Vanished ,The Cheshire Cat's , History & Holidays,He shot Lee Harvey Oswald.,Jack Ruby -General,What is Little Red Riding Hoods name,Blanchette,General,What is the day before Ash Wednesday,Shrove tuesday,General,What is the most dense planet in our solar system,Earth -General,What is the largest ocean,Pacific ocean,General,What Was First Tested By Brian Trubshaw,Concorde,Geography,What u.s state boasts the carlsbad caverns national park ,New mexico  -General,What cartoon show's record prime time run of 6 years was beaten in 1996 by The Simpsons,The Flintstones,General,"What is unkindly described as ""Australia's only contribution to international cuisine""",Pavlova,General,The only country beside Azerbaijan that starts with a but doesn't end with a,Afghanistan -General,Coco de Mer fruits take how long to ripen?,10 Years,Geography,Into what bay does the Ganges River flow,Bengal,General,Who is the Patron Saint of authors,Saint Paul -General,"Which Labour politician did Aneurin Bevan call ""a dessicated calculating machine""",Hugh gaitskell,General,Frank Sinatra John Wayne Paul Newman rejected what role,Dirty Harry Callahan,Music,Who Sang The Theme To The Bond Movie From Russia With Love,Matt Munro -General,What does c.i.a stand for,Central intelligence agency,General,"Mark, rouble and escudo are all types of what",Currency,General,Which Asian Capital City Literally Means Gods Gift ” ?,Baghdad -Music,Which Popular Tv Programmes Theme Tune Reached No.8 In 1962,Z Cars,General,Which British city traditionally has its own independent telephone network system?,Hull,General,"Introduced in Switzerland in 1938, the first brand of instant coffee",Nescafe -General,What boxer played the lead in the broadway musical buck white,Muhammad ali,General,"Who wrote Flauberts Parrot and England, England",Julian barnes,Science & Nature, The gastric juices of a snake can digest bones and teeth _ but not __________,Fur hair -General,Crème de Menthe Crème de Cacao an light cream what drink,Grasshopper,General,The Bald Eagle is Americas bird - What is Britain's,Robin,General,Anna Maria Louisa Italiano became famous as who,Ann Bancroft -General,Which Country Had Their World Cup Debut In France 1998 And Ended Up Finishing 3rd,Croatia,Science & Nature, It is estimated that manatees live a maximum of 50 to 60 __________,Years,General,An aubade or alborda is a song - but what type,Mourning -General,What is a native of tangiers called,Tangerine,Science & Nature,Name the heaviest flying bird of prey.,Condor,General,In 1992 2421 US people were injured at home by what,Their Houseplants -Science & Nature, The ears of the Asiatic __________ are larger than those of other bear species.,Black bears,Science & Nature,What is the atomic number of uranium?,92,General,What is the fear of nuclear weapons known as,Nucleomituphobia -General,Which compound forms about 70% of the human body,Water,General,When was apartheid introduced in south africa,1948,General,Fruit flavored candy pieces made with ju_ju gum.,Jujubes -General,What was the title of polanski's horror spoof,Dance of the vampires,General,What was first built in the Place de Greve in 1792,The Guillotine,General,Who nicknamed his gun Lucrettia Borgia cos it killed everything,Buffalo Bill -Entertainment,"At the end of ""Planet of the Apes"" what protruded from the rocks?",Statue of Liberty,General,What country is the Hellenic republic,Greece,Art & Literature,Who was Winnie the Pooh's neighbour?,Piglet -General,Name Greek Goat Amaltheas horns that good things flowed from,Cornucopia,General,Over 75% of the earth's surface is covered by some form of _____,Water,Music,How Is Ladonna Andrea Gaines Better Known,Donna Summer -General,"What is the gift on the seventh day of christmas in the ""twelve days of christmas""",Seven swans a swimming,General,Who was the first Republican-President of the United States,Abraham lincoln,General,Colourful shrub with drooping flowers,Fushsia -General,Harbour who wrote 'the invisible man',H.g wells,General,"Branch of linguistics concerned with the production, physical nature, and perception of speech sounds",Phonetics, History & Holidays,Which Dark Wizard Was Portrayed By Christopher Lee In Lord Of The Rings ,Saruman  -General,Organisation in the US was co-founded by Ballington Booth,Volunteers of America,General,In Alberta its illegal to play craps if you are using what,Dice,General,Haydn's 'Creation' was based on Genesis and which other piece of literature,Paradise lost -General,"Why Did ""Mathias Rust"" Hit Global Headlines In 1987 An Event That Very Nearly Cost Him His Life",Flew Plane Into Red Square,Sports & Leisure,Field of Dreams is a film about what? ,Baseball ,General,What did mathematician John Napier invent in 1614,Logarithms -General,Which retail entrepreneur founded The Body Shop in 1976,Anita roddick,General,What does the royal family use as confetti,Rose petals,General,"Who wrote ""The Agony & the Ecstasy""",Irving stone -General,If you have a buccula what have you got,Double Chin,General,What animals eye is larger than its brain,Ostrich,General,What happened to golfer Lee Travino on green 13 27 June 1975,Hit by Lightning -Science & Nature,Paedology is the study of ______ ?,Soil,Sports & Leisure,Basketball: The Denver ______?,Nuggets,Geography,Which country has Ankara as its capital,Turkey -Food & Drink,What are the two main ingredients of a Hollandaise sauce? ,Egg yolks and butter , History & Holidays,How Many Men Were There In A Roman Legion? ,6000 ,Sports & Leisure,Which Sporting Couple's Autobiography Is Entitled 'Facing The Music''? ,Jane Torvill & Christopher Dean  -General,What is the Capital of: Guatemala,Guatemala,General,Ilich Ramirez Sanchez became notorious as who,Carlos the Jackal,General,"Marfona, Romano and Pentland Javelin varieties of what",Potatoes -General,"What's the international radio code word for the letter ""N""",November,General,UK snooker players call it doubling what do US pool players say,Banking,General,Disneyland opened in what year,1955 -General,Who played the role of Margaret Schlegel in the film Howard's End,Emma thompson,General,Which pigment produces the colour of hair or skin in animals,Melanin,Food & Drink,From What Is The Red Food Dye Cochineal Derived ,Beetles  -Sports & Leisure,Which Uk Football Team Are Known As The Owls ,Sheffield Wednesday , History & Holidays,In 1986 the prime minister of which European country was assassinated on his way home from the cinema with his wife?,Sweden (Olof Palme) ,General,What does soviet mean,Workers Council -Food & Drink,What Does The Term 'A La Carte' Actually Mean ,From The Menu ,General,What swims at 1/8 inch an hour,Sperm,General,The word 'struthious' refers to something that resembles or is related to which animal,Ostrich -General,The Heights of Abraham is in which Canadian province,Quebec,General,The chemical formula H2O2 refers to what,Hydrogen Peroxide,General,Which country is named after its highest point,Kenya -General,This is said to be history's greatest military evacuation,Dunkirk,General,Name the Wright brothers 1903 plane,Flyer,General,Similes: as white as a _____,Sheet -General,What country has the lowest teen pregnancy rate Western world,Netherlands,General,PD James wrote thrillers what does PD stand for,Phyllis Dorothy,General,A bowl of _______ contains twice as much sodium as a bowl of potato chips,Wheaties -General,Which planet has Prometheus as a satellite,Saturn,General,Where was judas buried,Potters field,Religion & Mythology,"In Greek mythology, who was Medea's husband?",Jason -General,Who got the world's worst circumcision,John bobbit,Music,"His Hits Include ""I'll Be Home"" ""Friendly Persuasion"" & ""Love Letters In The Sand"" Who Is He",Pat Boone,General,What geyser erupts every hour at yellowstone national park,Old faithful -General,What percentage of canadians dine out regularly,70%,General,If you were acomoclitic what would turn you on,Shaven Pubes, History & Holidays,On Tv In The 80's What Would The Initials 'HHOH' Signify ,Hammer House Of Horrors  -Music,"""Dead End Street"" By The Kinks Was Originally Released 1962, 1966, 1968",1966,General,Which of the Seven Wonders of the ancient world was built by a ruler's sister/widow,Mausoleum of halicarnassus,General,What marx brother had real name julius henry,Groucho -General,What was Walt Disney's first cartoon character,Oswald the Rabbit,General,What does hours d'oeurve literally mean,Out of course hence Extra Dish,General,What is the symbol for copper,Cu -General,Who sang about cars and girls in 1988,Prefab sprout,General,Relating to food what is 'pancetta' a type of,Bacon,Science & Nature, The dog and the turkey were the only two domesticated animals in ancient __________,Mexico -General,Which sacred volcano last erupted in 1707,Mount fuji or fujiyama,General,What was the worlds first passenger jet aircraft,Comet,General,Substance that is a poor conductor of electricity and that will sustain the force of an electric field passing through it.,Dielectric -Music,Who Were Bobby Hatfield & Bill Medley,The Righteous Brothers,Entertainment,What are the separators on a guitar neck called?,Frets,General,Plant with pungent bulb used in cookery,Garlic -Music,Who sang lead vocals for Lynyrd Skynyrd?,Ronnie Van Zandt,Art & Literature,What School Of Poets Was John Donne Attributed To ,The Metaphysical Poets ,General,Cannibals are famous for eating what,Human flesh -General,Which Italian dish consists of filled tubes of pasta baked in a sauce,Cannelloni,General,Name the organs that are involved in a triple transplant,Heart lungs and liver,General,"Physics: Energy and Momentum are never lost, they are ___. ?",Conserved -General,What is the capital of north vietnam,Hanoi,Art & Literature,Which Novel Features Perks The Station Porter? ,The Railway Children ,Art & Literature,"The visual and tactile quality of a work based on the particular way the materials are handled; also, the distribution of tones or shades of a single color.",Texture -General,What country invented the fiber tip marker in 1962,Japan,General,What do the initials 'crt' stand for among computer buffs,Cathode ray tube,General,Guatemala is the capital of ______,Guatemala -General,What sport is played on the largest field,Polo,General,The African and French marigolds are native to what country,Mexico,General,Meridian is a shade of what colour,Green -Science & Nature,These attach muscles to bones or cartilage.,Tendons,Music,"On the Beatles song ""Dear Prudence"", who's Prudence?",Mia Farrow's Sister,General,What kind of creature is the griffin,"Half eagle, half lion" -General,Who ruled France during the Franco-Prussian War,Napoleon iii,General,How often does a sesquicentennial occur,Every 150 years,Music,"Who Sang About ""Angie Baby""",Helen Reddy -General,What is a wind with a speed of 74 miles or more,Hurricane,General,Who wrote One flew over the Cuckoos Nest,Ken Kesey,General,Who was clyde barrow's partner,Bonnie parker -Sports & Leisure,Which racehorse houses the burial site of Red Rum? ,Aintree ,Geography,What's the capital of east germany ,East berlin ,General,About what year was the first steam ship built,1787 -General,What is an s curve,Ogee curve,General,What continent is part of both the east and west hemispheres,Antarctica,General,Beveley Hills Cop was Eddie Murphy but who was it intended for,Sylvester Stallone -General,Name The Female Vocalist That Performed With Kenny Rogers On The Song ” We've Got Tonight ”,Sheena Eastern,General,Name the strait joining the Atlantic Ocean and the Mediterranean Sea,Strait,Food & Drink,Chives are a member of which family of vegetables? ,Onion  -General,The Welcome Stranger 173 lb was largest what ever found 1869,Gold Nugget,General,Mike Nesmith From The Pop Group “ The Monkees ” And His Mother Are Responsible For Founding Two Of Americas Most Famous & Successful Companies.,Tipex & MTV,General,Yaounde is the capital of ______,Cameroon -General,"The little lump of flesh just forward of your ear canal, right next to your temple, is called a(n) ______",Tragus,General,Food prepared with wild plants is known as 'cuisine,Sauvage,Music,What Girls Did Queen Sing About In 1978,Fat Bottomed -General,Sitophobia is the fear of,Food eating,General,Liticaphobia is the fear of,Lawsuits, History & Holidays,In Which Welsh Village Where 144 Adults And Children Killed By A Land Slippage? ,Aberton  -General,Arthur Jefferson better known as who,Stan Laurel,Science & Nature,"The ""canebrake"", ""timber"" and ""pygmy"" are types of what",Rattlesnake,General,Barring rain - in which athletics event would you get wet,Steeplechase -General,"What president's hobbies included pitching hay, fishing, and golf",Calvin,General,Monetary unit of Greece,Drachma, History & Holidays,"Which rock star died when the Mini car, driven by his girlfriend crashed into a tree? ",Marc Bolan  -General,"In 1984, who sang 'girls just want to have fun'",Cyndi lauper,General,Abbreviations-short forms: fbi stands for _____?,Federal bureau of investigation,General,What is BSE in humans called,Cjd -General,"Which American Actor Once Had A Trial For ""The Green Bay Packers"" American Football Team",Bill Cosby,General,What colour is the mineral malachite,Green,General,What is the capital of north dakota,Bismarck -General,Who was William Claude Dukenfield better known as,W C Fields,General,Of what is the word 'fortnight' a contraction,Fourteen nights,General,What planet has the longest day,Venus -General,Who invented scissors,Leonardo Da Vinci, History & Holidays,"Which of the following was not a gift from a magi? (Diamonds,Gold, Frankincense,Myrrh) ",Diamonds ,General,A flat round Dutch cheese,Gouda -General,Who is mia farrow's mother,Maureen o'sullivan,People & Places,Who Famously Said 'You Cannot Be Serious' ,John McEnroe ,Food & Drink,"Who, according to the TV commercial, `makes exceedingly good cakes'? ",Mr. Kipling  -General,How much drinking water did a scuttlebutt hold,A day's supply,General,Which French book was written without using the letter 'E' once ?,La Disparition,General,Cass elliot was part of which 'monday monday' group,Mamas and papas -General,"Who was given temporary custody of the ""emerald orb"" (ds9)",Benjamin sisko,General,Which King is known as The Suicide King,King of Hearts Sword through head,General,If you are born between June 23rd and July 23rd what star sign,Cancer -General,What family is a horse,Ungulate,General,Which Famous Austrailian Landmark Was Opened In 1932,The Sydney Harbour Bridge,General,"The observable activity of an ""individual.(________)",Behaviour -General,What term applies to the property of metals that allows them to be drawn out in to a thin wire,Ductile,People & Places,Which King Had A Dog Named After Him? ,King Charles ii ,General,What is the title of the Bond movie in which the 'baddie' is called Scaramanga,The man with the golden gun -General,"Named album of the year in 1981, which pop group's debut album was called ""Dare""",Human league, History & Holidays,Who forced 146 captured British officers into the Black Hole of Calcutta?,Indian troops,General,What is the young of this animal called: Dog,Puppy pup -General,What was the first USA TV series screened in the USSR,Fraggle Rock,General,Who fought in the 1967 Six Days War?,Arabs and Israelis,General,In which classic movies would you hear the phrase 'Stop calling me Shirley'?,Airplane or Airplane 2 -General,For what does O.P.E.C. stand?,The Organization of Petroleum Exporting Countries,Music,Who Was Born Concetta Maria Franco Nero In December 1938,Connie Francis,General,What name is given to farms which specialise in growing crops ?,Arable -Music,"Who Wrote The Manfred Man Single ""The Mighty Quinn""",Bob Dylan,General,Which actor studied as a priest then an architect before acting,Anthony Quinn,Music,"During the 1970's, which song and which group “Don't ask us to attend, 'cos we're not all there, Oh don't pretend 'cos I don't care, I don't believe illusions 'cos too much is real?",Sex Pistols / Pretty Vacant -General,In Australian slang what is a Coughie,Bad Umpiring,General,In ancient Japan what was used to clean teeth,Stale Urine,General,"Who said ""That's one small step for man, one giant leap for mankind""?",Neil Armstrong -General,"Who directed 'drive he said', 'goin' south' and 'the two jakes'",Jack,General,In Georgia its illegal for a barber to do what,Advertise Prices,General,Who portrayed sherlock holmes in 14 films between 1939 and 1946,Basil -General,The process of making cows milk safe for consumption is,Pasteurization,General,"Who sleeps in a matchbox at Geppetto's house, in pinocchio",Jiminy cricket,General,Who playes Captain Picard in Star Trek: the next generation,Patrick stewart -Music,Whose first hit was Rewind The Crowd Say Bo Selecta in 1999?,Artful Dodger/Craig David,General,What was the theme music to The Exorcist,Tubular Bells – Mike Oldfield,Sports & Leisure,Hockey: The Buffalo _________.,Sabres -General,What is the condition resulting from prolongued muscular or mental activity,Fatigue,General,What WW2 resistance movements name is Italian for thicket,Maquis, History & Holidays,For Which Allegedly Obscene Publication Were 'Calder & Boyars'' Prosecuted In 1967 ,Last Exit To Brooklyn  -General,Whats a community of ants called,A colony,Science & Nature,What Planet Is Between Mars & Saturn In The Solar System? ,Jupiter ,General,"In cookery, what does the term ""Julienne"" mean",In strips - History & Holidays,What was the name of the rich boy that Andie was asked to go to the senior prom with in the movie 'Pretty in Pink'? ,Blaine ,General,What German word is printed on the labels of high quality wine,Kabinett,General,Who Was The Mother Of Liza Minelli?,Judy Garland -General,What links Jerry Garcia Buster Keaton Boris Yeltsin,Missing a bit of finger,General,Cretinism is caused by a failure of what,Thyroid gland,General,Which American aircraft company makes the F15 Eagle,Mcdonnell douglas -General,The clusec is the unit measuring the power of what,Vacuum pumps,General,Who would use a swozzle,Punch and Judy man,General,The museum of what can be found at Pontedassio in Italy,Spaghetti -General,Which Famous Character Did “Jean De Brunhoff” Create In 1931?,BarBar The Elephant,Science & Nature,Which Is The Most Poisonous Toadstool? ,The Death Cap ,Sports & Leisure,In 1999 who was voted PFA player of the year? ,David Ginola  -General,What did William Addis invent in prison,Toothbrush,General,Who was the Greek goddess of love,Aphrodite,General,In which city was Abraham born,Ur -Music,"Who Re-Released Lionel Richies Classic ""Easy"" In 1993",Faith No More,General,The artist Seurat employed which technique,Pointillism,Religion & Mythology,This roman soldier pierced the crucified Christ on His side with his spear.,Longinus -Geography,In which continent would you find the congo river ,Africa ,General,What variety of quartz is amethyst,Violet,General,"What is the computer acronym for ""picture element""",Pixel -Geography,What is the capital city of Ethiopia? ,Addis Ababa ,General,Baseball: the houston ______,Astros,General,Which PC game shares it name with a Bond film character,Solitaire -Science & Nature, The flounder swims __________,Sideways,General,Which compound comes from the nux vomica tree,Strychnine,General,What was Elvis Presley's first UK number one,All shook up -General,Loincloth worn by male Hindus,Dhoti,General,In which city is The Abbey theatre,Dublin,General,Heroin is the brand name of morphine once marketed by who,Bayer -Geography,Which is the only US state to have a Z in it's name? ,Arizona ,General,What was the name of geppetto's son,Pinocchio,General,With which pop group is Jarvis Cocker the lead singer,Pulp -Music,From Which Us City Did Techno Originate,Detroit,General,What is is group of kangaroos,Troop,General,Name US mountain range comes from French At the Bows,Ozarks - Aux Arcs -Food & Drink,"German dish with roast beef marinated in vinegar, sugar, and seasonings.",Sauerbraten,Art & Literature,Which Characters Were The Longest Running In The Comic The Beano ,Lord Snooty And His Pals ,General,What is the modern equivalent of the english reeve,Sheriff -Entertainment,"Turn, Side and Why does it always rain on me are all songs from what UK band?",Travis,General,"Complete the Quote ""Alas! Poor Yorick! I knew him, ?""",Horatio,Entertainment,What Marlon Brando film was widely banned?,Last Tango In Paris -General,In heraldry animals addorsed are in what position,Back to Back,General,Which sea separates Turkey from Greece,Aegean sea,General,What is the most assigned book / play in English classes,Romeo and Juliet -Entertainment,"What was the Oscar-winning theme song from ""Breakfast at Tiffany's""?",Moon River,General,Which Norse God invulnerable to all else was killed by mistletoe,Baldur,Entertainment,"What country was the setting for ""The King and I""?",Siam (Thailand) -Sports & Leisure,In Which Country Were The 1992 Olympics Held? ,Spain , History & Holidays,Name the 80's 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 ,General,Which twins were the brothers of Helen of Troy,Castor & pollux -General,What fish can blink its eyes,Shark,Food & Drink,What does 'Marbling'' refer to? ,Flecks of fat in meat , History & Holidays,In 1613 Who Did Pocahontas Marry ,John Rolfe  -General,"In Shakespeare's Hamlet, who is the father of Ophelia",Polonius,General,Pinchbeck is an alloy of copper and what else,Zinc,General,Which film preceded 'magnum force' and 'the enforcer',Dirty harry -General,What in muslim countries is a' taj,Brimless hat,General,Disney's Pluto (nee Rover) was originally whose pet dog,Minnie Mouse,Science & Nature,What Are Small To Medium Sized Kangaroos Called? ,Wallabies  - History & Holidays,Which eighties musician got sued by a music related company for using their name as part of his pseudonym?* ,Thomas Dolby ,General,"William McIlvanney wrote the novel The Big Man, who played the title role in the film adaptation",Liam neeson, History & Holidays,What did Ed Peterson invent?,Egg Mcmuffin -Entertainment,"John Travolta, Samuel Jackson, Uma Thurman starred in which 1994 Quentin Tarantino film?",Pulp Fiction,General,Who invented the mini skirt,Mary quant,General,In Ecuador if you were served tronquito what have you eaten,Bull penis soup -Music,Name The 2 Members Of Hall & Oats,Daryl Hall & John Oates,Music,"Which LA group charted with ""Rock The Boat""?",The Hues Corporation,General,1858 Queen Victoria sent the first transatlantic telegram to who,President James Buchanan -Music,Whitney Houston Recorded Which Dolly Parton Song,I Will Always Love You,General,Which bird turns its head upside down to eat,Flamingo,General,What Is The Only Product Owned & Produced By The Virgin Corporation That Does Not Display The Virgin Name Or Logo?,Mates Condoms -General,Device which automatically maintains a motor vehicle at a chosen speed is called,Cruise control,General,What brand and color of underwear is Marty wearing in Back to the Future?,Purple Calvin Klein briefs,Music,Apart From Singing What Occupation Is Tony Bennet Famous For,Painting -General,Who was the first Briton to win the Nobel Prize for Literature,Rudyard kipling,General,Which 9-fingered pop pianist starred in the film Its all Happening?,Russ Conway,General,Stallone how many innings must a starting pitcher pitch to get a victory,Five -General,What fictional Englishman belongs to the Ganymede club,Jeeves,General,Peter Sellers played Clouseau but who dropped the role,Peter Ustinov,Sports & Leisure,Which sport uses stones and brooms,Curling -General,What is a giant sequoia,Redwood tree,General,Link Danny Fisher Charlie Rogers Vince Everett Chad Gates,Elvis Presley character names,General,"Three chemical elements are magnetic, iron, nickel & what",Cobalt -Entertainment,What was Keanu Reeves' computer world alias in 'The Matrix'?,Neo,General,The flower nasturtium is native to which country,Peru,Art & Literature,Which Famous Book Contains The Line 'It was the best of times it was the worst of times it was the age of wisdom' ,A Tale Of 2 Cities  -Art & Literature,Who wrote 'To Kill A Mockingbird'?,Harper Lee,Music,What Group Was Diana Ross A Member Of Before She Embarked On A Solo Career,The Supremes,General,What was Simple Simon fishing for in his mother's pail?,Whale -General,What is the most dangerous job in the u.s,Commercial fishing,Science & Nature,How Many Are There In A Clutch Of Blackbirds Egg's ,Usually Between 3 & 5 ,General,Who was the last monarch to wash the feet of the poor on Maundy Thursday as an act of humility in remembrance of Jesus washing the disciples' feet? ,James II  -Music,"""Big Spender"" Was A Hit In 1967 For Which Female Singing Star",Shirley Bassey,General,Collective nouns - what profession gather in a bench,Bishops,General,What connects kabul with peshawar,Khyber pass -General,How tall was the tallest man,"8' 11""",General,What is the most westerly county of Ireland,Kerry,Music,What Did Chers Baby do In 1966,He Shot Her Down -General,Which TV cartoon series based in Springfield started life on the Tracey Ullman show,The simpsons,General,In sexual terms what is a mastix,Female Sadist,Geography,What is the capital of Peru,Lima -General,What future yippie leader was the first male cheerleader at brandeis,Abbie,General,"Which statesman said that Germany's problems could only be resolved by ""blood and iron""",Bismarck, History & Holidays,Which Christmas carol contains the lines 'O Tidings of Comfort and Joy'' ,God Rest Ye Merry Gentlemen''  -Music,Name The Four Sections Of An Orchestra,"Strings, Wood Wind, Brass & Percussion",Food & Drink,Who wrote the book Charlie and the Chocolate Factory? ,Roald Dahl ,General,"The shortest war, between Britain & Zanzibar, happened in what year",1896 -General,Who led the revolt of roman slaves in A.D.73,Spartacus,Food & Drink,What Is Most Likely To Be Measured In A Hogshead ,Beer ,General,Ratatosk was what animal in Norse mythology - relayed insults,Squirrel -Food & Drink,What Kind Of Fruit Is A Canteloupe? ,Melon ,General,50% of Dutch men have never done what,Flown in a plane 28% fear it,General,What does Peter Pan call Captain Hook,Cod fish - History & Holidays,"Who plays the role of the Prime Minister, in the 2003 Christmas film 'Love Actually'' ",Hugh Grant ,General,What company made PacMan?,Bally Midway,General,Botany & zoology combined make up the science of _______.,Biology -General,What causes the tangy smell at the seaside,Rotting Seaweed,General,What ship's survivors were rescued by the liner Carpathia,Titanic,Music,What Was The Name Of The Club In Liverpool Where The Beatles First Performed,The Cavern Club -General,Lewis on what japanese city was the second atomic bomb dropped during world war ii,Nagasaki,Sports & Leisure,How Much Is The Yellow Ball Worth In A Game Of Snooker ,2 ,General,What plant family (strictly genus) do azaleas belong to,Rhododendron -Food & Drink,What is the most widely used seasoning?,Salt,General,What is the fear of the dark or night known as,Nyctophobia,General,In which city is the distinctive building of the saddledome,Calgary -General,"Town in the west bank, near Jerusalem, controlled since 1967 by Israel though administered since 1995 by the Palestinian authority",Bethlehem,Science & Nature,What part of a rhubarb plant is poisonous?,The Leaves,General,What is the flower that stands for: dejection,Lichen -Music,Name The Former Beatles Bass Player Who Died In 1962,Stewart Sutcliffe,General,Who Supplied The Voice To The Queen In The Movie Shrek 2,Julie Andrews,General,What numerical computer language doesn't have pointer or recursion,Fortran -General,Second city: Milwaukee (state),Madison,General,Ouagadougou is the capital of ______,Burkino faso,General,What is the common name for lysergic acid diethylamide?,LSD -Music,"Who Had A Hit In 1994 With ""Shaker Maker""",Oasis,General,What was the first film given the title Blockbuster,Jaws,General,A person living in solitude,Hermit -General,Who has written many books about Jack Aubrey and Stephen Maturin,Patrick o'brian,General,What word of greek origin means 'a general pardon',Amnesty,General,Florinzel is a character in which Shakespeare play,The Winters Tale -General,What degree is 'dds',Doctor of dental surgery,General,A Paris grocer was jailed for two years in 1978 stabbing wife what,A wedge of hard cheese,General,What is the flower that stands for: retaliation,Scotch thistle -Geography,What is the capital of Guatemala,Guatemala,General,Who wore 2 shirts at his execution so people would not think him afraid if he shivered,Charles i,General,Mintonette was the original name of what sport in 1891,Volleyball -General,What was the full name of Mangum P.I.?,Thomas Magnum,General,"What are noctilucent, cirrus, and cirrostratus categories of ?",Clouds,General,Fruit preserved in sugar,Glace -General,Who was the greek god of prophecy and archery,Apollo,General,What Was The First Science Fiction Movie To Cost Over A Million Dollars To Make,Forbidden Planet,General,Softball began being played in Chicago in what year,1888 -General,Edward de Bono - Maltese Doctor - developed what concept,Lateral Thinking,General,What Type Of Foodstuff Is Used In The Construction Of “ Dynamite,Peanuts,General,An alloy of Iron - Chromium and Nickel makes what,Stainless Steel -General,What male name comes from Greek meaning lover of horses,Phillip,General,What does most lipstick contain,Fish scales,General,"Fill in the blank: if ___________ was shorter, the face of the world would be changed",Cleopatras nose -General,What number does VII mean in roman numerals,Seven,General,"Alberta's shield on the coat of arms, bears the cross of",Saint george, Geography,What divides the American North from the South?,The Mason-Dixon Line -General,Frank Vos Bob Seagren Wolfgang Nordwig all held what,Pole vault record,General,Who played in the film 'ragtime' after 20 years offscreen,James cagney,General,Ian Fleming's house was called Goldeneye - which country,Jamaica -Music,Which Pianist Joined The Chicago Symphony Orchestra When He Was Just Nine Years Old,Liberace, History & Holidays,Who was the eighties group that was named after the inventor of the radio? ,Tesla ,General,A Paralian always lives near what,The Sea -General,Hydrosis is the medical term for what,Sweating,General,Which religions various branches claims 100% of Afghanistans population,Islam,General, What is the study of prehistoric plants and animals called,Paleontology -General,What is the word for 'chewing the cud',Ruminant,General,Which European city is served by Fiumicino airport,Rome,Music,"His Fourth Chart Sucess When Was ""Crocodile Rock"" A Hit For Elton John",1972 - Geography,What is the capital of Comoros ?,Moroni,Music,"Which Techno Artists Albums Include Accelerator, Lifeforms & Dead Cities",Future Sound Of London, Geography,What is the basic unit of currency for Mozambique ?,Metical -Music,"Name The Artist Who Had A Hit With The Song ""Papa's Got A Braned New Pigbag""",Pigbag,General,Indian clarified butter,Ghee,General,Wilhelm Beer and Johan von Madler first good map where 1830,The Moon -General,In what movie did Charlie Chaplin first speak on film?,The Great Dictator,Music,"Bill Clinton Used Which Group's ""Don't Stop Thinking About Tomorrrow"" As His Presidential Campaign Song?",Fleetwood Mac,General,Which car company makes the Almera,Nissan -General,What is dittology,Double meaning,General,Who is considered the doctor of medicine,Hippocrates,General,What was pirate Captain Kidd's first name,William - History & Holidays,"Those big black CD's that you see at garage sales that people call ""albums"" are made of _____.",Vinyl,General,H14 N2 is a poisonous alkaloid consumed daily by millions what,Nicotine,Music,Roger Taylor Played The Drums For Which Famous Group,Queen -General,Who was assassinated by her own bodyguard in 1984,Indira Ghandi,General,A square of rectangular area in a church between the apse and the crossing. ,Choir,General,Classical seven ages of man Infant Schoolboy Lover what's next,Soldier -General,"Wild flowers: what's blue, comes out in spring, and smells like hyacinth",Bluebells,Science & Nature,Which 2 Islands Are The Natural Habitat Of The Orang-Utan? ,Borneo & Sumatra ,Science & Nature, Cows provide 90 percent of the world's __________,Milk -General,What is the flower that stands for: bravery,Oak leaves,Music,Whose Rival Was Two Ton Ted From Teddington,Ernie (Fastest Milkman In West),General,In what HG Wells novel does Dr Griffin sometimes appear,The Invisible Man -Entertainment,Who sang 'Good Morning To You?,Mildred and Patty Hill,Art & Literature,"From which of Shakespeare's plays is this line: ""All the world's a stage___""",As You Like It,General,What does a gozzard have or own,Geese -General,What is Greece's second city after Athens,Selonika,General,Book of Shadows is the alternative title for which horror film,Blair Witch 2,General,Sean Mercer Was Jailed For 22 Years In 2008 AQfter Being Found Guilty Of What Crime,He Murdered Rhys Jones -Food & Drink,Which Meat Dish Was Named After A 19th Century Russian Count ,Beef Stroganoff ,General,"Who plays Captain Jean Luc Picard in the series Star Trek, The Next Generation",Patrick stewart,General,What is the flower that stands for: cheerfullness in old age,American starwort -Music,Who Were Bobby Hatfield & Bill Medley?,The Righteous Bros,General,Who is the historical figure most often portrayed in movies,Napoleon bonaparte,General,What animals name literally translates as earth pig,Aardvark - History & Holidays,December 26th is traditionally known as Boxing Day but it is also which Saints Holy Day ,Saint Stephen ,General,Why do lawyers traditionally wear black,Mourning Queen Mary Scotland,General,The treatment of disease by chemical substances which are toxic to the causative micro organisms is called ________,Chemotherapy -General,Petroselinum crispum is the Latin name of which herb,Parsley,General,Capital cities: Vanuatu,Port vila,Science & Nature,What Animal Is A Skua? ,A Bird  -General,"Who are the three annoying neighbors in ""Small Wonder""?","Brandon,Bonnie,and Harriet Brendel",General,"In Which Country Might The Jets Play The Mariners, & The Glory Take On The Roar At Football?",Australia,General,In what Australian state would you find Albury,New south wales nsw -Geography,On Which River Does New Orleans Stand ,The Mississippi ,General,What bird has the longest fledging period 360 days,King Penguin, History & Holidays,What 80's game show featured the 'Whammy'? ,Press Your Luck  -General,"In the film 'hackers', how old was 'zero_kool' when he was first arrested",Eleven,General,What was the first TV theme song to hit number one US charts,Davy Crocket,Science & Nature," A donkey is an ""ass"", but an ass is not always a donkey. The word ""ass"" refers to several hoofed mammals of the genus Equus, including the __________",Onager -General,What is a skin specialist called,Dermatologist,General,What was john lennon's original middle name,Winston,General,What Was The Name Of The Fifa 1994 World Cup Mascot?,Striker - History & Holidays,What did jack the ripper sign on his first note ,Yours truly ,General,"In art, what name is given to a quick sketch for a larger painting",Cartoon,General,Which small republic is situated on the slopes of Monte Titano in Italy,San marino -General,In which city is the Encyclopaedia Britannica based and published today,Chicago,General,What group were once called The Warlocks,The Grateful Dead,General,What nationality was Cleopatra,Greek -General, Gymnophobia is the fear of __________.,Naked bodies,Music,Which group had a number 1 in 1966 with 'Keep on Running'?,The Spencer Davis Group,General,"In Greek mythology, from where was a beam hewn on atlanta's ship",Speaking -General,The Dove awards are presented annually for what,Gospel music,General,What is the highest mountain in the Casacde range?,Mount Rainier,General,Hydrophobophobia is the fear of,Rabies -General,What city do the italians call the monaco of bavaria,Munich,General,On which planet would you find the Caloris Basin,Mercury,General,What angle do 90 degrees make,Right angle -General,What's the most popular name for a male pet cat,Tiger,Music,"Who Had A Hit With ""Heaven Is A Place On Earth""",Belinda Carlisle,General,The Taj Mahal was built on the southern bank of which river,Jumna -Geography,What is the capital of Ghana,Accra,General,Which one of the three tenors is not spanish,Pavarotti,Geography,Name the capital city of rhode island. ,Providence  -General,What african city is built on gold,Johannesburg,Entertainment,"When not fighting crime, what did Underdog do for a living",Shoeshine boy,General,Percy LeBaron Spencer invented what in 1945 in USA,Microwave Oven -General,Decoration of food,Garnish,General,What is the most important industry in Alaska,Fishing,General,What is the name of Shakespeare's first play,Titus Andronicus -General,Rita Kuti Kis represented Hungary in what sport,Tennis, History & Holidays,What Christmas item was first introduced by Henry Cole in 1843 ,The Christmas Card ,Science & Nature,Name A Type Of Plague Other Than Bubonic ,Pneumonic  -General,"In 1985, as what did 'people magazine' name Mel Gibson",Sexiest man of the year,General,What Prophet in the Bible had a talking donkey,Balaam,General,What novel recounts john blackthorne's adventures in 16th century japan,Shogun -General,Where did the judds spend years shopping demos recorded on a cassette recorder,"Nashville, tennessee", History & Holidays,13th July 1955 saw the last execution of woman in Britain - who was she ,Ruth Ellis ,Toys & Games,How much is the luxury tax (in dollars) in Monopoly,75 -General,Who in books and films was the man of bronze,Doc Savage,General,What is the flower that stands for: separation,Carolina jasmine,General,The brothers Don and Phil formed which singing group,Everly brothers - History & Holidays,"Neptune Was The Roman God Of The Oceans, What Name Did The Greeks Use? ",Poseidon ,General,What two ingredients make the dish angels on horseback,Oysters - wrapped in Bacon,General,Crystal City in Texas put up a statue to what cartoon character,Popeye - they are spinach growers -Science & Nature,How Long Does A May Fly Live? ,1 Day/ 24 Hours ,General,What is the capital of arizona,Phoenix,Music,"Duran Duran Were ""Hungry Like The What""",Wolf -General,Who was European correspondent New York Tribune 1851/62,Karl Marx,Music,"Oh is he more, too much more than a pretty face, It's so strange the way he talk, it's a disgrace, Well I know I've been out of style, For a short while, But I don't care how cold you are” From which 1970’s song?",David Essex / Gonna Make You A Star,Entertainment,"This was the sequel to ""Star Wars"".",The Empire Strikes Back - History & Holidays,What was Thailand formerly known as?,Siam,General,What is the Capital of: Jordan,Amman,General,"By 1983, 13 million of what ""labor-saving"" device operated worldwide",Computers -General,In which game is gruntilda the witch,Banjo-kazooie,General,Which modern country occupies the former Roman province of Lusitania,Portugal,General,What city has the most underground stations in the world?,New York -General,In The TV Show Different Strokes What Was The Name Of Arnolds Goldfish,Abraham,General,"In Dr Who, what was Tardis an abbreviation of ?",Time and relative dimensions in space,General,Name the toy that consisted of color pencils and plastic which you would put in the oven to create.,Shrinky Dinks -General,Who was the first American to make $100 million a year,Al Capone,Toys & Games,Name of Barbie's hot pink sports_car.,Vette, History & Holidays,"Before she was a pop star, why was Samantha Fox in the British tabloids? ",She was a page three girl  -General,What Nationality Would You Be If You Spoke Inukitut,Canadian,General,Who did caesar and cleo become,Sonny and cher,General,Victor Buono played what Batman villain in the original series,King Tut -General,"What is the federal district in southeastern Australia, bordered by the state of New South Wales",Australian capital territory,General,"In Mathematics, the Greek capital letter ""sigma"" is used to denote what process",The sum of (summation),General,The agen plum was the basis of what giant u.s industry,Prunes -General,To what country would a hiker go to assail mt ararat,Turkey,General,"What sport links Castle Cup, Red Stripe Cup, Ranji Trophy",Cricket,General,"Which spiritual song, made famous by Joan Baez, became the anthem for American Civil Rights movement in the 1960s",We shall overcome -General,Madame Pauline de Vere first female circus performer - do what,Head in Lions Mouth,General,"In Digimon,what do T.K. and Kari have that the other children don't?",Older brothers,General,The continental title baron is equal to which UK title,Earl -General,How many miles can a Pershing missile travel,400,General,What is the basis of the dish 'Hummus',Chick peas,General,What German city was the site of the war crime trials following WWII,Nuremberg -General,What can keep for up to 4 years if stored in a cool dark place,Standard Condoms,General,"An English folk dance that appeared in the fifteenth century, in which dancers wore bells on their legs and characters included a fool, a boy on a hobby horse, and a main in blackface.",Morris dance, History & Holidays,Which war drama was first seen on British Television in October 1972? ,Colditz  -General,Whose final opera was called Death in Venice,Benjamin Britain,General,What is the kitchen on a ship called,Galley,General,What American city is prone to strong winds,Chicago -Music,"A Holland Park Brothers Track, Name The 1981 UK Single From The Album ""Forever Michael""",Were Almost There,General,In which alcoholic spirit might you find a worm in the bottle,Tequila,General,How many names did the first telephone book ever issued contain,Fifty -General,"Which British physician, 1749 to 1823, developed the first effective vaccine against smallpox",Edward jenner,Geography,What city boasts the Copacabana Beach and Impanema,Rio,General,In California you can't legally buy a mousetrap without what,Hunting Licence -General,Who invented the first flush toilet,Thomas crapper,General,How many days where there in 1976?,366,General,"What name is given to a fibre from the husk of a coconut, used in rope making & matting",Coir -General,What is an instrument for indicating the depth of the sea beneath a moving vessel called,Bathometer,General,Which group had a British number one hit in the 1970s with I Don't Like Mondays,Boomtown rats,General,What takes a human 43 muscles to do,Frown -General,Who was 'uncle milty',Milton berle,General,What is located at 350 fifth avenue in New York City,Empire state building,General,What does GP mean on a music score when all players silent,General Pause -General,Who said sex is a bad thing it rumples the clothes,Jacqueline Kennedy Onassis,General,In the Old Testament what book comes between Obadiah - Micah,Jonah,General,Who directed Star Trek films 3 and 4,Leonard Nimoy -General,Each body cell contains how many chromosomes,46,Music,"Who had a 50's hit with 'To know him, is to love him' in 1958?",The Teddy Bears,Art & Literature,Who Wrote (Gone With The Wind) ,Margaret Mitchell  -General,Name the Apostle who replaced Judas Iscariot,Matthias,General,As what was sony's video recorder known,Beta-max beta max beta, Geography,What is the monetary unit of India?,Rupee -General,What was the name of the Monkeys only film made in 1969,Head, Geography,Meridians converge at the ________.,Poles,General,Which marsupial is native to North America,Opossum -Sports & Leisure,From Which Football Club Did Manchester United Sign Roy Keane In 1993? ,Nottingham Forest ,General,In what organ of the body is insulin produced,Pancreas,General,Which Steven Spielbereg film pits Dennis Weaver against a truck with an unseen driver,Duel -General,How many hours does an antelope sleep at night,One,General,Who succeeded Brezhnev as Soviet leader,Yuri andropov,Music,Who Were The 2 Members Of The Pop Duo Wham,George Michael & Andrew Ridgely -General,A Capriphiliac has sex with who or what,Goats,Science & Nature,Which Famous Series Of Aircraft Was Designed By Artem Mikoyan & Mikhail Gurevich ,MiG ,General,What is the common term for the condition monochromatism,Colour blindness -Entertainment,"Who plays the character of the only escapee from Alcatraz in the movie ""The Rock""?",Sean Connery,General,What was Hitchcock's first film in colour,Rope,General,What was the name of the baby in Three Men and a Baby,Mary -General,"Who sang the theme song to the ""Breakfast Club""?",Simple Minds,General,Who was nicknamed The Bronx Bull,Jake LaMotta,Music,"Which Singing Cowboy Was Born Leonard Slye , & Whose Early Career Was As Part Of The Sons & Pioneers Group",Roy Rogers -General,"Syd Barett, Roger Waters, Richard Wright, Nick Mason - Group",Pink Floyd,General,What is a spat,Baby oyster,General,"What did Emerson, Lake and Palmer burn on stage during their concerts",The -General,"Kitty, fire, draw and tuck in are terms in what sport",Green Bowls,General,Who was the first honorary US citizen,Winston Churchill,Science & Nature,Which sight problem occurs in men far more then in women ?,Colour Blindness -General,A Mai Tai is a cocktail literally meaning what in Tahitian,Out of the World,General,"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,Music,What Was Buddy Holly’s Real Christian Name,Charles -General,"Born Georgios Panayiotou in England in 1963, by what name is this singer better known",George michael, History & Holidays,Messala was the gad guy in which 50s blockbuster ? ,Ben Hur ,Toys & Games,"What number is on the opposite side of the ""five"" on dice?",Two -General,In what US city do they watch the most TV evangelists per cap,Washington DC, History & Holidays,Who tried to create the 'Great Society'?,Lyndon B Johnson,Science & Nature,What Is The Hardest Substance In The Body ,Tooth Enamel  -General,Heinrich Schliemann archaeologist famous for excavating where,Troy,General,What tv series from 1970-1974 starred susan dey,Partridge family,Science & Nature, The average __________ moves at a rate of approximately 0.000362005 miles per hour.,Snail -General,"In ballet, a position with the body at an oblique angle and the working leg crossing the line of the body.",Croisée,General,"What two countries were known as ""the yellow peril"" in the 1890's",China & japan japan & china,General,Which was the first of the National Parks in England and Wales,Peak district -General,Chloe the girls name means what,Green shoot,General,What is the medical term for word blindness,Dyslexia,Religion & Mythology,Who is the greek equivalent of the roman god Minerva,Athena -Science & Nature,Which Is The Second Heaviest Land Animal? ,The Hippopotamus ,General,Which animal is known as 'mouton' to the French and 'schaf' to the Germans,Sheep,General,Dead mans hand was Aces and Eights plus which other card,Queen of Hearts -General,Who was the first person to wear a baseball glove,David,General,Who was the first head of an arab nation to make peace with israel,Anwar, History & Holidays,Who is the first ghost seen by Scrooge in 'A Christmas Carol'' ,Jacob Marley  -General,What were the names of the first so-called 'Siamese Twins',Chang and eng,General,"What is the scientific name for a ""spy in the cab""",Tachograph,Sports & Leisure,In Which Sport Was Desmond Douglas Britain's Leading Competitor ,Table Tennis  -Science & Nature," Surviving all dangers, a wild __________ may live up to 20 years.",Cobra,General,In which European Palace are the State Apartments called the Hall of Mirrors,Versailles,General,What is the Capital of: Andorra,Andorra la vella -Music,Guess The Band From These Initials AFL / AF / BA / BU,Abba,General,What colour are the seats in the House of Lords,Red - Commons green, Geography,What south American country has both a Pacific and Atlantic coastline?,Colombia -Music,What Reason Did Peter Criss Give For Leaving Kiss In 1980,The Makeup Was Ruining His Complexion,General,What did wham! say to do before you go go,Wake me up,General,What greek phrase means 'the masses',Hoi polloi -Science & Nature,A phrenologist reads _________.,Skulls,Science & Nature,What is a male swan called?,Cob,Music,Which Hugely Successful 90’s Pop Duo Consisted Of “Marie Fredriksson And Per Gessle”,Roxette -General,In which UK city is the 'City Palace of Varieties'?,Leeds,General,"Which group starred with Oliver Reed in the film ""Tommy""",The who,Science & Nature," 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 -General,Poinephobia is the fear of,Punishment,Sports & Leisure,Who did Stephen Hendry replace as World No1 in the 1989-90 Snooker season? ,Steve Davis ,General,Who is the oldest female to win best actress oscar?,Jessica Tandy -General,What is the only counties national flag different both sides,Paraguay,Science & Nature,What metal is the major constituent of Rubies ?,Aluminium,General,What is a young duck called,Duckling -General,In which classic Western film did the character Will Kane appear,High noon,Geography,The name of which Central American country means The Saviour in English? ,El Salvador ,Entertainment,Hey! What was the name of the hit song released by 'The Romantics' in February 1980?,That's What I Like About You -General,"What year was the bacall-bogart movie ""the guys from milwaukee"" released",1946,General,What French blue cheese (similar to stilton) is made ewes milk,Roquefort,General,What Latin word means elsewhere,Alibi -Sports & Leisure,Who Won 7 gold Medals In Swimming At The 1972 Olympics ,Mark Spitz ,Art & Literature,In The (Rhyme Of The Ancient Mariner) Which Bird Is Shot ,An Albatross , History & Holidays,Who was the female star of in the tv version of 'Bewitched' ,Elizabeth Montgomery  -General,Which people used to settle legal disputes by head butting,Inuit - Eskimo,Music,"Who Wrote And Produced Minnie Rippertons No.1 Hit ""Loving You""",Stevie Wonder,Religion & Mythology,Which two books in the Old Testament list the ten commandments? (in order of appearance),Exodus and Deuteronomy -General,It came into football in 1923 men say women don’t understand?,The offside rule,General,In Massachusetts what's illegal unless bedroom window locked,Snoring,General,Which gangster escaped from jail using a wooden gun,John Dillinger -General,What type of food is Taramasalata,Cured /smoked cod roe,Geography,Which city in New Zealand is known both as the City of the Plains and the Garden City is it Wellington or Christchurch? ,Christchurch ,Science & Nature,"What is a small, flightless bird native to New Zealand?",Kiwi -Music,What Do You Call The Lines Upon Which Musical Notes Are Written,Staves,General,Who plays the boy in the film 'Billy Elliot',Jamie bell,General,"What three letters are overly used to indicate ""Laugh Out Loud""?",Lol -General,Where will children as young as 15 be jailed for cheating on their finals?,Bangladesh,General,Who invented the cash register in 1879,James ritty,General,What name is given to the socket in the skull which holds the eye,Orbit -Entertainment,Nick Nolte and Eddie Murphy star in this 1982 film.,48 Hours, History & Holidays,In The Movie 'Interview With The Vampire' Who Played The Vampire Being Interviewed ,Brad Pitt ,General,The Greeks used hexagonal or triangular ones of burnt clay what,Coffins -General,More Deaths Occur Each Year Participating In This Sport Than Any Other Sport What Is It?,Fishing,General,Roberts in which film was goldie hawn the body double for julia roberts,Pretty woman,General,What is the german parliament,Bundestag -General,Who was appointed Headmaster of Rugby School in 1828,Thomas arnold,General,The density of what is measured on the Rngelmann scale,Smoke,General,"What is the discharge of a liquid from a surface, usually pores or incisions",Exudation -Food & Drink,Name for an oblong cream puff filled and topped with icing.,Eclair,Music,James P Johnson Wrote The Signature To Which 1920's Dance Craze,The Charleston,Geography,The standard single oar used by gondoliers in ____________ is 14 feet long.,Venice -General,Nostophobia is the fear of,Returning home, Geography,In what city are the famous Tivoli Gardens?,Copenhagen,General,What was the name of the horse in Animal Farm,Boxer -General,Who was the losing Democratic candidate in the 1968 U.S. Presidential Election,Hubert humphrey,General,What is the fear of shellfish known as,Ostraconophobia,Food & Drink, What colour is the flesh of an avocado?,Green -General,"In norse mythology, who is the chief of the valkyries",Brunhilda,General,Who was the ponderosa's chinese cook,Hop sing,General,Where is mauna kea,Hawaii -Food & Drink,Who released the following 'edible' album 'Tigermilk' ,Belle and Sebastian ,General,What did the House of Saxe-Coburg-Gotha change it's name to ?,House of Windsor, Geography,Port Moresby is the capital of ______?,Papua New Guinea -General,Masked pantomime character in diamond patterned costume,Harlequin,Music,Was Silence Is Golden Credited To Brian Poole & The Tremeloes Or Just The Tremeloes,The Tremeloes,General,The Camorra was the forerunner of what organisation in the USA,The Mafia -Music,Tears On My Pillow Was A Hit In 1990 But Who Was The Singer,Kylie Minogue,General,The Black Death came to England from what port,Calais,General,"Rats, mice, beavers, and squirrels are all _______.",Rodents -General,Who played kevin hathaway on the soapie 'days of our lives',Pat sajak,General,Which song is performed at start Indiana Jones Temple of Doom,Anything Goes,General,"Jefferson what can be tulip, balloon or flute",Wine glasses -General,The Indian name Singh translates as what,Lion,Sports & Leisure,How Many Players Are There In A Volleyball Team ,6 Players ,General,What is a naevus (nevus),Birthmark -General,What was the name of the submarine which sank the General Belgrano during the Falklands conflict,Hms conqueror,General,What was the first auto part completely designed by a computer,Cadillac,General,What news anchor attended Reagan High School,Dan rather -Entertainment,What is the name of the whale that swallowed Pinocchio.,Monstro,Music,What Was Alice Coopers Biggest Hit Of The 80's,Poison,General,"Bread, cereals, fruit and vegetables are needed by the body as good sources of what",Fibre -General,What would you do with a hecklephone,Play it - type of woodwind,General,Havana is the capital of ______,Cuba,General,"Anvil, hammer and stirrup are all bones where",Ear -General,"Elizabeth I of England suffered from anthophobia, what is it",Fear of roses,General,What is the english word for 'zorro',Fox,General,"In a classical building, the triangular gable between the horizontal entablature and the sloping roof; in general, and architechtural feature over a door or window.",Pediment -General,In Dallas what was the name of the bar,Cattleman's Club,General,Ulan bator is the capital of ______,Mongolia, History & Holidays,Why is the day after Christmas named Boxing Day? ,The Rich Gave Presents To The Poor  -Music,In music what term is used to describe 3 or more notes played simultaneously?,Chord,General,"Who Originally Said Of Gerald Ford That ""He Was So Dumb He Couldn't Fart And Chew Gum At The Same Time""",Lyndon B Johnson,Geography,What is the capital of Nicaragua,Managua -General,What was the name of the police character played by Roy Scheider in the film Jaws,Martin brody,General,What new york thoroughfare is known as 'millionaires' row',Fifth avenue,Sports & Leisure,What was the Australian John Landy the second person to achieve? ,A Sub Four-Minute Mile  -General,Which musician of non-U.K. citizenship was awarded an honorary knighthood (KBE) in 1986,Bob geldof,General,Kevin Kline won best supporting actor Oscar which 1988 film,A Fish Called Wanda,Sports & Leisure,How many pounds does the Olympic hammer weigh? ,16  -Religion & Mythology,"Though the touch of gold was removed, Midas was forever cursed by Athena to have the ears of which animal?",Donkey,Entertainment,Secret Identities: Kirk Morrison,King mob,General,"What was the blue dye, used by ancient Britons to colour their skin, called",Woad -General,Who was born sarah jane fulks,Jane wyman reagan,Science & Nature,How Often Does Bamboo Bloom? ,Once Every 120 Years ,General,In the Phantom of the Opera how does the Phantom sign notes,OG - Opera Ghost -Music,Who Was The Midnight Rider,Paul Davidson,General,Who invented the windmill,Arabs, Geography,What is the worlds longest concrete dam?,Grand Coulee Dam -Music,"How Many Christian Brothers Were Originally In The Group ""The Christians""",Three,Music,"Who Sang ""Hazy Shade Of Winter"" From The Film ""Too Low For Zero""",The Bangles,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 -General,What does the 'x' mean when referring to the speed of a cd-rom (ie.. 32x),Times faster than a single speed,General,With what is charcoal and sulphur mixed to make gunpowder,Saltpetre,General,What Canadian broadcaster created the radio character old Rawhide,Max ferguson -Geography,Which is the least populated state in the USA? ,Wyoming ,General,Romanian soccer team wich won the European Champions League in 1986(in final with CF Barcelona),Steaua bucuresti,Science & Nature, 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 -General,How many olypmic medals has mark spitz won,Nine,General,"Which tennis player , when asked if he had learned anything from his US Open loss said, ""Yeah___I learned I needed to lose 15 pounds""?",Andre Agassi,General,"First emperor of Rome (27bc-14ad), who restored unity and orderly government to the realm after nearly a century of civil wars.",Augustus -General,What is measured on the Mohs scale,Hardness of minerals,General,What could an Australian win a Stanley for,Cartooning,Sports & Leisure,How many stitches are on a regulation baseball?,108 -General,Which drug can be extracted from the bark of the cinchona tree,Quinine,General,Who is the only host country not to win gold at its own summer olympics,Canada,General,The largest University is in which country??,"Paris, France" -General,Who wrote 'shogun',James clavell,General,"In common: see, carpet, hot, cent",Red,Science & Nature,Which alloy is made with nine parts tin and one part lead? ,Pewter  -General,What Is The Name Of Postman Pats Son?,Julian,General,In the UK what was the first product advertised on TV in colour,Birds Eye Peas,General,The variety of living organisms in a particular habitat or geographic area,Biodiversity -General,Where was Hawkeye Pierce's hometown in the show M,A S H ? Crab Apple Cove, Geography,What is the basic unit of currency for Spain ?,Peseta,General,Time Magazine named what as the Man of the Year 1982,The Computer -General,By what name is the skin complaint of 'comedo' better known,Blackheads,General,Furritus Latin for little thieves is the name for which creature,Ferrets,Music,Which band featured Paul McGuigan on bass?,Oasis -Music,"In Which Comedy Film Does Aretha Franklin, Star As A Proprietress Of A Soul Food Joint Sing Her 1968 Hit Think",The Blues Brothers,General,What was mozart's middle name,Amadeus,General,US what was the last brand of cigarettes to be advertised on TV,Virginia Slims -General,What year was a U2 pilot shot down for spying,1960,Music,"Little Richard's Early Hits Were Recorded For A Los Angeles Record Label, Which One",Speciality,Sports & Leisure,In 1995 Who Did Blackburn Rovers Loose To On The Final Day Of The Season Yet Still Managed To Win the Premiership ,Liverpool  -General,Who prescribed marijuana for queen victoria's menstrual cramps,Her doctor,General,What is the literal English translation of the French phrase 'cordon bleu',Blue ribbon,Science & Nature,The Ishihara Test Is Used To Determine Whether Or Not Somebody Is What ,Colour Blind  -General,In Cornwall where would you find two legged knockers,Tin Mines goblins,General,Who is Hamlet's tragic suicidal girlfriend,Ophelia,General,Which international footballer was known as 'Black Panther',Eusebio -Food & Drink,What Is Pumpernickel ,A Type Of Bread , History & Holidays,What Is Worn Around The Neck To Keep Vampires Away ,Garlic ,Music,"On What Label Was ""Down Down"" A Hit For Status Quo",Phonogram -Music,Vincent Fernier Is More Commonly Known As Which Rock Star,Alice Cooper,Toys & Games,What score is not possible for a cribbage hand,19,Food & Drink,What did Charles Jung invent?,Fortune cookies -General,Who began his career with 'the yardbirds' and is established as one of the best rock guitarists of his generation,Eric clapton,General,White-out was invented by who's mother,Mike nesmith,General,Who won the Nobel prize in physics in 1921,Albert einstein -General,What are kreplach,Jewish ravioli,General,Which detective novelist caused a sensation by disappearing for ten days in 1926,Agatha christie,General,In which sci-fi novel do the Morlocks live underground,The time machine -General,What is alfred e neumans motto,What me worry,Entertainment,"Who were the rivals of the T-Birds in the movie ""Grease""?",Scorpions,General,What was the name of the short lived spin-off of Three's Company?,The Ropers -Sports & Leisure,Which Scottish Football Club Boasted The First All Seater Football Stadium In Britain ? ,Aberdeen , History & Holidays,Who Directed The 1968 Film Rosemary's Baby ,Roman Polanski ,General,"The easybeats released ""friday on my _____""",Mind -General,What links Herbert Hoover and Richard Nixon - not the obvious,Both Quakers,General,"Americans say ""shades"", but canadians say",Blinds,General,Who refused the leading male role in Gone With the Wind,Gary Cooper -General,What digit does not exist in Roman Numerals,Zero, History & Holidays,What was the first American colony to legalise witchcraft?,Pennsylvania,General,33% of worlds population can't do what apparently simple thing,Snap their fingers -General,Emperor Haile Selassie of Ethiopia was finally diposed in 1974 after how many years in power,Fifty eight,General,Who is the subject of Irving Stone's The Origin,Charles darwin,General,Which American state has Boise as its capital,Idaho -Science & Nature,How Was The Misubishi A6M Fighter Aircraft Known ,Zero ,Geography,The Town Of Timbuktu Is In Which African Country ,Mali ,General,"Which Shakespeare play features Cordelia, Regan, and Goneril",King lear -Geography,What is the capital of Ireland,Dublin,General,What was or is a Waltzing Mathilda,Swagman’s Knapsack,Entertainment,What was the name of Speed Racer's car,The mach five -General,Where do pilgrims go to march around the Kaaba and kiss The Black Stone,Mecca,General,100 zeros after the number 1 is a very very large number called what,Googol,Music,In 1965 Who Went To Maggies Farm,Bob Dylan -General,According to folklore a windy christmas means _____,Good fortune,General,What current popular sitcom star played Michael P. Keaton's girlfriend Lauren Miller on Family Ties?,Courteney Cox,General,In Roman times what were Falerian Setine Alban Sorrentine,Wine Regions -Science & Nature,Who Invented The Spinning Jenny In 1764 ,James Hargreaves ,General,"Ginger Baker, Eric Clapton and Jack Bruce were the line-up to which band",Cream,Entertainment,What kind of dog is Scooby Doo?,Great dane -General,Which English composer was born near Worcester in 1857 and died in 1934,Edward elgar, History & Holidays,Who Released The 70's Album Entitled The Pleasure Principle ,Gary Newman ,General,Who once had a job as a coffin polisher,Sean Connery -Science & Nature,"Which disease is also known as ""Hansen's Disease""?",Leprosy,General,On the Thames they go swan upping annually what is it,Counting swan population,General,"Which sandwich which is served hot, consists of Corned Beef, Thousand Island dressing, Sauerkraut and Cheese?",Reuben Sandwich -General,Excluding the what word appears most in Bond film titles,Never,Entertainment,What type of plant does Broom Hilda sell?,Venus flytrap,People & Places,Whose Catchphraase Is 'Nice To See You To See You Nice' ,Bruce Forsythe  -General,Not obvious colours - what links orange silver purple,Can't rhyme in English,General,District of ancient Greece on the northern coast of the Gulf of Corinth,Aetolia,General,Wilma Rudolf first black US woman to win Olympic gold where,Rome in 1960 (3) -General,French revolution what did the prisoners travel to the guillotine in,Tumbrels,Geography,Name the capital of italy. ,Rome ,General,"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 -General,How Are The Pop Duo Ben Watt And Tracy Thorn Collectively Known,Everything But The Girl,General,Where was the monty python film 'the life of brian' banned,Scotland,General,"What pop group said ""Were only in it for the volume""",Black Sabbath -General,What did Brian Epstein manage before the Beatles,A Record Shop,General,What author wrote the books Rage and The Sunbird,Wilber Smith, History & Holidays,Who Was The Only British Pope? ,Adrian IV  -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,Music,What Is The Name Of Michael Jacksons Ranch,Neverland,Music,Who Recorded The Original Version Of Soft Cell's Tainted Love,Gloria Jones -General,In which form of Japanese theatre are all roles played by men,Kabuki,General,What country has the most Post Offices,India, Geography,What is the basic unit of currency for Saint Lucia ?,Dollar -General,Which cartoon character has a girlfriend named Petunia,Porky Pig,General,"Name the detective in My gun is Quick, Murder is my Business",Mike Hammer – Mickey Spillane, History & Holidays,The first dog in space was named _________.,Laika -General,"On the show Cheers,What was the name of the restaurant above the bar.",Melvilles,General,Who voices the female hyena in the lion king,Whoopee Goldberg,General,In which magazine did sarah ferguson make the 'worst dressed list' five times,People's magazine -General,Where is the base city for Porsche cars,Stuttgart Germany,Entertainment,What was Eddie Murphy's character name in 'Beverley Hills Cop'?,Axel Foley,Science & Nature,How Many Humps Has A Dromedary Got? ,One Hump  -Science & Nature,The fins of which fish are made into a soup?,Shark,General,"What, apart from air & fuel, is filtered in a car",Oil,Music,What Did Voice Of The Beehive Ask Us Not To Do In 1988,Don't Call Me Baby -General,What did Sally Rogers always wear in her hair?,A bow,Food & Drink,What Banned Substance Was Included In The Ingredients Of Coca Cola Until 1903 ,Cocaine ,General,"What do ensign, cadet, osprey and 505 have in common",Sailing Dinghy's -General,Two English versions of the 'Bridge of Sighs' are located in which two English cities?,Oxford and Cambridge,General,Which is the language that is most spoken in the world?,Chinese,General,In Greek mythology who was moirae's mother,Themes -General,What was gangster charles floyd's nickname,Pretty boy,General,The giant squid has the largest ____ in the world,Eyes,Science & Nature,Which company introduced the first 'instamatic' camera in 1963? ,Kodak  -General,"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,Music,Name Pavarotti's 1990 Winner,Nessun Dorma,Geography,"Which American state's name is Spanish for ""colored"" or ""colored land""?",Colorado -Music,A Year Later It Was A Huge Top Ten Hit But Which INXS Single Only Got To No 58 In 1987,Need You Tonight,General,What did Percy Shaw invent,Cat's eyes,General,Which artist painted sixty two self portraits,Rembrandt Van Rinn -General,What is the young of this animal called: Tiger,Cub whelp,General,Do ahashya da is Navaho for what,I am Stupid,Geography,Where in Britain is Ronaldsway Airport? ,The Isle Of Man  -General,What sci-fi tv show of the 60's became a Filmation cartoon in the 70's?,Star Trek,General,A steep rugged rock,Crag,Entertainment,Singing without instrumental back up is called what?,Capella -People & Places,Who Was The Joan Collins Fan Club? ,Julian Clarey ,General,Dionysus was the greek god of ______,Wine,General,What Is The Name Of This Mr Man Character,Mr Spendy -General,In what sport might you see a stem-christie,Skiing,Music,Who Had A Hit With The Song “Vindaloo” in 1998?,Fat Les,General,What is the name of the Kellogg's cereal prefixed with the word 'healthwise',Bran flakes -General,Who was the youngest ever American President?,Theodore Roosevelt ,General,"In German Romanesque, a monumental entrance to a church consisting of towers, with a chapel above.",Westwork,General,Who was Prime Minister of Japan during World War 2,Hideki tojo -Science & Nature,A great wave resulting from an earthquakes is called a (an) ________.,Tsunami,General,What is pompoir,Vaginal muscle control,Music,From which country does black box originate from?,Italy -Science & Nature, Sir Walter Raleigh's black greyhound was named __________,Hamlet,General,"In The World Of Entertainment How Is ""Sylvester Sneakley"" More Commonly Known",The Hooded Claw,General,What Apple Computer cofounder sponsored the U.S. Festival,Steve wozniak -General,Azote is the old name for what element,Nitrogen,General,Who played Maria in the film West Side Story,Natalie wood,General,What is the Capital of: Morocco,Rabat -General,"Who said in 1951 - ""I married beneath me - All women do""",Lady Nancy Astor,Music,"Which Us Female Vocalist Reached The Top Ten By Saying ""Yes My Darling Daughter""",Eydie Gorme,General,What was the name of Garfield's teddy bear?,Pookie -Food & Drink,In which countries would you find the following city 'Cayenne'? ,French Guyana ,Science & Nature,Who Ran Naked Through The Street Shouting Eureka ,Archimedes ,General,Who is on the most popular us commemorative stamp,Elvis -Science & Nature," You could milk about __________ cows per hour by hand, but with modern machinery, you can milk up to 100 cows per hour.",6,General,Handel's Harmonious Blacksmith was written for what instrument,Harpsichord,General,Fonzarelli the swiss family _______,Robinson -General,What U.S. state includes the telephone area code 816,Missouri, History & Holidays,In The Charles Dickens Novel 'A Chrismas Carol' Who Was Scrooges Dead Business Partner ,Jacob Marley ,Art & Literature,"Ground chalk or plaster mixed with glue, used as a base coat for tempera and oil painting. ",Gesso -General,What is the best selling single artist ever,Garth brooks,Music,"Which Artist Along With His All Stars, Had A Hit With ""Im A Road Runner""",Junior Walker,General,"According to the ceremonial customs of orthodox Judaism, it is officially sundown when you cannot tell the difference between what",A black thread & a red one -General,What was the name of Ross' pet monkey on 'Friends',Marcell,Music,"Who Wrote The American Counterpart Single ""We Are The World""",Michael Jackson/Lionel Richie,General,What is a group of this animal called: Toad,Knot -General,Which Polish-Ukranian region shares its name with a Spanish region?,Galicia,General,"Who starred in the film ""Fried Green Tomatoes at the Whistlestop Cafe'",Jessica tandy,General,Anise flavored Greek liqueur,Ouzo -General,Band of decoration especially at the top of a wall,Frieze,General,Who is buried in a chapel near lake Stroganoff in Romania,Count Dracula,General,What is an eight sided polygon called,Octagon -General,In Michigan married couples can be imprisoned unless they what,Live Together,General,What is the opposite of Plenum,Vacuum,General,Which Singer At Birth Had The Forenames Katherine Dawn?,K.D Lang -General,In which Olympics did Mark Spitz achieve a new Olympic record by winning seven gold medals,1972, History & Holidays,"""What Did My True Love Give To Me On The """"Eleventh"""" Day Of Christmas"" ",11 Pipers Piping ,General,What would you do with a celesta,Play it – percussion instrument -General,An America reindeer,Caribou,General,The gaseous material surrounding the earth and other planets is called the ______,Atmosphere,General,Porn star Candida Royale was named after what,A vaginal yeast infection -General,What hotel hosted the first Oscar ceremony,Roosevelt Hotel,General,What actor played harry callahan,Clint eastwood,General,Scott Joplin's music used for the film The Sting name the tune,The Entertainer -General,“ Fornebu ” International Airport Is In Which European Country,Norway,General,Whats the name of the large wooded area in which Robin Hood was supposed to have lived,Sherwood forest,Art & Literature,"For Which Novel Was Boris Pasternak Awarded The 1958 Nobel Prize , An Award He Declined ",Dr Zhivago  -General,Edgar Cuthwellis was option but the author chose another what,Lewis Carrol,Science & Nature,The unit of electrical resistance is the _____,Ohm,General,What is the flower that stands for: safety,Traveller's joy -General,What are the English and German names for Easter or Ostern derived from ,The ancient name for the month of April ,General,What is the fear of outer space known as,Spacephobia, History & Holidays,Which Song By James Blunt Released In March 2006 Failed To Enter The UK Top 20 Despite Being Top Of The Radio 1 Playlist For That Month ,Wisemen  -Entertainment,Who played Dr. Kildare?,Richard Chamberlain,General,In Virginia its illegal for a man to do what to his wife,Pat her Derrieres,Science & Nature,To what disability can keratitis lead?,Blindness -General,Which British bird is the largest of the European grouse,Capercaillie,General,Mrs Hugh McCorquodale was famous as what literary figure,Barbara Cartland,General,What type of animal is an auklet,Bird -People & Places,Which Bad Boy Is Arsenals Top Scorer Ever ,Ian Wright ,General,"Saying: out of sight, out of___.",Mind,General,KLM is the national airline of which country,Holland -Religion & Mythology,What is the name of the field where Christ was crucified?,Calvary,General,Flutes made from what material do not expand with humidity so their owners are spared the nuisance of tuning them,Glass,General,What do americans traditionally eat on thanksgiving day,Turkey -General,Which Infamous Figure Was Executed Whilst In Prison In Indiana On The 11 th June 2001?,Timothy McVee (The Oklahoma Bomber),Food & Drink, From what animal do we get venison,Deer,Science & Nature,What Road Safety Device Did Percy Shaw Invent ,Cats Eyes  - History & Holidays,Santa Claus reportedly lives at the _____ Pole.,North,General,"What were Mouth and Chunk's real names in ""The Goonies""?",Clark and Lawrence,General,Until 1971 what was the name of Zaire,Congo -General,The Panama canal connects the pacific Ocean and which other body of water,Caribbean sea,General,Freetown is the capital of ______,Sierra leone,General,Poisonous plant with small white flowers,Hemlock -General,"Israel Tongue and who else devised the ""Popish Plot""",Titus oates,General,"In 1966, which woman became the first Briton to fly solo around the world",Sheila scott,General,"Colobus, vervet and mangabey are types of which animal",Monkey -People & Places,Which Presenter Of Tomorrows World Married Keith Chegwin ,Maggie Philpin ,Science & Nature,The spiral galaxy nearest ours is the _________ galaxy.,Andromeda,General,"Which artist, remembered more for his portraits than his landscapes, was born in Sudbury, Suffolk, in 1717",Gainsborough -General,"If someone gets out of a difficult situation, he is said to have saved his what",Bacon,General,Anger towards other road users experienced by a person when driving,Road rage,General,Open embroidery on usually white cotton or linen,Broderie anglaise -General,Which African country has the letters EAK as its international vehicle registration,Kenya,Science & Nature,"Of what does the typical man have 13,000?",Whiskers,Geography,What river has the largest drainage basin,Amazon - History & Holidays,In which year did the UK hand over Hong Kong sovereignty to China? ,1997 (June 30th) ,General,Logophobia is a fear of ______,Words,General,What are Tortoiseshell and Speckled Wood types of?,Butterfly -General,In what Australian state would you find Woomera,South australia,Science & Nature,What is a monotreme?,An egg laying mammal,General,Hera in Greece Juno in Rome Goddesses of what,Childbirth -General,In the movie what is Shafts first name,John,General,What actor died during the filming of Gladiator,Oliver Reed,General,Tonsurphobia is a fear of ______,Haircuts -General,Who was the first president to be televised,F D Roosevelt Worlds Fair 1939,General,When did the British Empire become the commonwealth,1931,General,What's the third largest lake in the world,Lake victoria -Science & Nature, __________ have three eyelids to protect themselves from blowing sand.,Camels, History & Holidays,How old was Alexander the Great when he died ?,32,General,What Castro trademark did the CIA try to lace with poison,His cigar cigar -General,Marie Curie won Nobel prizes in which two categories,Physics and chemistry,General,What star had a job as aircraft factory inspector,Marilyn Munroe,General,Who composed the ballets Sleeping Beauty and The Nutcracker,Tchaikovsky -General,"What does the Italian word ""Paparazzi"" mean",Little fleas,General,Chuck Berry Art Garfunkle Robert Redford had what job,Carpenters,General,What Is Daltonism,Colour Blindness -General,"American physicist & government adviser, who directed the development of the first atomic bombs",J robert oppenheimer,General,What was the beatles' second film,Help,General,Dr Teeth was the leader of the band Electric Mayhem - where,The Muppet Show -General,What colour is cerulean,Blue,Food & Drink,"Is Amontillado a sweet, medium or medium-dry sherry? ",Medium Dry ,General,Lake Tittikaka is in Peru and what other country,Bolivia -General,Who is Harry Potters main enemy,Lord Voldemort,Art & Literature,What Creatures Does Captain Ahab Become Obsessed With ,"Moby Dick, Great White Whale ",General,In West Virginia Nicholas County its illegal to do what in pulpit,Tell Jokes -Music,Who is Don Van Vliet better known as?,Captain Beefheart, Geography,On which river is the Aswan High Dam?,Nile,Food & Drink,What Type Of Sauce Traditionally Goes With Roast Beef ,Horseradish  -General,What number is used to represent satan,666,General,What metal is used in galvanizing,Zinc,General,What parts of a car have drums & shoes,Brakes -Music,What animal is on the cover of the Beach Boy's album Pet Sounds?,Goat,General,Brassiere comes from an old French word meaning what,Arm Protector,General,What nationality is Thor Heyerdahl,Norwegian -General,Liver disease caused by alcoholism,Cirrhosis,General,In which sport would they use the term crotch ball,Handball - ball hitting floor ceiling,General,In which film did jay leno play 'mookie',American hot wax -General,What is the flower that stands for: confession of love,Moss rosebud,General,What is the clotting protein in blood called,Fibrin,General,Who declared in 1962 that having a hole drilled through the cranium enabled people to reach a higher state of consciousness,Dr bart hughes -Music,Name The Legendary British Producer Who First Shot His Landlady Before Shooting Himself,Joe Meek,General,What trophy is awarded to the winner of the NHL play-offs,Stanley Cup,General,What is Pancetta,Bacon -Geography,"The U.S. coastline, comprised of the Atlantic, __________, and Gulf waters, involves 25 of the 48 mainland states.",Pacific, Geography,What is the capital of Poland ?,Warsaw,General,What was invented in Rome 63 bc by Marcus Tiro,Shorthand and the & sign -Music,Which Former Hit Single Did Status Quo Alter The Title Of And Re Release In 1988,They Changed Rockin To Running,Science & Nature,What Did James Naapier Develop ,Logarithms ,General,The world's youngest parents were ___ & 9 years old.,Eight -General,Who was the original voice of Darth Vader (hint: NOT James Earl Jones),David Prowse,General,Who claimed to be the first person to swim across the atlantic ocean,Guy, History & Holidays,"*Who loves ya, baby?'' was the catchphrase of which `70s TV sleuth?* ",Kojak  -General,Which great battle took place from July 1st to November 18th 1916?,The Battle of the Somme,Music,What Was The Title Of The (Not Very Apt) Album Released By Michael Jackson In 2001,Invincible,General,What river forms at the confluence of the Allegheny & the Monongahela,Ohio river ohio -General,Which year of the Chinese calander began in the year 2000,Dragon,General,What is the name of the office used by the president in the Whitehouse?,Oval office,General,What was the most popular Xmas gift in 1913,Erector sets – Meccano - History & Holidays,Strawberries are the undoing of an unhinged man in which 50s film ? ,The Caine Mutiny ,Science & Nature, A fox litter is typically 10 to 15 __________,Pups,General,"He belted out hits for Bad Company, The Firm and then went out on his own",Paul Rodgers - History & Holidays,What Are The Names Of The 3 Wise Men Who Brought Gifts To The Baby Jesus ,"Gaspar, Melchior, Balthasar ",General,This sport allows substitutions without a stoppage in play,Hockey, History & Holidays,On Tv How Is Eddie Fitzgerald More Commonly Known ,Cracker  -General,Bad before a German town name means what,It’s a Spa Town,Geography,How many stars are on the flag of New Zealand,Four,Sports & Leisure,What is the misshapen ear that boxers often have called?,Cauliflower ear -General,What was the name of the monster that attacked Luke in the trash compactor in Star Wars?,A dianogaIn,General,In which novel by George Eliot would you find the characters 'Maggie' and 'Tom Tulliver',The mill on the floss, Geography,What is the basic unit of currency for Chile ?,Peso -General,In the Little Mermaid fairy tale what happens to her,She Dies,General,The tenth wedding anniversary is commemorated with what,Tin,General,What's involved in 20% of car accidents in Sweden,A moose -Food & Drink,Which Celebrity Chef Owns A Chain Of Restaurants Called 'Fifteen'' ,Jamie Oliver ,General,Through the streets of what town did lady godiva ride naked,Coventry,General,Name Homer Simpsons bowling team,Pin Pals -General,What does a cat use to determine if a space is too small to squeeze through,Whiskers,General,Apart from drinks what used to be stored in pub cellars,Corpses - cold place,General,Which classic film was called production 9401 during filming,Psycho -General,What colour is Octopus blood,Blue,General,"What is the missing word in english with the letter combination 'uu' muumuu, duumvirate, residuum, vacuum, duumvir",Continuum,General,What was the name of the family featured in `Father Knows Best',Andrews -General,What does a bryologist study,Mosses,General,Barak O Bama Recently Became The First Black USA President But In Which US State Was He Born,Hawaii,General,What Australian slang for a simpleton is also a cockatoo,Galah -General,The transcendental number 'e' was named after what mathematician,Euler,General,What is the connection between Good Times and Different Strokes?,Janet Jackson,Food & Drink,Who invented fortune cookies?,Charles Jung -Entertainment,What entertainer is allowing one of his songs to be used in a government campaign to beat drunk driving?,Michael Jackson,General,In computing what does EPOS stand for,Electronic Point of Sale,Music,Which New Romantic Star Was Once Voted The Most Beautiful Man In The World,David Sylvian (Japan) -General,What was the name of the sad faced clown portrayed by Emmett Kelly,Weary,General,Who was the last king of Troy killed by Achilles son Pyrrhus,Priam,General,Rio de janeiro is the capital of ______,Argentina -General,Rank of a knight between bachelor and baron,Banneret,General,A Grice is a young what,Wild Boar,Entertainment,In which film did Paul Newman and Robert Redford hold hands and jump into a river?,Butch Cassidy and the Sundance Kid -General,Xenophobia is the fear of ______,Strangers,General,Kymophobia is the fear of,Waves,General,Which creatures lived in Arnold Bros (est. 1905),Nomes -General,The De Beaumont centre in London specialises in what sport,Fencing,General,What does Trivia literally mean,Three Roads,General,T or F The Peanut is a type of nut?,Flase (It's a Legume) -Music,"Which Female Trio Released The Multi Platinum ""Wide Open Spaces"" In 1998",Dixie Chicks,General,"Fill in the ""Bear"" Bryant remark: ""A tie is like kissing your """,Sister,Science & Nature,On a standard keyboard which is the largest key? ,The Space Bar  -General,Which Author Who Is Most Remembered for Writing Another Series Of Books. Also Wrote the Childrens Story Chitty Chitty Bang Bang,Ian Flemming,General,Who did the voice for the cartoon character betty boop,Mae questel,General,Wine brandy sherry almonds raisins orange glogg what country,Sweden a Christmas punch drink -Music,Which Musical Was The First To Feature A Mixed Black And White Cast On Stage,Show Boat,General,In the 1950s which film star was paid $5000 a week,Lassie,General,Barbie's measurements if she were life size:,39-23-33 -General,Which animal is known as 'zorro' in Spanish and 'volpe' in Italian,Fox,General,The women's world cup in tennis is played for what trophy,The Fed cup,General,In beer measurement 72 pints make a what,Firkin -General,What famous stone structure is located near Salisbury ?,Stonehenge,General,Where is Mount Rushmore,South dakota,Religion & Mythology,How long did it take God to create the Universe?,Six days - he rested on the seventh -General,How many keys are there on a grand piano?,Eighty eight,General,What is a troika a type of,Horse drawn vehicle,General,What united states president was in office during the civil war,Forty three -General,English charts: Clive Dunn had a hit called Grandad in which year,1971,Sports & Leisure,In Which Sport Might You See A Double Axel ,Ice Skating ,Science & Nature,These glands are located on top of the kidneys.,Adrenal -General,Who was the greek god of fire,Hephaestus,General,What New Zealand native invented bungee jumping,AJ Hackett,General,What nationality is footballer Lucas Radebe,South african -General,What was the first man made object to leave the solar system,Pioneer 10, Geography,What is the basic unit of currency for South Korea ?,Won,Art & Literature,"Faulkner penned this book with 4 distinctive sections: the Benjy section, Quentin's section, Jason and then Dilsey's sections.",The Sound and the Fury -General,What computer language was named after ada lovelace,Ada,General,What was the codename of the aborted German invasion of England in 1940,Operation sealion,General,Name Ernest Hemmingway's book dealing with bullfighting,Fiesta -General,"Which major land offensive began on the 1st July, 1916",Battle of the somme,General, The earth's atmosphere and the space beyond is known as _______.,Aerospace,People & Places,Who Was The Archbishop Of Canterbury In 1995 ,George Carey  -General,"What fashion designer was responsible for ""The New Look""",Christian Dior,General,George Bernard Shaw's Play “ Pygmalion ” Was Adapted To Become Which Musical?,My Fair Lady,General,What constellation is represented by a fish,Pisces - History & Holidays,What did President J. Buchanan not have,A wife,Science & Nature,What is the meaning of the name of the constellation Auriga ?,Charioteer,Entertainment,Secret Identities: Cliff Steele,Robotman -General,"In 1361 bc, who became the king of egypt at the age of nine",Tutankhamen,General,What was the first item made from aluminium,Rattle for Napoleon III,General,Where would you find an intrados,Inside curve of arch -General,Cookie what gas that animals exhale do plants utilize,Carbon dioxide,Music,Name The Two Singers Who Duetted On The Song “I Knew You Were Waiting For Me” In 1987 PFE,Aretha Franklin & George Michael,Science & Nature,What Part Of A Car Engine Mixes Fuel With Air ,The Carburettor  -General,A Treskilling Yellow sold for over $2 million in 1996 what is it,A Stamp,General,How Is The Character Of “ Paul Metcalfe ” Better Known?,Captain Scarlett,General,What were the Ghostbusters' names?,"Peter Venkman,Egon Spengler,Ray Stantz ,Winston Zedmore" -Entertainment,"An Andy Panda cartoon gave birth to a famous, cantankerous bird. Name him.",Woody woodpecker, History & Holidays,In the Christmas carol 'Away in a Manger' where was the little Lord Jesus asleep on ,The Hay ,General,Benjamin who was the first Lord Mayor of Dublin,Guinness -Music,"Which UK Band Had A Hit With ""Sonic Boom Boy""",Westworld,General,What colour is the cross on the Swiss national flag,White,Music,Which Beatle was barefoot on the cover of Abbey Road?,Paul -General,Oedipus was named after what - literal translation,Swollen feet, History & Holidays,Who sang the theme tune to the James Bond. Movie 'The Spy Who Loved Me ,Carly Simon ,General,In which country is Kamsai Airport?,Japan -General,Escaping convicts used to drop what to throw dogs off the scent,Red Herrings,Food & Drink,Which product was renamed `Arthur's' after the star of its advertising campaign? ,Kattomeat , Language,"Subject, verb and object are parts of a _________.",Sentence - Geography,Havana is the capital of which country?,Cuba,Entertainment,Who is stationed at Camp Swampy in the comic strips,Beetle bailey,General,Which language calls itself Vlaams,Flemish -General,"Who wrote ""When angry, count a hundred. When very angry, swear""",Mark twain,General,"Who Walked Out On The 1985 Blockbuster "" Beverly Hills Cop"" After His Demand For More Action Scenes Was Rejected",Sylvestor Stallone,General,"What is the missing word in english with the letter combination 'uu' muumuu, continuum, duumvirate, residuum, duumvir",Vacuum -General,What river does the Grand Coulee Dam dam,Columbia,General,Bortsch is a traditional dish from which country,Russia,Art & Literature,Who Created The Character Adrian Mole ,Sue Towsend  -Science & Nature,"In space talk, FTL is an acronomy for ______ ____ _____.",Faster than light,General,Most salad dressings derive the majority of their calories from____,Fat,General,What is a group of seals,Herd -Art & Literature,"This book, Oscar Wilde's only novel, was used as evidence in his sodomy trial?",The Picture of Dorian Gray,General,What is the English name for the constellation Hydra,Water Snake,General,What I did for Love came from which Broadway musical show,Chorus Line -General,What was the last chinese dynasty,Manchu,General,Who was the chief protagonist of He-Man in the cartoon series?,Lord Skeletor, Language,What ONE word fits ____hood; ____hole; ____date.,Man -General,How many organizational levels are there in the human body,Four,General,What oil does the flax plant produce,Linseed oil,General,Tres Hombres' was the 1973 release by which El Paso Texas band known for the beards,ZZ Top -General,What is the basis of the Indian dish 'Riata',Yoghurt,General,Which gemstone has the highest value per carat,Ruby,General,When something is completely different it is said to be one of these of a different color,Pale -General,Who owned a chimp called Chee-Chee,Dr Dolittle,Music,"Which Band Had Hits With ""Promised You A Miracle"" & ""Alive And Kicking""",Simple Minds,General,Which European city's name means home of the monks,Munich or Munchen -General,Royal Society Prevention Accidents 1991 7500 injured by what,Shopping Trolleys,General,Males outnumber females by 5 to 1 in what addiction,Alcoholism,General,Which company controls more than 80% of the world's rough diamond supply?,De Beers -General,Which is the most widely used expression in any language,Ok,Sports & Leisure,In Which Sport With You Find A Piece Of Wooden Apparatus Exactly 17ft Long ,(Caber Toss) ,General,The golden state warriors basketball team retired 42 which used to belong to _____,Nate thurmond -Science & Nature,Americans Call It A Caribou What Is It Called In Europe ,Reindeer ,General,What is a group kangaroos,Troop,General,"What news magazine boldly claimed: ""there's no substitute""",Time magazine -Science & Nature,"The Echidna, Or Spiny Anteater , & The Duck Billed Platypus Shares A Characteristic Which Does Not Apply To Any Other Mammal What Is It? ",They Lay Eggs ,General,Who did Leonardo DiCaprio play in the movie Titanic?,Jack Dawson, History & Holidays,What Is New Years Eve Caled It Scotland ,Hogmany  -Entertainment,Film Title: The Last Days of _________. (a city),Pompeii,General,What Is The Worlds Most Common First Name,Muhammad,General,What is a group of bobolinks,Chain -General,Who was the democratically elected President of Chile killed during a military coup in 1973,Salvador allende,General,Who was the Roman Goddess of peace,Pax,General,What film was playing at the drive-in in the film 'twister',The shining -Food & Drink,Which fruit has the most calories per gram?,Avocado,Music,"Who Sang ""My Jamaican Guy",Grace Jones,General,"Who said ""ability is useless without opportunity""",Napoleon -Sports & Leisure,What Does TT Stand For In Connection With The Isle Of Man Motorcycle Race? ,Tourist Trophy ,General,What is the name of the first test tube baby,Louise brown,General,One ragweed plant can release approximately how many grains of pollen,One -Music,Which Song Was A Hit For Both Westlife And Abba?,I Have A Dream,General,Chaplin ate a boot in the Gold Rush - what was it made of,Liquorice,Music,What Is The Proper Name For An English Horn,Cor Anglais -General,What did dr seuss' grinch steal,Christmas,General,In ancient Rome what was the triclinium,Dining Room, History & Holidays,Which Country Owns Christmas Island ,Australia  -General,What is the name of the gold-mining town in the musical Paint Your Wagon,No name city,General,What sport was standardized under the marquise of queensberry rules,Boxing,Sports & Leisure,Which Nation Did France Beat 3-0 In The Final Of The Football World Cup In 1998 ,Brazil  -General,Which beer was promoted with the slogan 'The Beer that men drink'?,Double Diamond,Geography,What Value Is A Storm On The Beaufort Scale ,Force 11 ,General,"In 1963, bobby darin released ""you're the reason _____""",I'm living -General,In 1890 the first electric what opened in London,Underground railway,General,What should a golfer shout as a warning,Fore,General,"What nation's 90 man army is the world's oldest, dating back to 1506",Vatican city's vatican citys vatican city -General,Iron statue of Vulcan looks down Red Mountain what US city,Birmingham Alabama,General,Who Was The Greek God Of Travellers And Thieves?,Hermes,General,Which disease is tested for using the 'Schick Test',Diphtheria - History & Holidays,What revelation did alexander butterfield make to the senate watergate committee ,The oval office bugging ,General,"In common: humor, mannered, suited, take",Ill,Geography,In which city is the wailing wall ,Jerusalem  -General,Which chemical element takes its name from a German word for goblin,Cobalt,General,"In Greek mythology, who was abducted by zeus to crete",Europa,Music,In Which Year did John Lennon Tell Us Happy Xmas (War Is Over),1972 -General,Singer paula ______,Abdul,General,What is the most mentioned name in the Bible,David - Jesus is second,General,Which country was the first to elect a woman as head of state,Iceland -General,Who played Annie Walker in Coronation Street,Doris speed,Food & Drink,What is the animal product used in the making of the Italian dessert 'cassata'?,Egg white,General,What are the seeds of the herb cilantro called used as a spice,Coriander -Geography,"Where would you find the Queen Alexandra, Queen Elizabeth and Queen Maud mountain ranges? ",Antarctica ,General,Who Sang The Theme Tune To The James Bond Movie “Moonraker”,Shirley Bassey,Science & Nature,Who invented the centigrade scale?,Anders Celsius -General,Benjamin Franklin suggested that __________ should be the U.S. national bird,Turkey,General,"Facts, Briefs, Destiny and Chance were early names for what",Time Magazine,General,What is the most common plastic surgery performed USA men,Breast Reduction -Sports & Leisure,Which sporting hero from the 70's died in October 1995 at the age of 30? ,Red Rum ,General,In the USA it’s the Oscars what is it in France,Caesars,General,"Who, in 1947, was the first man to break the sound barrier",Chuck yeager -Geography,"What is the largest city in Australia, in terms of population",Sydney,General,"This is a type of small, fried, Indian bread",Poori,General,What is the fear of overworking or of pain known as,Ponophobia -General,What are the roads of guam paved with,Coral,General,What colour is pure molten gold,Green,General,What comic strip duck is a billionare,Scrooge mcduck -General,What pastry is uded to make eclairs,Choux,General,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,Science & Nature,Which meteor shower occurs on the 4th November ?,Taurids -Music,Whose Breakthrough Single Came With Messages?,Orchestral Manoeuvres In The Dark,General,Where are there over 58 million dogs,U.S.A.,General,Who wrote The Shining,Stephen king -Sports & Leisure,Which European club has won the most european cups in the 90s?,AC Milan,Entertainment,Who is Sally Brown's sweet baboo,Linus van pelt,General,What was the first film made in cinemascope,The robe -General,Where does the wine Mateus come from,Portugal,General,An instrument on a car to measure the distance travelled is called a(n) ________.,Odometer,General,Barrel size - what beer barrel contains 108 gallons,Butt -Sports & Leisure,What is the emblem on the All Black rugby shirt? ,Silver Fern ,General,What is the highest mountain in South America,Aconcagua,Food & Drink,How is a drink served when it is described as Frappe? ,With finely crushed ice  -General,What colour are the Amazon river dolphins,Pink,General,The word Sofa comes from the Arabic meaning what,Bench,Sports & Leisure,Name One Of The 3 Years In Which The Olympics Were Cancelled ,"1916, 1940, 1944 " -General,"Who described TV as ""Chewing gum for the masses""",Architect Frank Lloyd Wright,Geography,At Whaat Height Might You Find Cumulonimbus Cloud ,"20,000 - 30,000 Feet ",General,Electrical circuit made by depositing conductive material on the surface of an insulating base,Printed circuit board -General,"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,Music,Which Entertainer Was Born Pricilla White,Cilla Black,Science & Nature,What Is The SI Unit Of Force ,The Newton  -General,The name of which Indian city means Village of Boiled Beans,Bangalore,General,Which singer who died in the 70s was born Ellen Naomi Cohen,Mama cass,Music,Who Had A Dose Of Bad Love In 1990,Eric Clapton - Language,What ONE word fits ____stream; ____hill; _____pour.,Down,General,"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,General,Which company invented the transistor radio in 1952,Sony -General,What is switzerland's official neutral name,Helvetic confederation,People & Places,Who Was Known As The Maid Of Orleans ,Joan Of Arc ,Science & Nature,What does the pancreas produce?,Insulin -General,Which planet is orbited by the moon Charon,Pluto,Science & Nature,Which Animal Is The Symbol Of The World Wide Fund For Nature ,Giant Panda ,General,Name the porceilan chair you sit on at least once a day.,Toilet -General,In Newark its illegal to sell what after 6pm unless Drs note shown,Ice Cream,General,Strong shoe used for walking,Brogue,Music,"In Which Musical Did Clint Eastwood Perform ""I Talk To The Trees""",Paint Your Wagon -General,A well in which water rises through natural pressure,Artesian,General,In what Australian state would you find Kiama,New south wales nsw,General,Who was the founder of Live Aid?,Bob Geldof -General,Who Owns The Cray Super Computer?,The Met Office,General,What is the flower that stands for: curiosity,Sycamore,General,What is the japanese currency,Yen -General,What is the name of the capital of Alberta (Canada),Edmonton,General,An Ounce whisky glass and a small keg what same name,Pony,General,What is the name for the part of the bone that fits into a socket to form hip and shoulder joints,Ball -General,Who coined the term security blanket,Charles Schulz,General,"In 'romeo and juliet', who says 'what must be shall be'",Juliet, Geography,Guayaquil is the largest city in what country?,Ecuador -General,Which European city is served by Galileo Galilei Airport,Pisa,General,In Urbana Illinois its illegal for who/what to enter the city limits,A Monster,General,"Whose autobiography is called ""Take it like a Man""",Boy George - or George O'Doud -General,What is the largest lizard on earth at ten feet long & up to 250 pounds,Komodo dragon,General,Who wrote the book on which Donizetti based his opera Lucia di Lammermoor,Sir walter scott,General,"According to Arthurian legend, what did King Arthur receive as a dowry, on his marriage to Guinevire",The round table -General,Homichloriphobia is the fear of what,Fog,Music,"Name The Band From The Following Members  Robert Plant, Jimmy Page, John Paul Jones, John Bonham",Led Zeppelin,General,The film Apocalypse Now was based on whose novel,Joseph conrad -Music,Name The Production Credit That Jagger & Richards Adopted From 1974 Onwards,The Glimmer Twins,General,The first power steering was in this car.,Mercedes_benz,General,Pierce Brosnens contract stops him doing what in any other film,Wearing a Tuxedo -General,In the Saint series of books what is Inspector Teal's full name,Claude Eustace Teal,General,Name the hero Len Deightons Ipcress File and Funeral in Berlin,Not named in books Harry Palmer in films,General,"In the British army, which rank is immediately above colonel",Brigadier -Food & Drink,Which Nation Has The Sweetest Tooth ,Holland ,General,What is the Capital of: Christmas Island,The settlement,General,The Stanley cup was not awarded in 1919 what stopped it,Influenza epidemic -General,What does cbs stand for,Columbia broadcasting system,General,In Superman what was the original name of The Daily Planet,The Daily Star,General,"In the 'nightmare on elm street' films, who played freddy krueger",Robert -Geography,Which German federal state surrounds the city of Berlin? ,Bradenburg ,General,Where Will You Find The Pyramids Of Malpighi?,In Your Kidneys,General,What is the capital of the Spanish province Cantabria,Santander -Science & Nature,What Does An Apiarist Keep? ,Bees ,Music,With Which Girl Group Did Louise Nurding First Come To Fame?,Eternal,General,UK band involved in a US court case - Subliminal messages 80s,Judas Priest -General,Not harmful to the environment,Eco-friendly,General,What is an olive in spanish,Aceituna,Music,Alice Cooper Has The Unusual Hobby Of Collecting What,Watches -General,The Aztecs Ayecotl is a forerunner of what current food,Haricot Beans, History & Holidays,What city was founded in 753 BC ?,Rome,General,What was used at Wimbledon for the first time in 1986,Yellow tennis balls -General,The stone what dietary problem were 65 percent of brazilians suffering in 1985,Malnutrition,General,"Besides gin, what other alcoholic drink is used to make a White Lady cocktail",Cointreau,General,What is the flower that stands for: purity and sweetness,White lily -General,Sigmund Freud had a phobia - what was he afraid of,Ferns,General,Which Book First Published In 1931 Was Sold Out Across The UK In March 1996,The Highway Code,General,"The Pentagon uses, on average, about 666 rolls of ___________ every day",Toilet paper -General,Third letter of the Greek alphabet,Gamma,General,Who was the director of the 2014 film 'Turner'?,Mike Leigh, History & Holidays,"Name the remake of a 1960's film with the aid of the following actors. The first actor was in the 60's original, the second actor played the same role in the remake Robert Mitchum and Robert de Niro ",Cape Fear  -General,Which British Queen was excommunicated by the Pope,Elizabeth i,Sports & Leisure,Who Might Use A Penholder Grip ,A Table Tennis Player ,Entertainment,"Who played Garth in ""Wayne's World""?",Dana Carvey -General,Which country was the setting for The Flame Trees of Thika,Kenya,General,What body of water is fed from the south by the Wadi Araba & from the north by the river Jordan,The dead sea dead sea,Music,Who Did Paul McCartney Perform a Duet With On The Song “Say Say Say”,Michael Jackson - History & Holidays,Name the toy that consisted of color pencils and plastic which you would put in the oven to create. ,Shrinky Dinks ,Sports & Leisure,"In A Game Of Snooker If You Achieved A Perfect 147 Break, How Many Times Would You Pot The Black Ball In Total ",16 ,General,By what process is rum created,Fermenting molasses - Geography,What state is the Golden State?,California,General,Who played captain james t kirk in star trek,William shatner,General,What was Vivian Leigh’s character won Oscar in her 30s,Blanche Dubois -General,Who Was The Childhood Playmate Of Little Jackie Papers,Puff The Magic Dragon,General,Roman soldiers were given slaves - what were they called,Addicts addicted means enslaved, History & Holidays,Which character of the 'Bloom County' comic strip ran for president even though he was dead at the time? ,Bill the Cat  -General,Which element has the lowest boiling point,Helium,General,Mixed diced vegetables in mayonnaise is what sort of salad,Russian,General,The Sound and the Fury took its title from what other work,Macbeth -General,"In the 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,General,A menial working class in Old Japan and Greek letter what word,Eta,Food & Drink,Which fruit is a cross between a peach and a plum? ,Nectarine  -General,Fill in the blank: take me to your ___,Leader,General,Which ancient ship was brought up from the sea in 1982,The mary rose,General,What event led to Hirohito ascending to the Japanse throne in 1926,His fathers death -General,"Chinese call it little mouse, Danes Swedes elephants trunk?",The @ sign,Entertainment,"What's the name of the Mummy in the film ""The Mummy""?",Imhotep, History & Holidays,The video for which eighties song features nothing but 5 cheerleaders?(Name the artist too) ,Mickey Toni Basil  -General,The phillips head screwdriver was invented where,Oregon,General,A ballet bow or curtsy in which one foot is pointed in front and the body leans forward.,Révérence,General,"What links elephanta, bad-i-sad-o-bistroz, oe, whuly, zonda",All winds -General,What is a moab,Type of hat,General,If silence is golden what is silver,Speech,General,What nationality is footballer Davor Suker,Croatian -Geography,Bridgeport is the largest city in which state,Connecticut,General,What winged hindu god of love carries a bow and arrow,Kama,General,What is the art of fighting with gloves on the hand,Boxing -Entertainment,Which 1960's group sang a song inspired by 'Alice In Wonderland'?,The Jefferson Airplane,General,What was howdy doody's sister's name,Heidi doody,General,What was the operative name of WWI spy Geertruida Zelle,Mata hari - Geography,Which Californian desert drops below sea level?,Death Valley,General,Which King was born at Bolingbroke Castle and was nicknamed 'Bolingbroke'?,Henry IV,General,What is the largest BBS in the world,CompuServe -General,In Dukes of Hazard boys drove General Lee name Daisies jeep,Dixie,General,Close fitting knee length shorts,Bermuda,General,In which London Square is the American Embassy situated,Grosvenor square -General,If You Suffered From Lockiophobia What Would You Be Afraid Of,Child Birth,General,In The World Of The Music How Is 'Pauline Matthews' More Commonly Known,Kiki Dee,General,Palaeontology is the study of what,Fossil remains -Religion & Mythology,Who is the greek equivalent of the roman god Neptune,Poseidon,Food & Drink,Which two cheeses are layered in a Huntsman Cheese? ,Double Gloucester And Stilton ,General,"In Simon & Simon,what unusual thing did Rick live in?",In a boat -General,"Who said ""I like Beethoven especially the poems""",Ringo Starr, History & Holidays,What was ITV's live pop music show called? ,Ready Steady Cook ,General,Kynophobia is the fear of,Rabies -General,"In 1981, who's gold lp was called ""bella donna""",Stevie nicks, Geography,Which element makes up 5% of the Earth's crust ?,Iron,Sports & Leisure,In which sport would you see a Boston Crab or a Full Nelson ,Wrestling  -Science & Nature,"In The Wizard Of Oz, What Was The Lion Looking For ",Courage ,General,Shingle was the codename for what WW II Allied landing,Anzio,General,Which popular singer of the 80's has the real name Christopher Davidson,Chris de burgh -General,What is the most ordered item in American restaurants,French Fries,General,What are the names of the two famous disney chipmunks?,Chip & dale,General,Who followed Grover Cleveland as U.S. President in 1897,William mckinley -Sports & Leisure,What is 11-12 Inches Long and Can't Weigh Less Than 50 Grams? ,A Relay Batton ,Religion & Mythology,Who is the Norse god of justice ?,Forseti,General,What was the first offical international boat race,Hundred guineas cup -General,What is the name of the lead singer for the Smiths?,Morrisey, History & Holidays,Good King Wenceslas was king of which country? ,Bohemia ,General,What is the flower that stands for: chivalry,Great yellow daffodil -General,What Was Duran Duran First Ever Top 40 Single,Planet Earth,General,Who was the kitten with a whip,Middlebury,General,Who wrote the opera the Snow Maiden,Rimsky-korsakov -Music,"Who Recorded A Version Of ""It's A Hard Days Night"" In The Style Of Laurence Olivier's Richard iii",Peter Sellers,Entertainment,Who starred in the film version of 'To Kill A Mockingbird'?,Gregory Peck,General,What occurs in September and December more than any other month,Letter E -General,Where could you see a likeness of Pharaoh Khafres head,On the Sphinx,Music,Who was the first Spice Girl to have a solo chart single?,Geri Halliwell,General,Where does Dilbert think of inventions,In the bathtub -General,"Whose autobiography was ""Can you tell what it is yet""",Rolf Harris,Science & Nature,Who Invented The ZX80 The First Widely Available Personal Computer ,Sir Clive Sinclair ,Entertainment,What was Elvis Presley's twin brother's name?,Garon -General,Name the French blue-veined cheese that is ripened in limestone caves,Roquefort,Sports & Leisure,In Which Game Do You Twist ,Pontoon/Blackjack ,General,Elvis Presley collected statues of what famous woman,Joan of Arc -General,In music what is a chromatic scale,A scale made up of semi-tones,General,Where in England did Lady Godiva bare all,Coventry,General,In what athletic event is it illegal to carry weights,Long Jump -General,What is the name of the Turkish aniseed liqueur trans lions milk,Raki,General,Enola Gay dropped the first A bomb - what plane dropped 2,Bocks Car,General,If you were eating fragrant meat in Hong Kong what is it,Dog -Food & Drink, Natural vanilla flavoring comes from this plant.,Orchid,Music,“Oh Carolina” and “Boombastic” were UK hits for which Jamaican reggae star?,Shaggy,General,What Canadian province was the site of England's first overseas possession,Newfoundland -General,An iron hook with a handle used for landing large fish.,Gaff,Science & Nature,What is the violet variety of quartz otherwise known as?,Amethyst, History & Holidays,What Did Lord Carnavon & Howard Carter vDiscover In 1922 ,The Tomb Of Tutankhamen  -General,In music what does the term 'ff' mean,Very loud,Music,After A Public Scandal Which British Male Vocalist Reach No 35 On June 25th 1998,George Michael,Science & Nature,Why Was The Seismosaurus So Named ,Because Of It's Size Hence Earth Shaking Lizard  -General,What is the venue for the coursing Waterloo Cup,Altcar,Music,Which Rickie Told Us The Chuck E's In Love,Rickie Lee Jones, History & Holidays,Which King Was Overthrown As A Result Of The French Revolution ,Louis XVI  -Music,The Lead Singer Of Ultravox Was Called Midge Because That's His Real Name Or Because He Was Short,Because He Was Short,General,Which American clarinettist bandleader was known as 'The King of Swing',Benny goodman,General,Who was the chief spokesman for the lost generation,F scott fitzgerald -General,"In Shakespeare's The Taming of the Shrew , what is the name of the shrew",Katharina,General,What is the fear of machines known as,Mechanophobia,Food & Drink,What drink did Paul Daniels and Debbie McGee advertise singing off-key around a piano ,Heineken Lager  -General,What product sold 330 in the US in its first year,VW Beetle,General,"Who wrote 'Born Free', 'Living Free' & 'Forever Free'",Joy adamson,General,Jesus was born in Bethlehem what does Bethlehem mean,House of Bread -General,There are only two three letter herbs Rue is one what's the other,Bay,General,"Which Explorers Last Words Were ""I Have Not Told Half Of What I Saw""",Marco Polo,General,After how many years marriage do you celebrate your emerald wedding anniversary,55 -General,Astronomer Fred Hoyle coined which phrase,The Big Bang,Science & Nature, 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,General,What is produced in a ginnery,Cotton -General,U.S. Captials - North Dakota,Bismarck,General,What did little bo-peep lose,Her sheep,General,What day of the week was JFK assassinated on,Friday -Music,"Pat Benatar Asked You To ""Hit Her With Your"" What",Best Shot,General,What nickname did Imelda Marcos share with a heavey metal rock group,Iron butterfly,Science & Nature,In 1937 American Chester Carlson Invented A Process Called Xerography What Do We Know It As Today ,Photocopying  -Sports & Leisure,In Olympic Weight Lifting What Are The 2 Methods Of Lifting ,"Clean & Jerk , The Snatch ",General,Which Shakespeare play has an English placename in its title,The merry wives of Windsor,Music,"Name The Italian Composer That Provided The Scores To The Spaghetti Westerns ""The Good The Bad And The Ugly""",Ennio Morricone -General,"Who composed the title music to TV's ""Inspector Morse""",Barrington pheloung,Science & Nature,What Was The Intel 4004 ,The First Micro Processor ,Music,"What Was Pato Banton's Follow Up to His No.1 ""Baby Come Back"" Reaching No.15",Bubbling Hot -General,What was astronaut edwin aldrin's nickname,Buzz,General,"Football Team, pittsburgh ______",Steelers,General,What trade name was given to the phenol-formaldehyde resin developed as the first synthetic plastic in 1909,Bakelite -General,All American umpires wear what,Black underwear,Religion & Mythology,"In Greek mythology, what animal is associated with Athena?",Owl,General,Who married queen victoria,Prince albert -Music,Who Did Shirlie Drink To Success With In 1987 With The Single Heartache,Pepsi,General,Who was the first male tennis player to win 100 tournaments,Jimmy Connors,Science & Nature,What Is The Longest Living Mammel? ,Man  -General,Which private eye hero did the author Raymond Chandler create,Philip marlowe,Music,"Who Had A 1980 Hit With ""Echo Beach""",Martha And The Muffins,General,Which country became the second to issue postage stamps in 1843,Brazil -Geography,What Is The Capital Of Portugal ,Lisbon , Geography,What country is directly north of Israel?,Lebanon,Food & Drink,What fruits are usually served 'belle helene' ,Pears  -General,Alan Ginsberg is credited with inventing what 60s phrase,Flower Power,General,Envoid was the first what in the USA,Birth control pill available,Geography,Who Were The First Europeans To Reach Mount Kilimanjaro In Tanzania ,"2 Germans , Johannes Rebmann & Ludwig Krapf " -Mathematics,Two angles that total 180 degrees are called _______.,Supplementary,General,Oswestry founded in 1407 is Britain's oldest what,Public School Eton 1440 next,Science & Nature,Which Is The Largest Owl Found In Britain ,Snowy Owl  -Science & Nature, Milk snakes lay about 13 eggs _ in piles of animal __________,Manure,Science & Nature,How many degrees does the earth rotate each hour,Fifteen,General,What is the main ingredient of an edible faggot,Liver -General,"What film starred drew barrymore, mary-louise parker, and matthew mcconaughney",Boys on the side,Entertainment,Who were Lucy and Ricky's next door neighbours and best friends?,Fred and Ethel,Science & Nature,"Work done, equals force multiplied by ________.",Distance -Entertainment,Who produced 'Sgt Pepper's Lonely Hearts Club Band'?,George Martin,General,Which Famous Rock N Roll Band Were Formerly Known As The High Numbers,The Who,General,What is measured in units called jnd,Sensitivity Just noticeable difference -Music,"Name The Composer Who Supplied The Music To The Hitchcock Movies Psycho, North By Northwest & Vertigo",Bernard Hermann,General,In what Australian state would you find Geradlton,Western australia,General,"Which substance, occurring naturally in fruit, causes jams and preserves to set",Pectin -Music,Which group's first top 10 hit was Right Now in 1999?,Atomic Kitten,General,Who was the first man to win the Formula One motor racing championship,Farina,General,As sly as a ______,Fox -General,What is a group of pheasant,Nest,General,Where would you find a pintle,Hinge - it’s the pin holding it, History & Holidays,Who was the second man to set foot on the moon?,"Edwin ""Buzz"" Aldrin" -General,Whose wife was turned into a pillar of salt,Lot's,General,What is the first day of Lent,Ash Wednesday,Geography,Which City Is The Capital Of Pakistan ,Islamabad  -Science & Nature,"As the speed of a body approaches the speed of light, its mass approaches ________",Infinity,General,How many percent of our brains do we use,Ten percent, History & Holidays,The massacre at Kent State occurred as students protested the bombing of Cambodia and the _____ war.,Vietnam -General,"John Wayne called what film ""The most un-American thing ever""",High Noon,Science & Nature,Do You Become Long Or Shortsighted With Age ,Longsighted ,General,German mapmaker Martin Waldseemuller named what,America – after Amerigo Vespucci -General,"The Late Edward Smith ""That Means He's Dead"" Edward Smith Has What Historical Claim To Fame",Captain Of The Titanic, History & Holidays,Who Released The 70's Album Entitled Legalize It ,Peter Tosh ,General,"I'll Be There For You, sung by the Rembrandts, is the theme song of which American television comedy series",Friends -Entertainment,Famous Phrases: Who knows The ______.,Shadow,General,What name is given to a blood vessel which takes blood away from the heart,Artery,Sports & Leisure,In Horse Racing Which Of the 5 Classics Is Run Over The Longest Distance ,The St Leger  - History & Holidays,Who invented the thermometer in 1593? ,Galileo ,Food & Drink, What do you get when you add fresh fruit to red wine,Sangria,General,Septicaemia is better known as _____,Blood poisoning -Food & Drink,French for 'flight in the wind' ,Vol-au-vent ,General,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,General,What nation has its capital in Zagreb,Croatia -Entertainment,What was the name of Speed Racer's car?,The Mach Five,General,What area of London did Jack the Ripper frequent,Whitechaple,General,Sixteen pounds is the maximum legal weight of what sporting device,Bowling - Geography,What is the basic unit of currency for Finland ?,Markka,General,In Holland it used to take four years to train as what,Hat maker – surgeon only 3 years,Art & Literature,Who Kills Nancy In Dickens Novel Oliver Twist ,Bill Sykes  -General,Who wrote the novel The Money Changers,Arthur Hailey,General,On oometer measures what,Birds Eggs,General,What and where is the longest group of coral reefs in the world,Great -General,What river is represented by the blue stripe on the Gambian flag,Gambia,General,Who is likely to have a faster pulse a man or a woman,A woman,General,1k equals how many bytes,1024 -General,Who was the 16th century physician who revolutionized anatomy by performing post-mortems,Andreas vesalius, History & Holidays,In 1950 which French designer created the so-called New Look ,Chriatian Dior ,General,When was the record breaking flood of the North Sea,1953 -General,Ernest Evans became famous under what name,Chubby Checker,General,"Salad of sliced raw cabbage,carrot and apple",Coleslaw,General,Who had a major hit with joni mitchell's 'both sides now',Judy collins -General,Itamae have what job in Japan,Chef - In Front of cutting board,General,Israel's equivalant to the dollar is ______,Shekel,Technology & Video Games,"In the Mystical Ninja series, who is Goemon's sidekick? ",Ebisumaru -General,Which bird is famous for its ability to walk long distances and for killing snakes by stamping on them with its huge feet?,Secretary Bird,General,What is Alberta's most popular annual events,Calgary stampede,General,"Hugo Quotations: ""The greatest lesson in life is to know that even fools are right sometimes.""",Sir Winston Churchill -General,Mr Doberman developed the breed protection at work - what job,Tax Collector,General,Phasmophobia is the fear of,Ghosts,Mathematics,"Arc, radius, and sector are parts of a(n) _________.",Circle -Geography,What is the capital of Seychelles,Victoria,General,"In ""Ferris Beuller's Day Off,"" who plays the burnout at the police station that Jeanie kisses?",Charlie Sheen,General,What is the language of hungary,Magyar - History & Holidays,Who wrote the book 'The Shining' on which the 1980 Stanley Kubrick film was based ,Stephen King ,General,On which Shakespeare play was the film Forbidden Planet loosely based,The tempest,General,What is a person in his eighties,Octogenarian -General,Who designed the WW 1 plane Camel and co designed Hurricane,Thomas Octave Murdoch Sopwith,Science & Nature,What falls out with phalacrosis?,Hair,General,Division of geologic time in the Cenozoic era following the tertiary period (geology),Quaternary period -General,What is bell metal an alloy of,Tin & copper, History & Holidays,What group landed in America in 1620?,The Pilgrims, Geography,Where is Mount Washington?,New Hampshire -General,"What did Paul Benier leave in his locked getaway car while he robbed a bank in Swansea, Massachusetts",His car keys car keys the car keys,General,What 80's spin off of a 70's tv show did Martin Lawrence play on?,What's Happening Now,General,The word mattress what taken from which language,Arabic -General,Where would you find Argine Esther Judith and Pallas,Pack of cards – Queens names,General,What is the worlds warmest sea,Dead sea,General,"In mythology, which King of Cyprus fell in love with a statue",Pygmalion -Art & Literature,In Which Country Was John Constable Born ,Suffolk ,General,"In an average lifetime, the average american charges $120,875 on _____?",Credit cards,Music,"Who Had A Hit With ""Get Outa My Dreams Get Into My Car""",Billy Ocean -Entertainment,White Room' was a hit off which Eric Clapton album?,Cream,General,What is the flower that stands for: beauty always new,China rose,General,Who was the first person elected to US swimming hall fame,Johnny Weismuller -General,"What happens to Wanda in ""A Fish Called Wanda""?",Wanda is eaten,General,In Gustav Holsts Planets suite what planet is missing,Pluto not known then,General,What animal lives in a form,Hare -General,Which wedding anniversary is coral,Thirty fifth,General,To give full discretionary power,Carte blanche,Toys & Games,This is the lowest ranking suit in Bridge.,Clubs -Science & Nature,To make a car go backwards you have to put it in what gear?,Reverse,General,Atahualpa was the last ruler of who,Incas, History & Holidays,In which year was the Berlin Wall constructed? ,1961  -Sports & Leisure,"Which Football Team Managed To Loose The 1974,1978 World Cup Finals ",Holland ,General,Who did joan collins play in 'dynasty',Alexis carrington,Geography,"What unit of currency will buy you dinner in Iraq, Jordan, Tunisia and Yugoslavia",Dinar -General,What does the electrical abbreviation db stand for,Decibel,General,What are the worlds smallest trees - (not Bonsai),Dwarf Willows (Greenland) 2 inch,General,What did d.w griffith invent,False eyelashes -General,What is a french 'german shepherd',Alsatian,General,Concetta Franconeri became more famous as who,Connie Francis,General,Which seattle-based band had a hit with 'daughter',Pearl jam -Geography,"The state of __________ was once known as the ""Earmuff Capital of The World"". Earmuffs were invented there by Chester Greenwood in 1873.",Maine,General,In the Bible what was the name of the region of natural fertility promised to the Israelites by God,Land of milk & honey canaan,General,Meaning 'Black Knife' in Gaelic what is the dagger worn in the sock with full Highland Dress,Skean dhu -General,"What is the fear of chinese, chinese culture known as",Sinophobia,General,The video game character Mario made his debut appearance in.,Donkey kong,General,Kind of mild pale Welsh cheese,Caerphilly -General,What began in 1877 but banned women until 1884,Wimbledon Tennis,General,"In engineering, the measurement or control of equipment by fluid jet devices.",Fluidics,Geography,What is the capital of Burundi,Bujumbura -General,"The archbishop of krakow, in 1978, came to be known as whom",Pope john paul,General,Colonel Paul W Tibbets did it first - what,Dropped Atom Bomb,Science & Nature, A herd of sixty cows is capable of producing a ton of milk in less than a __________,Day -General,"Which film director's films include ""Midnight Express"" and ""Bugsy Malone""",Alan parker,Food & Drink,Gnocchi is a food from Italy. What is it? ,"Small dumplings made of potato, flour or semolina ",General,What kind of animal is a possum,Marsupial -General,How deep is a fathom,Six feet,General,What would a nidologist be interested in,Birds nests,Sports & Leisure,How many dimples does a golf ball have?,336 -General,Product name from the words Durability Reliability Excellence,Durex condoms,General,"What's the international radio code word for the letter ""O""",Oscar,Music,What Is The Name Given To The Type Of Singing That Mimics An Instrumental Solo,Scat Singing -People & Places,By what name is Allan Stewart Konisburg better known as?,Woody Allan,General,On what do approximately 100 people choke to death every year,Ballpoint pens,Food & Drink,What type of pastry is usually bought frozen in wafer thin slices ,Filo  -General,What is the young of this animal called: Hippo,Calf,General,Who reads skulls,Phrenologist,General,The Braves moved to Atlanta from where,Milwaukee -General,Which Country Has The Longest Coastline In Europe,Norway,General,"In 1902, which volcano erupted killing 30,000 people",Mount pelee,General,Which variety of apple is on the Beatles apple label,Granny Smith -General,Which form of light is used to treat skin diseases,Ultraviolet,Entertainment,Who is married to Valerie Bertanelli?,Eddie Van Halen,General,What was the name of Thomas Jefferson's home,Montecello -General,What is the flower that stands for: counterfeit,Mock orange, History & Holidays,In which body of water is Christmas Island? ,Indian Ocean ,General,In ancient India how were dead parents traditionally disposed of,Eaten by offspring as a sign of respect -General,What beverage named after the UK Prime Minister of the 1830s,Earl Grey Tea,General,What sport can take place on sand ice or water,Wind Surfing,General,Ward Green wrote the story for which famous film,Lady and the Tramp -General,What creature was the early symbol for christ,Fish,General,What is the windiest place on earth,Mount washington,General,"What is the animated videogame by Don Bluth, where the hero had to work his way through a trap infested castle",Dragons lair - Geography,"In which country is K2, the second-highest mountain in the world, located?",Pakistan,General,30 million people in the USA have diasima - what is it,Gap in front teeth,General,What is the estimated weight of the great pyramid of Egypt,"6,648,000 tons" - History & Holidays,"After The Fire made 'Der Kommissar' popular, but which eighties musician performed it originally? ",Falco ,General,Shirley Schrift became famous as which actress,Shelly Winters,General,U.S. Captials - South Carolina,Columbia -General,In which 1975 smash hit film did the male star own a fishing boat called Orca,Jaws,General,What note has a time value of two crotchets,Minim,Science & Nature,What does the symbol 'Am' represent?,Americium -Entertainment,What is Blondie's maiden name?,Oop,Science & Nature,This is the hardest naturally occurring substance.,Diamond,General,What is quicksilver better known as,Mercury -General,Of what was the first lightbulb filament made,Cotton,Music,Which Group Released An Album Called “Long Road Out Of Eden” In 2007,The Eagles,General,Gin - lemon Juice - Sugar - Soda make what cocktail,Tom Collins -General,What profession had Lemual Gulliver when he was shipwrecked,Ships surgeon,General,Selim Zilkha Is The Founder Of Which Large Chain Of Stores?,Mothercare,General,A receptacle for holy water is a(n) ____.,Font -Geography,"_______________ has 254 counties. Alaska, which is more than twice as large, hasn't any.",Texas,General,"In legend, who was the Roman goddess of war",Bellona,General,Tropical plant with large flowering bracts,Bougainvillaea -General,What pigment affects the colour of the hair & skin,Melanin, History & Holidays,The Worlds First Travel Agency Was Founded In 1850 By Whom? ,Thomas Cook ,General,Which American state passed a bill declaring Pi to be 3 ?,Indiana -General,What's pennsylvania's state tree,Mountain laurel,General,"In Greek mythology, mnemosyne is the mother of the ______",Muses,General,What painting depicts the sister & the dentist of artist Grant Wood as rural farm folk,American gothic -General,Who played the mutating fly in the film 'the fly',Jeff goldblum,Science & Nature, The crayfish isn't a fish at all _ it is related to the __________,Lobster,General,Singapore uses the colours blue and yellow at funerals to ward off ______,Evil spirits -General,"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,General,Indiana jones: what creature did indy's father fear,Rats,General,Followers of the unification church are nicknamed _______,Moonies -Geography,Mount Victoria is the highest peak of this island country.,Fiji,General,In Saskatchewan it is illegal to watch what if drinking booze,Strippers – Exotic Dancers,General,What was the name of king arthur's castle,Camelot -Music,"""Baker Street"" Was A Hit In 1992 Who Sang It",Undercover,General,In Star Fleet Will Riker plays which musical instrument,Trombone,Entertainment,The Who' had a guiness world record for what?,Loudest Band -General,Who surpassed George Halas for most career NFL coaching victories in 1993,Don shula,People & Places,Who Was Elvis Presleys Manager ,Colonel Tom Parker ,General,The aardvark is the first animal in the dictionary what's second,Aardwolf -Music,Cherilyn Sarkisian Lapiere Is The Real Name Of Which Singer,Cher,Food & Drink,What Do The Initials U.H.T Refer To In Relation To Milk ,Ultra Heat Treated ,General,Where is mount augustus,Western australia -General,Are most cats right pawed or left pawed,Left,Science & Nature,Who First Demonstrated Television In 1926 ,John Logie Baird ,General,"What Indian word means ""big village""",Canada -General,What northern nation's geyser heated soil allows it to grow bananas,Iceland's icelands iceland,General,An accolade is something of praise what was original meaning,Shoulder sword touched knighting,Music,The Duo Erasure Consisted Of Vince Clark And Which Other Singer?,Andy Bell -General,Who was the eighties group that was named after the inventor of the radio?,Tesla,General,In astronomy what are Pallas Vesta and Davida,Asteroids,General,In the creation myth on the fourth day God made what,Sun Moon Stars -General,Brave New World - Aldus Huxley - where name from,Shakespeare's The Tempest,General,In 1829 Cyrill Damien invented which musical instrument,Accordion,General,Hamburgers were invented in what country,China -Science & Nature, There are about 40 different __________ in a birds wing.,Muscles, Geography,Which island country lies immediately to the East of Réunion?,Mauritius,General,What was the name of long john silver's parrot,Captain flint -General,"Who wrote ""The Corn is Green""",Emlyn williams,General,Nigel Neil created which famous UK Professor in the 50s,Professor Quatermass,General,Of what is cetology a study,Whales -General,"In common: nova, comet, galaxy, meteor",Cars named after stellar bodies car,General,Which famous couple were married in 1981,Charles and diana,General,"What did dr john pemberton invent in atlanta, georgia in 1886",Coca cola - Language,From what Irish words is 'Dublin' derived?,Dubh linn, Geography,In which state is the Kennedy Space Center?,Florida,General,What does a hotwalker do,Walks a hot racehorse -General,Two villains first appear in Batman Comics 1 - Joker and who,Cat - Later called Catwoman,General,"If you were anosmic, what would you lack",Sense of smell,Art & Literature,"Which Famous Book Begins With The Line 'Not long ago, there lived in London a young married couple of Dalmatian dogs named Pongo and Misses Pongo' ",101 Dalmations  -Entertainment,Mickey Mouse is known as what in Italy?,Topolino,Technology & Video Games,What happened to the innocent residents of the Mushroom Kingdom when Bowser Koopa took over? ,They became bricks and powerup blocks,Science & Nature,What is the name given to the green pigment in plants ,Chlorophyl  - Geography,What is the capital of Armenia ?,Yerevan, History & Holidays,"Who plays the character of Chris Kringle aka Santa Claus, in the 1994 film 'Miracle On 34th Street'' ",Richard Attenborough ,General,Who wrote The Unbearable Lightness of Being,Milan kundera -General,What is the more common name for the bird also known as the windhover,Kestrel,General,What is the fear of wet dreams known as,Oneirogmophobia,General,"In which tv series do james van der beek, katie holmes, joshua jackson and michelle williams play",Dawson's creek -General,What is the fear of flying known as,Pteromerhanophobia, History & Holidays,In which year did the demolition of the Berlin Wall begin? ,1989 ,General,What monster is said to be living in a Scottish lake,Loch ness monster -General,What is the name for the study of liquid flow,Hydraulics,General,In heraldry what shape is a pile,Inverted Pyramid,General,France has the highest per capita consumption of ______,Cheese -General,Where is the old quarter 'plaka',"Athens, greece",Music,"The Song 3 Men And A Baby Featured A Song entitled ""Back In Time"" By Which Band",Big Audio dynamite,General,When was the miss world competition founded,1951 -General,Fundador is a potent brandy made in what country,Spain,General,Which Famous Woman In The World Of Politics Was President Of The Oxford Union In 1977,Benazir Bhutto,General,"The Triassic, Jurrasic, and Cretaceous periods make up which era ?",Mesozoic Era -Sports & Leisure,"Kevin Keegan & Henry Cooper Both Have A Connection , What Is It ",Brut 33 ,General,"What was the name of the bartender on ""The Love Boat""?",Issac,People & Places,"What do Cleopatra, Margarett Thatcher, & Mia Farrow all have in common ",They All Had Twins  -General,What are the fundamental constituents of tissue building drugs,Anabolic steroids,General,In traditional wedding anniversaries what is given on the eighth,Bronze,Science & Nature,A non-cancerous tumor is said to be _______.,Benign -General,Who would wear a diadem,Kings headband,Sports & Leisure,What Colour Socks Do Chicago's Baseball Team Wear? (Chicago White Socks) ,White ,Science & Nature,Which metal was invented by British metallurgist Harold Brearley in 1912? ,Stainless Steel  -General,On The Drew Carey Show what foreign country did Mimi send Drew to?,China,General,How did Attila the Hun die on honeymoon,Booze – Honeymoon 30 day booze up,General,To which London club did Mycroft Holmes belong,Diogones -General,Where is Selfridges?,"Oxford Street, London",General,Acrophobia is a fear of ___________,Heights,General,Which character lived at 3 stable mews City of London,John Steed in the -General,Which Englishman Was Famously Beheaded On The 29 th October 1618 ?,Sir Walter Raleigh,Sports & Leisure,In which sport would you use the Eskimo Roll? ,Canoeing ,General,Which artist painted 'Guernica',Picasso -General,The first International floodlight football match took place in what year,1955,General,"Which group backs James Brown, the self-styled 'Godfather of Soul'",The famous flames,Science & Nature," Marine iguanas, saltwater crocodiles, sea snakes, and sea turtles are the only surviving seawater_adapted __________",Reptiles -General,"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,Food & Drink,Good Rhine wines are bottled in what colour bottles?,Brown,General,Fifty who had the nickname 'golden bear',Jack nicklaus -General,In brewing what do the initials OG stand for,Original Gravity,General,Who was the original lead singer with the Moody Blues,Denny laine,General,What is the common name for the aurora borealis,Northern lights -General,Which German firm produced the World War Two plane the Condor,Fockewulf, History & Holidays,What Venetian traveler and explorer landed in China and reached Kublai Khan's court in 1275?,Marco Polo,General,What florentine held that the ends justified the means,Machiavelli -Science & Nature,The pivot point of a lever is called the _________.,Fulcrum,General,In which country is the secretariat of the European Parliament,Luxemburg,General,What bird has double-plumed feathers,Emu -General,The Salvation Army was founded in what year,1865,General,Who invented the exploding shell,Henry shrapnel, History & Holidays,"Samhain', literally means 'end of summer' and is a Gaelic language word. What is it's direct English equivalent ",November  -General,"Who, posthumously, was the Formula 1 Drivers' World Champion in 1970",Jochen rindt,General,Who invented Lava Lamps?,Craven Walker,Geography,What is the capital of Venezuela,Caracas -Food & Drink,What Type Of Cheese Was Traditionally Made From Buffaloes Milk? ,Mozzarella ,General,In James Bonds books what was Dr No's first name,Julius,Entertainment,"What was the setting for ""The Sound of Music""?",Austria -General,The normal temperature of a cat is _____ degrees (it's a decimal),101.5F,General,Principial male dancer.,Premieur danseur,General,Francis What prime-time soap opera debuted as a five-part miniseries in 1978,Dallas -Science & Nature,What is the chemical symbol for lead?,Pb,Entertainment,What's the name of B.B. King's guitar?,Lucille,General,What is the Capital of: Slovenia,Ljubljana -Mathematics,What is the minimum number of integer degrees in an obtuse angle?,91,Science & Nature,Which Member Of The Cat Family Cannot Retract Its Claws? ,The Cheetah ,General,What fabled monster has a lions head and a serpents tail,Chimera -General,"What is defined as ""The fruit of the oak, beech, chestnut, and other forest trees, on which swine feed""",Mast, History & Holidays,"What french port did 200,000 british troops flee on june 4th 1940 ",Dunkirk ,General,Who proclaimed thanksgiving a national holiday in 1863,Abraham lincoln -General,Logophobia is the fear of,Words,General,What links Grey Bean Canada Brent Barnacle,Types of Goose,General,"The Brodway version of Disney ""The Lion King"" uses more than ___________ puppets ",232 -General,The largest rough diamond is a?,Cullinan,Food & Drink,What is the name of the fruit sauce which is a traditional accompaniment to the Christmas Turkey? ,Cranberry ,Science & Nature,What are the units of measurement for Power ?,Watt -General,What is recorded with two beams of light,Holograph,General,In 1981 James Brady was shot attempting to assassinate whom,Ronald reagan,Science & Nature,On the Moh Hardness scale what has a hardness of 10?,Diamond -General,In Happy Days what was Potsies full name,Warren Webber,Sports & Leisure,Football: The Dallas ______?,Cowboys,Art & Literature,Which Author Wrote The 'Just So Stories''? ,Rudyard Kipling  -General,What line of latitude separates the Slave States form the Free States of the USA?,Mason-Dixon Line,General,Under what name did norma jean mortenson become famous,Marilyn monroe,Entertainment,Who discovered gold on the Witwatersrand?,George Harrison -Food & Drink,Which fruit has the scientific name of malus pumulia? ,The Apple ,General,This TV series ran for 78 episodes before it was scrapped - what,Star Trek,Science & Nature,What travels in gaggles,Geese -Science & Nature,What Do You Call A Birth Where A Baby's Feet Are Delivered First ,Breech Birth ,Entertainment,"What does Steven Spielberg try to include in every film he makes, claiming it is for luck?",Scene With A Shooting Star,General,What is the name of the largest South American lake,Lake maracaibo -General,In which American city can you get doctorate in hambugerology,Hamburger College – Chicago,General,What is a tennis shot hit in the air when close to the net,Volley,General,What was the first name of Captain Dobey on Starsky & Hutch?,Harold -Music,The Young Ones Was A Hit On Both Screen & Vinyl For Which British Legend,Cliff Richard,General,In what fictional vessel are characters Starbuck Stubb Fedallah,Pequod in Moby Dick,General,Where or what is a birds lore,Space between eye and beak - Geography,What is the basic unit of currency for Honduras ?,Lempira,General,Who designed the union buildings,Sir herbert baker,General,Who wrote Cliff Richards hit song Living Doll,Lionel Bart -General,"What term originally menat instruction in all branches of knowledge, or a comprehensive education in a specific subject",Encyclopedia,General,Where would you find Lunate Triquetral and Hamate,Bones in Wrist,Food & Drink,Which Fast Foon Advertised With The Slogan 'Wheres The Beef'' ,Wendy's  -Music,"Which Beatles Son Had A Hit With ""Too Late For Goodbyes""",John Lennon (Julian),Sports & Leisure,On Which Day Of The Week Was The 1997 Grand National Contested? ,Monday (Due To Bomb Scare) ,General,"Countries of the world: north western Africa, Nouakchott is the capital",Mauritania -General,What is the cube root of 64,Four,General,In wacky races who drove the converter car,Professor Pat Pending,General,As who is Cassius Clay now known,Mohammed Ali - History & Holidays,Who Released The 70's Album Entitled The Grand Tour ,George Jones ,General,Who was the actor who played lt columbo in the series columbo,Peter falk,General,A prostitute with wealthy or upper class connections,Courtesan -Sports & Leisure,Which british club became the first to have an all seater stadium? ,Aberdeen ,General,"Which Now Famous A List Hollywood Celebrity Appeared Briefly In The Video To The Paula Abdul Video ""Rush Rush""",Keanu Reeves,General,All Sikhs must possess five things - one is a Kangha - what is it,Comb -General,What two words make the word 'meld',Melt and weld, History & Holidays,"The Simpsons Halloween Episodes are an annual tradition in which there are three separate, self-contained pieces. By which title are these episodes known ",Treehouse of Horror ,General,What is the fear of being buried alive known as,Taphephobia -General,What two items make up the dish devils on horseback,Bacon Prunes,General,What did Jack Horner pull from his pie,Plum,General,Where is the 'whispering gallery'?,St. Paul's Cathedral -General,What are Arran Pilot Homeguard and Ulster Chieftain,Early types of Potato, History & Holidays,"On november, 16, 1907, oklahoma became the what number state ",46th ,General,What is the most populous domesticated creature in the US,Honey Bees -General,With which part of the body is dermatology concerned,Skin,Technology & Video Games,"Who wrote the song, ""Pac-Man Fever?"" ",Buckner and Garcia,General,If you were eating calemare - what are you snacking on,Squid -Food & Drink,"What name was given to the light, clear wine developed in medieval times along the coastal valleys of the Gironde river in the Bordeaux region? ",Claret ,General,"Who said ""Sometimes a cigar is just a cigar""",Sigmund Freud,General,What is a cyclone,Area of low pressure -General,What is the correct name for brown coal,Lignite,General,Who rejected the role of Riddler in Batman Forever,Robin Williams,Music,Who Released Their 2nd Album Rhythm & Stealth In 1999,Left field -General,Author of Good as Gold and Closing Time but famed for another,Joseph Heller Catch 22,General,Who is Julia Wells Better known as?,Julie Andrews,General,Marine creature with tusks,Walrus -Sports & Leisure,How Many Successive Wimbledon Titles Did Bjorn Borg Win ,5 ,General,What does the C stand for in the equation E=mc2,Speed of light,Sports & Leisure,Which is the only English football league team that has a name ending with the letter G? ,Reading  -Entertainment,An adventurous penguin named Tennessee Tuxedo had a sidekick named _______?,Chumley,General,What cult-fav eighties movie features John Lithgow from another dimension?,The Adventures of Buckaroo Banzai,General,Ecophobia is a fear of what,Home -Music,"Which Song From ""The White Album"" Was Originally Entitled ""Maharishi"" ?",Sexy Sadie,General,This stone enabled scholars to decipher Egyptian hieroglyphs,Rosetta stone,General,The fastest bird is a spine tailed swift. How fast can it fly (mph),106 -General,What is in the Red Data Book,Endangered Species,People & Places,Who is Paul Mc-Cartneys Fashion Designer Daughter ,Stella McCartney ,Science & Nature,What Is The Slowest Fish? ,The Sea Horse  -General,"What is tramp's nickname for lady in ""Lady and the Tramp""",Pidge,Entertainment,"In 1968, who released 'Carnival of life' and 'Recital'?",Lee Michaels,Toys & Games,"If you're involved in firing, throwing, and glazing, what do you do",Pottery -General,"The first international cricket match ever, was held between canada and _____",U.S.A.,General,What is the young of this animal called: Quail,Cheeper,General,Who dubbed australia 'the lucky country',Donald horne -General,Literature Scramble: lxrnaadee lzynsshietno (Author of Gulag Archipelago),Alexander Solzhenitsyn,General,Darwin Who owns: Head and Shoulders shampoo,Procter and gamble,General,"Which colourless, odourless light gas is used to lift airships",Helium -General,Which sailor dreamed of Toasted Cheese in Treasure Island,Ben Gunn,General,The Pindus mountains run north to south through which country,Greece,Sports & Leisure,Which record breaker won the first major Marathon she entered in 1996? ,Liz McColgan  -General,"In 1900, what was the average lifespan in the u.s",Forty seven,General, This instrument measures the velocity of the wind.,Anemometer,General,Billy the Kid was born in _____,1859 -General,Japanese profesional hostess and entertainer,Geisha,General,Boston Bruins hockey great _____ was inducted into the hall of fame in 1947,"Aubrey ""dit"" clapper",General,What is the Capital of: Nicaragua,Managua -General,Legal Terms: To steal property entrusted to one's care.,Embezzle,General,What does 'cc' stand for in motor mechanics,Cubic centimetre,General,What is the name of the Chicago baseball team based at Wrigley Field,Chicago cubs -General,Orange juice and what make an ambassador,Tequila,General,What was the name of the England team's now infamous 'goal celebration' performed at the 1996 European Championships in England?,The Dentist's Chair,General,In 1925 the worlds first what opened Luis Obispo California,Motel - Called Motel Inn -General,What system is based on the number 10,Decimal,Food & Drink,"What cocktail: Vodka, Galliano and Orange Juice? ",Harvey Wallbanger ,General,What is the only venomous british snake,Adder -General,Who was known as the clown prince of basketball,Meadowlark lemon,General,What word appears above George Washington's head on a quarter,Liberty,Music,"Which Big Voiced Singer Is Usually Associated With The Irving Berlin Song ""Theres No Business Like Showbusiness""",Ethel Merman -General,What is the maximum number of clubs a golfer may use in a round,Fourteen,General,In 1950 the Minnesota valley canning company became what,Jolly Green Giant,General,Which South African President was assassinated in 1966,Hendrik verwoerd -General,"On the fahrenheit scale, there are 180 degrees between boiling point and ______",Freezing point,Sports & Leisure,Who Was The First Boxer To Receive A Knighthood ,Sir Henry Cooper ,General,An Italian vinegar matured in wooden barrels,Balsamic -General,U.S. Captials - Illinois,Springfield,Geography,Which European country has the highest population density,Monaco,General,What is examined by an otoscope,The ear -General,What is the fear of politicians known as,Politicophobia,Science & Nature,Smuck is the collective noun for which marine creature? ,Jelly Fish ,Music,Which Band Accompanied Vic Reeves On His Chart Topper “Dizzy”?,The Wonder Stuff -General,The only us state that celebrates its own independence day,Texas,General,Who played Deanna Troi in 'Star Trek The Next Generation'?,Marina Sirtis,General,"What Ohio city is known as ""the rubber capital of the world""",Akron -General,What is the longest English word that only has one vowel,Strengths,General,Fallstaff first appears in what Shakespeare play,Henry IV part 1,General,What is the opposite of wet - if its not wet,Sweet -Art & Literature,"""The Diary of Anne Frank"" was first published in English under what title",The diary of a young girl,General,When was the shortest war in history,1896,General,Kleptophobia is the fear of,Stealing -General,What was the original name of Duran Duran?,RAF,General,Auctioneer's or judge's hammer,Gavel,General,What word originally meant a dark cosmetic eye powder,Alcohol from Al Kuhul antimony -General,Liza Minelli played what character in Cabaret,Sally Bowles,General,What is the first name of Agatha Christies Miss Marple,Jane,People & Places,Which Tennis Player Was Jimmy Connors Engaged To ,Chirs Evet  -General,In Raton New Mexico its illegal for a woman to ride wearing what,A Kimono,Music,The Song West End Girls Was A Number One Hit For Which Famous Pop Duo,The Pet Shop Boys, History & Holidays,Who Released The 70's Album Entitled Lark's Tongue in Aspic ,King Crimson  -Geography,What is the second largest of the United States,Texas,Music,Name Iron Maiden's famous mascot (depicted on the cover of Sanctuary standing over Margaret Thatcher's decapitated body)?,Eddie,General,"In Gaelic legend, who had a dog called Bran",Fingal -General,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,General,What is the capital of the state of Virginia,Richmond,General,"Who played Sarah Connor in 1984's ""Terminator""?",Linda Hamilton -Science & Nature, Crabs and other crustaceans can escape danger by simply discarding an injured or trapped __________,Limb,Music,Which Member Of The Velvet Underground Produced Patti Smith's Debut Album Horses,John Cale,Music,"Which British Pop Star Named His Son After The Singer ""Sitting On The Dock Of The Bay""?",Bryan Ferry (Otis) -General,What sort of meat is used in the dish Guard of Honour,Neck of Lamb,Science & Nature,What Is The Soft Spot On A Babies Head Known As ,The Fontanelle ,Music,Name Buddy Holly's Texas Home Town,Lubbock -General,Which actor's real name is Emmanuel Goldenberg,Edward g robinson,General,In what country was aspirin invented,Germany,General,How did Virginia Woolf die,Committed suicide -General,How often does a quotidian thing occur,Daily,General,What Spanish title is equivalent to princess,Infanta, History & Holidays,When was D-day?,"June 6th, 1944" -Food & Drink,The geometric shape found on the Bass Pale Ale bottle,Triangle,Sports & Leisure,Name The Horse That Won The 2007 Grand National ,Silver Birch ,General,Toxicophobia is a fear of ______,Poison -General,What was the Grammy album of the year in 1967 (Full name),Beatles Sergeant Peppers,Geography,Name the continent that consists of a single country. ,Australia ,General,"On which story by Arthur C. Clarke was the film '2001 - A Space Odyssey"" based",The sentinel -Art & Literature,Who Penned The 1999 Autobiography (Managing My Life)? ,Alex Ferguson ,General,Bamboo harvester was the real name of what TV character,Mr Ed, History & Holidays,Which 1988 film saw Bruce Willis battling against a group of terrorists that crudely interrupted a Christmas party ,Die Hard''  -General,Off what coast was 'prison island',French guiana,Music,With Which Band Did Wyclef Jean & Lauryn Hill First Make Their Name,The Fugees,General,The highest temperature ever recorded occurred in Libya in 1922. What was the temperature (fahrenehit),136 -Entertainment,In 1962 Chubby Checker had a hit with a pop song and novelty dance that remains famous today. What was that dance?,The Twist,General,Pompeii was buried by Vesuvious in AD 79 - what other city,Herculaneum,General,The FEI govern what sport,Equestrian -General,Who invented the saxophone,Adolphe sax, History & Holidays,Rorke's Drift was a battle in which war?,The Zulu War,Music,Which Group Was Put Together For A TV Programme Based In Miami,S Club 7 -General,In which European country is Romansch one of the official languages,Switzerland,General,Which magazine was founded by the American Dewitt Wallace,Reader's digest,General,Who directed the film A Fistful of Dollars,Sergio leona -General,Hills and ridges composed of drifting sand are known as _____.,Dunes,General,The two_minute storm in the opening of Disney's ___________________(1989) took ten special effects artists over a year to complete. ,The little mermaid,General,Who was the girl in Peter Seller's soup,Goldie hawn -General,A Ten pound note depicts a scene from which Dickens novel,Pickwick papers,General,Who was the first host of truth or consequences,Ralph edwards, Geography,"Which country borders Italy, Switzerland, West Germany, Czechoslovakia, Hungary, Yugoslavia, and Liechtenstein?",Austria -Science & Nature,In Computing What Does The Word Modem Stand For ,Modulate Demodulate ,General,Who sings and plays the theme song for the tv show 'frasier',Kelsey grammar,General,What character did Disney add to Winnie the Pooh not in books,Gopher -General,What is the oldest country in Europe,San Marino 301 ad,General,Whose Pepsi commercial was dumped after complaints from Christian groups,Madonna's,General,Who is credited with inventing television,John baird -General,In which country are 'fajitas' a traditional dish,Mexico,General,"In 65 A.D., which Roman emperor forced his former tutor, Seneca the Younger, to commit suicide",Nero,General,"What, in Australian English is a coolabah",Tree -General,Addictive drug prepared from morphine,Heroin,General,Kosmikophobia is the fear of,Cosmic phenomenon,Music,"Who Had A Hit In 1981 With ""Mustang Sally""",The Commitments -People & Places,Which Cricketing Bad Boy Is Known As 'The Cat' ,Phil Tuffnel ,General,What is the fear of society known as,Sociophobia,General,Chysoprase is a shade of what primary colour,Red -General,What is a Winter Banana,A variety of Apple,General,What is the second bridge built across the thames,Westminster bridge,Sports & Leisure,Within Which Sport Might You Encounter The Cyclops System ,Tennis  -General,What is the technical name for the twisting of a stalk as it grows in response to a stimulus from a particular direction,Strophism,Music,"The First Version Of ""Je T'aime""___. Moi Non Plus (Suppressed Before It Could Be Released) Was Recorded As A Duet Between Serge Gainsbourg And Which Actress",Brigette Bardot,General,The first atom bomb was dropped on which Japanese city,Hiroshima -General,What is a group of this animal called: Hare,Down husk,General,In what country is the car model the Treka produced,New Zealand,General,Before it meant tall building what did skyscraper mean,Tall sailing ships masts -Sports & Leisure,"Who was the NBA's most valuable player in 1976, 1977 and 1980?",Kareem Abdul-Jabbar,Art & Literature,"Which US dramatist was once married to Marylin Monroe and penned the plays ""Death Of A Salesman"" and ""The Crucible""?",Arthur Miller,Music,Who's First Top Ten Hit Was “Harvest For The World” In 1998?,The Christians - History & Holidays,"Gangster Al Capone, boss of the Chicago underworld, was finally gaoled for 11 years for what crime?",Tax evasion,General,Where is the dalmatian coast,Croatia,General,2 Bands Signed Their Very First Recording Contracts On The Day Elvis Died Name Either,Kiss / The Buzzcocks -General,What war lasted from june 5 to june 11 1967,Six day war,Sports & Leisure,Where were the 1924 Olympics held ?,"Paris, France",General,"Over here we have a current account with a bank, what do the Americans call it",Checking account -Science & Nature,What chemical compound causes pain in muscles after exercise?,Lactic acid,People & Places,What Did Charles Dawson Appear To Have Found On Piltdown Common ,The Missing link , Geography,What is the capital of Wales??,Cardiff -Music,"What Was The First Record To Chart For US Supergroup ""The Eagles""",One Of These Nights,General,What is the sum of 95 x 1,95,Food & Drink,"If you wanted to buy liver sausage in the US, what product name should you look for? ",Liverwurst  -General,What are the Aki - Dai-shimizy - Seikan in Japan,Tunnels,General,In British army what ranks between Major General and Colonel,Brigadier,General,The word athletics comes from the Greek athlos meaning what,Contest - History & Holidays,3 Singers Have Sung The Opening Line The Christmas Favourite Do They Know Its Christmas (PFE) ,"Paul Young, Kylie Minogue, Chris Martin ",General,Thames water removes a ton of it monthly from sewage – what,Pubic Hair – system cant handle it,General,On which continent would you be standing if you were visiting the Republic of Surinam,South america -General,"Which independent family company is Britain's oldest brewer, having been brewing on the site in Faversham since 1698",Shepherd neame,General,What was the title of the winning song in the 1997 Eurovision Song Contest,Love shine a light,General,"Who said - ""The mass of men lead lives of quiet desperation""",Henry Thoreau -General,"What lake is approximately 394,000 sq km",Caspian sea,General,What is the Capital of: Burma,Rangoon yangon,General,Which is the only middle eastern county without a desert,Lebanon -General,What ship did jason sail on,Argo,Geography,Which Capital City Might You Associate With A Statue Of A Mermaid ,Copenhagen ,General,What country has the car registration letter T,Thailand -General,What's the capital of Uruguay,Montevideo,Music,"Although Successful, What Run Did ""Penny Lane"" Break For The Beatles & Why",A String Of 7 No.1's Preceeded It - (2),General,"Where, in 1955, was one of the worst accidents in motor racing history, when 82 spectators were killed",Le mans -General,"Aesthetic principles derived from the literature and art of ancient Greece & Rome, but found as ideals in all ages is called?",Classicism,General,Name both rival gangs in West Side Story,Sharks Jets,General,Which Composer Wrote The Classic Waltz 'The Blue Daube',Johann Strauss -Food & Drink,What is the brewery featured in Coronation Street? ,Newton and Ridley ,Music,Who Didn't Eric Clapton Shoot In 1974,The Deputy,General,What has 336 dimples,Golf ball -General,What is the third month of the year,March,General,"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,General,What do fennel leaves taste of,Aniseed -Music,Who were Paul Humphries & Andy Mc-Cluskey Better Known As,OMD,General,Who wrote the novel The Piranhas,Harold Robbins,General,"The spaceship voyager found geysers on triton, a moon of which planet",Neptune - History & Holidays,What Process Is Used For Dating Ancient Organic Objects? ,Radio Carbon Dating ,General,Nut used to make marzipan,Almond,General,"What does the lady in the cafe order after Sally finishes proving to Harry that he can't tell the difference between a real and a faked orgasm in ""When Harry Met Sally""?",I'll have what she's having -General,In the rules of golf what type of bad weather can stop play,Only Lightning,General,What is the capital of the African country of the Ivory Coast,Abidjan,Music,Which Patti Smith Album Featured A Cover Shot By Controversial Photographer Robert Mapplethorpe,Horses -Food & Drink,How many bottles of `champagne' are there in a Nebuchadnezzar? ,20 Bottles ,General,Which secret society refers to God as 'the great architect of the Universe'?,Freemasons,General,Mel gibson starred in the film version of which play that grossed the most,Hamlet -General,What is the twelfth month of the year,December,General,England its illegal for a boy under 10 to see a naked what,Mannequin,Geography,What is the capital of Tuvalu,Fanafuti - History & Holidays,What Year Saw The Imposition Of Martial Law In Poland ,1918 ,General,Which celebrity ran the equivalent of 43 marathons in 52 days in 2009?,Eddie Izzard, Geography,What is the capital of Cyprus?,Nicosia -General,A 'bunya-bunya' tree is native to which country,Australia,General,A haboob creates what,Sandstorm – Desert Wind,General,Type of glazed earthenware,Delft -General,Where did the Mafia originate ?,Sicily,Music,Which 1983 Duet Featuring Paul McCartney & Michael Jackson Has A 3 Word Title?,Say Say Say,General,Playing cards in which the pips are part of an art design are called this.,Transformation cards -General,In what film did Mary Poppins - Julie Andrews bare her nipples,S.O.B.,General,U.S. Captials - Kansas,Topeka,General,When did the series 'lost in space' premier on cbs,1965 - History & Holidays,Who was the female Prime Minister of England throughout the eighties? ,Marget Thatcher ,General,Which pretender to the English throne was hanged in 1499,Perkin warbeck,General,"When the Hoovers did not want to be overheard by White House guests, they spoke to each other in what language",Chinese -General,What was the. first bird that Noah sent from the Ark,Raven,Food & Drink,Which cereal is the only one grown standing in water? ,Rice , History & Holidays,Which English King Was Given The Title Defender Of The Faith By Pope Leo X? ,Henry VIII  -General,The Balfour Declaration by Great Britain was in what year,1917, Geography,What is the basic unit of currency for Macedonia ?,Denar,General,All inhabitants of Pitcairn island belong to what US religion,Seventh Day Adventists -General,"Who was Poet Laureate from 1843 to 1850, during which period he wrote no poetry at all",William wordsworth,General,What in the USA is celebrated on the fourth Thursday in November,Thanksgiving,Music,Which U2 Music Video Featured The Band Working Round The Streets Of Las Vegas,I Still Havent Found What Im Looking For - Geography,In which country is the Machu Picchu?,Peru,General,Who was the first baseball player to have his number (4) retired,Lou Gehrig,General,Stanley Burrell became famous as who,MC Hammer -General,Which drink did Bach enjoy so much he wrote a cantata for it,Coffee,General,Belgian and Swiss unit of currency,Franc,General,Where is the black forest,Germany -General,In the UK at least which products selling feature is a magic inch,E A Careys Pipes,General,What are the only numbers where they are the values of the numbers of factors they have,1 & 2,Art & Literature,What is the name of Hamlet's tragic admirer?,Ophelia - History & Holidays,The following is a line from which 1970's film 'There're all gonna laugh at you' ? ,Carrie ,General,Which country grows the most sugar,Brazil,General,Whose stories were illustrated.by 'Phiz',Charles dickens -General,The Associated Powers - the original proposed name of what,The United Nations,General,"In the movie ""Tootsie"" what was the name of the woman who was played by cross-dressing Dustin Hoffmann?",Dorthy Michaels,General,What is a Roman Catholic devotion consisting of prayers or services on nine consecutive days called,Novena -General,What kind of drum is beat beat in the first line of night and day,Tom-tom tom tom,General,Venus is the only planet that does what,Rotates Clockwise,General,What country does the Galapagos Islands belong to,Ecuador -General,"Which Movie Tough Guy Drove A Car That Had The Licence Plate ""Awsome 50""",Cobra,General,An animal that eats both plants and animals is known as an,Omnivore,General,Who was the only astronaut to lose his spacecraft,Gus grissom -General,A narrow crack or split,Fissure, Geography,What is the capital of Barbados ?,Bridgetown,General,What's the longest river in the british isles,Shannon -General,What is the ancient Chinese art of placement called,Feng shui,Geography,What is the capital of Mexico,Mexico city,General,In 1956 David Bryant became the first World Champion in which sport,Bowls -General,"In September of 1994, 852 people died when the ferry Estonia sank in what sea",Baltic Sea,General,Which US president was portrayed by Anthony Hopkins in a 1995 film?,Richard Nixon,General,What is a 'hotel-dieu' in france,Hospital -General,Not as soups what have gazpacho - vichyssoise in common,Served Cold,General,A more common name for an anthrophagist is,Cannibal,General,What film was a California cinema showing when it went on fire,The Towering Inferno -Music,How Many Violin Concertos Did Beethoven Write,One,General,What is the birthstone for september,Sapphire,General,Who was the first test-tube baby,Louise joy brown -General,What did 'Enigma' return to in January 1994,Innocence,General," What is a ""somnambulist""",A sleepwalk er,General,Middle of the Road' was recorded by which group in 1984,Pretenders -Music,"Which album is ""Only A Nothern Song"" on?",Yellow Submarine, Geography,In which continent would you find the Volga river ?,Europe,General,Canadians are sometimes thought of as,Canucks -General,What was the name of the robot on Buck Rogers?,Twiggy,General,What animal is a musophobic afraid of,Mice,General,What is the flower emblem of Wales?,Daffodil -General,Which beer was advertised as good for you,Guinness,General,What is the national symbol for India?,Lotus flower,General,Who wrote To Kill A Mockingbird,Harper lee -General,"The statue of which famous Englishman stands in the""Piazza of the British Library",Sir isaac newton,Science & Nature,Where Does Edelweiss Grow ,In The Alps At High Altitude ,General,What item were originally called Hanways,Umbrellas -General,Intense aerial bombing is called what,Saturation,General,Which U.S. state has the most vehicles and highways per square mile,New jersey,General,Who was the mother of Castor and Pollux,Helen of Troy -General,Antipater of Sidon first listed what 2nd Century AD,7 Wonders World,General,About how many miles separate the U.S. & Cuba,Ninety 90,General,What come in types Transverse Scimitar and Barchan,Sand Dunes -General,Who is known as the 'father of the atomic bomb',Robert oppenheimer,General,What was the title of Charlie Chaplin's last film,Limelight,Entertainment,This gypsy swing guitarist nearly had his left hand destroyed by fire as a child?,Django Reinhardt -General,What is the capitol of Venezuela,Caracas,General,What is Grimace of the McDonald's characters?,A tastebud,General,If you have a rhytidectomy what procedure has occurred,A Face Lift -Entertainment,What is Kenny G's real surname?,Gorelick,General,If eggs have been fried on one side only how are they said to be served,Sunny side up,General,What is china's sorrow,Yellow river -General,Little Larry Puny Pete Small Sam considered names of who,Dickens Tiny Tim,Music,What Was The Name Of Nick Cave's Band Before The Bad Seeds,The Birthday Party,General,Under the snow and ice Antarctica is actually a what,Desert -Science & Nature,And What Did Thomas Edison Later Invent In The Lab Set Up With The Prize Money Awarded To The Above Invention ,The Gramophone ,General,What kind of bird taught dr dolittle to talk to the animals,Parrot,Music,During the 1960's who recorded the Albums 'Exile On Main Street' & 'Beggars Banquet',The Rolling Stones - History & Holidays,"Which corporation opened it's new headquarters in Portland Place, London in May 1932? ",The BBC ,General,In the United States at the turn of the century there were how many states?,45,General,In the cartoon Scooby Do what is Scrappy Do's battle cry,Puppy Power -Science & Nature,What Do Invertebrates Lack? ,A Backbone ,General,Who wrote the hymn Hear my Prayer,Mendlesson,General,When did richard burton die,1984 -General,What does the electrical term 'ac' stand for,Alternating current,Food & Drink,In which city is the Coleman's Mustard Museum? ,Norwich ,General,Which liqueur has blackcurrant as its main source,Cassis -General,U.S. Captials - New York,Albany,General,What is the Capital of: Tuvalu,Funafuti,General,The Mariana Trench is the deepest point of the Pacific Ocean to what depth does it reach. Give answer in feet.,36160 -General,"What is a 'yesterday, today and tomorrow'",Shrub,General,What 1979 film won the Oscar for best visual effects,Alien,Sports & Leisure,Who won three ladies singles titles at Wimbledon in the 1950's? ,Maureen Connolly  -Music,What Is The Nickname Of Bruce Springsteen,The Boss,General,What is a group of hares,Husk, History & Holidays,Which Welsh actor won Christ's Robe in a dice game in The Robe? ,Richard Burton  -Entertainment,"In the film 'The Day Of The Jackal', who played the Jackal?",Edward Fox,General,What title was held by the governor of India before independence,Viceroy,General,What is the general term used for various forms of insanity and mental derangement,Mental illness -Science & Nature, There are 328 species of __________,Parrots,General,Which pen name does the author Harry Patterson also use,Jack higgins,General,What was the first commercial readymix food,Pancake mix -Art & Literature,What Famous Gothic Novel Was Written By Mary Shelley ,Frankenstein ,General,What creature is the symbol of medicine,Snake,Science & Nature, Koalas and humans are the only animals with unique prints. Koala prints cannot be distinguished from human __________,Fingerprints -General,Who was Poet Laureate during World War One,Robert bridges,General,In Yemen after a wedding what lasts an average 21 days,The wedding feast,Music,Who Had A Uk Top 20 Hit In 1990 With No More Mr Nice Guy,Megadeath - History & Holidays,Name the author of Dracula ,Bram Stoker,General,What is the currency of Vietnam?,Dong,General,Which word refers to the internal diameter of a gun barrel,Calibre -General,Of which State was Jimmy Carter Governor before he became president,Georgia,General,"Baby, Bonny, Boofuls, Bumper, Bubbles, Bigheart Are Collectively Known As What",The Jelly Babies,Music,"Name Four Of The Artists Attributed To The 1970 Version Of ""Black Knight""","Blackmore, Gillan, Glover, Lord & Paice" -General,Fear of thunder or thunderstorms is ______,Brontophobia,General,Collective nouns - a descent of what,Woodpeckers,Science & Nature,As what is a giraffe also known?,Camelopard -General,How far is Neptune from the sun,2793 million miles,General,Name two sports where the winner moves backwards,Rowing - Tug of War,Art & Literature,"The ____ ____ school of poetry includes poets such as Frank O'Hara, John Ashbery and Kenneth Koch",New York -Food & Drink,Savoy And Late Flat Dutch Are Both Varieties Of Which Vegetable? ,Cabbage ,Geography,What Is The Colour Of The Cross On The Finish Flag? ,Blue ,Music,"For What Do The Initials SYSLJFM Stand For In Joe Tex's ""The Letter Song""",Save Your Sweet Love Just For Me -General,What is the name of the infection of the gums that causes them to bleed,Pyorrhoea,General,What to a French or Spanish man is an OVNI,UFO,General,What is a Hummum,Turkish bath -General,Which biblical character had 12 sons,Jacob,General,What was the name of the space shuttle that exploded?,Challenger,General,"On Night Court,who was Harry's idol?",Mel Torme -General,"How Are Clyde , Ding-A-Ling, Zippy, Pockets, Snoozy, Softy & Yak Yak Collectively Known?",The Ant Hill Mob,General,What is the fear of cooking known as,Mageirocophobia,Food & Drink,What is the full name of the flavour enhancer MSG?,Monosodium glutamate -General,Who is the best-selling saxophonist,Kenny g,General,Where was the academy that plato founded in 387 bc,Athens,General,"What was a large cask with a lidded opening, used to hold day's supply of drinking water for a ship's crewmen",Scuttlebutt -General,N. African dish of cracked wheat steamed over broth,Couscous,Geography,What is the capital of Norway,Oslo,Food & Drink,A Tagine Is A Speciality Dish That Originated In Which Country ,Morocco  -Sports & Leisure,Which Sportsman's Autobiography Is Called 'My Side''? ,David Beckham ,General,U.S. captials Kentucky,Frankfort,General,What was the name of the skunk in Bambi,Flower -General,What was superhero Green Lantern vulnerable to,Anything Yellow,Science & Nature,How Do You Convert Centigrade To Fahrenheit ,Multiply By 9 Divide By Five Add 32 ,General,-isms: An economic system characterized by private ownership and competition.,Capitalism -General,What did Colonel Blood try to steal in 1671,British crown jewels,Mathematics,A line drawn from an angle of a triangle to the mid-point of the opposite side is a(n) _______.,Median,General,A large sea birdor greedy person,Gannet - History & Holidays,Which 60's Movie features The Line he's very clean ,A Hard Days Night ,General,Monology is the study of what,Stupidity,Music,What Is The Small 4 String Instrument Originally From Hawaii,The Ukulele -Food & Drink,"Which of the following brands of drink sold the most in the UK in the year 2000 - Ribena, Lucozade or Tango?* * ",Ribena ,General,What is the second of einstein's 1905 papers,Special theory of relativity,General,Who was the French sculptor of the Statue of Liberty,Frederic bartholdi -General,What is the phonetic alphabet word for letter P,Papa, Geography,What is the basic unit of currency for San Marino ?,Lira,Entertainment,"In the film 'Hackers', how old was 'zero_kool' when he was first arrested?",Eleven -General,"In 1948 A Personnel Officer At ICI Noted That An Applicant Was ""Headstrong, Obstinate & Dangerously Self Opinionated"" Which Potential Recruit Was Turned Down",Margaret Thatcher,General,Who was the first voice of mickey mouse,Walt disney,General,To His Friends He Is Known As “Eric Claudin” How Is He Better Known Throughout The World?,The Phantom Of The Opera -Sports & Leisure,Who Beat Arsenal In This Year To Become The UEFA Champions League Winner? ,FC Barcelona ,General,The constellations Canis Major and Canis Minor are said to represent the dogs of the Greek Hunter,Orion,Music,Who Had A Number One Hit In 1962 With the Song Telstar,The Tornadoes -General,Where in the world are most diamonds found,Australia,General,What spice comes from the curcuma plant,Turmeric,Music,Who Thanked Heaven For Little Girls In Gigi,Maurice Cevalier -General,What Soviet leader seized control from Khrushchev in 1964,Leonid Brezhnev 1984 till died 92,Music,"Name the Bee Gees ill fated young brother who charated with ""Shadow Dancing""?",Andy Gibb,Entertainment,The film 'The Wizard Of ______'?,Oz -Music,Who is better know as Vincent Damon Furnier?,Alice Cooper,Music,"Who plays the uncredited lead guitar on The Beatles Song ""While My Guitar Gently Weeps""?",Eric Clapton,Music,"Which American Metal Band Of The Late 1980's Featured The Singer ""Sebastian Bach""",Skid Row -General,Where do the White and Blue Niles join,Khartoum - in Sudan,General,Where would you find the phrase Annuit Coeptis,American Dollar Bill ,General,Name the Egyptian God of funerals,Anubis - History & Holidays,How Many Crusades Were There? ,Nine ,Geography,Which country has taken its name from a line of latitude? ,Ecuador ,Art & Literature,Gandalf's elven name.,Mithrandir -Science & Nature,Which Now Standard Fittings Were First Featured On A Car In 1916 ,Automatic Windscreen Wipers ,General,In Sport If You Were To Achieve A Bucket Of Nails What Sport Would You Be Playing,Darts,General,In 1949 what was introduced to cars for the first time,The Ignition key -General,What country declared itself first atheist state in 1967,Albania – banned religion,General,An Arab horse has less what than other horses,Bones - one vertebra less,Sports & Leisure,What type Of Creature Is Sonic In The Computer Game ,A Hedgehog  -General,"In mythology, who was the mother of Eros and Aeneas",Aphrodite,Music,Which Paul Nicholas album was named after a sitcom in which he starred?,Just Good Friends,General,In Minnesota it is illegal to tease what animal,Skunk -General,"What type of whisky is called ""old no 7""",Jack daniels,Music,Which Rolling Stone Married 16 Year Old Mandy Smith,Bill Wyman,General,What is the worlds third largest island,Borneo -General,Which city is the capital of the Austrian province of Tyrol,Innsbruck,General,The Frenchwoman Jeanne Poisson was better known by which name,Madame de pompadour,Music,Who had a hit in 1976 with “you to me are everything”?,The real thing -General,"What have woodpecker scalps, porpoise teeth and giraffe tails all been used as?",Money,Food & Drink,What do the letters VOSP on a brandy bottle stand for?,Very Special Old Pale,General,Grotesque carved spout usually projecting from the gutter of a building,Gargoyle -General,Who wasn't afraid to call James Joyce 'A greasy undergraduate',Virginia wolfe,Food & Drink,From which fish does Caviar come? ,Sturgeon ,General,What is the force that slows down or stops a moving thing,Friction - History & Holidays,What was Joseph's job? ,Carpenter ,General,"If, during a game of chess, you made a move ""en passant"", which piece would you be moving",A pawn,General,Vicky Pollard' is a character in which British TV comedy series?,Little Britain -General,What is the literal meaning of the Spanish word tapas (snacks),Cover or covers,General,By whom was julius caesar stabbed,Cassius,Music,In 1977 The Darts & Boney M Had Hits With Different Songs With The Same Title What Was The title,Daddy Cool -General,What does the painting The Battle of Gettysburg claim to be,Worlds largest,General,What river flows from Mount Hermon into the Dead Sea,Jordan via Sea of Galilee,General,"What is it that walks on four feet in the morning, two feet at noon, and three feet in the evening ?",Man -General,"In the movie ""The Goonies"" what brand of candybar did Chunk try to give to Sloth?",Baby Ruth,General,What is the more common name for blue corundum,Sapphire,General,Koniophobia is the fear of,Dust -General,"In Greek mythology, who did zeus place in the heavens as the constellation ursa major",Callisto,General,Who should have played Indiana Jones and dropped out,Tom Selleck,General,"What actor played woody allen's best friend in ""annie hall""",Tony roberts - History & Holidays,In Which Year Was The Battle Of Trafalgar Fought? ,1805 ,Sports & Leisure,How many points are awarded for a safety touch in football?,Two,General,What did charles jung invent,Fortune cookies -General,Which classical composer was nicknamed 'The Red Priest',Vivaldi,Science & Nature,This order of insects contains the most species.,Beetle,General,"Which author wrote ""If not actually disgruntled, he was far from gruntled""",P g wodehouse -General,"In the monty python parody 'search for the holy grail', what was used to kill the rabbit",Holy hand grenade of antioch,General,Why is rice grown in flooded paddy's,Drown weeds,General,What is the applied science to the study of society,Sociology -General,Port Louis is the capital of which island state in the Indian Ocean,Mauritius,General,What is ipsism another name for,Masturbation,General,"What country controls access to the North Sea from the rivers Schelde, Meuse & Rhine",Netherlands -General,France and which country contested first ever world cup match,Mexico,General,"In the cartoon series, what is the name of Bart Simpson's dog",Santa's little helper,General,What sea separate Naples and Algiers?,Meditteranean -General,What is the strongest land animal,Elephant,General,Alcoholic beverage produced by fermenting the juice of grapes,Wine,General,What is the main ore of aluminium,Bauxite -General,A green or yellow liqueur brandy,Chartreuse,General,In 1923 what new optional accessory was offered on cars,A Radio,Entertainment,What did Dagwood give up to marry Blondie?,A family inheritance -General,Which Italian won the 1998 Tour de France cycle race,Marco pantani,General,What did Atlanta pharmacist John Pemberton sell two-thirds of his interest in for 283 dollars and 29 cents in 1887,Coca cola,General,What is the seaport capital of Sardinia,Cagliari -General,A villanelle is a type of what,Poem,Entertainment,What Don Mclean song laments the day Buddy Holly died?,American Pie, Geography,What is the capital of the Dominican Republic?,Santo Domingo -General,Mans formal dress coat called tails is named after what bird,Swallow,General,In which Australian State is Kalgoorlie,Western australia,General,The original plan for Disneyland included a land called what,Lilliputland -General,Which French composer wrote 'The Sorcerer's Apprentice'?,Paul Dukas,Sports & Leisure,What type of racing has only two cars competing on the track at the same time? ,Drag Racing ,Music,"Which Band Released The Album ""Caught In The Act"" In 1984",Styx -General,Who was the first tennis player to achieve the grand slam,Donald Budge,Food & Drink,"Cocktails: Creme de Cacao, cream, and brandy make a(n) __________.",Brandy alexander,General,What is the currency of denmark,Krone -General,A Polyorchid has at least three what,Testicles,General,In Louisiana what personal act is illegal in public,Gargling,General,For which novel did A S Byatt win the Booker Prize in 1990,Possession -General,Who was La Purcelle of Voltair's poem,Joan of Arc,Science & Nature,What is hyperglycemia commonly known as ?,Diabetes,General,"Dominica, Mexico, Zambia, Kiribati, Fiji & Egypt all have what on their flags",Birds -General,What was the Queen Mother's maiden name?,Bowes Lyon,General,Capital cities: Papua New Guinea,Port moresby,General,Who wrote Gulliver’s Travels (both names),Jonathon Swift -General,What actress played Laura and Almonzo's niece on Little House on the Prairie?,Shannen Doherty,Geography,Into Where Does The Volga (Europes Longest River) Flow ,The Caspain Sea ,General,Nyse in Swedish Tusszents in Hungarian Kychat in Czeck what,Sneeze -General,In what Puccini opera does Scarpia appear,Tosca,General,What form of transport did Kirkpatrick Macmillan invent in 1839,Pedal bicycle,Art & Literature,A method of painting developed by Seurat and Signac in the 1880s. It used dabs of pure color that were intended to mix in the eyes of viewers rather than on the canvas. It is also called divisionism or neoimpressionism.,Pointillism -General,What does the word economy mean in original Greek,Home Management,Music,"Originally Known As The Dust Brothers, Which Unrelated Pair Topped The Charts In The 90's",The Chemical Brothers,General,What city boasts Leonardo's famed fresco of the Last Supper,Milan -General,What eventually killed Oliver Cromwell,Malaria,General,Every square inch of the human body has an average of 32 million ______,Bacteria,General,Which is Argentina's second most populous city,Cordoba -Science & Nature,What is the biggest disqualifying factor for prospective astronauts?,Eyesight,Music,"Which Legendary New York Punk Club Saw Appearances By The Ramones, Televsion & Blondie",CBGB's,General,What is the biggest disqualifying factor for prospective astronauts,Eyesight -Geography,What Is The Highest Peak In England And Wales ,Mount Snowdon ,General,The Nuer people come from which country,Sudan,Sports & Leisure,What Is The Name Of The Place Where Ice Hockey Players Are Sent For Breaking The Rules ,The Sin Bin  -Science & Nature,In which country was the match invented?,France,General,Which South American country has borders with only Colombia and Peru,Ecuador,Geography,In Which Country Is The Source Of The River Thames ,Gloucestershire  -General,What is the name of Princess Anne's second husband,Tim laurence,General,Who released 'pretty hate machine' in 1989,Nine inch nails,General,What are the names of the Simon brothers from Simon & Simon?,Rick & AJ -Music,Which member of Busted has left the group to join another band?,Charlie Simpson,General,In US Emergency rooms what toy is often found in rectums,Barbie – most common doll up ass,General,"Which liqueur gives the cocktail ""Tequila Sunrise"" its red glow",Grenadine -General,A haemodializar is a mechanical what,Kidney,General,What animal's milk does not curdle,Camel,General,What did Julia Ward Howe originate,Mothers day -General,In an authentic Chinese meal what is served last,Soup, History & Holidays,What was the first postage stamp ?,Penny Black,General,"Homo sapiens"" means:",Man of knowledge -Entertainment,Where does Gonzo from the Muppet Show come from?,Outer space,General,What was the Bikini originally called,The Atom,General,John Dunlop developed pneumatic tyres - what profession,Vet -General,"Irish-born English scientist, who was an early proponent of the scientific method and a founder of modern chemistry",Boyle,Music,Living On The Ceiling Was A Hit For Blancmange Or Lionel Richie,Blancmange,General,Steely Dan is a band but what was the original steely dan,Chrome dildo -General,Cosmetic brand gets it's name from Latin for as white as snow,Nivea, History & Holidays,In The Tradition of the song the 12 days of Christmas if you add up all the legs and take away all the beaks what number are we left with ,155 Confirmed by Lindsey ,General,What is the old term for a golfer's nine iron,Niblick -General,This software company produced hits such as 'Pagemaker' & 'Illustrator',Adobe,General,Branch of mathematics that deals with the relationships between the sides & angles of triangles & with the properties & applications of the trigonometric functions of angles,Trigonometry,General,How many pieces of bun are in a mcdonald's big mac,Three -Science & Nature,Which False Idol Was Worshipped By The Hebrews At The Foot Off Mount Sinai ,The Golden Calf ,General,Misogamy is a dislike or hatred of what,Marriage,Music,Name The Film In Which Spandau Ballet's Kemp Brothers Later Starred,The Krays -General,Indiana is known as ______,Hoosier state,General,The Phoenician symbol for mouth is now what letter of alphabet,P theirs was Pe,General,What is the longest golf course to stage the British Open,Carnoustie 7066 yards -General,Phallophobia is a fear of ______,Penis,Science & Nature,By what name is Lysergic acid diethylamide better known,Lsd,General,USA supreme court 1962 said who cant be imprisoned - illegal,Drug Addicts -General,Numbers Where's the famed Arch of Hadrian,Ahtens,Food & Drink,What Is Bisque ,A Rich Soup Usually Of Shellfish ,General,What singer did Elvis Presley say was the greatest in the world,Roy Orbison -General,Which French actor and crooner sings the theme tune to Disney's The Aristocats,Maurice chevalier,General,What Beano Character Had A Pet Crow Called Joe?,Roger The Dodger,General,If something is caseous what is it like,Cheese -Food & Drink,Which alcoholic beverage is advertised on TV by Tom the Dancing Cat? ,Bacardi Breezer ,Geography,Which Cambridge Bridge Took It's Name From An Architectural Masterpiece In Venice ,The Bridge Of Sighs (St Johns College) ,General,Spice made from the berry of the pimento plant,Allspice -General,As whom was Jan Ludvik Hoch better known,Robert maxwell,Science & Nature,What instrument measures blood pressure?,Sphygmomanometer,General,"A series of small, fast steps executed with the feet very close together.",Pas de bourrée -General,Whom did Joe Walcott defeat at age 37 to win the heavyweight title,Ezzard charles,Food & Drink,Which country produces the wine Vinho Verdi? ,Portugal ,General,What did physicist Lord Rutherford discover inside the nucleus of the atom,Protons -General,What colour does a chameleon turn when its angry,Black,General,In which county would you find Ars,Norway,Sports & Leisure,Which country won the World Cup of Soccer in 1982.,Italy -General,Who was the last reigning King of Egypt,Farouk,General,Albert Sauvy coined what term in the 1950s,The Third World,General,Which are the most used muscles in the body,Eye muscles -General,"By What Name Is ""Calcium Oxide"" More Commonly Known",Quicklime,General,What is the main source of vitamin C,Fruit,Music,Which Groups First Top Ten Hit Was Entitled “ Right Now ” And Released in 1999,Atomic Kitten -General,Ball is 38 millimetres in diameter weighs 2.5 grams what sport,Table Tennis,Music,Who Was Hal David's Famous Writing Partner?,Burt Bacharach,General,In 1899 the Eastman company in the USA produced first what,Kodak 1 - hand held roll film cam -General,What nationality was Fredrick Chopin,Polish,General,What is the fear of dreams known as,Oneirophobia,General,Which class of racing yacht has the same name as a Shakespeare play,Tempest -General,"Which dish consists of Steak, sprinkled with ground peppercorns, soaked in Brandy and set alight?",Steak Au Poivre,General,What is maryland's state song,Maryland my maryland,General,In Fresh Prince of Bel-Air what was the butlers name?,Gefforey -General,Line of hereditary rulers,Dynasty,General,"Who said ""Once you are dead you are made for life""",Jimmy Hendrix,General,The sliothar is a leather covered cork ball used in which sport,Hurling -General,Which famous building is housed at the former site of the Bankside Power Station?,Tate Modern Art Gallery,Music,"Which Singer Started As A Session Guitarist Working With The Likes Of Bobby Darin , Frank Sinatra, Dean Martin & The Beach Boys",Glen Campbell,Geography,The Salto Alto (Angel Falls) in ______________ is the highest waterfall known. It is more than twenty times higher than Niagara.,Venezuela -Science & Nature,Which Insect Transmits African Sleeping Sickness ,The Tsetse Fly ,Music,"The Silent Film ""MetroPolis"" Featured In The Video For Which Queen Hit?",Radio Ga Ga,General,Which two countries were involved in the 'Battle of the Thames',Britain & canada -Music,What Don't The Children Need In Pink Floyd's Another Brick In The Wall,An Education,Art & Literature,How many stories did enid blyton publish in 1959?,Fifty nine,General,What is the native form in which dna most commonly found,Double stranded helix -General,"In Gulliver's Travels, what is the name of the flying island inhabited by scientific theorists",Laputa,Sports & Leisure,4 Cities Have Hosted The Modern Day Summer Olympic Games Name Any 2 (PFE) ,"Los Angeles , London , Paris Or Athens ",Sports & Leisure,"Which famous sporting event first held in 1981, was won by Dick Beardsley? ",London Marathon  -Science & Nature," Bald eagles are not bald. The top of their head is covered with slicked_down white feathers; from a distance, they appear __________",Hairless,General,Often a bridesmaid never a bride advertised what,Listerine,Geography,The Monegasque _ natives of ________________ _ constitute only about 16 percent of the nation's population.,Monoco -General,"Which Boyband That Split Up In 2000 Released All Of Their Songs In The USA Under The Name ""Silk""",Another Level,General,Pliny the philosopher believed dead souls went into what,Beans,General,What event in the Bible occurred at Bethany,Raising of Lazarus -General,What is the most popular crop in U.S. home vegetable gardens,Tomatoes,General,U.S. Captials - New Mexico,Santa Fe,General,Type of precious stone has a name literally means blue rock,Lapis Lazuli -General,What is the attribution of human attributes to a deity,Anthropomorphism,General,"What Olympic aquatic event includes such positions as the flamingo, crane & fishtail",Synchronized swimming,General,Which Screen Legend Died On Christmas Day In 1977 In Switzerland,Charlie Chaplin -General,What is Barbie`s full name?,Barbara Millicent Roberts,General,The study of man and culture is known as __________.,Anthropology,Geography,In which country is loch ness ,Scotland  -Toys & Games,"In Monopoly, What is the cost to buy Vermont Avenue",100,Food & Drink,What 'B' Is A Mexican Dish That Translates Into English As Little Donkey ,Burrito ,General,"What 1980s TV series written by Alan Bleasdale dramatised the life of Percy Toplis, a First World War deserter?",The Monocled Mutineer -General,The oldest written plan of government in effect is in what country,United States of America,General,Howard Hughs used to store what in large metal containers,His Urine,General,Name Elvis Presley's twin brother,Aaron -Music,Whose Concerts Formed The Basis Of The Film Rattle & Hum,U2,General,Children which nhl franchise holds the record for the longest unbeaten streak,Philadelphia flyers,General,Relating to food what are 'quenelles' type of,Dumpling -General,Christian sacrement in which bread and wine are consecrated and consummed,Eucharist,Sports & Leisure,Who lost Wimbledon singles finals to Boris Becker and Pat Cash? ,Ivan Lendl ,Music,Which Actor Shares His Name With A 1984 Hit By Madness,Michael Caine -General,Who was the Roman equivalent of the Greek God Zeus,Jupiter,General,What was the name of Garfield's vet?,Liz,General,"While USSR sent Laika the dog into space, the USA sent Laska and Benjy, which were?",Mice - History & Holidays,"Who Described Russia As (A Riddle Wrapped In A Mystery, Inside An Enigma)? ",Winston Churchill ,General,"Which Czech village seas destroyed by the Germans in retaliation, following the assassination of Reinhard Heydrich in World War Two",Lidice,General,The Hart memorial trophy is awarded in which professional sport,Ice Hockey -General,What color is the car that Starsky & Hutch drive?,Red with a white swoop,Food & Drink,Which vegetable comes in `globe' and `Jerusalem' varieties? ,Artichokes ,Music,"Which Female Icon Brought Out A Book Entitled ""Sex""",Madonna -General,In which European country would you find the town of Eupen,Belgium,Geography,What country consists mainly of the jutland peninsula ,Denmark ,Geography,What Word Represents Q In The Phonetic Alphabet? ,Quebec  -General,What is the flower that stands for: declaration of love,Red tulip,General,Basmati is a type of what?,Rice,General,"What is made by heating carbon plasma to 20,000 degrees and condensing it under ultra high pressure",Diamonds -Sports & Leisure,Which British soccer club was managed by Christian Gross? ,Spurs ,General,What sport featured in the 1980 film Breaking Away,Cycling,General,George V1 Mozart Al Jolson Casanova - which organisation,Freemasons -General,Cinnabar is an ore of which metal,Mercury,Music,What Colour Was Prince's Little Corvette,Red,General,Why is the city La Paz in Bolivia safe from fire,To high - Not enough air to burn -General,Why two car thieves caught trying to sell stolen car in 1976,Tried to sell to owner,General,What was Betty Rubble's Maiden name,Betty Jean Mcbricker,Music,Which Comedy Duo Performed The Stonk In 1991,Hale & Pace -Sports & Leisure,Why do some English Football Clubs have triangular corner flags rather than square? ,Won the F.A Cup ,General,What is the little lump of flesh just forward of your ear canal right next to your temple,Tragus,People & Places,Who Was At The Centre Of Englands Match Fixing Scandal ,Hansie Cronje  -People & Places,In 1996 who did The Spice Girls say was their Girl Power role model? ,Margaret Thatcher ,General,In which city was Galileo born,Pisa,Music,"David Coverdale Was A Member Of ""Def Leppard"" Or ""Whitesnake""",Whitesnake -General,Ronald Wycherley became more famous than,Billy Fury,General,In what did someone squish her hands to make the sound of e.t walking,Jelly,General,These license plates are manufactured by prisoners in the state prison in Concord. What is the slogan on them,Live free or die -General,Who sang 'think' in the original 'blues brothers' film,Aretha franklin,General,"My dad was a big kid,a big RICH KID. What show was I on?",Silver Spoons,General,Who wrote the opera 'rigoletto',Guiseppe verdi -General,What Was The Very First Andrew Lloyd Webber Musical To Be Filmed,Jesus Christ Superstar,General,What common word in Morse is __ ___ __,MOM,Geography,Which city is on the east side of San Francisco Bay,Oakland -Science & Nature,What is the symbol for copper?,Cu,Geography,What American city is also known as Beantown?,Boston,General,Farok Pluto Bulsara became more famous as who,Freddie Mercury -General,Name the biggest hit for the Animals in 1964,House of the rising sun,General,Which metal comes in a form known as spelter?,Zinc,General,What is the fastest stroke in swimming,Freestyle -General,Where would you find the thickest layer of skin on the human body,Feet,General,Humphrey Bogart received his only Oscar for which film,The african queen,General,Riveting is a method of joining pieces of what,Metal -Music,In Which Country Does The Annual T In The Park Concert Take Place,Scotland, History & Holidays,Who said 'eureka'?,Archimedes,Music,Name The Only Climax Blues Band Hit Whose Title Seems A Fitting Epitaph To Their Following Career,Couldn't Get It Right -General,Who was the greek god of dreams,Morpheus,General,Miss Lemon is what detectives confidential secretary,Hercule Poirot,General,What m°a°s°h unit does Hawkeye Pierce operate in,4077th -General, A government in which power is restricted to a few is a(n) __________.,Oligarchy,General,What is likely to have a watermark,Paper,General,Who invented the dumb waiter,Thomas Jefferson -General,Hydrophobia is the fear of,Water,Food & Drink,What Is Sold At Billingsgate Market In London? ,Fish ,General,What does awol stand for,Absent without leave - History & Holidays,"If a girl puts the letters of the alphabet face down in water, how will she know who she will marry ",His initials will be face up next day ,General,In Grease Two what does stephanie want in a boyfriend?,A cool rider,General,What name's given to a number that exactly divides into another,Factor or Divisor -General,What ray bradbury novel is named for temperature at which paper catches fire,Fahrenheit 451,Music,"When Radio 2 compiled A List Of Songs Of The 20th Century, Which 1998 Movie Theme Was The Highest Placed Song Of The 1990's",Celine Dion / My Heart Will Go On,General,What color is the last and most valuable ball a snooker player must pocket,Black -General,What fraternity do the Lewis and Gilbert join in Revenge of the Nerds?,Lambda Lambda Lambda,General,Actor ______ Hackman,Gene,General,Who made the first commercial boeing 747 flight from new york to london,Pan -Music,"Which Former Member Of Genesis Had A Hit With ""One More Night""",Phil Collins,Sports & Leisure,In Which Year Was Shergar Kidnapped ,1983 ,General,"Which Long Running TV Show Began With a Pilot Episode Aptly Named ""Killer"" In 1983",Taggart - History & Holidays,London's Trafalgar Square Christmas tree is traditionally given by which country? ,Norway ,General,What was the first ABC TV series rated No 1 for full season,Marcus Welby M.D.,General,From the Greek meaning apple what do we call this fruit,Melon -Food & Drink, What type of drink is Perrier?,Mineral water,General,The democrats nominate Massachusetts governor _____ for president,Michael dukakis,General,What was Sherpa Tensing surname,Norgay -General,The only actor to receive France's Commander of Arts and Letters Award,Jerry,General,Sport resembling hang-gliding using a parachute like canopy attached to the body by a harness,Paragliding,General,"What is known as the "" Palace of the Peak""",Chatsworth house -General,What famous film maker was first to use the close up,David Wark Griffith Birth of a Nation,General,Which body of water seperates France from Great Britain,English channel,General,In which sport would you find turkeys and spares,Ten pin bowling -General,"Who ordered the Code Red in ""A Few Good Men""?",Colonel Nathan P. Jessup,General,What is the largest river in North America,Mississippi,General,What is the atomic weight of uranium,92 -General,Andrew John Woodhouse in fiction was who - Ira Levin novel,Rosemary's Baby,General,We've only just begun was background music advertising what,Bank - R Carpenter,General,30% of people quit this job in USA each year - what job,School Bus Driver -Music,Number of years that Beatlemania toured the United States,5,General,"What was the name of the woman who helped run the school for the blind on ""Little House on the Prarie?"" (Besides Mary Ingalls)",Hester Sue,Art & Literature,What word is Isaac Asimov famous for coining ?,Robotics -Science & Nature,What Is One Inch In Millimeteres ,25.4 mm ,General,"What part of you is probably type a, b, ab or o",Blood,General,What is a group of jellyfish,Smack -General,"Which Musical Act Went By The Fomer Name Of ""Two Tons Of Fun""",The Weathergirls,Science & Nature,This is the reading system used by the blind.,The braille system,General,Highly poisonous substance used in the extraction of gold and silver,Cyanide -General,Which country is known as the Hashemite Kingdom,Jordan,General,Grand prix what measures walking distance,Pedometer,General,"Which city is, in terms of population, the second largest in Mexico",Guadalajara -General,How many engines are on a b52 bomber,Eight,General,The Afghan Taliban use which colour of flag,White,General,Old Moore's Almanac' was founded in what year,1699 -Science & Nature,What is a male goose called?,Gander,Science & Nature, The color of the blood of an __________ is bluish_green.,Octopus,General,Anthropologists say what is the worlds oldest profession,Witch Doctor -General,Who plays jennifer lindley on 'dawson's creek',Michelle williams,General,In some parts of China what is the Long Nosed General,Pigs - unlucky to mention pig,Music,What Was The Name Of Bennie Hils Fastest Milkman In The West,Ernie - History & Holidays,What is New Year's Eve called in Scotland? ,Hogmanay ,Food & Drink,What is the name of the traditional english dish made from pork trimmings and pig's head? ,Brawn ,General,What does a month beginning with a sunday always have,Friday the 13th -Science & Nature,Of what do earthworms have five?,Hearts,General,Misty for me what statue did dobie gillis mimic while contemplating life and love,Rodin's,General,Nobody's perfect is the last line in which classic comedy film,Some Like it Hot -General,In the game of Bridge what are the first six tricks won called,The Book,General,Which animal has breeds called Briards and Griffons,Dog,Art & Literature,"Who wrote three books under the title ""Das Kapital"" ?",Karl Marx - History & Holidays,"Which drug, later found to have devastating side effects, was launched in 1958 to help pregnant women overcome morning sickness ",Thalidomide ,Entertainment,What night club did Ricky work at on 'I Love Lucy'?,The Tropicana,General,Nelophobia is the fear of,Glass -General,Which is the largest of Neptune's moons,Triton,General,Which chemical was introduced to US as a cough suppressant,Heroin,General,Ragdoll Korat Sphinx Tiffany - types of what,Cat Breeds -General,What was the codename of the Allied invasion of North Africa in 1942,Operation torch,General,What is divination by means of lines and figures drawn in the earth,Geomancy, History & Holidays,Old superstition Wearing socks inside out protection from what ,Witches  -Geography,What is the capital of Guinea_Bissau,Bissau,General,How many faces does a dodecahedron have?,12,Entertainment,Who was the villain in 'Star Wars'?,Darth Vader -General,What is a brickfielder,Hot SE Aussie wind,General,What is used to thicken gazpacho,Breadcrumbs,General,"Otto Titzling Is Often ""Wrongfully"" Credited As Being The Pioneer & Inventer Of Which Item Of Clothing",The Bra -General,Which company operates the Central Selling Organisation,DeBeers - diamonds,General,What is MacGyver's first name?,Stace,General,What is the flower that stands for: prudence,Mountain iash -General,"Who took ""everybody loves somebody"" to #1",Dean martin,General,The First Wembley Fa Cup Final To Need A Replay Occured In Which Year,1970,General,What pitcher was nicknamed oil can,Dennis boyd -General,"Which opera singer was known as ""La Stupenda""",Joan sutherland,General,Kate Mulgrew plays who in a Gene Roddenbery based series,Capt Katherine Janeway Voyager,General,What is the french phrase meaning 'on the contrary',Au contraire -General,What expression is used to describe a child who closely resembles a parent,Chip off the old block,General,With what is spangy played,Marbles,General,Which collection of stories was told by Scheherazade,The thousand and one nights -General,What was invented 1970 US Dr Buddy Lapidus marketed 1975,Odour Eaters,General,The Goldfish Is Native To Which Country,China,Sports & Leisure,What football team was formerly known as the Frankford Yellow Jackets?,Philadelphia Eagles -General,Who dies in every episode of the cartoon series South Park,Kenny,General,"A multistoried building, typically Asian, forming a tower with upward curving roofs over the individual stories.",Pagoda,General,Who was nicknamed The Great Communicator,Ronald Regan -General,How big a can of soda pop contains the equivalent of 9 teaspoons of sugar,Twelve ounce,General,What is the name for a special vibrator worn with straps,A Butterfly,General,What is the worlds largest rodent,Capybara -Music,What Did Bob Marley Have Surgically Removed In 1977,A Cancerous Toe,General,"In ""peanuts"", what is the surname of lucy and linus",Van pelt,General,What is the fifth largest country in the world,Brazil -General,What town has the highest post office in the US,Climax Colorado,General,With which contemporary issue is U.S. writer James Baldwin associated,Civil rights,General,Crazy Horse and Custer shared what childhood name,Curly -General,What is the fear of light flashes known as,Selaphobia,General,Which UK city is the home of the Halle Orchestra,Manchester,General,"A spout placed on the roof gutter of a Gothic building to carry away rainwater, usually carved in the shapes of fanciful animals and grotesque beasts.",Gargoyle -General,What is the common name for solid carbon dioxide,Dry ice,General,The St. Louis gateway arch had a projected death toll while it was being built. How many people died,0,Science & Nature,Which Metal Has the Chemical Symbol SN? ,Tin  -General,"What links stags tails, pickled worms, gallstones, tomatoes",Once thought to be Aphrodisiacs,General,What kind of seeds can cause drug tests to trigger false positives for opium,Poppy seeds,General,What is the state bird of 7 u.s states,Cardinal -General,"In darts, what is a score of 26",Bed and breakfast,General,Names from Jobs - what in the middle ages did a walker do,Clean Cloth,General,What is the most commonly used oil in Chinese cookery,Groundnut or Peanut -General,John Richie became famous under what name,Sid Vicious,General,What is a husky most likely to be pulling,Sled, Geography,What is the capital of Nauru ?,The district of Yaren -Music,Which movie is synonymous with the Adagietto from Mahler's fifth symphony?,Death In Venice,Music,Which singer had the first names Harry Lillis?,Bing Crosby,General,Who created the character Walter Mitty,James Thurber -General,What is the lead in pencils made from ?,Graphite,General,Who was the first chancellor of germany after WW II,Konrad adenauer,General,What is a group of baboons,Troop -General,In what Elvis film did he play a double role,Kissing Cousins,General,What year saw sugar jump from nine cents to fifty-eight cents a pound,1973,Entertainment,"Barbara Streisand was the female lead in ""Hello, Dolly"". Who was the male lead?",Walter Matthau -General,Who was the author of The Moonstone,Wilkie collins,General,What organization was the forerunner to the cia,Office of strategic services,General,What is connected to the throat by the eustachian tube,Ear -General,Julius Sturgis in 1861 built the first US factory making what,Pretzels,General,In what European country have most land battles been fought,Belgium, History & Holidays,"The Nordic countries (Denmark, Sweden, Norway notably) tend to celebrate Christmas chiefly on which date? ",24th December  - History & Holidays,What Are Monsters With Only One Eye Called ,Cyclops ,General,Who wrote the childrens work 'Peter and the Wolf',Sergei prokofiev,General,__________ comics were nearly banned in Finland because he doesn't wear pants. ,Donald duck -General,Who played 'Hawkeye' in Robert Altman's classic M.A.S.H,Donald sutherland,General,Radiation Military operations above the surface of the earth,Air warfare,Food & Drink,For What Would You Use A Kilner Jar ,Preserving Fruit/Vegetables  -Entertainment,"Which character sang, ""When you wish upon a star.."" in Disney's ""Pinocchio""?",Jiminy Cricket,Music,Who Else Features On Michael Jacksons 1983 Greatest Hits Album,The Jackson Five,General,Which u.s president said 'the buck stops here',Harry truman -General,Shakespeare character in The Tempest is the son of Sycorax,Caliban,General,Which game begins when the referee shouts draw,Lacrosse,General,Who made his name in 'i dream of jeannie',Larry hagman - Geography,In which city is the Wailing Wall?,Jerusalem,General,"What does the slang term ""all day & night"" mean to a prison inmate",A life sentence life sentence,General,What is Burgoo,Meat stew -General,Telephonophobia is a fear of ______,Telephones, History & Holidays,Who Released The 70's Album Entitled Fun House ,The Stooges ,General,William Buroughs coined what phrase used by Steppenwolf 1968,Heavy Metal - Born to be Wild -General,Who advocated the planting peanuts and sweet potatoes to replace cotton and tobacco (i.e. crop rotation),George Washington Carver,General,What caused the gremlins in the movie Gremlin to become evil?,Eating after midnight,Sports & Leisure,What Colour Shirts Were England Wearing When They Won The World Cup In 1966 ,Red  -General,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 Cactus,General,Proverbially a man is as old as he feels a woman as old as she?,Looks,General,In England what is the most popular boys name of the 90s,Daniel -Food & Drink,From Where Does Spaghetti Bolognese ,Bologna ,General,"If yoU.S.uffered from ornithophobia, what would be your greatest fear",Birds,General,What was the name of Mary Pickford's and Douglas Fairbanks mansion,Pickfair -Science & Nature,What Is The Male Bee whose Sole Function Is To Mate With The Queen? ,The Drone ,Music,"Which Duo Had A Hit With The Song ""Islands In The Stream""",Kenny Rogers & Dolly Parton,General,"The word rodent comes from the italian 'rodere', which means",Gnaw -General,"Who did Chief Sitting Bull call ""Little sure shot""",Annie oakley,General,"If you heard the words ""Hey You Guys!"" what TV program was about to begin?",The Electric Company,Food & Drink,Foie Gras Comes From The Liver Of Which Animal ,Goose  -General,What is the longest running race at the olympic games,Marathon,General,"In Roman mythology, who was the wife of Jupiter",Juno,General,Marzipan comes from Marci Panis literally meaning what,Marks bread St Marks day 25 April -People & Places,Who was the first member of the Royal Family to graduate from University? ,Prince Charles ,General,Saponification is the process that makes what common product,Soap,General,A 'featherie' was an early form of' which piece of sports equipment,Golf ball -People & Places,Name Tthe Australian Actor Who Advertised Fosters Lager On Tv ,Paul Hogan ,Food & Drink,What type of pastry is used for profiteroles? ,Choux ,General,In which Western film did the character Will Munny appear,Unforgiven -Science & Nature, 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,Science & Nature,A flat-bottomed conical laboratory flask with a narrow neck is called a(n) __________.,Erlenmeyer flask,Geography,What is the name of the extinct volcano that rises above Edinburgh? ,Arthur's Seat  -General,Name Australia's highest mountain,Mount Kosciusko,Science & Nature,What word is used for a female fox,Vixen,Science & Nature,What Is The Largest Plant Without A Trunk? ,The Bananana  -General,What sort of food is a 'rollmop',Fish,General,1804 J M Jacquard invented first programmable device - what,Loom (programmed punch cards),General,What soft drink was developed as a hangover remedy,Pepsi Cola -General,Which kind of flower has the most species,Orchid,General,"If an animal has gills, what is it",Fish,General,What are the only two london boroughs that start with the letter 'e',Ealing -General,Why Do We Have Eggs At Easter ,They are a symbol of rebirth ,Sports & Leisure,"What sport do the following terms belong to - ""Touches & Lunges""?",Fencing,Entertainment,Who sang 'I'm A Believer'?,Monkees -Religion & Mythology,"In theology, the study of final things such as death, judgement and the end of the world is called:",Eschatology,General,"To within 3 mph, at what speed in m.p.h. does a wind become a hurricane",73,Music,Who Was Declared Dead On New Years Day 1953 At The Age Of 29?,Hank Williams -Food & Drink,Which vegetable did President George Bush senior declare publicly that he did not like? ,Broccoli ,General,Barak O Bama Became The First Black USA President In 2008 But In Which US State Was He Born,Hawaii,General,"Edgar allan poe introduced mystery fiction's first fictional detective, auguste c. dupin, in what 1841 story",The murders in the rue morgue -Entertainment,Name the apartments the Jetson's live in.,The skypad apartments,Science & Nature, Monkeys will not eat red meat or __________,Butter,Food & Drink,From what animal do we get venison?,Deer -Sports & Leisure,In Englands 2002 World Cup Squad Who Was The Heaviest Player? ,David Seaman ,Sports & Leisure,Which Cricketer Is Nicknamed Beefy And Captained England In 1980 & 1981? ,Ian Botham ,Music,Who Were The First Scottish Group To Have 3 No.1 Hits,Wet Wet Wet -General,"What does ""mit""stand for",Massachusetts institute of technology, History & Holidays,Who was Canada's first Prime Minister,John A. Macdonald,General,George Washington Thomas Jefferson Sam Adams all did what,Brewed own beer -General,In 1902 What did Mary Anderson invent,Windscreen Wipers,Sports & Leisure,With which sport is Muhammad Ali associated ?,Boxing,General,Name Roman soldier who is supposed to have stabbed Jesus,Longinius -General,"Monte Corno, at 9554 feet, is the highest point in which Italian mountain range",Apennines,General,What would you do with or what is a millers thumb,Eat it - type of fish,General,What type of shoes does the Pope usually wear,Moccasin -General,You dot your i - what is the dot called,Tittle,General,Topolino in Italy is who here,Mickey Mouse,General,In golf what do the Americans call an albatross,Double Eagle -General,In which musical did Barbra Streisand disguise herself as a man,Yentl,General,What was the first year that women could vote in norway,1913,General,Diamonds which band covered nilsson's 'one' and brought it to the top ten in 1969,Three dog night -General,What is the length of a bombardon,16 feet, Geography,What is the basic unit of currency for Comoros ?,Franc,General,Which Latin phrase translates into English as 'peace be with you',Pax vobiscum -Music,Slam Dunk (Da Funk) Was The First UK Hit For Which Boy Band,Five,General,What does a psephologist study,Voting - Elections, History & Holidays,U.S. President: Calvin _________.,Coolidge -Science & Nature,What is the meaning of the name of the constellation Ophiuchus ?,Serpent Bearer,General,What company invented abs brakes for cars,Bosch,Science & Nature,"Pulp, crown, and root are parts of a(n) ________.",Tooth - History & Holidays,What was the name of Eddie Murphy's character in Beverly Hills Cop? ,Axel Foley ,General,Until her recent death who held the record as the most prolific living author,Barbra cartland,General,Which Aerosmith song was re-made by Run D.M.C.?,Walk this way - Geography,Columbus is the capital of ______?,Ohio,Sports & Leisure,What Is A Cricket Umpire Signaling When He Raises Both Arms Aloft? ,A Six ,General,In Huston Texas they do it most 4.6 times per week - what,Eat Out -General,What is a group of this animal called: Hog,Drift parcel,Science & Nature,Which Is The Longest Railway Line In The World ,Trans Siberian Railway ,Sports & Leisure,Hockey: The Boston ___________.,Bruins -General,"Whose motto is "" Nation shall speak peace unto Nation """,BBC,Music,Which Former Model was A Smooth Operator,Sade,General,Thomas Gradgrind and Sissy Jupe appear in which of Charles Dickens' novels,Hard times -General,"What does the acronym ""ram"" stand for",Random access memory,Sports & Leisure,How Many Points Are Awarded For A Touch Down In American Football? ,Six ,General,What did Hercules use to clean the Augean stables,A river -General,The average American consumes 9lbs of what every year,Food Additives,General,Who collects banknotes,Notaphile,General,What part of the body does a chiropodist treat,Feet -General,Dalmatian dogs are born which colour or colours,White - spots come later,General,"Closely related to pascal, niklaus wirth also played a part in what computer language's creation",Modula,General,Whose first box office film was called Risky Business,Tom Cruise -General,Who directed the 1974 film Chinatown starring Jack Nicholson,Roman polanski, History & Holidays,Who Was President Of America At The Outbreak Of World War II? ,Franklin D Roosevelt ,General,Francis Galton first classified what,Fingerprints -General,What is the nickname for Pennsylvania,Keystone state,Art & Literature,Where Is The Worlds Largest Art Gallery ,Paris (Lourve) ,Music,Name One Of The 3 Labels The Sex Pistols Were On,"A&M, Emi, Virgin" -General,Dr C W Long was the first to use what (anaesthetic) in 1842,Ether,General,Who was immediately preceded by Breshnev and Andropov,Chernenko,General,What is the Capital of: Maldives,Male -Sports & Leisure,The Pittsburgh Steelers Won Which Major Sporting Event In 2006 ,The Superbowl ,General,"""Don't You Feel Like Cryin', Don't You Feel Like Cryin'"" what is the song name",Cry to me,Music,"Who Wrote And Had A Hit With ""Love Is All Around"" In 1967",Reg Presley Of The Troggs -Music,What Is The Connection Between Johnny Logan & Sean Sherrard,They Are The Samer Person,General,Name Helen of Troys husband,Menelaus,General,What beer is represented by a goat,Bocks Beer -General,What was Nancy Davis Reagan's birth name?,Anne Frances Robbins,General,Who wrote Heart of Darkness,Joseph Conrad,Science & Nature,Where Do Hydrophytic Plants Grow ,In Or Around Water  -Science & Nature,"A common sight in most high streets, what was invented in 1967 by Englishman John Shepherd- Barron? ",The Cash Dispenser ,General,What is the central administrative body of the catholic church?,Curia,General,"In 'romeo and juliet', who says 'make the bridal bed in that dim monument where tybalt lies",Juliet -General,What season is it in Australia when it is summer in England,Winter,General,Which metal is the best conductor of electricity,Silver, Geography,What is the basic unit of currency for France ?,Franc -General,What new invention was shown to Queen Victoria 14 Jan 1878,The telephone,General,Who wrote The Cruel Sea,Nicholas monsarrat,General,How long is a standard Olympic swimming pool,Fifty metres -General,If you were performing Christies or edging what are you doing,Skiing,People & Places,What Was Sir Roger Hollis The Head Of ,MI5 ,General,The average bank teller loses about how many dollars every year,250 -Music,What Does ELO Actually Stand For,Electric Light Orchestra,Technology & Video Games,How many gears do you have in 'Pole Position'? ,2,Science & Nature,Which Is The Largest Species Of Ape? ,Gorilla  -General,This cluster of stars is also known as the seven sisters,The pleiades,Art & Literature,"Who wrote ""The Wind in the Willows"" ?",Kenneth Grahame,General,Who was king arthur's foster-father,Ector -General,Which musical featured the song 'If I ruled the world',Pickwick,Geography,"The ___________ is the world's oldest desert, and the only desert inhabited by elephant, rhino, giraffe, and lion.",Namib,General,In MacDonald's what is served in a blue wrapper,Filet-O-Fish -General,Who 'imagined' a better world,John lennon,General,In Guernee Illinois women over 200lb are banned from what,Riding Horses wearing shorts,General,The penny black - worlds first stamp - what was second,Two penny Blue -Food & Drink,What Is The Stimulant Present In Tea & Coffee ,Caffeine ,General,Abraham Zapruder made the most scrutinised film all time what,Kennedy Assassination,General,In Hindu mythology who is the mother goddess,Kali -Sports & Leisure,How Many Times Did Michael Schumaker Win The World Formula One Drivers Championships? ,7 ,General,"In Mathematics, who devised a triangle to show the probability of various results occurring when any number of coins are tossed",Blaise pascal,General,Anhedonia is the inability to feel what,Pleasure -General,What does a phrenologist read,Skulls,General,Why did Louis Washkansky achieve world wide fame in 1967,First human heart transplant,General,On what common item would you find a worm,Corkscrew it’s the spiral part -General,Live Aid Took Place On The 13th July 1985 But Who Were The Very First Act To Take To The Stage,Staus Quo,Music,Who did the New Yardbirds become?,Led Zeppelin, Geography,What is the basic unit of currency for Bulgaria ?,Lev -Mathematics,Name the number system which uses only the symbols 1 and 0.,The binary system, Geography,What is the capital of United States ?,Washington,General,Sunrise Sunset came from which Broadway musical show,Fiddler on the Roof -General,What shape is a saggitated leaf,Arrow shaped What is the Oscar statuette holding Sword,General,Where did the bayonet originate,"Bayonne, france",General,White Fungus is the best selling canned what in China,Soup -General,Rock Groups: Tom Petty and the _____,Heartbreakers,General,Relating to food a Charentais is a variety of what,Melon,Sports & Leisure,What Is The Bed Of A snooker Table Made From ,Slate  -General,Where is the largest aquarium in the u.s,Chattanooga,General,What is the most rural state in the USA?,North Dakota,General,Rumpy and Rumpy Riser are both types of what creature?,Manx Cat -General,In which novel would Big Brother be watching you,1984,General,At Woodstock 1969 5550 what happened,Births,General,"Who was the father of Odin, Vile & Ve",Bor -General,Which eighties sitcom featured Tom Hanks in drag on a regular basis?,Bosom Buddies,General,In what is the Shannon trophy competed for,World Chess Trophy,Science & Nature,What is the common name for the larynx?,Voice box -General,Who wrote the opera' The Turn of the Screw',Benjamin britten,General,Who led the mongols,Genghis khan,General,"In Greek mythology, who was the father of Electra",Oceanus - Geography,Bismarck is the capital of ______?,North Dakota,General,Who wrote Pride and Prejudice,Jane austin, History & Holidays,What Nationality Was Hannibal? ,Carthaginian  -General,What make of car was driven by Nurse Gladys Emmanuel in the TV sitcom 'Open All Hours'?,Morris Minor,Technology & Video Games,What is the name of the video game inspired by the movie Alien? ,Xenophobe,Sports & Leisure,Who was the first player to score 100 goals in the Premiership? ,Alan Shearer  -General,Which singing King died in 1965,Nat king cole,Sports & Leisure,Name The 3 Female Characters In The Game Cluedo ,"Mrs White, Miss Scarlet, Mrs Peacock ",General,Singer Sarah Brightman was the second wife of which composer,Andrew lloyd webber -Music,Which British opera festival was started in 1934?,Glyndebourne,Sports & Leisure,Which darts player became the first in his sport to receive an MBE in 1989? ,Eric Bristow ,General,In sporting terms loose on left Tight on the right who is in centre,Hooker in Rugby -General,Mentu Egyptian Tyr Norse Gods of what,War,General,Clark Gable had what job before acting,Telephone Repairman,General,"Transport system in which trains glide above a track, supported by magnetic repulsion",Maglev -General,This term for those who oppose technological progress stems from 19th century working men who thought machinery would cause unemployment and societal degradation.,Luddites,General,Amanda by the Sea was a US version of what UK comedy show,Faulty Towers,General,Who is the sinister party man who apparently befriends Winston Smith in Orwell's 1984,O'brien -General,Where did gladiators fight professionally,Roman arenas,General,"Elementary in the house of lords, where does the lord chancellor sit",Woolsack, Geography,In which continent would you find the Yenisey river ?,Asia -General,In which film did orson welles play 'harry lime',The third man,Music,"Who Recorded The Albums ""The Blue Mask"", & ""Magic & loss""",Lou Reed,Sports & Leisure,"Which Striker Scored The 10,000 th Goal in the English Premier league for Tottenham Against Fulham in 2001 ",Les Ferdinand  -Sports & Leisure,With what did cricketer Mansoor Ali Khan Pataudi frequently play with in his hands?,Glass eye,General,Which Breed Of Dog Has Won Crufts The Most Number Of Times?,Cocker Spaniel,General,What school did Harry Potter goto,Hogwarts School of Witchcraft and Wizardry -General,From where is the music for the 'star spangled banner',Anacreon in heaven,General,Who wrote the novel SHE (both names),Rider Haggard,General,A Illinois law prohibit men from doing what in public,Having an erection -General,"Who WasThe First Male To Be Given The The Title Of ""Man Of The Year"" On Time Magazine",Charles Liindberg,General,What does 'yahoo' mean,Yet another hierarchical officious oracle,Music,Do I Do Was A Hit In 1982 For Whom,Stevie Wonder -Science & Nature, The __________ of a really famished camel may flop over and hang down the side of the body as the fat is used up.,Hump,General,On which island is Mount Suribachi,Iwo jima,General,"Who Did James Callaghan One Describe As ""The Sexiest Woman On TV""",Pat Phoenix -General,"Flattened, oblong organ that removes disease-producing organisms & worn-out red blood cells from the bloodstream",Spleen,General,"On maps, what is the 'you are here' arrow",Ideo locator,General,Which islands lie to the east of Kenya in the Indian Ocean,The seychelles - Geography,What is the capital of Michigan?,Lansing,General,Whose novels include 'The Ice-Cream Wars' and 'Brazzaville Beach',William boyd,Music,Which Queen Album Cover Is Silver With A Picture Of The Band In Leather Jackets,The Game -General,For what is tea from willow bark good for relieving,Pain,General,Which element has the symbol FE,Iron,General,"Traditional French blend ""fines herbes"" parsley chives chervil ?",Tarragon -General,In The Simpsons name the cat,Snowball,Art & Literature,Which Decorative Style Was popular In The 1920's & 1930's ,Art Deco ,General,Who began his professional career with black sabbath,Ozzy osbourne -General,"Germany's WW I allies were Austria-Hungary, Bulgaria, and ________",Turkey,Music,"Which Southampton Star Had UK No.1 In 2000 With ""Fill Me In"" And ""7 Days""",Craig David,Sports & Leisure,In Which British Newpaper Did The First Crossword Appear ,The Sunday Express  -General,"In 'dawson's creek', who does michelle williams play",Jennifer lindley,General,Which French underwater explorer invented the aqualung,Jacques cousteau,General,Clark Gable used to do it 4 or more times each day - do what,Shower - History & Holidays,What did Pennsylvania legalise before any other colony?,Witchcraft,Science & Nature," 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,General,Who wrote the 'father brown' crime stories,G k chesterton -General,Who led the raid on harper's ferry in 1859,John brown,Music,Limahl Had A Hit With What Kind Of Story,A Never Ending Story,General,What two things are used to stuff a welshman,Cheese Leek pastie - History & Holidays,Who did the singer Lulu marry in 1969? ,Maurice Gibb ,Music,"""Again"" Was A Hit In 1993 But Who Sang It",Janet Jackson,General,What is the state insect of Texas,Monarch Butterfly -General,Neil Tennant and Chris Lowe make up what pop band?,Pet Shop Boys,People & Places,In which country would you find the original Legoland? ,Denmark ,General,As foreplay what does a Ponapean male put in a woman's vulva,A Fish - then he licks it - Geography,In which county are all ten of England's highest peaks?,Cumbria,General,What sport still requires competitors to wear formal clothing,Snooker or Billiards,General,In what does michael jackson sleep,Cryochamber -General,Which African capital city is named from the Greek meaning 'three towns',Tripoli,Geography,In which state is Mount McKinley,Alaska,General,Louis Maxwell became well know for playing which role,Moneypenny in early Bond films -General,Who produced and directed the film 'Citizen Kane',Orson welles,Geography,How Many Bridges Are There In St Petersburg ,365 ,General,Who was the third and favourite son of David in Old Testament,Absolom -Sports & Leisure,Which Tennis Player Won Wimbledon Twice With An 8 Year Gap Between Victories ,Jimmy Connors ,General,In Willowdale Oregon a man cant do what while shagging wife,Curse swearing illegal,Music,"Who Sang ""My Heart Will Go On"" In 1998",Celine Dion -General,"Who was voted ""Time Magazine's"" man of the year in 1938?",Adolf Hitler,General,What is a group of this animal called: Rabbit,Nest,Music,Who Hosted The 1998 MTV Europe Music Awards,Jenny McCarthy -General,What was Lady Chatterley's first name,Constance,Sports & Leisure,With Which Sport Would You Associate A Lonsdale Belt ,Boxing , History & Holidays,"If a turkey evades the oven, what is its normal lifespan ",12 Years  -General,Garfunkel What is the smallest dinosaur so far discovered,Compsognathus,General,Deep purple started their career with which one-word song in 1968,Hush,General,What does the typical TV viewer do every three minutes and 42 seconds,Change -General,Who was the 3rd president of the U.S.,Thomas jefferson,General,What is a turkey's furcula commonly known as,Wishbone,General,Telephone poles are mostly made from what wood,Chestnut -General,J H Robertson invented what,Automatic Gearbox,General,Who sang 'bad case of loving you',Robert palmer,General,Of who were castor and pollux the twin sons,Zeus and leda -General,"What was the first name of Captain Bligh, of 'Mutiny on the Bounty' fame",William,Music,"Who Had A One Hit Wonder With ""Cotton Eye Joe"" In 1994",Rednex,Science & Nature,A relationship between two different types of organism which live together for their mutual benefit.,Symbiosis -General,Which artist is supposed to have used 1000 greens in painting,John Constable,General,What is the name of Alice's cat Disney Alice in Wonderland,Dinah,Food & Drink,Where Does Key Lime Pie Come From ,It Originated In Key West Florida  -Tech & Video Games,Who is Mega Man's creator? ,Dr. Light,General,Which south african oil company has estblished the only commercially proven 'oil from coal' operations in the world?,Sasol, History & Holidays,The Greek army under Leonides was annihilated here by Persians in 480BC.,Thermopylae -General,Symbolics.com was the worlds first what,Registered domain name,Food & Drink,"Cocktails: Triple sec, tequila, and lemon or lime juice make a(n) _________.",Margarita,General,What sporting contest Peter Christian win in Jan 77 with 1/16 oz,Angling - total (only) catch -Food & Drink,What beer was promoted with the line: 'Probably the best lager in the world'? ,Carlsberg ,General,A rare or unusual object,Curio,General,Where is calcutta,India - History & Holidays,This Roman killed himself after his defeat at Actium.,Marc Antony,Sports & Leisure,"This sport is called the ""American pastime"".",Baseball,General,Where on the human body is the skin the thinnest,Eye - History & Holidays,What Is The Significance Of The 1976 Film 'To The Devil _____ A Daughter' ,Last Horror Film Made By Hammer ,General,What is a nilgai,A large antelope,Music,Who Was Lead Guitarist With Mountain,Lesley West -General,Which sitcom helped launch Michael J. Fox's career by portraying him as a money-grubbing teenager?,Family Ties,Entertainment,Who is Warren Beatty's sister?,Shirley MacLaine,General,In which U.S. state is the Pentagon,Virginia -General,What mountain has the figures of three mounted confederate heroes of the civil war,Stone mountain,General,"Who, recently, has been appointed as patron saint of politicians",Thomas moore,General,"A gas produced by the incomplete combustion of coal in a mine fire is very poisonous, what is its chemical name",Carbon monoxide -General,Scoleciphobia is the fear of,Worms,General,Who replaced Bo and Luke Duke?,Coy and Vance, History & Holidays,Which Form Of Transport Was Used For The First Time By The British Police In 1967 ,Helicopters  -Entertainment,Kelsey Grammer sings and plays the theme song for which TV show?,Frasier,Science & Nature,Which Creature Has The Largest Brain In Proportion To Its Body? ,The Ant ,General,What is the young of this animal called: Beaver,Kit - Geography,What is the second highest peak in Africa?,Mt. Kenya,General,Donald duck comics were banned in finland because he didn't wear ______,Pants,Music,Which Pop Singer Was Desperately Seeking Susan On Film,Madonna -General,In the A Team name Murdoch’s invisible dog,Billy,Sports & Leisure,At Which Sporting Venue Are The Grace Gates ,Lords ,General,Which US state has the highest divorce rate,Arkansas -General,What type of pottery is the Collingwood Ontario area noted for,Blue mountain,General,What river was Francisco de Orellano the first to travel the length of,Amazon,General,What subject did 'mr chips' teach,Latin -People & Places,Which Actor Is An International Bridge Player ,Omar Sharif ,General,"What talk show hostess gave her guests the fewest opportunities to speak, according to a 1996 msU.S.urvey",Oprah winfrey,General,What is the atomic number for oxygen,Eight -General,"Who Was Responsible For Setting Up The Production Company ""Ardent"" In 1993",Prince Edward, History & Holidays,How many stab wounds did Julius Caesar have when he died ?,23,General,What capitol city stands on the Tagus River,Lisbon -Science & Nature,What are the pouched animals called,Marsupials,General,Where Does The Name Easter Come From ,An Anglo-Saxon goddess called Eastre ,Science & Nature,What is the chemical symbol for mercury?,Hg - History & Holidays,In which American state is George A. Romero's 1968 film 'Night Of The Living Dead' set ,Pennsylvania ,General,"Chub, gudgeon and perch are all types of what",Freshwater fish,Music,"The Musical Score To The Film ""Wall Street "" Was Written By Whch Former Member Of The Police",Stewart Copeland -General,What drink began in Morison's drug store Waco Texas in 1885,Dr Peppers,Music,Name The Record Company Formed By Berry Gordy,Motown,General,Billie Jean King competed in which modern sport,Tennis -General,Who is the current Secretary of State for Social Security,Alastair darling,General,The Shining' was the film playing at the drive-in in which film,Twister,General,If You Were To Be Awarded The “ Fields Medal ” What Would You're Occupation Be?,Mathmatician -General,In the 18th century Siberia used solid blocks of what as money,Tea,General,What animal was the symbol of freedom in ancient Rome,Cat,General,Which letter and number signyfy the vitamin riboflavin,B2 -General,In European city can you be jailed for not killing furry caterpillars,Brussels,General,Who is credited with inventing the fountain pen in 1848,Lewis waterman,General,The Spanish word Esposa means both wife and what,Handcuffs -General,What was the first food designed for the microwave,Popcorn,General,What is cerumen,Earwax,General,Do arteries carry blood towards or away from the heart,Away -Music,The Parents Of Which Rock N Roll Superstar Were Called “Vernon & Gladys”,Elvis,General,"Who said ""who knows what evil lurks in the hearts of men",The shadow,Music,The Album Simply Entitled The Beatles Is Usually Known By What Name,The White Album -Science & Nature, The electric eel's shocking power is so great that it can overtake its victims while __________,15 feet away,General,In which U.S. city does the Boeing aerospace company have its headquarters,Seattle,General,Albanian money and a grouse's mating display same word what,Lec -General,In science it can be up down strange top or bottom what can,Quark,Art & Literature,Who Wrote `The Hitchhikers Guide to the Galaxy'? ,Douglas Adams ,General,What was the first country to guarantee freedom of worship,Transylvania -General,What is meant by the cooking term farci,Stuffed,General,What is Iola cat that died on the episode of Mamma's Family.,Midnight,General,"What word can be a verb, noun, adjective, preposition, conjunction, interjection and a verbal auxiliary?",Like -General,"Which Former Chancellor Of The Exchequer Introduced The ""TESSA Savings Scheme",John Major,General,Who was the last English King to die on the battlefield,Richard III,General,"What is the purpose of ""caulking"" a boat",Making it watertight -General,In which country is the Commandaria wine region?,Cyprus,General,"On Three's Company,what's the first name of Mr. Furley's (landlord) tight wad brother who owned the building?",Bart,Technology & Video Games,What was the first Arcade game ever released? ,Computer Space -General,Who wrote 'across the river and into the trees',Ernest hemmingway,General,What country is North of Zambia,Zaire,General,What is another name for a football,Pigskin -Food & Drink,Greek Feta cheese is made from the milk of which animal? ,Ewe ,General,What part of the body does arthritis particularly affect,The bone joints, History & Holidays,Which silent film star was awarded a Knighthood in 1975? ,Charlie Chaplin  -General,In which Shakespeare play would you find Constable Elbow,Measure for measure,General,Are chemical compounds used to kill or inhibit the growth of infectious organisms,Antibiotics,Music,"Who Sang ""I Wanna Be Sedated"" From The Film ""National Lampoons Vacation""",The Ramones -Music,What was the first album Roger Waters released after leaving Pink Floyd?,The Pros and Cons of Hitch Hiking,Music,Which Number One Hit For Boyzone Was Written By Andrew Lloyd Webber?,No Matter What,General,"What nationally recognized day originated in Grafton, WV, in 1908",Mother's day -Music,"Which Band Recorded The Album Entitled ""Slippery When Wet""",Bon Jovi,General,Myrmecophobia is the fear of,Ants,General,What is the flower that stands for: esteem and love,Strawberry tree -General,Who is the only British Prime Minister to be assassinated?,Spencer Percival,Science & Nature," 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,General,Which is the largest lake in south america,Lake maracaibo -General,Where is guantanamo,Cuba,Technology & Video Games,What special track is unlocked in 'Excite Bike 64' if you finish the tutorial? ,Classic NES Excite Bike,General,Where is the monster Nessie said to live?,Loch Ness -General,What nationality was Johnny Weismuller,Romanian,General,In which city was the famous black hole,Calcutta,Science & Nature,Who Is Known As The Father Of Medicine ,Hippocrates  -General,Traffic lights were first used in London in which year,1869, Geography,What is the saltiest sea in the world?,The Dead Sea,General,George Lazenby played James Bond once in which film,On Her Majesty's Secret Service -General,"Which Singer Has Released Their 3rd Album In 2007, Entitled “ Life In Mono ” ?",Emma Bunton,Food & Drink,"Which English family brewer produces Eagle Bitter, Bombardier and also brews Red Stripe under licence? ",Charles Wells ,Food & Drink,Of what is bonito a variety? ,Tuna  -General,Who was time magazine's 'person of the year' for 1952,Queen elizabeth 2,General,I sing of arms and the man' is the first line of which famous work,The aeneid,Music,When The Monkees Re-United In The 80's What Was The Name Of Their First Single,That Was Then This Is Now - History & Holidays,"Who Had An 80's Hit With The Song 'Rock 'n' Roll High School,' ",The Ramones ,Music,On the 1974 Hit For The 3 Degrees What Does The Abbreviation TSOP Stand For,The Sound Of Philadelphia,General,Michael Jackson sang 'Ben' in what year,1972 -General,What's the longest river in the U.S.,Mississippi river mississippi,General,What amphibians do you raise if you run a ranarium,Frogs,Music,What Was Suzi Quatro's First Hit In 1973,Can The Can -General,What is the title of John Lennon's first published book,In his own write,Sports & Leisure,In Which Sport Might You Encounter A Pommel Horse ,Gymnastics ,General,What rank was George Armstrong Custer when he was killed,Lieutenant Colonel -General,In 1965 who became country music's first millionairess,Loretta Lynn,General,American composer who wrote the songs for the film 'Holiday Inn',Irving berlin,General,Japanese mattress used as a bed,Futon - Geography,This coutry holds the distinction of being the least densely populated in the world.,Mongolia,People & Places,What was Spike Milligan's real first name ,Terence , History & Holidays,"""In Which year Was The Band Aid Single """"Feed The World Released for The 2nd Time"""""" ",1989  -General,A lively Spanish dance in triple time performed with castanets or tambourines.,Fandango,General,"In Blazing Saddles, what is the last name of everybody in the town of Rock Ridge?",Johnson,General,Who first recognised the u.s in 1776,Croatia -Music,"According to the song ""Glass Onion"", who was the Walrus?",Paul,Food & Drink,How Are Truffles Found ,They Are Sniffed Out By Trained Pigs & Dogs ,General,What is the first thing that 97% of people will write when offered a new pen,Their name -Geography,What city does beacon hill light ,Boston ,General,"Cross garnet, Strap, Butt and Back flap types of what",Hinges,General,An Asian gecko and a sweet European wine what word fits both,Tokay -General,The main street in Back to the Future is also the main street in what other 80's movie?,Gremlins,General,What is the fear of wines known as,Oenophobia,General,Who is broomhilda's buzzard buddy,Gaylord -General,What is an object worn as a charm,Amulet,General,What indoor football game is named after the Latin Hobby Falcon,Subbuteo,General,Soceraphobia is the fear of,Parents-in-law -General,In literature who lived at 7 Savile Row,Phileas Fogg,General,What car manufacturers slogan is forward through technology,Audi – Vorsprung Durch Technik,General,Who are the only brothers to win the pga tournament,Lionel and jay hebert -Entertainment,As what is Merle Haggard also known as?,Okie from Muskogee,Geography,"The Bledowska Desert, in ____________ is the only true desert in Europe.",Poland,General,"What is the nickname for Charleston, South Carolina",Palmetto city -General,How long was the six day war,6 days,General,What Indian tribe did the army most often use as scouts,Crow,General,Who would you expect to find in Castle Gondolofo,The Pope -General,What is bovine spongiform encephalopathy more commonly known as,Mad cow disease,General,What was the world's first computer bug in 1946,A moth,Music,Which Toy Was The Title Of A Hit For Aqua?,Barbie Girl -General,What lasted 5 hours and twelve minutes in 1969 longest ever,Wimbledon TV match no tie break,General,Which King was the first to use the Royal We,Richard the Lionheart,General,Who is the Patron Saint of florists and gardeners,Saint Dorothy -General,What sort of tax system does Australia & New Zealand have,Goods & services tax gst,Food & Drink,What is the name of the syrup drained from raw sugar?,Molasses,General,"Who owns the nuclear power plant in the town of Springfield, where the Simpsons live",Montgomery burns -General,Saying: A bird in the hand is worth two in the,Bush,General,What does hepatitis affect,Liver,Music,Regarding The Tv Channel TMF What Do The Initials TMF Actually Stand For,The Music Factory -General,What country designed and developed the bayonet,France,General,Annika Hansen is which characters name in Star Trek Voyager,Seven of Nine,Sports & Leisure,What Number Is Often Called As (Clickety Click) In Bingo ,66  -Music,She Was The Greatest Of All Blues Singers But Nobody Placed A Headstone On Her Grave Until Janis Joplin Helped Fund A Memorial Many Years After Her Death Who Was She,Bessie Smith,General,What is the SI unit of capacitance,Farad,General,Which instrument does a cymbalist play,Piano -General,Alex Raymond created which comic strip character in 1934,Flash Gorden,People & Places,Who is David John Cornwell better known as?,John Le Carré,General,What is another name for gristle,Cartilage -General,What composer wrote the Pomp and Circumstance marches,Edward Elgar, Geography,What is the basic unit of currency for Senegal ?,Franc,Toys & Games,"In Monopoly, What is the cost to Get Out of Jail",50 - History & Holidays,"The American comedian and actor William Claude Dukenfield, died on Christmas Day in 1946. How was he better known? ",WC Fields ,General,What is the best wood for making pencils,Incense Cedar,Science & Nature,"Botanists, Gardeners & Chefs Know Their Allium Cepas What Is An Allium Cepa ",An Onion  -General,Business on what was the world's first adhesive used,Postage stamp,General,"Two creatures support the Royal Coat of Arms, one is a lion what is the other",Unicorn,General,In the Pink Panther films what is Inspector Clouseau's first name,Jaques -Geography,Which country has the longest land border,China,General,"Hundred thousand during the u.s civil war, how many union army blacks gave their lives",30,General,The Isle Of Man Belonged To 2 Countries Before It Underwent Uk Administration In 1765 Scotland Was 1 Name The Other,Norway -General,Sir Charles Babbage Was The Creator Of Which Modern Day Device?,The Computer,Music,"Name the composer of red,red wine?",Neil Diamond,Technology & Video Games,"In Ultimate Mortal Kombat 3, what animal does Mileena turn into in her Animality? ",A Skunk -Entertainment,Name Alvin & Simon's brother was ________,Theo,General,"Who won the Oscar for Best Director for the 1988 film ""Rainman""",Barry levinson,General,The screwdriver was invented before the ______,Screw -General,What is a funambulist,Tightrope walker,Sports & Leisure,"In horse racing, which three race courses stage the five English (Classics)? ","Doncaster , Epsom & Newmarket ",General,What do you give for a 55 year wedding anniversary,Emerald -General,Where do hippopotamuses do 80%of their vocalizations,Underwater,General,What key do most toilets flush in,E flat,General,"Who invented the word ""assassination""",Shakespeare -General,What is a group of eagles,Convocation,Art & Literature,The study of building design is ________.,Architecture,General,What is the fear of fog known as,Nebulaphobia -General,In which verdi opera does violetta sing 'sempre libera',La traviata, Geography,"Denmark, Norway and Sweden combine to make what ?",Scandinavia,Science & Nature,The Chemical Symbols For Titanium & Sodium Spell Out The Letters To Which Girls Name ,Tina  -General,What desert lies in Mongolia,Gobi, History & Holidays,In Which 1982 Film Did The Freeling Family Move To A Haunted House ,Poltergeist ,Religion & Mythology,"In Norse myth, there were two separate races of gods: the Aesir gods which included Odin and Thor, and the ____ gods from whom descended Freya.",Vanir -General,What is the fear of germs or contamination or dirt known as,Mysophobia,Science & Nature, Milk delivered to the store today was in the cow __________,Two days ago, History & Holidays,Which Law Was Passed At The End Of The Eighteenth Century Making Trade Unions Illegal? ,The Combination Acts  - History & Holidays,With With Horror Film Would You Associate The Character Leatherface ,Texas Chansaw Massacre ,Geography,Which us state would you be in if you were in chicago ,Illinois ,Sports & Leisure,What Is The Most Landed On Square In A Game Of Monopoly ,Jail  -General,"In which novel would you find reference to ""The Cracks of Doom""",Lord of the Rings,General,What is or who carries a flabellum,The Popes fan at ceremonies,Geography,What is the capital of Belarus,Minsk -General,In 1845 Boston it was illegal to do what without a doctors note,Bathe,General,What was the name of the backing group of Junior Walker?,The All Stars,Geography,What is the second longest river in the world? ,Amazon  -General,What is jimmy carter's middle name,Earl, History & Holidays,How long does it take a Christmas tree to grow before it's harvested? ,6-8 Years ,Music,"Who Had A Hit In 1966 With ""Tell It Like It Is""",Aaron Neville -Geography,"The streets of _________ were lit by gaslights for the first time in 1807. Before that, torches were used.",London,General,What nickname is attached to the US stealth fighter aircraft the f-117a?,Nighthawk,General,Who was the first of queen elizabeth's children to marry,Queen anne -General,What is a community of ants called,Colony,Sports & Leisure,The German athlete Jurgen Hingsen was always runner-up to which British athlete in major competition? ,Daley Thompson ,General,Delivery of child by cutting into the abdomen,Cesarean -General,Ships known as The First Fleet transported what in 1788,Convicts to Australia,General,Jupiter ii was the name of the robinson's spaceship on what series,Lost in, History & Holidays,"""In The Movie """"Miracle On 34 th Street"""" Kris Kringle Is Hired To Play Santa Claus In Which Department Store Is It FAO Swartz, Marshall Field's, Macy's Or Gimble's?"" ",Macy's  -General,Where does the abbreviation for pound lb come from,Libra the scales,Science & Nature, A 4_inch_long __________ can grip a rock with a force of 400 pounds. Two grown men are incapable of prying it up.,Abalone,Geography,In which city is the canale grande ,Venice  -Science & Nature, The __________ _ a relative of the mole _ is the smallest mammal in North America. It weighs 1/14 ounce _ less than a dime.,Pigmy shrew,Food & Drink,Which cooking term stems from the French word for coal ? ,Braise ,General,How many is a baker's dozen?,Thirteen -Geography,Warsaw is the capital of what country,Poland,General,The quetzal is the currency of ______,Guatemala,Entertainment,"What was the working title for The Beatles' song, 'Yesterday'?",Scrambled Eggs -Music,Who Wrote The Music To The 1994 Movie “The Lion King”,Elton John,General,Which British warrior was the queen of the Iceni,Boudicca,General,Who's first book was Pebble in the Sky,Isaac Asimov -General,If you suffer from diplopia what have you got,Double vision, History & Holidays,What country is poinsettia native to? ,Mexico ,General,Vaduz is the capitol of where,Liechtenstein -General,I get around was a hit for which group,Beach Boys,General,Name the dark lord in Lord of the Rings,Sauron,General,In Heraldry what symbol is a lymphad,Ship with oars -General,In Japan what is Jigali,Female Suicide,Music,"How Many Hours Did It Take The Beatles To Record Their First LP ""Please Please Me""",10 Hours,General,What is in the tyres of a commercial airline,Nitrogen - Air freezes -Food & Drink,This cut of beef lies between tenderloin & rump.,Sirloin,General,In what city is the Encyclopaedia Britanica based and published,Chicago,General,The minimum number of members required to be legal is known as a,Quorum -General,A mountain is the symbol of which film company,Paramount, History & Holidays,Who Released The 70's Album Entitled Slayed? ,Slade ,General,Jerome McElroy Is The Real Name Of Which TV Animated Star,Chef -General,Does a cat groom itself more in cold weather or in warm weather,Warm,General,In which sport was Argentinian Juan Fangio associated,Motor racing,General,"Conway Who, according to a song, damaged her foot on a piece of wood and fell into a raging torrent",Clementine -General,For what is 'gravidity' the medical condition,Pregnancy,General,Who painted the picture The Light of the World in 1854,Holman hunt,General,Dover is the State Capitol of which US state,Delaware -General,Diplomat living abroad as representative of their country,Ambassador,Science & Nature,What is the most common animal ?,Sea worm,General,Who is credited with invention of the nuclear reactor,Enrico Fermi -General,"What was the make and model of the villian in ""The Terminator"" 1984?",T-800 Cyberdyne Systems Model 101,General,Who was the last Scottish Prime Minister of Britain?,Sir Alec Douglas Home,General,How many masts does a Ketch have?,2 -General,Where is your Popliteal Fossa,Back of Knee,General,Which organisation began in a converted toilet in central London,Lords cricket,General,In heraldry what is a horizontal line dividing a shield called,Fess -Sports & Leisure,In Football Who Was Liverpool's Captain When They First Won The European Cup Final In 1977 ,Emlyn Hughes ,General,What two colours are most colour blind people unable to distinguish between,Red & green, Geography,St. George's is the capital city of what island country?,Grenada -General,Which sport allows substitutions without stoppage in play,Hockey,General,What is the flower that stands for: boldness,Pink,General,Which designer markets clothes under the 'Emporio' label,Giorgio armani -General,Which is the only king in a deck of cards without a moustache,King of hearts,General,What's the curved line between any two points on a circle,Arc,General,What is the flower that stands for: presumption,Snapdragon -General,What's a family group of lions called,Pride,Sports & Leisure,Name The 3 Balls Used In A Game Of Billiards ,"White,Spot,Red ",General,Jas Mann Was The Lead Singer Of Which Group?,Babylon Zoo -General,What is the most commonly used isotope of Uranium in nuclear fission chain reactions?,Uranium 235,General,Who wrote 'alice in wonderland',Lewis carroll,Geography,Name the last province to become part of Canada.,Newfoundland -Religion & Mythology,"In Greek mythology, who did Jocasta marry?",Oedipus, History & Holidays,"""What did my true love give to me on the """"Seventh"""" day of Christmas"" ",7 Swans A Swimming ,General,Which planet circles the sun every 84 years,Uranus -General,19-19-19 who's vital statistics,Olive Oyl,General,Who was the greek goddess of peace,Irene,General,What is 'html',Hypertext markup language -Science & Nature,Name the slowest moving land mammal.,Sloth,General,What planet in our system is not named after a god,Earth,Food & Drink,"If you were served crudit?s as a starter before your main meal, what would you be eating? ",Raw Vegetables  -General,Whose shrewish wife was named Xantippe,Socrates,General,What is the flavour of the herb Fennel,Anise,General, Androphobia is the fear of __________.,Male -General,Where were the hanging gardens,Babylon,General,A Romana Café features what liqueur,Sambuca,General,What colour is the gemstone peridot,Green -General,What kind of cake is a wedding cake normally,Fruit cake, History & Holidays,*What creature attacked President Jimmy Carter in a boat in 1979?* ,Duck ,General,What hairs are the last to lose their colour with age,Eyelashes -General,What is the state capital of Alaska,Juneau,Science & Nature,What Is Measured In Farads ,Cpacitance ,Science & Nature,"Which Sea Bird Has A Black & White Body And A Very Large , Bright Yellow & Red Beak ",Atlantic Puffin  -Music,"Which Beatle wife did Eric Clapton fall in love with, and write the song ""Layla"" for?",Patti Boyd Harrison,General,As what is 'Cape Town' also known,Kaapstad,General,What creature gets its name from the Greek word for womb,Dolphin from Delphis -Entertainment,Actor: ________ Hackman.,Gene,General,Which car manufacturer was the first to fit seat belts to their vehicles,Volvo,Geography,What is the capital of Zambia,Lusaka -General,Chambre means what when referring to wine,Serve at room temperature,General,A mixture of wine and soda water is known as a what,Spritzer,Sports & Leisure,Who Succeed Joe Fagan As Manager Of Liverpool? ,Kenny Dalglish  -Sports & Leisure,Who did Gazza flick the ball over for the Euro 96 goal against Scotland? ,Colin Hendry ,General,Scientists took the word quark from which authors work,James Joyce,Art & Literature,Who wrote the 'Father Brown' crime stories?,G.K. Chesterton -General,Comic strip character 1920s name means meek person in USA,Casper Milquetoast,General,Shooting Rabbits Talking German Cutting Finger old terms what,Farting – Victorian euphemism,General,Whose advert slogan was You press the button we do the rest,Kodak -General,"Who was radio's ""all american boy""",Jack armstrong,General,Great woman opera singer,Diva,General,Who runs the Spirit Foundation - Aged Abused Orphaned,Yoko Ono -General,During which war did the Battle of Jutland take place,World war 1,Science & Nature,What Was Once Thought To Give Rise To Influenza ,(Influenced By) The Stars ,Music,Which Song Was Performed By Julie Covington In 1973 And By Madonna In 1996,Don’t Cry For Me Argentina -General,What does the black and white BMW logo represent,Spinning Propeller – BMW made planes,General,"Pintado, Pochard, Scaup, Scoter and Smee types of what",Ducks,General,What is the hottest chile in the world,Habanero -General,Lyssophobia is the fear of what,Going Mad,General,What is the medical name for the thigh bone,Femur,General,"Guinness Modern ballroom dance, of Argentinian origin",Tango -General,What in Paris was erected to celebrate the anniversary of the French revolution,The eiffel tower,General,1991 Gulf War: What missiles did the Allies use to intercept Iraqi SCUDS,Patriots,Music,What Distinguished Bobby McFerrins 1988 Hit Dont Worry Be Happy,He Performed It A Capella -General,What is the name of the second highest mountain in Africa,Mount Kenya,Geography,What is the basic unit of currency for United Kingdom,Pound,General,Form of visible electric discharge between rain clouds or between a rain cloud and the earth (Electricity),Lightning -General,Which canal links Lakes Ontario and Erie,Welland,General,Who most often played James Bond's chief,Bernard Lee,General, The study of human pre_history is ___________.,Archaeology -Art & Literature,"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,General,He died 28th July 1750 and had 20 children 6 survived name him,Johan Sebastian Bach,Art & Literature,"Who wrote ""The count of Monte-Christo""?",Dumas -General,Betty Boo was doing 'the doo' in what year,1990,General,In the language of flowers giving mint meant what,Virtue,General,"Who was the Swedish god of skiing, bowshooting & hunting",Ull -General,Rouget de Lisle did what to make him famous,Composed Marseillaise,Sports & Leisure,In 1993 Who Became Youngest Player To Be Crowned UK Snooker Champion? ,Ronnie O'Sullivan ,General,Who was the first Roman Emperor to adopt Christianity,Constantine i -General,In 1918 what were Jelly Babies renamed,Peace Babies,General,Everest climb 1953 put flags UK UN Nepal and where on top,India,Sports & Leisure,What number wood is a driver in golf,One - History & Holidays,In What Year Was The General Strike ,1926 ,General,Nucleomituphobia is the fear of,Nuclear weapons, History & Holidays,Which Revolution Began In 1789 ,The French Revolution  -General,What is a male cat,Tom,General,Who succeeded Charles de Gaulle as president of France?,Georges Pompidour,General,Which Ancient Greek character Fulfilled Prophecy By Killing His Father And Marrying His Mother,Oedipus -General,What did William Seward buy from Russia in 1867,Alaska,General,What is the Capital of: Egypt,Cairo,General,What family used to live in Bug Tussel,The Clampets -General,What is the name of the bone in the lower leg,Tibia,Sports & Leisure,"Which Brothers Represented England In The 1995 Rugby Union World Cup And Also Appeared With Their Mother In An Advert For Pizza Hut, All We Need Is Their Surname ",Rory & Tony Underwood ,General,"Fedora, bowler and boater are all types of what",Hats -General,Italian painter Jacopo Robusti is better known as who,Tintoretto,General,The caterpillar is the larval stage of which animal,Butterfly,General,What is the French name for a tart of cheese and bacon in a cream and egg filling,Quiche lorraine -General,Which was David Platt's first professional club,Manchester united,Sports & Leisure,Which Famous Ship Do The Runners Pass After Completing 10km Of The London Marathon? ,Cutty Sark ,General,"In Which Film Will You Find The Charcters ""Major Chip Hazzard, Butch Meat Hook, Brick Bazooka & Archer""",Small Soldiers -General,"Who recorded ""after the gold rush"" in 1970",Neil young,Music,"Who Had A Hit In 1983 With ""Feel like Makin Love""",George Benson,General,Which musical was based on the play The Matchmaker,Hello Dolly -General,The word 'marmalade' comes from the Portuguese word for what,Quince jam,Science & Nature,"Peritonitis, affects the ________.",Abdomen,General,What word is from the anglo-saxon 'dyppan',Dip -General,Collective nouns - a pace of what creatures,Donkeys,General,Good King Wenceslas was the King of which country,Bohemia (Germany),General,What job would a Foley Artist do,Incidental movie sound effects -General,Mysophobia is the fear of,Germs contamination dirt, History & Holidays,Which military battle took place in 1815,Waterloo,General,System what are fields of rice called,Paddies -General,The name of which disease comes from the Italian meaning 'bad air',Malaria,General,As loud as _______,Thunder,Toys & Games,"Name the only woman suspect in the game of ""Cluedo"" who isn't married.",Miss scarlett -General,Euphrates Who did Adolf Hitler dictate Mein Kampf to while in prison,Rudolf Hess,General,License Plates: What sport does KICKS enjoy,Soccer,General,Name the author who created Hannibal Lecter,Thomas Harris -Music,Which Band Was Formed In The 1970's By Fomer Miles Davis Band Members Joe Zawinul & Wayne Shorter,Weather Report,General,In the UK marmite is a spread but what is a marmite in France,Tall straight cook pot,Geography,Where are the pyramids located,Egypt -General,"In the game 'banjo-kazooie, who is tooty's big brother",Banjo,General,Where are the two steepest streets in the u.s.a,San francisco,Science & Nature,What Is The Drug Aceta-Minophen Better Known As ,Paracetamol  -General,Craig Evans Hit The Headlines In Sensational Style In May 2001 But Can You Tell Me Why,The Man Who Threw Egg At John Prescott,General,The film Midnight Express is set in which country,Turkey,General,"Mixture, blend alloy of any metal with mercury",Amalgam -General,What weapon is named from musical instrument inv Bob Burns,Bazooka,General,Three what appear on the Connecticut state flag,Grape Vines,General,What heavyweight boxer was nicknamed The Cinderella Man,James J Braddock -General,Who was the English born Surveyor-General of India who completed the first trigonometrical survey of the Sub-Continent,Sir george everest,General,The Semites are a group descended from whom,Shem - Noah's son,General,Name the First Arcade Game Manufactured By Atari,Pong -Art & Literature,"This magazine used to boast a circulation of 7,777,777.",Better homes and gardens,Geography,Which Strait Separates Alaska From Russia? ,The Bering Strait ,Food & Drink,What Vegetable Is Also Known As Zuchinni ,Cougettes  -General,Saint Bibiana is the Patron Saint of what,Hangovers,General,"In the film, Jerry McGuire, what was the name of Jerry's stepson?",Ray,General,What was the connection between Family Matters & Full House?,Steve Urkel -General,What is the connection between Jeffersons and Good Times?,Janet Dubois,Food & Drink,Which countrys does one associate with the following foods or drinks: 'Lussekatter' ,Sweden ,General,Which American city is nicknamed The Birthplace of Aviation,Dayton Ohio -General,In what Australian state would you find Launceston,Tasmania,General,The mouth arachnophobia is a fear of ______,Spiders,General,Who owned the research ship 'calypso',Jacques cousteau -General,Bogota is the capital of ______,Colombia,Art & Literature,Dr. Seuss wrote this book: The Cat in the ______.,Hat,General,Of the Somme With what acid do nettles cause irritation,Formic acid -General,"Who wrote ""Paradise Lost""",John milton, History & Holidays,What city was destroyed by little boy ,Hiroshima , History & Holidays,"Which theatre, that `never closed', closed in the sixties for good? ",The Windmill  -General,What is the flower that stands for: dauntlessness,Sea lavendar,Science & Nature,What Is Unusual About Goats When They Sleep? ,They Don't Close Their Eyes ,Music,"With Whom Did Louis Armstrong Sing About Virtues Of Jazz In The Musical ""High Society""",Bing Crosby -General,Who created the fictional character 'Tristram Shandy'?,Laurence Stern, History & Holidays,How Old Was Elvis Presley When He Achieved His First UK No.1 With 'All Shook Up'' ,22 ,Science & Nature,"Name the fastest land animal over a prolonged distance (1,000 yd. plus)",Antelope -General,Where are the guards who wear bearskins,Buckingham palace,Sports & Leisure,In which country did the game of ice hockey originate? ,Canada ,Geography,Which country are the Galapagos Islands part of,Ecuador -General,A Suffragan has what job,Bishop - no parish – helps other,General,What was Casanovas day job,Librarian,General,What is the flower that stands for: unconscious beauty,Burgundy rose -General,"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,General,"In London what are The Cavalry, Marlborough and Savile",Private Members Clubs,Music,Life Is A Rollercoaster Is The Biography Of Which Member Of Boyzone,Ronan Keating -General,What nhl star was known as the thinking man's goalie,Ken dryden,General,The Black Prince was the first holder of which Royal title,Duke of cornwall,General,What is the most played song on radio USA in 20th century,You've lost that loving feeling -Language,What does N.A.S.A stand for?,National Aeronautics and Space Administration,General,Which NATO country is the world's largest producer of Uranium,Canada,General,Although the 'Fabulous Thunderbirds' sang 'I Thank You' it was originally released by what soul duo in 1968.,Sam and Dave -General,What is Homer Simpson's middle name,Jay,General,Phil Collins played what character on the London stage 1960s,Artful Dodger,General,Riyadh is the capital of ______,Saudi arabia -General,"In a famous opera, who understood the speech of birds after tasting dragon's blood",Siegfried,General,The first one was 5 x 20 the first what,Spreadsheet,General,The Indestructible Iron man fights against the Electronic Gang Hong Kong translation of what film ,A View to a Kill -General,What is activated for freckles to appear,Melanocytes,Art & Literature,Which Outlaw Rode A Horse Called Black Bess ,Dick Turpin ,Sports & Leisure,In Which Year Did Torville & Dean Win Olympic Gold With Their Bolero Routine? ,1984  -Sports & Leisure,What is the name given to a rower who competes in an individual event?,Sculler,Music,Which Actress Was Paul McCartneys Girlfriend Before Linda Eastman,Jane Asher,General,Gemorrah who killed goliath,David -General,Water containing carbon dioxide under pressure is called ________,Soda water,General,Keraunophobia is the fear of,Thunder,General,Who invented the ice cream sundae,William garwood -General,68% of Americans do what (Trying to be punctual),Set their watches ahead,General,"In 1939, Albert Einstein wrote a letter to Roosevelt urging him to develop what",Nuclear bomb,Music,If You Were To Dance With The Guitar Man Who Would Be Your Partner,Duane Eddy -General,The Old English word 'fneosan' means what nowadays,To sneeze,General,"""Open Road"" Was The Debut Album For Which Well Known Singer / Songwriter",Gary Barlow,General,"Gregory Pincus, John Rock, Gerhart Domangk developed what",Oral Contraceptive -Music,Which Group Would You Associate With Steve Craddock,Ocean Colour Scene,General,What writer was paid $5 for writing thanks,Rudyard Kipling,General,Which recreational activity causes the most bone fractures,Aerobic Dancing -General,What is the base twenty numbering system,Vigesimal,General,Nudophobia is a fear of ______,Nudity,General,What is the Capital of: Colombia,Bogota -Music,Who Is Or Was The Oldest Member Of The Beatles,Ringo Starr,General,What did Benjamin Franklin claim as his trade,Printer,General,Who is known as The father of English poetry - 1340 - 1400,Geoffrey Chaucer -General,What is the only silent film to win best picture Oscar,Wings,General,What arthurian knight had the strength of ten because his heart was pure,Sir,Music,Who Recorded A Track In 1984 That Went To No.1 In 1993 Owing To A V W Advert,The Bluebells / Young At Heart - History & Holidays,In which US City was Martin Luther King assassinated in 1968? ,Memphis ,General,"Which actress said ""Being a sex symbol is like being a convict""",Raquel Welch in 1979,General,In Fiction Her Maiden Name Was Lily Evans But Who Is Her World Famous Offspring,Harry Potter -General,Where did the dormouse finish up at the Mad Hatter's tea party,In the teapot,General,Gulyas soup is a delicacy in what country,Hungary,Food & Drink,Who Invented Muesli ,"Dr Muesli, Who Was Swiss " -General,What is the oldest most widely used drug on earth,Alcohol,General,In Britain what year was the Forth Railway Bridge opened,1890,General,What major city is served by Gatwick Airport,London -General,Who did 'tennis world' name rookie of the year in 1974,Martina navratilova,General,Stephano and Trinculo characters in which Shakespeare play,The Tempest,Music,Where Did Buddy Holly Play His Final Show Before Taking Off On That Ill Fated Flight,Clear Lake -Science & Nature,Which is the largest known butterfly?,Queen Alexandra's Birdwing,General,Chablis comes from what major wine producing area of france,Burgundy,General,Which game was called Beano till Edwin Lowe renamed it,Bingo -General,What was the most valuable thing ever stolen,The Mona Lisa,Music,Francis Rossi Is The Lead Vocalist With Which Band,Status Quo,Music,"Who Had A Hit With ""Good Thing""",Fine Young Canibals -General,In what traditional entertainment does the dog Toby appear,Punch and Judy,General,What were Cinderella's slippers originally made from,Fur - changes to glass in 1600s,General,"What drink is made of rum, coconut milk and pineapple",Pina colada -General,A statue of Lady Godiva stands in the centre which English city,Coventry,Music,"In Which Year Were The Following All UK Chart Hits: ""To Cut A Long Story Short"" By Spandau Ballet, ""Pulling Mussels From The Shell"" By Squeeze And ""Perfect Cousin"" By The Undertones?",1980,General,Who followed Grover Cleveland as U.S. President in 1889,Benjamin harrison -Food & Drink,What Is Aspic ,Jelly Made From Stock , History & Holidays,Who Were 'Kissing In The Back Row'' Of A Movie In 1974 ,The Drifters ,Entertainment,"Who directed ""Jurassic Park III?""",Joe Johnston -General,Patricia McCormick became USA first what January 20th 1957,Bullfighter Ciudad Juarez Mexico,General,"Who's Songs Appear On The Entire Soundtrack To The Movie ""When Harry Met Sally""",Harry Connick Junior,General,Paul Keating was elected prime minister of Australia in which year,1991 - History & Holidays,"What Did Frosty The Snow man Have For A nose (Carrot, Button,Cherry,Coal) ",Button ,Music,Which song was a number two hit for The Osmonds in 1974 and a number one hit for Boyzone in 1994?,Love Me For A Reason,General,"What Part Of A Persons body Would You Be Afraid Of If You Had ""Geniophobia""",Their Chin -Entertainment,"In the film 'Pretty Woman', for who was Goldie Hawn the body double?",Julia Roberts,General,What insect does an isopterpophobic homeowner fear,The termite termite, History & Holidays,"In Charles Dickens' novel A Christmas Carol, who was Scrooge's dead business partner? ",Jacob Marley  -General,"Although not all come from France, ______ fries.",French,General,Who is the chief of lamaism in tibet and mongolia,Dalai lama,General,What is a group of this animal called: Elephant,Herd -Science & Nature,The visible spectrum of light ranges from red to ________.,Violet,General,Zapateodo is a rhythmic device used in what music style,Flamenco,General,In a famous Disney film who are Flora Fauna and Merryweather,Fairy Godmothers Sleeping Beauty -General,The Vatican is the worlds smallest country what's second,Monaco,General,Which actor made his debut in the 1958 film Cry Baby Killer,Jack Nicholson,Science & Nature, A cat's __________ can't move sideways.,Jaw -General,"In Welsh place names Llan- is a common feature, what does it mean",Church,General,"Ken Thompson & Dennis Ritchie, colleagues at Bell labs, teamed up & wrote the second version of which operating system",Unix,General,What is the name for the theoretical end product of the gravitational collapse of a massive star,Black hole -General,U.S. Captials - Oklahoma,Oklahoma City,General,In the Wizard of Oz name the Good Witch of the North,Glinda,General,The average male loses a lb (weight ) of what in 10 years,Beard -Sports & Leisure,Who Was The First Player To Score 100 Goals In The Football Premiership League? ,Alan Shearer ,General,Who was the founder and conductor of the Black and White Minstrels,George mitchell,General,Fill in the blank: ____ the lonely,Only -Food & Drink,What colour top do bottles of unpasteurized milk have? ,Green ,General,For what would you use zener cards,To test for ESP,General,In Utah where is it illegal to fish,From Horseback -Science & Nature,What are the two kinds of blood corpuscles in vertebrates ,Red and white ,General,Capital cities: Cameroon,Yaounde,Music,"In Which Year Did Bianca Become Mrs Mick Jagger (1970, 1972, 1974, 1976)",1970 - Geography,On what island is Pearl Harbor?,Oahu,General,What does bbiab mean,Be back in a bit,Music,"Which UK Instrumental Duo Are Responsible For ""Chime"", ""Satan"" And The Box",Orbital -Music,"When Aretha Franklin Got Married In 1978, Which Stevie Wonder Song Did The 4 Tops Sing As She Walked Down The Aisle",Isn't She Lovely,General,What is changed into a coach for Cinderella,Pumpkin,Geography,In which country is madras ,India  - Geography,What is the capital of Tennessee?,Nashville,General,What countries head of state has been dead for years,North Korea - Mr Kim,General,In which sport is there a York round,Archery -General,What Dickens work features Mr Wardle,Pickwick papers,General,Which character was born in Riverside Iowa,James Tiberius Kirk,People & Places,"Who Once Said Of The Navy 'It's Only Traditions Were Rum, Sodomy & The Lash' ",Winston Churchill  - Geography,What is the capital of Antigua and Barbuda ?,Saint John's,Food & Drink,What Type Of Meat Usually Goes Into Frankenfurters? ,Pork ,General,What is a star called that has a fainter companion,Double star -General,What is Gerber's most popular flavour of baby food,Mashed Bananas,General,The average American does what for 52 minutes a day,Read a Newspaper,General,Standard Italian dances and their music of the fifteenth and sixteenth centuries.,Ballo - History & Holidays,Which famous actor is honored in a statue in Leicester Square?,Charlie Chaplin,General, Brontophobia is the fear of _________.,Thunder,Geography,What is the capital of Angola,Luanda -General,What was the White House formerly known as,Executive Mansion,General,Who won Best Director for Reds,Warren beatty, Geography,In what country is Thunder Bay?,Canada -General,Analogy bull-cow as fox- __________,Vixen,Science & Nature,Which Port Handles The Greatest Amount Of Trade In The World ,"Rotterdam, The Netherlands ",General,What's the more common name of the thyroid cartilage,Adams Apple -General,Vegetable with greenish flower heads,Broccoli,General,Name Stanley Kubrick's last film as director before his death,Eyes Wide Shut,General,"What landmark bears an inscription that ends, ""I lift my lamp beside the golden door""",Statue of liberty -Music,Who Hosted The 2007 Brit Awards?,Russell Brand,Food & Drink,What breakfast cereal was invented at Battle Creek Sanitarium ,Cornflakes ,Food & Drink,What Type Of Foodstuff Is A 'Rollmop'' ,Fish (Pickled Herring)  - History & Holidays,Which 1950s films took place in Chicago and Miami 1929 ,Some Like it Hot ,Science & Nature,In computing what does the general everyday term ISP stand for? ,Internet Service Provider ,Food & Drink,What was taken ver by Ray Kroc in 1954? ,McDonald's  -Science & Nature,Why Was The Edmontosaurus So Named ,It's Remains Were First Discovered In Edmonton ,General,What does a piscivorous creature eat,Fish,General,Which TV series starred Leslie Phillips and donald Sinden as clergymen,Our Man At Saint Marks -General,The vernal euinox is the beginning of ________,Spring, History & Holidays,"What do Karen, Richard and Joseph all have in common ",All Carpenters ,General,What is the young of this animal called: Zebra,Foal -Food & Drink,The Queensland nut or bush nut is more commonly known as this.,Macadamia,General,Which constellation is represented by a goat?,Capricorn, History & Holidays,"In 1956, Tunisia gained independence from which country? ",France  -General,"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,General,What nation is nicknamed the 'regaa boyz',Jamaica,Geography,On which River does the City of Cairo stand ,The Nile  -Art & Literature,In Which City Is The Encyclopediaa Britanica Published ,Chicago , History & Holidays,She was Queen of Egypt and mistress of Julius Caesar.,Cleopatra,General,According To Official EU Trade Figures Name The European Country That Produces The Most Computer Software,Ireland -Sports & Leisure,Over Which Distance Did Steve Ovett Win Olympic Gold? ,800 Meters ,Sports & Leisure,Which Boxer Had The Nickname Of The Dark Destroyer? ,Nigel Benn ,Religion & Mythology,Who is the greek equivalent of the roman god Discordia,Eris -General,In Athens they can remove your driving licence if found what,Poorly dressed or unbathed,Food & Drink,What type of fruit is a damson? ,Plum ,General,What was the most popular semi automatic hand gun in Nazi Germany,The luger luger -General,On which of the Canary Island would you find the holiday destination of Corralejo,Fuerteventura,General,Whose is supposed to have had sex with his nanny when aged 9,Lord Byron,Science & Nature," 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 -General,In approximately what year was steel first made,500 BC,Sports & Leisure,What's the nickname of the University of Georgia football team?,Bulldogs,Geography,Which country had the world's tallest habitable building as of 2006? ,Taiwan (Tapei 101)  - Geography,In which continent would you find the Niger river ?,Africa,General,Chapman Root designed it based on a Hoople skirt - what,Coca Cola bottle,General,Santa fe is the capital of what state,New mexico -General,Crossword Clues: Shriveled-up and dry. (4),Sere, Geography,What is the capital of North Korea ?,Pyongyang,General,What president had a slave for a mistress,Thomas jefferson - Geography,Which is the Earth's largest continent ?,Asia,General,"Which Eurovision Song winning group's line-up was Mike Nolan, Bobby G, Jay Ashton and Cheryl Baker",Buck's fizz,General,Ouranophobia is the fear of,Heaven -General,What is the term for a person who designs dance routines,Choreographer,General,What NHL star was known as The Roadrunner,Yvan cournoyer,General,Who sometimes used the pseudonym Al Brown,Alphonse Capone -General,The drink Absinthe is also known as?,Wormwood,General,Which Arthur first conceived the idea of geostationary satellites,Arthur c clarke,General,What scientific field did John Tebbutt excel at,Astronomy -General,What is the Capital of: Sao Tome and Principe,Sao tome,People & Places,Can You Name The 4 Stars Of The Goon Show ,"Michael Bentine, Peter Sellers, Spike Milligan, Harry Secombe ",General,Which book of words has a latin name that means 'treasure',Thesaurus -Geography,Which Bridge In Scotland Replaced The Much Loved(Ferry At The Kyle Of Lochalsh) ,The Skye Bridge ,General,What is the left side of a ship called,Port,Food & Drink,In which country did edam cheese originate?,Holland -General,"Which Iconic Rock Music Frontman Sang Backing Vocals On Carly Simons 1973 Hit ""You're So Vain""",Mick Jagger,Sports & Leisure,How Many Dominoes Are There In A Full Set ,28 ,General,Who wrote the novel Heidi,Johannes Spyri - History & Holidays,What Happened At Max Yasgur's Dairy Farm In New York State During 15-17th August 1969 ,Woodstock Festival ,General,What is the point value of the 'f' in scrabble,Four,General,Whose most commercially successful album was 'court and spark' in 1974,Joni -General,In which country would you find the motor racing circuit called Kyalami,South africa,General,"At which conference in 1944 was the International Monetary System, including the I.M.F. and the World Bank, set up",Bretton woods,General,In 1929 the first what happened on an aircraft,Birth -General,Which is the deepest mine,Western deep levels mine,General,"Who sang the Song ""Beautiful Day""?",U2,Geography,What is the capital of Kyrgyzstan,Bishkek - Geography,Jakarta is located on which Indonesian island?,Java,General,What did joseph priestley invent,Carbonated soda water, Language,"The name for this semi_precious stone comes from the Latin for ""sea water""",Aquamarine -General,What country does Queen Beatrix rule,Netherlands,General,Odele and Odette appear in what Tchaikovsky ballet,Swan Lake,General,Philematology is the science of what,Kissing -Geography,The northernmost point in mainland Australia is on this geographic feature,Cape york,General,Babba Louey was the sidekick of which cartoon character,Quick Draw McGraw,General,In the USA what is Marine One,Presidents Helicopter -General,Americans spent roughly how much dining out in 1993,$267 billion,General,"Which Sport Took Place At ""Lords Cricket Ground"" When London Hosted The 2012 Olympic Games",Archery,Music,Who Was The First Beetle To Have A Solo No.1 Hit,George Harrison -Religion & Mythology,Roman god of doorways and passages. Two headed deity from which we get the name of one of our months?,Janus,General,In what country are the Drakesberg mountains,South Africa,General,What is a group of piglets,Litter -Music,In One Of Her First Major Acting Roles Who Was Madonna Desperately Seeking,Susan,Science & Nature,The remains of prehistoric organisms that have been preserved in rocks are called ________.,Fossils,General,The pop group 'The Cardigans' hail from which country?,Sweden -General,Who composed the Goldberg Variations,J. s. bach,General,Hal Jordan was the original alter ego of which comic super hero,Green Lantern now Kyle Rayner,General,What was the connection between The Facts of Life and ER,George Clooney -General,In which country are Mariachi bands traditional,Mexico,Music,Which Tv Theme Reached No.15 In 1971Featuring the Vienna Philharmonic Orchestra,The Onedin Line,General,Gene Hackman sheriff Big Whiskey - got Oscar - What film,Unforgiven -Science & Nature,Which Part Of The Body Is Affected By Rhinitis ,The Nose ,General,"Other than the 'Tarzan' series of films, which other film and television character was created by Johnny Weismuller",Jungle jim,General,What does the lacrimal gland produce,Tears -General,What firm markets the B25 microcomputer,Burroughs,Sports & Leisure,Which British man ran the fastest mile in the 80's? ,Steve Cram ,General,What is dram,Dynamic random access memory -General,Terrance Nelhams became better knows as who,Adam Faith,General,Is dublin in northern or southern ireland,Southern,Sports & Leisure,This is the most coveted trophy in Candian football.,Grey cup -General,Which actor took the male lead in the Hitchcock thriller The Birds,Rod taylor,General,On what part of the body are campers prone to being bitten by vampire bats,Big toe,General,What is the Capital of: Lebanon,Beirut -General,By what name is the reed pipe of the bagpipes known,Chanter,General,Which sort of court case causes the most perjury,Contested Divorce,General,What was the first penal colony in New South Wales,Botany Bay - Language,"What word contains the combination of letters: ""xop""",Saxophone,Music,Brother Records Was Formed By Which Group,The Beach Boys,General,"Lewis 1994 - How many copies has the #3 ""Eagles Greatest Hits"" album sold",Fourteen -General,What does the word Desert (from Latin desertus) translate as,Abandoned,General,Khu-fu is more commonly known as,Cheops,Music,"Who Had Hits With ""You Keep Me Hanging On"" & Cambodia",Kim Wilde -General,In the USA what are the TV equivalent of the Oscars,Emmys, History & Holidays,Who was the first chancellor of West Germany after WW II?,Konrad Adenauer,General,What is the telephone's u.s patent number,174465 -Sports & Leisure,In Which Game Are Projectiles Thrown At Stakes Called Hobs ,Quoits ,Music,What Was Otis Redding's Biggest Hit Coming After His Death In 1967,Sitting On The Dock Of A Bay,General,What is the flower that stands for: change,Pimpernel -General,Button Gwinnett Born In Gloucester England On Aril 10th 1735 Was The First Person In History To Do What,Sign The Declaration Of Independence,General,Which two colours appear on the Vietnam flag,Yellow & red,General,Musashi was the first Japanese to use two what simultaneously,Swords - famous for it -General,"The great gothic cathedral of Milan was started in 1386, & wasn't completed until what year",1805,General,"Four European countries keep Greenwich Mean Time. The UK and Ireland are two, name either of the others",Iceland Portugal,General,In which country was Nelson Piquet born,Brazil -General,Pharmacophobia is a fear of ______,Drugs,General,What Disney film was released on December 21st 1960,Swiss Family Robinson,Science & Nature,"Which Mammal Fires A Mixture Of Methane, Butane And Sulphur From Its Scent Glands? ",The Skunk  -General,In what year was Prince Harry born?,1984,General,Musical groups: commander cody and his _____,Lost planet airmen,General,"In wich year was formed in Germany, the disco band Boney M",1976 -Geography,Which Of The Worlds Continents Has The Highest Population ,Asia ,General,What does ETA stand for,Estimated time of arrival,General,A Woman to Remember was the worlds first what in Feb 1947,TV Soap Opera -General,Who would you expect to see in the Leftorium,Ned Flanders shop The Simpson's,General,What does 'i.b.m' stand for,International business machines,General,What year did Brasilia become capital of Brazil,1960 -General,How long was jesus' temptation in the desert,40 days,General,"In the culinary world, what is passata",Sieved tomatoes,General,Which part of the body is affected by encephalitis,Brain -People & Places,Who Is The Heaviest Member Ever To Have Sat In Parliment ,Cyril Smith ,General,The name Mark translates a what,Hammer,General,"On Dec 25th 1989 David Hasselhoff Topped The Bill Of A Concert In Which He Performed His Most Successful Hit ""Looking For Freedom"" But Where EXACTLY Did He Perform The Song",On Top Of The Berlin Wall -Music,Humble Pie Sang About A Natural Born What In The Late 60's,Bugie,General,What band leader did singer Jo Stafford marry,Paul weston,General,Calvados' is a brandy made from what,Apples -General,Name the largest artery in the human body.,Aorta,General,"What do you have if you feel ""crapula""",Hangover,General,Which country produces Franconia wine,Germany -General,What drug is obtained from the cinchona tree,Quinine,General,"""They're gr_r_r_r_eat!"" is this this cereal's slogan.",Frosted flakes,Food & Drink,In The Dish 'Angels On Horseback' Of What Are The Angels Made ,Oysters  -General,Who captained the hms beagle,Charles darwin,General,What is a portuguese man o' war,Jellyfish,Sports & Leisure,How High In Feet Is The Net In A Game Of Badminton ,5ft  -General,Who won a Best Actress Academy award for her performance in Annie Hall,Diane keaton,General,What was Ethiopia formerly known as,Abyssinia,General,Which insect is so-called because it was dedicated to the Virgin Mary in the middle ages,Ladybird - Geography,Which element makes up 2.6% of the Earth's crust ?,Magnesium,General,"What society in england, dating from 1617, has it's own degree which allows a person to practice medicine",Apothecaries,General,"Who wrote the thrillers 'Harry's Game' and ""A Song in the Morning""",Gerald seymour -Music,Which Prince Song Did Age Of Chance Later Decide To Cover,Kiss,Geography,Which Country Has The International Car Registration EAK? ,Kenya ,General,Hungarian doctor Karolyn Maria Beekert coined what word 1869,Homosexual -General,In Denver Colorado it is illegal to mistreat who / what,Rats,Sports & Leisure,At Which Sporting Venue Do Competitors Travel Down The Brabham Strait? ,Brands Hatch ,General,A long broad tree lined street,Boulevard -Sports & Leisure,"Who was the NBA MVP in 1976, 1977 and 1980?",Kareem Abdul-Jabbar,General,What show was Just the 10 of us spin off of?,Growing Pains,General,"In folklore, supernatural, sea-dwelling creature with the head and upper body of a beautiful woman and the lower body of a fish",Mermaid - History & Holidays,What American feminist went bust as a silver dollar,Anthony,General,What is a corduroy road made from,Logs laid down on swampy ground,General,Which American chat show hostess apppeared in the film 'The Color Purple',Oprah winfrey -Religion & Mythology,Who is the greek equivalent of the roman god Cupid ?,Eros,General,How many laps are there in a Speedway race,Four,General,A male racehorse can do it in 14 seconds - what,Copulate as can any male horse -General,In which region of France is the red wine Chateauneuf du Pape produced,Rhone valley,General,Which 2003 Movie Saw Hugh Grant Playing The Role Of The British Prime Minister ,Love Actually ,General,What is the Roman Numeral for 1000,M -General,What is the UKs best selling chocolate snack bar,Kit Kat,General,A Blue Tits breast is what colour,Yellow,Science & Nature,"This Latin word meaning ""iron"" is the reason for iron's modern day chemical symbol (Fe).",Ferrum -Music,What 2 Parts Of The Body Are The First To Be Mentioned In The Song You've Lost That Loving Feeling,Eyes & Lips,General,Degrees who was the indian maiden in johnny preston's 'running bear',Little white,General,License Plates: What school does HOYA6 attend,Georgetown university -General,"On ""Three's Company"" what was Larry's (the upstairs neighbor) last name?",Dallas,General,Part of a city occupied by a minority group,Ghetto,General,The Ladies Mercury in 1693 was the worlds first what,Women's magazine -Music,Which Artists Wore A Peacock Suit,Paul Weller,General,The only rock that floats in water is what,Pumice,Music,Which T-Rex Song Did Power Station Cover,Get It On -Science & Nature,What 2 Word Term Is Given To A Simulated 3D Environment Used in Computer Graphics ,Virtual Reality ,General,How many legs has a woodlouse,Fourteen,General,Who Was The First White Act To Be Signed By The Predominantly Black Motown Label?,Kiki Dee -General,What Disney character was voiced by Pinto Colvig,Sleepy,Music,John Waite Was Lead Singer For Which Band,Bad English,General,Maniophobia is a fear of ______,Insanity -General,"Calypso, catteleya and pogonia are types of which flowering plant",Orchid,General,How Many Gold Medals Did Jesse Owens Win At The 1936 Olympics In Germany,Four,General,What does an orometer measure,Height above sea level -Science & Nature,What is the fourth state of matter?,Liquid crystals,General,What disease is carried by the tsetse fly?,Sleeping sickness,Music,Who Was The Lead Singer With Tubeway Army,Gary Numan -General,On Beverly Hills 90210 What was the name of Brandon's first car?,Mondale,General,"What was the name of the ship, the survivors of which were rescued by Grace Darling, her father and others",Forfarshire, Geography,What is the basic unit of currency for Pakistan ?,Rupee -Sports & Leisure,Back in the 1890's which football club used to wear pink shirts? (Still In Premiership) ,Everton ,Science & Nature,Where Might You Find Rods and Cones ,In The Eye Light Sensitive Cells , History & Holidays,What was the name of the B_29 used at Hiroshima to drop the bomb,Enola gay -Sports & Leisure,Which Player Lost Successive World Snooker Finals From 1990 To 1994? ,Jimmy White ,General,What battle resulted in the largest number of german pow's,Battle of,General,At Prince Charles's wedding who was the best man,Nobody – brothers were supporters -General,What city provided the setting for One day at a time?,Indianapolis,General,Geotropism affects what,Plants its gravity growth response,Art & Literature,"According To ""The Hitchhikers Guide To The Galaxy"" what number is the answer to everything?",Forty Two - Geography,Kathmandu is the capital of ______?,Nepal,General,"What disease is also known as ""rubella""",German measles, History & Holidays,Neil Armstrong And Buzz Aldrin Landed On The Moon But Who Stayed Behind In The Command Capsule? ,Michael Collins  -Entertainment,Who did Pat Sajak play on the soapie 'Days Of Our Lives'?,Kevin Hathaway, History & Holidays,"Which of these is NOT one of Santa's reindeer? (Donner, Dixen, Comet, Dasher) ",Dixen ,General,In 1943 Canadian Army troops arrive in,North africa -Sports & Leisure,Baseball: The Florida ______?,Marlins,General,Whose magazine is called The Watchtower,Jehovah Witnesses,General,What was the name of the principal on Saved By the Bell?,Mr. Richard Belding -Entertainment,Film Title: An Officer and a(n) _________.,Gentleman,General,As what is New Jersey also known,Garden state,General,"New Year's Eve, or December 31st, is dedicated to which saint",St sylvester -General,Which English King rode a horse called White Surrey,Richard III,General,What do the letters F.D. on British coins mean ?,Defender of the Faith,General,What trees live in wet salty swamps,Mangrove -General,What is the Capital of: San Marino,San marino,Geography,The longest river in Western Europe is _________,Rhine,General,Who was Michelle's first boyfriend on Full House?,Howie -General,Where would you find your purlicue,Space between thumb and finger,General,Who played harry lime in the film 'the third man',Orson welles,General,Georgius Panayiotou became famous under what name (both),George Michael -General,Who refused the Nobel Literature prize in 1958,Boris Pasternak,General,In what does the fda allow an average of 30 insect fragments and 1 rodent hair per 100 grams,Peanut butter,General,Chernoble is in which Russian province,Ukraine -General,What is British Columbias capital,Victoria,General,What is the fear of slime known as,Myxophobia,General,What is a group of cockroaches,Intrusion -General,Who founded the McDonalds Chain?,Ray Kroc,General,Jason Robards won the Oscar for Best Supporting Actor in 1976 and in 1977. Name either of the films. all the presidents men,Julia,General,The dot over the letter 'i' is called what,Tittle -Music,"Who Wrote Chaka Khans 1984 Hit ""I Feel For You""",Prince,General,In Jones Chapel Alabama illegal guy take gal where till 4th date,Horseback Riding,Sports & Leisure,In A 1990 Test Match Against India Graham Gooch Scored A Treble Nelson. How Many Runs Did He Score? ,333  -General,Basketball: the los angeles ______,Lakers,General,Who authored 'ivanhoe',Sir walter scott,Sports & Leisure,Which Steeplechase Did Party Politics Win In Election Year 1992? ,Grand National  -General,Who created the cartoon character Droopy,Tex Avery,General,What tropical root is used to flavor soft drinks,Ginger, History & Holidays,What was the name of Spandau's only prisoner ,Leslie Joseph  -General,What is a group of mallards in flight,Sord,Geography,What is the capital of Monaco,Monaco,General,In what sport would you see a Chistera,Pelota -General,Which magazine declared bankruptcy in the early 1990s,Success,Music,Which Artists Was Backed By The Attractions,Elvis Costello, History & Holidays,"Which popular Christmas carol was originally a piece written by King Henry VIII? A= God Rest Ye Merry Gentlemen, B= We 3 Kings Of Orient Are, C= What Child Is This, D=Good King Wenceslas ",C= What Child Is This  -General,"In Greek mythology, who were jason's companions",Argonauts,General,A spunder or drift is the name for a group of what animals,Swine,General,Jamie Farr played what role in MASH,Corporal Clinger -General,"Who wrote ""the maltese falcon""",Dashiell hammett,General,Who had a hit with Devil Woman,Cliff Richard,General,Which group sang the theme tune to the James Bond film The Living Daylights,Aha -General,What is the only USA state without a natural lake,West Virginia,General,The term Quartocentennial represents how many years ?,25,General,Name the moody blues first lp,Lose your money -Religion & Mythology,"According to the Bible, how many years did Methuselah live?",969,General,"Which place, now an airport, once staged the Grand National",Gatwick,General,Whats the worlds largest sea,Mediterranean -General,What is the most popular decoration on top of a toilet tank,Scented seashells,General,California Dolls Is A Film About Which sport,Wrestling,General,Who was the original presenter of 'Points of View',Robert robinson -General,In golf what is the maximum number of clubs allowed in your bag,Fourteen,General,What was the first english play written exclusively for children,Peter pan,Music,Which Famous Soul Artist Was Once The Drummer Of Harold Melvin And The Blue Notes,Teddy Pendergrass -General,What was the first creature put on the endangered species list,Peregrine Falcon,General,Where were bagpipes invented,Iran – then Persia, Geography,Kingston is the capital of which country?,Jamaica -General,How many feet in a fathom,Six,Music,Dee Snider Was The Singer For Which Band,Twisted Sister,General,"Wyatt Earp, Frank James, Abraham Lincoln what actor links",Henry Fonda -General,What Turkish city has spread to both sides of the Bosporus Strait,Istanbul,General,"Berry Gordy The Founder Of Motown, Had A One Hot Wonder Son Who Was He",Rockwell,General,And what was that movie,Conan Doyle's – The Lost World - History & Holidays,"Who said: ""Let them eat cake.""",Marie antoinette,General,What is the full name of the creator of Peter Pan,James Mathew Barrie,General,What Was Jason Donovan's Last UK No.1 Hit Single Of the 1980's,Sealed With A Kiss -General,The tenth sign of the Zodiac,Capricorn,General,The GRA govern which sport,Greyhound Racing Association,Geography,In which English county is Yeovil? ,Somerset  - History & Holidays,"""Who banned Christmas Carol's in England between the years of 1649 and 1660? """"Oliver Cromwell"""", """"King Charles II"""", """"Queen Victoria"""", """"Queen Elizabeth I"""" "" ",Oliver Cromwell ,Entertainment,Who was Fred Flinstone's best friend?,Barney Rubble,Music,What Colour Onions Were The Subject Of A Booker T And The Mg's Song,Green -Food & Drink,"Popularised in the USA, Australia and New Zealand, which thick drink is made with fresh fruit pur?ed with milk, yoghurt, or ice cream? ",Smoothie ,General,Who directed Sharky's Machine,Burt Reynolds,General,What part of an aircraft is the empennage,Tail Unit -General,Which vegetable got its name from a precious stone,Onion - Latin unio large pearl, History & Holidays,He allowed the bugging of the Democratic Committee headquarters.,Richard Nixon,General,Who is the roman counterpart of heracles,Hercules -Food & Drink,What part of a wine bottle is the punt? ,The indentation in the base ,Entertainment,Who is Robert van Winkle?,Vanilla Ice,Geography,In which southern US state is Dodge City? ,Kansas  -General,What is the square root of 16,Four,General,What is a Tambura,An Indian long necked lute,General,Who could distinguish 140 forms of tobacco ash,Sherlock holmes -Sports & Leisure,At Which Sport Might You See A Crucifix ,Gynmastics (The Rings) ,General,"What plant maybe 'black', 'green' or 'deadly'",Nightshade,General,What is a catalogue of languages called?,Ethnologue -Science & Nature,Which Acronym Is Used For The Long Range Radar Surveillance & Control Centre For Air Defence Developed Originally In The USA ,AWACS ,Music,"Suffering From ""Teenage Depression"" Who Would Join Eddie If He Quit His Town",The Hotrods, History & Holidays,Who Directed Terence Stamp In His First Starring Role In The Film Billy Budd In 1962 ,Peter Ustinov  -General,"Formerly with spencer davis, he went on the form traffic with dave mason",Steve winwood,Entertainment,What song did Elton John and George Michael sing as a duet?,Don't Let The Sun Go Down On Me,General,John Lennon named The Quarrymen after what,His old school -People & Places,Who Did Princess Anne marry In 1992 ? ,Tim lawrence ,Music,"Who Recorded The Albums ""Planet Waves"", ""Self Portrait"" & ""Shot Of Love""",Bob Dylan,General,In 1921 Turkey makes peace with,Armenia -General,What is Homer Simpsons greatest fear,Sock Puppets,General,Who was King Solomon's mother,Bathsheba,General,Syphilophobia is a fear of ______,Syphilis -General,Which European city is regarded as the clock making capital of the world,Geneva,General,What is the most widely cultivated plant,Wheat,Art & Literature,What Shakespearean play features the line: A plague on both your houses?,Romeo and Juliet -General,The Ideal toy company was the first to mass produce what item,Teddy Bears,Entertainment,Who was the black assistant of Mandrake the Magician?,Lothar, History & Holidays,"""In the song """"The Twelve Days Of Christmas"""", what did my true love give to me on the 12th day?"" ",12 Drummers Drumming  -General,"The first book of __________ was introduced on april 10, 1924",Crosswords, History & Holidays,Which 60's Movie features The Line by right she should be taken out and hung for the cold blooded murder of the English tongue ,My Fair Lady ,General,Who coached The Bad News Bears,Morris buttermaker - History & Holidays,In Medievil England What Name Was Given To The Area Presided Over By A Lord ,Manor ,General,"In Greek mythology, what did ariadne help theseus to escape",Labyrinth,General,In Salem Oregon its illegal for women to do what,Wrestle -General,Where is crystal palace,London,General,Tarquin the Proud was the last king of where,Rome,General,What is the term used to describe a container-grown plant whose roots have filled the container,Pot bound -General,"If you were going to a chiropractor for treatment, what would be affected",Backbone,General,Yoga (the meditation) is a Sanskrit word meaning what,Union,General,Where was nelson mandela in prison,Robben island -General,In music who decided that an octave should have eight notes,Pythagoras,Science & Nature,Which Water Bird Has Brown & Black Feathers With A White Flank Slash & A Red Beak Shield ,Moorhen ,General,Which drug is used in medicine to dilate the pupils of the eyes,Atropine -General,In which country would you find the Asiatic lion living in the wild,India,Music,"Name The Probable First And Last Single From 1,300 Drums Feat The Unjustified Ancients Of Mu",OOh AAh Cantona,General,What is the flower that stands for: reserve,Maple -Art & Literature,What Was Shakespear's Last Completed Play ,The Tempest ,General,The minimum wage in 1938 was how many cents per hour,25,General,"In ancient Rome what could be candida, picta, pulla or virilis",Types of Toga styles -General,Which authors books are most borrowed from libraries,Catherine Cookson,General,Who wrote the novel 'Orlando',Virginia woolf,General,Which diminutive Hollywood villain was born Laszlo Loewenstein in 1904,Peter lorre -General,What is the fear of learning known as,Sophophobia,General,In Italian translation who is Mr Kiss Kiss Bang Bang,James Bond,General,"Who said ""All I can say is that I'm not a Marxist""",Karl Marx -General,What's the name of the extinct volcano near hawaii's waikiki beach,Diamond,General,What's another name for a mountain lion,Puma,General,Who From The World Of Music Died On Sep 18th 1970 In London England,Jimmy Hendrix -General,Film title ' ______ leagues under the sea',20000,Technology & Video Games,Who is the third opponent in 'Super Smash Brothers'? ,Fox McCloud,General,Who was the first to use rubber gloves during surgery,Dr w.s halstead -Music,The Song Evergreen Was A Big Hit For Barbara Streisand Did She Write The Words Or The Music,Music,General,"Which American president said, 'It is not best to swap horses when crossing streams'",Abraham lincoln,General,Where was it once against the law to slam your car door,Switzerland - History & Holidays,"According to the bible, who were the baby Jesus's first visitors ",The Shepherds ,General,What does a phlebotomist do,Draws blood samples,Sports & Leisure,Which title has been won by the rider who wears the polka dot jersey in the Tour De France? ,King Of The Mountains  -General,"A part of a church or a separate building, often octagonal or round, in which baptisms take place.",Baptistery,General,In which Latin American country is the Quetzal the main unit of currency,Guatemala,Art & Literature,Which Shakespearean Play Is Set In The Forest Of Arden ,As You Like It  -General,What is or was a Portuguese moidore,A Gold Coin,General,Ferdinand and Imelda Marcos were exiled in what year,1986,General,Velveteen is made from a mixture of Silk and which other fibre,Cotton -Science & Nature,Which bird became extinct in 1861 ?,Dodo,General,Transposition of the letters of a word or phrase to form a new word or phrase.,Anagram,General,What animal originated Groundhog Day,Badgers - in Germany -General,In which country do the Ashanti people live in the Province of Ashanti,Ghana,Music,Jon Moss Was The Drummer With Which 80's Band,Culture Club,General,1579 the Netherlands achieved independence from what country,Spain -General,In the 70s The Bahamas gained independence from who,Great Britain,General,What kind of chair sits on curved runners,Rocking chair,Music,"In ""Ob-la-di, Ob-la-da"", what kind of ring did Desmond gave to Molly?",20 carats -General,U.S. captials Nebraska,Lincoln,Entertainment,"Who was C3PO's sidekick in ""Star Wars""?",R2D2,General,"Which actor played in all of these films Shadowlands, Nixon and The Mask of Zorro",Anthony hopkins -General,On Tv How Is Alistair Graham Better Known?,Ali G,General,In which city is the Alhambra Palace,Granada,General,What is 240 minutes in hours,Four -General,This Is Bon Jovi's latest album?,Crush,General,"What travels faster than light a laser beam, sound or nothing",Nothing,Music,For Their Debut Single What Did The O'Jays Warn Us About In 1972,Back Stabbers -General,What was keanu reeves' first big film,Point break,General,British politician John Montigue is credited with inventing what,4th Earl of Sandwich,General,What is the name of the Australian Film Institute Award,Longford – (Raymond) -Geography,In what mountain range is Kicking Horse Pass,Rockies,General,Approximately how many years old is the first known written advertisement?,Three thousand,General,Which country singer made an appearance in the film True Grit,Glen campbell -Music,"The Single ""Respect Yourself"" Was Released By Which Die Hard Music Lover",Bruce Willis,General,Maurice Micklewhite became famous as who,Michael Caine,Music,Live You're Life Be Free Was A 90's Hit For Who,Belinda Carlisle -General,Name captain smollett's ship in treasure island,Hispaniola,General,What plant's bulb can make you cry,Onion,General,What appears when the sun activates melanocytes,Freckles -Music,"Who Had A Hit With ""Sledgehammer"" & ""Big Time""",Peter Gabriel,Sports & Leisure,Which weight division in boxing lies between flyweight and featherweight?,Batamweight,General,"A cylindrical vertical support usually consisting of a base, shaft and capital.",Column -General,With which creature was the Egyptian God Horus identified,Falcon,General,Which 2 countries will host the 2002 Soccer World Cup finals,Japan - South Korea, Geography,What is the deepest land gorge in the world?,Grand Canyon -Food & Drink,French fries come from this country.,Belgium,General,Who directed the film Silence of the Lambs,Jonathan demme,Music,What Was Singer Chris Hamill's Stage Name,Limahl -Art & Literature,Which Famous Sculptor Was Refused Entry ToThe French Academy 3 Times ,August Rodin ,General,Who was the Roman god of agriculture,Saturn,Geography,Brussels is the capital of which country,Belgium -General,The art of tracing designs and taking impressions of them is ___________.,Lithography,General,French: done and past arguing about,Fait accompli,Science & Nature," 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.",11 -General,What did AJ stand for in Simon & Simon's AJ Simon?,Andrew Jackson,Geography,In which state is Appomattax,Virginia, History & Holidays,Which black athelete's successes at the Berlin Olympics caused Hitler to storm out of the stadium? ,Jesse Owens  -General,"Name beginning with ""A"" meaning "" moon shine",Aysel,General,In what Hitchcock film does he NOT appear,Lifeboat,General,Indiana jones: what state was indy raised in,Utah -General,Thumper was a rabbit from which film,Bambi,General,What is a group of this animal called: Chicks,Clutch chattering,General,Ha'aretz is a newspaper in which country,Israel -General,What emperor ordered St Peter crucified,Nero,General,What figure in greek mythology gave fire to man,Prometheus,Geography,What is the capital of Austria,Vienna -Music,To Which City Move It's Headquarters In 1971,Los Angeles,Music,"Which Band Performed ""Oh Yeah"" From The ""Ferris Buellers Day Off"" Soundtrack",Yello,Geography,In what island group is corregidor ,Philippine  -General,Hillary What bird lays an egg that is roughly a quarter of its body weight,Kiwi,General,What does the medical abbreviation LD stand for,Lethal dose,General,When was Abraham Lincoln elected,1860 -Sports & Leisure,What Type Of Bowler Might Use A Chinaman ,A Legspin Bowler ,General,Name Jennifer Anniston's Godfather,Telly Savalas,Art & Literature,Which US clarinetist players real name was Arthur Jacob Shaw? ,Artie Shaw  -General,Barry Allen was the alter ego of which DC comic superhero,The Flash,Music,Under What Name Did Yaron Cohen Win The Eurovision Song Contest In 1998,Dana International,General,Who Broke Jackie Stewarts Record Of 27 Formula One Wins,Alain Prost -General,What is a group of this animal called: Deer,Herd,General,Which former footballer is the Brazilian Sports Minister,Pele,General,What is the name of Wordsworth's cottage in Grasmere,Dove cottage -General,What is the flower that stands for: departure,Sweet pea,General,Who was the second president of the U.S.,John adams,General,Who founded the Ballet Russe,Sergei Pavlovich Diaghilev -Science & Nature,Where Is The World's Largest Atomic Establishment ,Underground At CERN Between France & Switzerland ,General,What did Dr Godfrey invent in 1762,Fire extinguisher,Sports & Leisure,"In Billiards, How Many Points Are Awarded For Potting The Red ",Three  -Sports & Leisure,Name The Rugby Union Trophy For Which England & Scotland Compete ,Calcutta Cup ,General,At whose court was Merlin the wizard,King Arthur Arthur,General,Where was the 1st u.s federal penitentiary,"Leavenworth, kansas" -Science & Nature,What Animal Is A Chester White? ,A Pig ,Music,"In the World Of Music Which Band is made up with the members Jim, Andrea, Caroline and Sharon",The Corrs,General,Dinotopia's illustrator,James gurney -General,What does sctv stand for,Second city television,General,Which actor was born Maurice Micklewhite,Michael caine,Music,"Who Had A 1972 Hit With ""Ooh Wakka Doo Wakka Day""?",Gilbert O'Sullivan - Geography,What is the basic unit of currency for Philippines ?,Peso,General,What is the minimum number of degrees in a reflex angle,180,General,Which British stage and film director won an Oscar in 2000,Sam mendes -General,According to 36% of Americans they have done what,Spoken with God,General,In Maryland its illegal to frighten who or what,A Pigeon,General,The eohippus was an early form of which animal,Horse -Entertainment,What film marked James Cagney's return to the screen after 20 years?,Ragtime,General,Katagelophobia is the fear of,Ridicule,Music,"""Going Nowhere"" Was A Hit In 1993, Who Sang It",Gabrielle - History & Holidays,Mark David Chapman was famous for what in 1980? ,Shooting John Lennon , History & Holidays,Name the author of Frankenstein ,Mary Shelley ,Music,How Did Several Spinal Tap Drummers Perish Prior To The Arrival Of Mick Shrimpton,All Spontaneously Combusted -Science & Nature,What Do The Initals A.I.D.S. Stand For ,Acquired Immune Deficiency Syndrome ,General,Blanchard and Jeffries crossed the English Channel in 1785 using what means of transport,Hydrogen balloon,General,Which Italian tractor maker tried making cars in 1960s,Ferruchio Lamborghini -Science & Nature, It takes an average of 345 squirts to yield a gallon of milk from a cow's __________,Udder,General,What is the flower that stands for: amiability,Jasmine,General,What's the capital of Malaysia,Kuala lumpur -General,We have used the Latin phrase ad hoc - what literally mean,For this special purpose,General,What is the fear of hospitals known as,Nosocomephobia,General,In which 1970's U.S. TV show would you meet the characters 'Radar' and 'Hot Lips',Mash -General,The Pindus is the main mountain range in what country,Greece,General,What is the only bird that can see the color blue,The owl,General,John McClane was fighting terrorists in a skyrise in which eighties movie?,Die Hard -General,What city is the queen of the pacific,San francisco,General,Who won each of golfs four grand slam tournaments at least three times,Jack nicklaus,General,What name is given to the process by which rocks break when they absorb water,Hydration - History & Holidays,This Spaniard conquered Mexico.,Hernando Cortez,General,"The three number systems commonly used in computers are binary, decimal and _________.",Hexadecimal,General,For which film did Humphrey Bogart win an Oscar in 1951,The african queen -General,"Flat, round, brown spots on the skin that contain an excess of melanin, the human skin pigment",Freckles,General,In Lang Kansas illegal ride a donkey in public unless it has what,A Straw hat on,General,How many legs does a crab have,Ten -General,What does the word khaki mean ?,Dusty,General,Which books chief rival is the Encyclopaedia Galactica,Hitchhikers Guide to the Galaxy,General,What does a cadastral map show,Large scale individual properties -General,What is the stage name of roberta anderson,Joni mitchell,General,"What American general declared ""I shall return""",Douglas macarthur,General,What sport considers it a foul to hold an opponent's head under water,Water polo -General,Karl Landsteiner Won The Nobel Prize For Medicine In 1930 For His Discovery Of What,Blood Groups,General,"On a suit of armour, the couter would protect which part of the body?",Elbow,General,What is the flower that stands for: estranged love,Lotus flower -General,What is the young of this animal called: Goat,Kid,General,During menstruation the sensitivity of woman's what is reduced,Middle Finger,Food & Drink,Webb's Wonderful and Winter Density are varieties of which vegetable ,Lettuce  -General,"In 1962 - cost 20,000 - size of a small suitcase - what",Portable computer,General,In golf what is the penalty for playing with your opponents ball,Two strokes added on,Music,On which label did all Sylvester's 1970s hits appear?,Fantasy -Sports & Leisure,Who did Sue Barker replace as host of the BBC quiz show (A Question Of Sport)? ,David Coleman , History & Holidays,From Which Country Did Saint Nicholas Originate ,Turkey ,General,What are the two main gases that make up our breathable air,Oxygen and nitrogen -Science & Nature,The process of water changing to water vapor is known as _______.,Evaporation,Science & Nature,What Chemical In Fireworks Gives A Yellow Flame ,Sodium ,General,80% of the worlds population wears shoes made in what country,China -Music,Name The Company Originally Started By (And Later Sold) By Richard Branson,Virgin,General,Why are we playing this game,Because we are bored,General,What kind of rock is marble,Metamorphic -General,Name the director of the film 'American Beauty',Sam mendes,General,Which footbal club won the European Cup the first 5 years in which it was held,Real madrid,General,What kind of nuts are ground up to make marzipan,Almonds -General,Jimmy Connors won the men's doubles at Wimbledon in the 1970s with which partner,Ilie nastase,Science & Nature,In which state is the Houston Space Centre?,Texas,General,Film title 'an officer and a ______',Gentleman -Food & Drink,Poteen is a distilled spirit made in the West of Ireland. What is it made from? ,Potatoes ,General,In Salt lake city it is illegal to carry an unwrapped what in street,Ukulele, Geography,What is the capital of Democratic Republic of the Congo ?,Kinshasa -General,"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,General,"The One Time Standard Computer Language ""ADA"" Was Named After The Daughter Of Which Famous Poet",Lord Byron,General,Who played the title role in the 1970's U.S. cop series Shaft,Richard roundtree -General,Who is donald duck's girlfriend,Daisy duck,General,Who said China is a big country inhabited by many Chinese,Charles de Gaulle,General,Which American city used to be called Yerba Buena,San Francisco -Science & Nature,Which Side Of The Brain Contributes To Rational Thought ,Left Side ,General,"Which Group sang the song ""November Rain""?",Guns n Roses,General,"Who said ""I’ve sometimes thought of marriage - then re-thought""",Noel Coward -Art & Literature,Which Stephen King Novel Is Set At The Overlook Hotel? ,The Shining ,General,What actor did time on a Georgia Chain Gang - Escaped 6 days,Robert Mitchum – Vagrancy,Music,What John Lennon/David Bowie single went to #1 in 1975?,Fame -Music,Amazing Grace Entered The Charts Eight Times In This Decade Sung By Whom,Judy Collins,General,Which magical city is located in the Valley of the Blue Moon,Shangri-La James Hilton Lost Horizon,General,"Isms: Public ownership of the basic means of production, distribution, and exchange",Socialism -General,"For which film did Anthony Quinn win an Oscar for Best Suporting Actor, in 1956",Lust for life,General,Where were the original loopholes,Castle walls – arrow firing slits,Music,According To The Nickelback Song Rockstar Exactly Where Do They Want Their Star On Hollywood Boulevard,Somewhere Between Cher & James Dean -General,What is the largest body of fresh water in the world,Lake superior,General,What wwii leader dallied with clara petacci,Benito mussolini,Sports & Leisure,Which American Football Team Won This Years SuperBowl (2006) ,New England Patriots  -General,Tsaritsyn in Russia used to be known as what,Volgagrad Stalingrad,Mathematics,A triangle with two equal sides is called __________.,Isosceles,Geography,Name the capital of argentina. ,Buenos aires  -General,What country has the largest armed force?,China,Science & Nature," __________ were domesticated around 4,000 years ago.",Camels, History & Holidays,*Arnold Schwarzenegger made his film debut in 1974 In What Movie * ,*Pumping Iron.*  -General,How many sayings did jesus say from the cross,Seven,General,What did john logie baird invent in 1925?,Television,Music,Which Beatles Classic Did Candy Flip Take Their Version Of To No.3,Strawberry Fields Forver -General,"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,General,"According to the saying, what speak louder than words",Actions,General,Which brass instrument has a slide,Trombone -General,In what form are the signals that a normal TV aerial receives,Analogue,General,Hockey the toronto ______,Maple leafs,Art & Literature,A representation of a human or an animal form. ,Figure -General,Aaron died on mount _____,Hor,General,What country is home to the Dresdner Bank,Germany,General,Which author created Fu Manchu,Sax Rohmer -General,"Assam, darjeeling and oolong are all types of what",Tea,General,What is the flower that stands for: energy in adversity,Camomile,Science & Nature,What is the chemical symbol for radon?,Rn -General,We've heard phrase I don’t give a toss - but Tos Greek for what,Bear, History & Holidays,"In film, the very secretative Alex Leamas came from where? ",In from the cold. The Spy Who Came In From The Cold . ,General,Barophobia is fear of,Gravity -General,With what body part is otology involved,Ear,Music,"In Which Disney Movie Were There Characters Called ""John, Paul, George & Ringo""",The Jungle Book, History & Holidays,Who is known as the high priest of revenge?,Philip Seldon -General,Which Country Owns Easter Island,Chile,General,Which famous financier is nicknamed 'The Sage of Omaha'?,Warren Buffet,General,Nikioli Poliakoff became famous under what name,Coco the clown -Geography,This Pacific island's puzzling monoliths attract ethnologists.,Easter island, History & Holidays,"Who graced the cover of the 1st 'Playboy' in 1953? A=Sophia Loren, B=Marilyn Monroe, C= Lauren Baccall ",B = Marilyn Monroe ,General,The capitol of Nigeria was Lagos what is it now,Abouga -General,What is the fear of mother-in-law known as,Pentheraphobia,General,In Scotland its illegal to be drunk in possession of what,A Cow,General,Jenny Von Westphalen was married to who,Karl Marx -Music,Which Was The Main Instrument Used By Vangelis On His Film Score Chariots Of Fire,Synthesizer,General,Luchiano Paverotti has what in his pocket for luck when singing,Bent Nail, Geography,"Wracked by heavy monsoon rains 3 to 4 months of the year, this is the wettest and most flood-prone nation in Asia.",Bangladesh -General,What was invented in the 1800s and sold as a diarrhoea cure,Tomato Ketchup,General,January in the USA is National what month,Soup,Music,Who Was The Manager Of The Sex Pistols,Malcolm McLaren -General,Apart From David Beckham Who Is The Only English Footballer To Be Sent Off During The World Cup Finals,Ray Wilkins,General,"In the movie ""Mall Rats"", What famous author was signing comic books",Stan,General,What is the world tallest horse,Shire Horse -Geography,By What Name Do Argentina Refer To The Falkland Islands ,The Malvinas ,General,Where would you find a corbicula,Honey bee – sacks carry pollen,Music,What Did Geri Write By Her Name On The Cover Notes For The Album “Spice”,Girl Power -General,Australian Clement Wragge instituted what,Naming Hurricanes, Geography,Mexico City is the capital of ______?,Mexico,General,"The Creature With The Largest Penis On Earth Is The Blue Whale , What Is The Largest Penis Ever Recorded Of This Species (Feet And Inches)",12 Foot 11 Inches -Food & Drink,What is made at St James's Gate in Dublin? ,Guiness ,Science & Nature,What is the name of the bone in the lower leg?,Tibia,Science & Nature, Atlantic __________ are able to leap 15 feet high.,Salmon -General,What were the nicknames of the dean brothers who pitched for the st louis cardinals,Daffy and dizzy,General,"What name is given to the traditional custom in Japan of viewing and enjoying flowers, especially Cherry Blossom?",Hanami,General,"Whose last words were ""lets do it""",Garry Gilmore -General,What U.S. state includes the telephone area code 503,Oregon,Music,"Who did Earth, Wind and Fire link with for ""Boogie Wonderland""?",The Emotions,Sports & Leisure,Who was the first bowler to take over 300 wickets in test cricket? ,Fred Truman  -General,Whisky and Drambuie mix to form what sickly cocktail,Rusty Nail,General,What beach provided the most resistance to Allied forces on D Day,Omaha,General,Which date is inscribed on the book held by the Statue Of Liberty?,July 4 1776 -General,From what language is the word 'mummy' derived,Persian,General,What Was The First Cd To Be Released In The USA,Born In The USA,General,In 1924 the worlds first book of what was published,Crosswords -General,What us state has sagebrush as its state flower,Nevada,General,"Who famosuly quoted ""Cogito, Ergo Sum""?",Rene Descartes,General,Who or what would be looked after in a creche,Children -General,In Winnipeg there is a statue to which bear,Winnie the Pooh,General,Where is westminster abbey,London,General,What dance was developed from the rumba and african dances,Conga -General,Pooley's Guide is used by amateurs and professionals in which profession and hobby,Flying,General,A mule is sired on a mare by an ass. What is the offspring of a stallion and a female ass,Hinny, Geography,What is the largest exclusively Indonesian island?,Sumatra -General,"What food links Dundee, Chorley and Eccles",Cake,General,What creature is nicknamed the old man of the sea,Sea Otter - it's white whiskers,General,In what country are most baseballs made,Haiti -General,What are the two cities in charles dickens' 1859 novel a tale of two cities?,London & paris,Music,"""I'll Be Missing You"" Was A Hit For Who In 1999",Puff Daddy,General,In Winston-Salem N Carolina its illegal under 7 year olds do what,Go to College -General,Film based PK Dick story We can remember it for you wholesale,Total Recall,General,Syngenesophobia is a fear of ______,Relatives,General,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 -Sports & Leisure,How many seams are there on a football (American),Four,General,In what French district do most of the best clarets come from,Medoc,General,Who painted 'irises',Vincent van gogh - History & Holidays,What Christmas Item Was Invented By Liondon Bakery And wedding Cake Specialist 'Tom Smith' In 1847 ,Christmas Crackers ,General,Crossair originated in what European country,Switzerland,General,Which 80s song is still the most requested at US weddings,Endless love -General,"On Airwolf, what instrument does Hawke play",Cello,Music,"Who Did ""Phil Oakley"" Team Up With For The Hit ""Together In Electric Dreams""",Giorgio Moroder,General,Whose film debut was Jennings in Revenge of the Creature 1955,Clint Eastwood -General,In 1926 Japan deleted 800000 feet from US films showing what,Kissing - it was unclean,General,Baseball: The Boston Red______,Sox,Food & Drink,A cluster or bunch of bananas is called a ?,Hand -Art & Literature,"An etching tecnique in which a solution of asphalt or resin is used on the plate. It produces prints with rich, gray tones. ",Aquatint,Music,"Who Recorded The 70's Disco Classic “You're My First, My Last, My Everything”?",Barry White,General,"Following earlier failures on TV, Danny Thomas successfully returns in",Make -General,Meaning person who overcomes name the ancient Indian religion,Jainism,General,"Pooler Jones, Lazy Plate, Jayne Hill and Buckthorn types of what",Barbed Wire,General,Which type of wheat yields flour used to make best quality spaghetti,Durum -General,In what country was the paperclip invented,Norway,General,If you were using Highroller Snooker 7 Lukki what are you doing,Fishing artificial flies, Geography,What is the capital of Washington state?,Olympia -General,Who starred in the film Willie Wonka and the Chocolate Factory,Gene wilder,General,In the Philippines what is lumpia,Spring Rolls,General,Which nursery rhyme is supposed to be based in the 'Black Death',Ring o ring o roses -General,Who created the children's land of Narnia and Lion Witch Wardrobe,Clive Staples Lewis,General,Historical usually Spanish warship,Galleon,General,The west what song did elton john and george michael sing as a duet,Don't let the sun -Religion & Mythology,The sea gods had a three_pronged spear called a(n) ________.,Trident,General,"Greek philosopher, who profoundly affected Western philosophy through his influence on Plato",Socrates,Music,"Joan O Neil Who Sings With The Tina Turner Tribute Band ""River Deep"" Is Also The Mother Of Which Very Famous Pop Star",Melanie Sport Spice Chisholm -Music,"Which 3 Family Members Released The Album ""Priority""",The Pointer Sisters,Music,Name Black Sabbath's Debut Hit,Paranoid,General,What does the girls name Linda mean,Serpent – meaning wisdom -General,An Arizona prostitutes organisation is called TWATS meaning,Tucson Whores and Tricks, History & Holidays,What year did British Honduras become Belize? ,1973 ,General,How many throwing events are there in a decathlon,Three -Food & Drink,What type of milk is a basic ingredient of Thai cookery? ,Coconut milk ,Science & Nature, A snail speeding along at three inches per minute would need 15 days to travel __________,One mile,General,In what unit is electrical current measured,Amperes -General,What actress played Rhoda,Valerie harper,General,Which part of his body did Charlie Chaplin insure,Feet,General,If sand is melted with limestone and sodium carbonate what is formed,Glass - History & Holidays,Who discovered Christmas Island on Christmas Eve 1777 ,Captain Cook ,General,The constellation Lacerta has what English name,Lizard,General,What was the first version of microsoft windows,Windows 286 -Geography,In which city is Red Square,Moscow,General,Michael di lorenzo was one of the lead dancers on which michael jackson video,Beat it,General,"Which Fruit Is Affected By A Grey Type Of Fungus Known Commonly As ""Noble Rot""",Grapes -General,What is the name given to part of the large intestine,Colon, History & Holidays,"After the fall of the manchu dynasty, there existed three political parties in china: The KMT, Nationalists and The ______ ?",Communists,General,Zorro the heroes name means what in Spanish,The Fox -General,Chopin played what instrument as a child,Piano,General,What does a notaphile collect?,Banknotes,Science & Nature,Which Bird Is The Emblem Of The United States ,Bald Eagle  -General,When was the maiden voyage of the 'Titanic',1912,Entertainment,What is the name of Duddley Do_Right's horse,Horse,Art & Literature,"In 'Romeo and Juliet', who gave a long monologue about Queen Mab?",Mercutio -General,What three European countries begin with the letter 'A' (alphabetically)?,"Albania, Andorra and Austria",General,The Hound of the Baskervilles was published in which year,1903,General,This is the fear of enclosed spaces.,Claustrophobia -General,What is removed with an orchidectomy,Testicle, History & Holidays,What famous soap opera duo reigned on General Hospital in the eighties? ,Luke and Laura ,Sports & Leisure,Which Sport Has The Most Umpires Per Player ,Tennis (15-1)  -General,What is the flower that stands for: benevolence,Potato flower,General,"Who first said ""Publish and be Damned""",Wellington re Harriot Wilson mistress,General,Spielberg named the shark in Jaws Bruce why,After his Lawyer -General,The study of human behaviour is __________.,Psychology,General,Who is minnie mouse's boyfriend,Mickey mouse,General,How Many Champagne Bottles Is A Jeroboam?,4 Bottles -People & Places,Which singer wrote the autobiography 'Take It Like A Man'? ,Boy George ,General,What links Pauldron Crisse Gorget and Tassle,Knights Armour, History & Holidays,How many gifts are given in total in the song The Twelve Days of Christmas? ,364  -Geography,In what city is the smithsonian institute ,Washington ,General,"Who wrote""poems are made by fools like me but only god can make a tree""",Joyce kilmer,General,Who won the world soccer championship in 1954,West germany -General,Pooh loves honey but which creature loves watercress,Roo,Sports & Leisure,What trophy is awarded to the winner of the NHL play-offs?,Stanley Cup,Food & Drink,What is Armagnac? ,"A dry, brown, brandy " -General,Who starred in the 1952 film 'niagara',Marilyn monroe,General,May 21st 1881 Clara Barton founded what,American Red Cross,General,What male name comes from Greek meaning defender of men,Alexander -General,What is a group of lapwings,Deceit,Science & Nature,Which American Car Of The 1940's Had A 3rd Central Headlight That Swivelled With The Front Wheels ,Tucker Torpedo ,General,Where is your Puricle,Space thumb extended forefinger -Music,Whose 1993 Debut Single Was Bombtrack,Rage Against The Machine,General,England Periodic Table: what is Rn,Radon,General,The rock band Metallica were famously involved in a legal wrangle with which online music sharing site?,Napster - Geography,What is the capital of Equatorial Guinea ?,Malabo,General,Ideophobia is a fear of ______,Ideas,General,Who invaded England in 55 BC?,Romans -General,"Which territory of North Africa, situated on the southern side of the Strait of Gibraltar, belongs to Spain",Ceuta,General,Who was the first black actress to win an oscar,Hattie macdaniel,General,"During the 1812 war between canada and the u.s, what did canadian troops invade and burn",White house -General,Oasis Decided To Split In August 2009 But What Song Was The Bands Very First UK Number One Single,Some Might Say,General,Its branches are Soto Renzai members ponder Koans what is it,Zen Buddhism,Geography,"Yuma, ____________ has the most sun of any locale in the U.S. _ it averages sunny skies 332 days a year.",Arizona -General,Which U.S. states way of life and culture is described as Cajun,Louisiana,General,Who in mythology was condemned to sit under a sword suspended by a hair,Damocles,Geography,In which city is the Mathematical Bridge? ,Oxford  -Science & Nature,What is an Ishihara Test used for? ,Check Colour Blindness ,Music,"Give Me Love Was The Plea From Which ""Rock Band""",Alcatrazz,Art & Literature,"Stephen King's: "" Pet ________"".",Cemetary -General,Who was king juan carlos' predecessor,General francisco franco,Art & Literature,What Is (Onomatopoeia) ,"The Use Of Words Which Sound Like The Event They Describe, Such As Bang ",General,What is the only mammal capable of true flight,Bat -General,In the Tom and Jerry cartoons name the other mouse,Nibbles or Tuffy,General,"What Word In the English Language Originates From The Czech Meaning ""To Work Very Hard""",Robot,General,What is a tombstone inscription called,Epitaph -General,Balneology Is The Study Of Which Creatures?,Whales,General,"Who sang that he was an ""okie from muskogee""",Merle haggard,Food & Drink,How many people in the world are classified as chronically undernourished ? ,800 million  -General,A Comte France Landgraf Germany Conde Italy what England,Earl,Science & Nature,What Is A Woman's Last Period Known as ,The Menopause , Geography,What is the capital of Rwanda ?,Kigali -General,"What New York Yankee's 1927 jersey fetched a record $360,000",Lou gehrig,General,Who was the sponsor for the tv show Wayne's World?,Noah's Arcade,Food & Drink,Rioja comes from which country? ,Spain  -General,"Agent Blue is a herbicide that was used agaainst the Vietnamese, what type of poisonous compound does it contain",Arsenic,General,In what country is The Duma part of parliament,Russia,Food & Drink,"Boston butt, jowl, and picnic ham are all parts of a what ",Pig  -General,The 1961 Mercedes 300sx had two firsts name either,Gull Wing doors – fuel injection,General,Unit of weight measuring fineness of silk and nylon,Denier, History & Holidays,"The world was declared safe from which virus in 1979, after it had killed more than 1 billion people? ",Smallpox  -General,What is the flower that stands for: early friendship,Blue periwinkle,General,Chicago Transit Authority is now known as which group,Chicago,General,Which vitamin is also known as pyridoxine?,Vitamin B6 -Music,Who Is Beck Hansen,Beck,General,Capital cities: Romania,Bucharest,General,Which word meaning crop growing comes from Latin to plough,Arable - History & Holidays,How Did Darth Vader Know What Luke Skywalker Got For Christmas ,He Felt His Presents ,Food & Drink,Thin round Mexican maize cake ,Tortilla ,General,How many folds does a monopoly board have,One -Sports & Leisure,The 1976 Summer Olympics were held in this city.,Montreal,General,Who lit the flame 1956 Olympics and then broke 8 world records,Ron Clark, History & Holidays,Who Invented The Spinning Frame In 1769? ,Sir Richard Arkwright  -General,What is Harry Houdini famous for being ?,Escapologist,General,What is the last book of the Old Testament,Malachi,Music,Who Had A Hit In 1992 With Hazard,Richard Marx -General,What is the Capital of: Iraq,Baghdad,General,"According to a recent survey among women, what is the least favorite part of the male body",Feet,Sports & Leisure,Which woman swimmer won an individual silver medal for Great Britain in the 1980 Moscow Olympics? ,Sharron Davies  -Music,What Was The Name Of Bill Haley's Best Known Band,The Comets,General,What real person has been played most often in films,Napoleon Bonaparte,General,Retsina is a wine from which country,Greece -General,What's the United Kingdom's largest ethnic minority,The scots scots,General,In the New Testament publicans had what job,Tax Collectors,General,Which pop group had a hit with Silence is Golden,Tremaloes -Science & Nature, A snake's __________ is located in the front one_fifth portion of its body.,Stomach,General,What animal does the adjective 'cervine' refer to,Deer,Sports & Leisure,"Until 2001, Southampton Played At The Dell But Have Now Moved To Where? ",St Mary's  -Music,Almost Unreal By Roxette Was The Original Soundtrack To Which Film,Super Mario Bros,General,The musical Chu Chin Chow is based on what fable,Ali Baba and the forty thieves,General,"What links Ciampino, Lod and Waalhaven",Airports Rome Tel Aviv Rotterdam -Science & Nature,In Which Country Was Fuel Injection For Cars Inroduced In 1954 ,Germany ,Music,"Which Band Recorded The Album ""Zenyatta Mondatta""",The Police,Science & Nature," When young abalones feed on red seaweed, their shells turn __________",Red -Music,Which Band Sang About Their Mothers In 1997,Spice Girls,General,What unusual item can you buy - vending machine Paris Metro,Levi 501s in 10 sizes,General,Who is the Roman equivalent of the Greek goddess Nike,Victoria -Science & Nature," Javelinas are very noisy animals among each other and squeal, snort, woof, and click their teeth to __________",Communicate,General,What nationality was Louis Braille,French,General,K-mart. Definately. Definately K-mart.,Rainman -Sports & Leisure,"What is the connection between Alex Higgins, Barry McGuigan & Jimmy White? ",Nicknames Connected With Wind ,General,"What is ""the other white meat""",Pork,General,Who was the oldest man to hold a boxing title,Archie moore -General,What animal was believed to be a cross camel - leopard,Giraffe,General,Collective nouns - a group of what is a charm,Goldfinches,General,What auto company raised a giant three pointed star above the Stuttgart skyline,Daimler benz - History & Holidays,"1955 saw the worst ever disaster in motor racing history when a Mercedes Benz hurtled into the crowd at which French race track, killing 86 people in total ",Le Mans ,General,Which tube line runs to Heathrow Airport,Piccadilly line,General,Kipros in Greek Kibris in Turkish what is it in English,Cyprus -Geography,What is the capital of Florida,Tallahassee,Science & Nature,An animal is a fish if it has _________.,Gills,General,Who is the mother of apollo and artemis,Leto -General,Beethoven's third symphony is nicknamed what,The Eroica, History & Holidays,Who succeeded Winston Churchill as Prime Minister of England?,Anthony Eden,General,What year's Winter Olympics introduced the super giant slalom,1988 -Geography,In which city is the C.N. Tower,Toronto,Science & Nature,Emphysema Affects Which Part Of The Body? ,Lungs ,General,Which astronaut did Tom Hanks play in the film Apollo 13,Jim lovell -Geography,Across Which River Is The Longest Single Span Suspension Bridge ,The Humber ,General,Generation X Toys: Design tool for budding Gloria Vanderbilts,Fashion plates, Geography,Burma was the former name of which country ?,Myanmar -People & Places,Who sacked Jonathon Shallit as her manager in 2000? ,Charlotte Church ,General,What do Al Gore and Tommy Lee Jones have in common,At Harvard Together,General,"Vivaldi, Purcell and Handel's music is what type",Baroque -General,What is a strong aversion to beards known as,Pognophobia,General,What Is The Collective Term For A Group Of Apes,A Shrewdness,General,Where is madras,India -General,What is Switzerland's official name,Swiss Confederation,General,The Afghani tribesmen drink Khoona on wedding night what is it,Watered down warm bulls semen,Geography,What country is Santo Domingo the capital of,Dominican republic -General,The De Beers group of companies controls more than 80% of the world's supply of ______?,Rough diamonds,Music,Which Pop Group Were The Central Characters In The 1990 Film “Seeing Double”,S Club 7,Entertainment,Killed Superman,Doomsday -General,"What is the literal meaning of the Dutch word brandewijn"" which we call brandy",Burnt wine,General,Where did anne frank die,Belsen,General,Two possible answers - in which country would you find Shit,Iran or Ethiopia -General,Who wrote most of the new testament books,Paul,Religion & Mythology,"In Greek mythology, who were Achilles' parents?",Peleus and Thetis,General,What company was the first to mass produce watches in 1893,Ingersoll - sold $1 each then - History & Holidays,Which 60's Movie features The Line back in your gilded cage Melanie Daniels ,The Birds ,General,What Japanese word means good for nothing,Yakuza,General,"What comic immortalized the line, ""take my wife, please""",Henny youngman -General,What democratic country gives military aid to both iran and iraq,United,General,"Who was the star of the movie ""Running Brave""",Robby benson,Science & Nature,Where Do Swallows Go When They Migrate From Britain In The Winter ,South Africa  -General,Who did squeaky fromme try to assassinate,Gerald ford,General,What is the Australian name for a long narrow ox bow lake,Billabong,Food & Drink,Which Alcoholic drink is the main ingredient of the cocktail 'Zombie'? ,Rum  -Music,"Which Artist One Had A Musical Alto Ego Called ""The Thin White Duke""",David Bowie,Music,In Addition To Co-Directing West Side Story With Robert Wise What Was Jerome Robbins Other Contribution To The Film,Choreography,Food & Drink,What is the name of cold Spanish soup made from peppers and tomatoes? ,Gazpacho  -Science & Nature,How man legs does a crab have,Ten,General,"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,General,"South what actor did barbara walters ask: ""do you take steroids""'",Arnold -Music,"Who Sang The Song ""Sweet Child O Mine"" In The 90's",Guns N Roses,General,What is a Sybian,Vibrating saddle dildo,General,Narton is a mixture of baking soda and salt what was it used for,Mummification -Music,The KLF Had Their First No.1 Under A Different Name What Was It,The Timlords / Doctorin The Tardis,Food & Drink,Which vegetable is also known as the spinach beet or seakale beet? ,Swiss Chard ,General,St Gerard is the Patron Saint of who,Pregnant Women -Science & Nature,"Hammer, anvil, and stirrup are parts of the ________.",Ear,General,"In the tv series 'the fall guy', who did lee majors play",Colt seavers, Geography,To what country do the Faeroe Islands belong?,Denmark -Toys & Games,This is the strongest poker hand you can get.,Royal flush, Geography,Which imaginery line approximately follows the 180 degree meridian through the Pacific Ocean?,International Date Line,General,What is the fear of heaven known as,Ouranophobia -Music,"Confide In Me Was A Hit In 1994, Who Was The Singer",Kylie Minogue,General,"Countries of the world:north eastern Europe & northern Asia, major cities include St. Petersburg & Novosibirsk",Russia,General,Which saint was the first Bishop of Paris,St denis -General,"In what is food surrounded with dry, hot, circulated air",Convection oven,General,"Which capital city was originally scheduled to hold the 1940 Summer Olympics, and had to wait for twenty-four years",Tokyo,General,Rice-Kellogg invented what in 1924,Loudspeakers -General,What Japanese dish consists of Tofu Beef and vegetables,Sukiyaki,General,What does conus stand for,Continental united states,General,What sport you would tick tack or walk the dog in,Skateboarding -Music,From which musical did ‘One Night in Bangkok’ & ‘I Know Him So Well’ come?,Chess,General,Mendelssohn's symphony number 4 is nicknamed what,The Italian,Science & Nature," A hibernating woodchuck breathes only ten times per hour. An __________ woodchuck breathes 2,100 times an hour.",Active -Science & Nature,Of Which Animal Is The Gander The Female? ,Goose ,Food & Drink,What drink was invented by John Pemberton in 1886? ,Coca Cola ,General,Who designed the first jet engine - flew in 1941,Sir Frank Whittle -General,What is 2000 in Roman Numerals,MM,General,"Which Spice Is Featured On The Flag Of ""Grenada"" The Isle Of Spices",Nutmeg, Geography,What is the basic unit of currency for Croatia ?,Kuna -General,"In Coronation Street, which room in the Rover's Return was regularly used by Ena Sharples and friends",Snug,Entertainment,"Who played the lead in the movie ""Snatch""?",Brad Pitt,General,Children take SATs what does SAT stand for,Standard assessment tasks -General,What is the correct term of address to the Pope,Your Holiness,General,"What instrument did jazz musician, Chet Baker, play",Trumpet, Geography,What is the capital of Burundi ?,Bujumbura -General,What is a person with numerophobia afraid of,Numbers,General,"Who does the statue, the Colossus of Rhodes, depict ?",Helios,Music,What Nickname Did Radio 1's DLT Give To Olivia Newton John,Olivia Neutron Bomb -General,When is the only time a flag should be flown upside down,Emergency,General,In what Australian state would you find Dubbo,New south wales nsw,General,Parliament what is the capital of bulgaria,Sofia -Science & Nature,What is the chemical name for quicksilver?,Mercury,General,Which chess player was beaten by IBM's 'Deep Blue' in 1997,Gary kasparov,General,Who wrote the music for the film ET (both names),John Denver -Sports & Leisure,In Which Card Game Might You Be Dealt A Yardborough ,Bridge (No Card Over 9) ,General,In Which Former Soviet Republic Do 100 Luma Make A Dram,Armenia,Music,What Are The Names Of The 4 Members Of U2,"Bono, The Edge, Adam Clayton, Larry Mullen" -General,What is a group of grasshoppers,Getting bald,General,What's the most common first name in the world,Muhammad,General,Who was the only World Heavyweight boxing Champion to go undefeated throughout his career?,Rocky Marciano -General,What not so hep disease had its virus finally identified in 1984,Hepatitis,General,Seplophobia is the fear of,Decaying matter,People & Places,Who was The Naked Chef ,Jamie Oliver  -General,Which British King had the-longest reign,George iii,General,In 1969 Sport was the first magazine to run an ad for what,Condoms,General,The average person eats 800 in their lifetime 800 what,Chickens -General,"On December 1, 1917, who opened Boys Town, a farm village for wayward boys, near Omaha, Nebraska",Father Edward Flanagan,General,"Inderan, Delgado, LeMond and Fignon names in what sport",Cycling,General,What paper is used to test acid and alkali,Litmus -General,What is the flower that stands for: coldheartedness,Lettuce,Geography,What is the Administrative Centre of East Sussex ,Lewes ,General,What does the computer term 'mmu' mean,Memory management unit -General,In what sport do you find 'coursing',Greyhound racing,Geography,Brussels is the capital of which country ,Belgium ,Sports & Leisure,Which club did Jose Mourinho leave to become manager of Chelsea in 2004? ,Porto  -General,"In The World Of Music How Is ""Leslie Charles"" More Commonly Known",Billie Ocean, History & Holidays,Who played an elf called Patch in the film 'Santa Claus the Movie'' ,Dudley Moore ,General,La Sila lies in which region of Italy,Calabria -Music,Whose Operas Include Tanhauser & Tristan Und Isolde,Wagner,General,What is the strongest muscle,Tongue,Music,From Which City Do The Smiths Hail,Manchester -General,What actor was once fruit picker iceman truck driver propman,John Wayne,General,What was Anita Bryant known as because of the product she advertised,Coke girl,Entertainment,How many Oscars did Ben Hur win?,Eleven -General,Name the Duke of Wellingtons horse at Waterloo,Copenhagen,General,What is the commonest symbol on flags of the world,Star,General,Whose memoirs were called There and back again,Bilbo Baggins The Hobbit -General,Who composed the Symphonies Fantastique,Hector Berlioz,Entertainment,What was the first CD pressed in the USA?,Born In The USA,General,"Palm, Olive, Cyprus and Cedar what is the biblical link",Woods cross made -General,Whom did David Steel succeed as leader of the Liberal Party,Jeremy thorpe,Science & Nature, The life expectancy of the average mockingbird is __________,10 years,General,Where is the arch of hadrian,Athens -General,How many hurdles are there in a 400 metres hurdle race,Ten,General,What are put into an omelette in a Hangtown Fry,Oysters,Entertainment,What was Daffy Ducks usual closing line,You're dispicable ! -General,Who tells the story in The Arabian Nights,Sheherazade,General,What is the Capital of: Burundi,Bujumbura,General,What TV personality did Doritos commercials?,Jay Leno -General,Tanzania is the country that resulted from the union of zanzibar and ______,Tanganyika,General,"Which Game Invented By Keen Birdwatcher ""Peter Adolh"" & Named After The Latin For Hobby Hawk Was Axed By It's Creator's In The Year 2000 After A Run Of 53 Years",Subbuteo,Entertainment,Andre Rieu and the Johann Strauss Orchestra are famous for what musical love piece,Romeo and Juliet -General,"In common: henry ford, adolf hitler, frank sinatra, orville and wilbur wright",Secondary school dropouts dropped out of school school drop out,General,"Which chemical element emits a greenish glow in air, and, unless kept in water, burns of its own accord",Phosphorus,General,Greeks Romans regarded what herb as symbol immortality,Tansy -General,Which detective was played by Jack Webb in Dragnet,Sgt joe friday,Music,"What Instrument Do You Associate With ""Yehudi Menuhin""",Violin,Music,"Who Was The Subject Of The Autobiography ""Tainted Life""?",Marc Almond -General,What do americans call chick peas,Garbanzo beans,General,Small parrot often kept as a pet,Budgerigar,Food & Drink,Where Might You Find 'Dead Mans Fingers' ,In A Crab  -Food & Drink,Which French District Does Claret Come From ,Bordeaux ,General,What sort of creature is a bariroussa,A pig,General,"In Greek mythology, as what were apricots known",Golden apples -General,"The Church of Santa Maria delle Grazie is a World Heritage Site, in which Italian city would you find it",Milan,General,A Seattle ordinance says goldfish in bowls must do what in buses,Stay still - not move, Geography,What is the capital of Luxembourg ?,Luxembourg - History & Holidays,"""What Native Language Would Jesus Christ Have Spoken ? (""""Hebrew, Sanskrit, Arabic, Aramaic"""" ) "" ",Aramaic , History & Holidays,In What Year Did The French Revolution Begin ,1789 ,Science & Nature,What Is PH A Measure Of ,Acidity Or Alkalinity  -General,What religion was Adolf Hitler,Roman Catholic,Music,"How In The World Of Music Is ""Helen Folosade"" Adu More Commonly Known",Sade,General,"What Liverpool band popularized the Doors' ""People Are Strange?"" in the 80's?",Echo and the Bunnymen -Music,"Which Member Of Duran Duran Produced ""Kajagoogoo's"" First Album",Nick Rhodes,General,Anothe name for an artists workshop or studio,Ateller,Sports & Leisure,"England Played Football At The Weekend Or Tried To But Only Managed A 0-0, Draw Who Did They Play Against ",Macedonia  - History & Holidays,Which Belgian noble woman was sentenced to death for bathing in the blood of servant girls she had murdered in order to keep her young ,Countess Elizabeth Bathory ,General,Shakespeare play set in Ephesus has two pairs identical twins,Comedy of Errors,General,How did Indiana previously know Marion in Raiders of the Lost Ark?,He studied with her Father -General,What is a coral island consisting of a ring of rock enclosing a central lagoon,Atoll,General,Which wine grape variety is most planted in California,Chardonnay,General,"British rock-music group that rivaled the popularity of the group's early contemporaries, The Beatles",The rolling stones -Sports & Leisure,A Snooker Player Makes A Break Of Eight Points. Which Three Colours Are Potted? (PFE) ,"Red, Yellow & Brown ",Music,Which Female Vocalist Would You Most Associate With Fairground Attraction,Eddi Reader,General,In which movie is happy bob barker's partner,Happy gilmore -General,"In the 1980 Summer Olympics, Nadia Comaneci was judged to have given a perfect performance on the asymmetrical bars and which other exercise",The beam,General,Who was the first U.S. secretary of the treasury,Alexander hamilton,General,The first section of railway track in Britain ran between which 2 places?,Stockton to Darlington -General,What fish was the subject of dispute Spain Canada in 1995,Turbot,General,Where is the only bone not broken because of a skiing accident,Inner ear,Music,Who Sang The Theme For The Bond Film “For Your Eyes Only”?,Sheena Easten -General,A roofed gallery with an open arcade or colonnade on at least one side.,Loggia,General,Yamoussoukro is the capital of which country,Cote d'ivoire,General,"What's a ""semaphore""",Arm signals -Sports & Leisure,In which game would you have a pitchers mound and an outfield? ,Baseball ,General,"Who famously had a sign on his desk saying ""The Buck Stops here""",Harry truman,General,In the Vietnam war Comic Books was US military slang for what,Maps - History & Holidays,Which Queen Had An Extra Finger? ,Anne Boleyn ,General,"When Saigon fell, the signal for all Americans to evacuate was this Bing Crosby song playing on the radio.",White Christmas,Science & Nature,Where do you find the medulla oblongata?,Brain -Science & Nature," __________ 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,General,Light brown cane sugar,Demerara,General,What given out celebrate birthday of King Bjumbal Thailand 1983,Free Vasectomies -General,"What goes with ruby, emerald and sapphire to make up the world's most valuable gems",Diamond,General,"Which horticultural fungicide, consisting of equal parts of copper sulphate and lime, has the same name as a French port",Bordeaux mixture,Sports & Leisure,Which Country Hosted The 2004 Summer Olympics ,Greece / Athens  -General,In which country were Lada cars manufactured?,Russia,General,Who was the only boxer to knock out mohammed ali,Larry holmes,General,In the Archie comics what is Jughead's first name,Forsyth -Music,"Who Released The Original Recording Of ""Lets All Chant""",The Michael Zager Band, Geography,What is the basic unit of currency for Togo ?,Franc,Music,What Do The Initials ELO Stand For,Electric Light Orchestra -General,"What links Iguanas, Koalas and Kimono Dragons",Two Penises,General,William Tayton was the first man to do what,Appear on TV – at Bairds demo,People & Places,What Was Evonne Cawley's Madien name ? ,Goolangong  -General,The song Proud Mary was writted by ___.?,Creedence Clearwater Revival,People & Places,Who Was The Young German Who Landed His Plane In Red Square ? ,Mathias Rust ,General,How many frets on a stratocaster?,22 -General,Who was the Prime Minister of Malta between 1971 and 1984,Dom mintoff,Sports & Leisure,Which formula one team does Juan Pablo Montoya drive for? ,Mclaren ,Art & Literature,In Which Shakespearean Play Would You Find The Clown Costard ,Love's Labour Lost  -Music,The Tramps came from which US city?,Philadelphia, History & Holidays,Which pie originates from medieval Christmas time? ,Humble Pie ,General,Who was Humphry Bogart's first wife,Helen Mencken -General,Who played the girl on the motorcycle in a film of same name,Marianne Faithful,General,Gymnophobia is a fear of __________,Naked bodies,General,Who was the latin bombshell that played Selena in the Selena bio-pic?,Jennifer Lopes -General,Robin Hood: Prince of Thieves was released in what year,1992,General,Isobella Mary Mayson born 1836 remembered as who,Mrs Beeton,General,The Kalahari desert is mainly in which country,Botswana -General,Whose music featured in The Clockwork Orange,Beethoven,Geography,What is the capital of Germany,Berlin,General,What is a pugilist,Boxer -General,What bites campers on the big toe,Vampire bat,General,What subject Ben Franklins letter to Royal Academy - Brussels,Perfuming Farts,General,Who was Sir Laurence Olivier's second wife,Vivien leigh -General,The song I Talk to the Trees comes from what musical,Paint Your Wagon, Language,What ONE word fits? ____hood; ____hole; ____date.,Man, Geography,Which country has the fourth largest population ?,Indonesia -General,A catalogue of words and synonyms?,Thesaurus,Science & Nature,Which Is The Smallest Of All Birds ,"Bee, Hummingbird (2 Grams) ",General,What is Manchester United's home stadium called,Old trafford -General,"Solar time what's the usual age for a jewish boy to celebrate his ""bar mitzvah""",Thirteen,Science & Nature,What term is given to the center of a black hole?,Singularity,General,What did steve martin once call terre haute,Nowhere u.s.a - Geography,In which state are the Everglades ?,Florida,General,The television detective Banacek was played by whom,George peppard,General,What is Conway Twitty's real name?,Harold Lloyd Jenkins -General,Who was the first woman to swim from port angeles to victoria,Marilyn bell,Music,"Who Recorded The Albums ""Emotions"" & ""Music Box""",Mariah Carey, Geography,Of which country does the Kalahari Desert cover 84%?,Botswana -General,Front which part of a pig do we get ham,Hind leg,Food & Drink,Which bean is used to produce a tin of baked beans? ,Haricot ,Music,Maxx Had Two Top Ten Hits In 1994 Name One Of Them,"""Get-A-Way"" And ""No More (I Cant Stand It)" -Geography,Name the largest island in the world. ,Greenland ,Art & Literature,"A European style of the late eighteenth and early nineteenth centuries. Its elegant, balanced works revived the order and harmony of ancient Greek and Roman art. ",Neoclassicism,General,Which prop item did MGM ban from film sets in the early 50s T,V sets -General,Who Was The First Actress To Be Featured On A Postage Stamp?,Grace Kelly,General,What was the colour of the 1985 film that gave Whoopi Goldberg her first Oscar,Purple,General,"Who was lord mayor of london in 1398, 1406 and 1419, and is most famous for his legendary cat",Richard whittington -General,What is the minimum IQ score for the genius category,140, History & Holidays,Who Played The Role Of Flick In The Tv Soap Neighbours ,Holly Valance ,General,"In which 1952 film, directed by John Ford, did the character Sean Thornton appear",The quiet man -General,"During The 1980's Patrick Bossert, Was The First Person On The Planet To Do What",Solve The Rubiks Cube,General,"Which Now Decased Actor & Comedian Provided The Voice Of ""Pipkin"" In The 1976 Movie Watership Down",Roy Kinear,Music,Which 2 Records Reached No.1 For Olivia Newton John And John Travolta,You're The One That I Want / Summer Nights -General,What king was murdered by macbeth,Duncan,Music,Appetite For Destruction Was The Debut Album For Which Group?,Guns N Roses, Geography,What is the basic unit of currency for Germany ?,Deutsche mark -Geography,Which Islands Were The Subject Of A War Between Argentina And Britain in 1982? ,Falklands ,General,"Which group sang the song ""Smells Like Teen Spirit""?",Nirvana, History & Holidays,Who is best remembered as the mistress of Lord Nelson? ,Emma Hamilton  -People & Places,What Is Ronald Biggs Famous For ,Being A Great Train Robber ,Sports & Leisure,Who was stabbed on court at Wimbledon by a fan of her chief rival ,Monica Seles ,General,"From Which Common Condition Would You Be Suffering If You Had ""PodobromhidosIs""",Smelly Feet -General,Who wrote Moon River used in Breakfast at Tiffanies,Henry Mancini,Music,Who Had A Massive 90's Hit With Rhythm Is A Dancer,Snap,General,In heraldry what shape is a pile?,Inverted Pyramid -General,What is the currancy unit of El Salvador,Colon,General,What was the symbol for the house of lancaster,Red rose,Toys & Games,What is another name for the card game 'Twenty-one'?,Blackjack -Art & Literature,What Dutch master painted 64 self-portraits?,Rembrandt,General,"In Greek mythology, danae was the mother of ______",Perseus,Science & Nature,Who is the only person two win two nobel prizes?,Marie Curie - Geography,What 2 countries have square flags?,Switzerland and the Vatican,General,"A ballet with a plot, usually tragic, to bring dramatic coherence to the performance of ballet.",Ballet d'action,General,"Smoke, fog, & mist are all___.",Aerosols -General,Which disease was once known as white plague,Tuberculosis,General,What is the area code for cruise ships in the Atlantic Ocean,871,General,Unusual (for him) role Bogart play in The Return of Doctor X 1939,A Vampire -Food & Drink,"Carrots Are Rich In which Vitamin Is It A,B,C,D ",A ,Entertainment,"Who directed the movie ""Blade Runner""?",Ridley Scott,General,A Renifleur gets aroused from doing what,Sniffing underwear -Science & Nature, An __________ may weigh as much as 300 pounds. Its intestinal tract is 45 feet long.,Ostrich,General,Name the subject Harry Harrison's 1977 book Great Balls of Fire,Sex in Science Fiction,General,What is the heraldic term for a small square division on a shield,Canton -General,"A famous RAH novel, as well as a number believed to be cursed",The number of the beast,General,How do frogs breathe under water,Through the skin,General,Mary Leta Dorothy Slaton became famous as who,Dorothy Lamour -General,Who signed the declaration of independence,John hancock and charles thomson,General,"In living organisms, what do lysins destroy",Cells,Music,Name The Australian Who Represented The Uk At The 1996 Eurovision Song Contest?,Gina G -General,What is football called in Italy,Calico,General,Who was Jesus betrayed by? ,Judas Iscariot ,General,What does Beetlejuice eat when he reaches out of his grave in the scale model of the town?,A Fly -General,"Which city's music was featured in ""I Feel Fine""",Liverpool's,General,"Who wrote 2001, A Space Odyssey",Arthur c clarke,Music,Name Golden Earings 70's Hit,Radar Love -Music,Who Asked Do You Want To Know A Secret,Billy J Kramer & The Dakotas,General,Someone who treats feet and their ailments,Chiropodist,Technology & Video Games,The Nintendo 64 was titled under what name during production? ,Project Reality -General,Napoleon had a fear of what - Aelurophobia,Cats,Art & Literature,Where Is The Prado Gallery ,Madrid ,General,For bangla desh What's Bill Cosby's full name on The Cosby Show,Heathcliff huxtable -General,What nation has had its own scandels dubbed muldergate & inkathagate,South africa, History & Holidays,In Which Tim Burton Film Did Johnny Depp's Character Have To Confront The Legend Of An Axe Wielding Headless Horseman ,Sleepy Hollow ,General,Who is the Patron Saint of Artists,St Luke -General,"In the dice game 'craps', what is a throw of double one called",Snakeeye,General,What's a liuor of apricot pits,Amaretto,Music,What Musical Instrument Does The Leader Of An Orchestra Always Play,Violin -General,Which Charcter Did “ Neil Hamilton ” Play In The Original Tv Series Batman?,Chief Commisioner Gordon,Music,"Who were Mark Farner, Mel Schacher and Don Brewer?",Grand Frank Railroad,General,"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 -General,Who invented Fingerprint Classification?,Francis Galton,General,In Portrait Gallery there's a picture of Livingstone sitting on what,A Rhinoceros,General,What is the Capital of: Kiribati,Tarawa -General,Who was the last native-born Prince of Wales,Owen glendower,General,Ligyrophobia is the fear of,Loud noises,General,Which country has the most cars per mile of road?,England -Science & Nature,Which Contemporary Scientist Is Suffering From From Motorneurone Disease ,Steven Hawkins ,Entertainment,Who sang 'Any Way You Want Me'?,Elvis Presley,General,"Blender Music Artists: Who did ""Ticket to Ride"" in 1965",Beatles -General,"A turn on one leg, with the toe of the other leg touching the knee of the turning leg.",Pirouette,Geography,Where Is The Bridge Of Sighs ,Venice , Geography,What is the basic unit of currency for Djibouti ?,Franc -General,What's the official state sport of alaska,Dog sledding,General,What's the name of the second book in the Bible,Exodus,General,In what field was Terence Donovan famous,Photography -General,What is the Capital of: Ireland,Dublin,General,What was Winston Churchill's favourite participation sport,Polo,Language,What does the acronym 'scuba' mean?,Self Contained Underwater Breathing Apparatus -General,"Several different ways in what printing may be accomplished, such as lithography, letterpress, flexography, gravure, & screen printing",Printing techniques,Food & Drink,From Which Fruit Is Grenadine Made ,Pomegranate ,General,Which part of the tree produces the aromatic bitter of Angostura Bitters,Bark -General,What is the oldest bridge over the Seine in Paris,Pont Neuf, History & Holidays,In the Christmas song 'Let It Snow' what was the weather described as? ,Frightful ,General,Where is the original Spa,Liege Belgium -General,"Encounter on March 5, 1770, five years before the American Revolution, between British troops and a group of citizens of Boston",Boston Massacre,General,What animal helped free the trapped lion in Aesop's fable,Mouse,General,Zambia and Zimbabwe used to be called what,Rhodesia -General,Shbat is Arabic for what month,February,General,Cher Ami a homing pigeon won the DSC and had what item,A Wooden Leg,General,What is an Ulster,Long overcoat -General,What was the name of Hamlets father,Hamlet,General,What does the navajo term 'kemo sabe' mean,Soggy shrub,Science & Nature,Which British Sports Car Company Was Founded In 1962 By Jem March & Frank Costin Whose Names Inspired The More Continental Sounding Company Name ,Marcos  -Entertainment,"Name the town that Fred, Wilma, Barney, and Betty lived in.",Bedrock,General,Somewhere Out There is a song from what movie,An american tail,General,Conventional rules of social behaviour,Etiquette -Music,"Whose Debut Album ""I Should Coco"" Reached No.1 In The UK Album Charts",Supergrass,General,What sport is legal in only 16 American States,Greyhound Racing,Music,Which Was The Only Status Quo Record To Go Top 10 In The 90's,The Anniversary Waltz (Part 1) -Science & Nature,What Is Dry Ice ,Solid Carbon Dioxide ,General,Who won the russian power struggle to succeed lenin,Stalin, History & Holidays,Who was the first woman in space?,Valentina Tereshkova -General,In Morrisville Pennsylvania women need permit to wear what,Cosmetics,General,What Bond film was entitled The Dead Slave in Japan,Live and let Die,General,Where could you spend a Metical - capital Maputo,Mozambique -Entertainment,"Who says, ""Th-th-th-that's all folks!""",Porky Pig,General,What make of car is famously driven by Mr. Bean?,Mini,General,What song did bobby hebb sing to his brother in 1966,Sunny -General,18% of Americans mention who in their will,Their pet,Music,"How Many Weeks Did Abba Spend In The UK Charts In The 70's (106, 140, 181, 241)",181,General,Which organisation has been selling racehorses since 1176,Tattersalls -General,Who was both the 22nd & the 24th president of the US,Stephen grover cleveland,Music,"Which Loser Was Winning In Both ""The Square"" & The Charts In 1986",Nick Berry,General,How many lines make up a number on a digital clock?,Seven -General,"Who said ""all you need to fly are lovely things and fairy dust""",Peter pan,General,Hippoglossus-hippoglossus is which common sea fish,Halibut,General,WG Grace captained England at cricket and what else,Bowls -General,What is never shown in a Las Vegas Casino,The Time - No Clocks,Sports & Leisure,Which Former World Boxing Champion Was Jailed In May 2006 For Dangerous Driving? ,Naseem Hamed ,General,Lady when you're with me I'm smiling' were lyrics from which group's 1973 second album,Styx -General,Which London landmark is now the depository of the royal coronation regalia,The tower of london,Science & Nature,Paleontologist Sir Richard Owen Is Credited With Coining The Name 'Dinosaur' In 1841. From Greek Origin What Is The Rough Translation Of The Term ,Terrible Lizard (Deinos Saurus) ,General,In which sport does a player address the ball,Golf -General,The average adult human has 32 of these,Teeth,General,"From which movie comes the song ""Under the Sea""?",Little Mermaid,General,Who Was The First Group To Clock Up 50 Appearances On Top Of The Pops?,Status Quo -Entertainment,What term is used for the speed at which a piece of music is played ?,Tempo,General,"The first U.S. marines wore high leather collars to protect their necks from sabres, hence the term __________",Leathernecks, Geography,Monaco has the same flag as what other country?,Indonesia -General,What is a virgule,The / slash,General,Which car company makes the Celica,Toyota,Science & Nature,What scale is used to measure wind speed ?,Beaufort -General,Who was the Greek god of sleep,Hypnos,General,What colour are lobsters,Dark Blue/green pink when cooked,General,"Who composed the title music to the film ""The Deerhunter""",Stanley myers -General,Which Science Fiction author created The Triffids,John Wyndom,General,What country calles themselves Siomi?,Finland, History & Holidays,One who fought professionally in Roman arenas was a(n) ____________.,Gladiator - Geography,What is the capital of Mongolia?,Ulan Bator,General,What is the birthstone for may,Emerald,General,Between 1804 - 1873 1676 patents issued for what item,Washing Machine -General,Where was printing by movable type invented,China,Food & Drink,The hot dog was originally imported to the US from which city? ,Frankfurt ,Entertainment,Who was the Cisco Kid's faithful sidekick?,Pancho -General,Slang word for huge or enormous,Humongous, History & Holidays,Who did Tom Cruise marry on Christmas Eve 1990 ,Nicole Kidman ,General,Which British town is famous for its cutlery production,Sheffield -Sports & Leisure,Which Country Won The Most Gold Medals At This Years Olympics (Bonus Pt For How many) ,China (51) ,General,Who is the Roman God of Fire,Vulcan,General,"Crusher Which word is derived from ""user of hashish""",Assassin -Sports & Leisure,Nordic And Alpine Are Two Main Categories Of Which Sport? ,Skiing ,General,In The Classic Tv Show The Muppets What Was The Name Of The Chicken & Also Gonzo's Love Interest,Camilla,Science & Nature,Who Invented The Lift ,Elisha Otis  -Geography,"What famed ranch can you see from ranch road no. 1 near stonewall, texas ",The lbj ranch ,Food & Drink,How is steak tartare cooked? ,It is served raw ,General,Where would a soldier wear a Havelock,Head in Desert -General,"In the opera, what kind of factory did Carmen work in",Cigarette,General,"Which American newspaper has the slogan ""All the news that's fit to print""",New york times,Music,What is the name of the lead singer in Status Quo?,Francis Rossi -General,Hashimoto's disease is the malfunctioning of which gland,Thyroid,General,Endorphins are produced in the brain and in the pituitary gland. What is their function,Pain killers,General,"In the bible, who was asked to sacrifice his only son",Abraham -General,Iris Somerville - killed London 1982 - Lightning struck what,Metal Support on her Bra, Geography,What is the capital of India?,New Delhi,Entertainment,Which singer/songwriter worked in a factory making toilets for airplanes before he recorded 'Aint No Sunshine'?,Bill Withers -Food & Drink,Which country consumes more Coca Cola per head than anywhere else in the world? ,Iceland ,Sports & Leisure,In A Decathlon What Is The Total Number Of Metres A Competitor Has To Run? ,"2110 (100,110,400,1500) ",General,Soling Star' and 'Fin' are categories in which sport,Yachting -General,Buffalo River National Park is in which state,Arkansas,Music,Who recorded 'Be True to your School' in 1963?,The Beach Boys,General,What was Elvis Presley's home town,Tupelo -Toys & Games,"This popular card game's name is spanish for ""one.""",Uno,General,What was originally called the pluto platter,Frisbee,General,What are siblings,Brothers & sisters by blood -Food & Drink,In which countries would you find the following city 'Tabasco'? ,Mexico ,General,"What is the name for music that is transmitted orally or aurally (taught through performance rather than with notation, and learned by hearing)",Folk music,General,Sled dog first bred by Eskimos,Malemute -Science & Nature," 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,General,"How Many Times Has Liz Taylor Been Married 6, 7, 8, 9 ",8 Times ,General,Shakespeare wrote Cruel only to be kind in what play,Hamlet -General,What do the initials NASA stand for,National aeronautics & space administration,General,Anna Magnani won the 1955 Best Actress Oscar for the film version of which play by Tennessee Williams,The rose tattoo,Science & Nature,Of What Is Ecology The Study Of? ,The Study Of The Relationship Between Organisms And Their Enviroment  -General,Name the heaviest flying bird of prey,Condor,General,Traumatophobia is a fear of ______,Injury,General,Bibliophobia is a fear of __________,Books -Music,"""My Ever Changing Moods"" Was A Hit For Which UK Band",The Style Council,General,Franz Kafka wrote in German what nationality was he,Czeck,General,Which old time TV cop had a middle name of Aloysius,Steve McGarret – Hawaii 5 0 -General,"Who painted ""The Persistence of Memory""",Salvador dali,Science & Nature," In Russia, dogs have been trained to sniff out ore deposits that contain __________",Iron sulfides,General,A long or indefinite period,Aeon -General,How many years did Nelson Mandela spend in prison?,27 Years,General,Gavrilo Princip assassinated who,Archduke Ferdinand,General,What is opposition to the jewish race called,Anti-semitism - History & Holidays,Which Band Was Rod Stewart A Member Of Before Going Solo ,The Faces ,General,What common item has 32 points,The compass,General,Station which south american country has both a pacific and atlantic coastline,Colombia - History & Holidays,Who was the first Windsor monarch of the UK? ,George V (reigned 1910-1936) ,General,If you were Cock Throppling what you be doing,Bending a horses windpipe,General,What Annual Event Occurs At Coopers Hill In Gloucestershire In May,Cheese Rolling -People & Places,Which Famous Actor was Charged with Lewd Behavior in 1995 ,Hugh Grant ,General,For the city A method of resolving questions of conscience by applying moral principles or laws to concrete cases,Casuistry, History & Holidays,What was the name of Plato's school,Academy -General,What major league baseball team has a moose for a mascot,The seattle mariners seattle mariners,General,"In 'The Wizard of Oz', which character sang ""Come out, come out, wherever you are""",Glinda good witch of the north,General,From which musical does the song On The Street Where You Live come,My fair lady -General,Whose ghost haunted Scrooge with clanking chains & wierd sounds,Jacob marley,General,"The study of the earth's physical divisions into mountains, seas, etc. is _________.",Geography, History & Holidays,Which French Port Belonged To England Between 1347 & 1558? ,Calais  -Food & Drink,Which Dessert Has A Custard Base And A Burnt Caramelised Top? ,Cr?me Brulee ,General,What is the correct topping for a pastitsio,Béchamel sauce,General,"Countries of the world:western coast of Africa, major cites include Yamoussoukro & Abidjan",Ivory coast -General,Old Irish law what boys name give to fine murderer paid compo,Eric,Music,"Who Was The Backing Group To Sam The Sham On ""Woolly Bully""",The Pharaohs,General,What did the ancient Romans throw at weddings,Wheat -General,"Born In 1962 Who In The World Of Music Has The Real Name ""Stanley Kirk Burrell""",MC Hammer,General,Women's international gymnastics Beam Box Floor and what,Asymmetric bars,General,Who was John Dawkins better known as,Artful Dodger -General,"Who wrote the novel The Last of the Mohicans, first published in 1820",James fenimore cooper,General,In which ship did John Cabot sail to the New World in 1497,Mathew,General,What was the title of Charles Dicken's unfinished novel,The mystery of edwin drood -General,Which major horserace is held in Australia on the first Tuesday in November,The melbourne cup,General,Toho film studios produced most of which series of films,Godzilla,General,"When a coffee seed is planted, it takes how many years to yield consumable fruit",Five -General,"Collectively, what name is given to the first ten of the twenty six amendments to the United States' Constitution",The bill of rights,Music,"Who Sang ""Happy Xmas (War Is Over)"" With John Lennon",Yoko Ono, History & Holidays,With Which Band Did The Jimi Hendrix Experience 's Record Producer/Manager Chas Chadler Make His Name ,The Animals  -Music,In Which song did Procal Harem Sing About 16 vestal virgins,A Whiter shade of pale,Geography,In which continent would you find the yenisey river ,Asia ,General,Collective nouns a group of geldings is called what,A Brace -General,Who's only person have Dewey Decimal class named after him,William Shakespeare,Sports & Leisure,How many feet high is a basketball net,Ten,General,What is a group of monkeys called,Troop -Music,Morten Harket Is The Lead Singer Of Which Band,Aha,Music,"Freddie Mercury Had A Hit With ""Love Kills "" Or ""Love Pills""",Love Kills,General,A group of chicken is called a,Brood -General,In the language of flowers what does straw mean,Agreement,General,In Which Country Was Chris De Burgh Born,Argentina,General,What does CMOS stand for in a computer,Complimentary metal Oxide semi-conductor -General,In what field is Romuald Rat a well-known name,Paparazzi photographer,General,There are over 400 recognised breeds of what,Dog,Music,Stacy Lattisaw Had A UK Top 3 Hit In 1980 With The Song Jump To The Beat But Who Got To No 8 In The UK Charts With Their Version Of It In 1991,Danni Minogue -General,In the Chinese horoscope what animal comes first alphabetically,Boar,Food & Drink,"Sauce containing mushrooms shallots, white wine and herbs ",Chausseur , Geography,What is the capital of Fiji ?,Suva -General,Daimants Sur Canape French translation of what film,Breakfast at Tiffanys,General,Who is the hindu god of good fortune,Ganesha,General, In 1903 Frank Hanaway was the first US what in The Great Train Robbery ,Stuntman -General,Who owned a cat called Bismarck,Florence Nightingale, History & Holidays,Transformers are whats in disguise? ,Robots ,Entertainment,How many strings are there on a standard guitar?,Six -General,The French say Bis - what word do the English use,Encore,General,Brittany Spears - what is her favourite drink,Sprite,General,What Rock group are named for a split paper match splif holder,Jefferson Airplane -General,Founded In 1992 From Which Country Does The Airline Kiwi International Airlines Originate,USA,Entertainment,Casper the Friendly Ghost frolicked with which witch?,Wendy,General,"Which land was discovered by Peter, Susan, Edmund and Lucy",Narnia - Geography,Which US state gets the most rainfall?,Hawaii,General,Mintonette was the original name of what sport,Volleyball,Geography,Which capital is known as the Glass Capital of the World,Toledo -Geography,______________ is the only continent without reptiles or snakes,Antarctica,General,Which country uses the international vehicle registration letters ET,Egypt,General,What club did joe hunt lead before being sentenced to life in prison,Billionaire boys club -Religion & Mythology,Who is the greek equivalent of the roman god Diana,Artemis,General,What herbivore sleeps one hour a night,Antelope,General,What is the more usual name for green beryl,Emerald - Geography,What was the hightest mountain in the world before the discovery of everest?,Mount Everest,Music,"Which pianist/composer/conductor was born in Berlin in 1929, took American citizenship in 1943 and became a well-known face on British TV in the 70's?",Andre Previn,General,Which musician fronted the Tubeway Army,Gary numan -General,What South American cities inhabitants are called portenos,Buenos Aires,General,What New York edifice is named after an Italian navigator,Verrazano Narrows Bridge,General,How many feet are in a nautical mile ?,6080 -General,What is a group of ducks paddling,Team, Geography,Which country is also known as Suomi ?,Finland,General,"What three letter word can be placed before these words to make a new word - ""light"" ""break"" ""time""?",Day -General,What country celebrated its National Day on 1st March?,Wales,Music,"Whose Songs Have Been Successful For Guns N Roses, Manfred Man & Jimi Hendrix",Bob Dylan,General,What is the only 'real food' astronauts can take into space,Pecan nuts -Science & Nature,What's another name for tetanus ,Lockjaw ,Science & Nature,Which Bird Of Prey Can Often Be Seen Hovering Above Hedges & Ditches At The Road Side ,Kestrel ,General,What Closed Down In 1963 After 54 Years In Service,Alcatraz Prison -Music,How Is The Double Act Of David Peacock & Charles Hodges Better Known?,Chas & Dave,Mathematics,How many corners are there in a cube,Eight, History & Holidays,Who Said (Will No-One Rid Me Of This Turbulent Priest)? ,Henry II  -Science & Nature,Why Is The Mole Cricket So Called ,Spends Most Of Its Time Underground ,General,What is the name of the steam train which gained the world speed record in 1938,Mallard,General,Which spies name translates as Eye of the Dawn,Mata Hari -General,What is the largest country wholly within Europe,France,General,What is the flower that stands for: bonds,Convolvulus,General,What was the Saved by the bell series with Hayley Mills originally called?,"Good Morning,Mis Bliss" -General,Who flew too close to the sun,Icarus,General,What city is the setting for the U.S. sitcom Cheers,Boston,Art & Literature,In What book would you find a Hefalump?,Winnie the Pooh - History & Holidays,On which date is Epiphany celebrated in the traditional Western calendar? ,6th January ,General,In Maryland it's illegal play what Randy Newman song on radio,Short People,General,Name the 3 headed dog in Harry Potter and Philosophers stone,Fluffy -Science & Nature,How many hours a day does a ferret sleep?,20,General,Name the two festive islands that lie in the Pacific Ocean,Christmas & easter islands,General,Which U.S. president is on the five_dollar bill,Lincoln -General,Which Oscar-winning actor's only film as a director was the 1961 Western One-Eyed Jacks,Marlon brando,General,In Roseanne what was Roseanne's gay boss/employee?,Leon,General,What's the largest airport in the US,"Dallas, fort worth" -General,"In badminton, how many points win a singles game",Fifteen points,General,"Which album contains the tracks ""New Kid in Town' and 'Life in the Fast Lane'",Hotel california,General,Who directed the movie Wall Street 1987,Oliver Stone - History & Holidays,What Became The Tallest Building In England In October 1965 ,Post Office Tower ,General,Which Actor Of Films & TV Died When He Fell Of His Horse While Filming In Spain,Roy Kinear,General,"Whose first book, in 1962, was ""The lpcress File""",Len deighton -General,"James Stewart starred in Hitchcock's Rear Window, who was his female co-star",Grace kelly,General,"What's the international radio code word for the letter ""B""",Bravo,General,Ochophobia is the fear of,Vehicles -General,What do the tendons attach to the bones or cartilage,Muscles,General,What does a CAT scan stand for,Computerised Axial Topography,General,Hrvataska is what the natives call what country,Croatia -General,What is the name of the Chinese leader who died in 1997,Deng xiao-ping,General,What trees only produce acorns when they are fifty,Oak,General,Polish plum brandy,Slivovitz -General,What event marked the 1954 french grand prix,Return of mercedes,General,Who has played in the most consecutive baseball games,Cal ripken jr,General,Collective nouns - a mustering of what,Storks -General,Which Long Running Tv Show Was the Brain Child Of Former RAF Gunner Bill Wright,Mastermind,Music,Which Cover Of An 80’s Song  Was A Surprising Xmas No.1 In 2003,Mad World / Gary Jules,General,Who is the spouse of the Duke of Normandy,Philip Duke of Edinburgh -General,What do deciduous trees do,Lose their leaves in winter,General,The hit 'Homeward Bound' by Simon and Garfunkel was said to have been written at which UK railway station even though the exact story is somewhat shrouded?,Widnes,Music,"From the 1970’s which song and artist “, You lay your bets and then you pay the price”?",10CC / Things We Do For Love -General,Who first noticed that the sun had spots,Galileo,Music,"Who Wrote The Music To Cats, Jesus Christ Superstar & Phantom Of The Opera",Andrew Lloyd Webber,Food & Drink,What herb is used most often in garnishes? ,Parsley  -General,What nationality is Yehudi Menuhin,American,General,Which country has the most telephones per 100 inhabitants,Sweden,General,What was george custer's horses' name,Commanche -General,What is the flower that stands for: advice,Rhubarb, History & Holidays,Which frontiersman died at the Alamo?,Davy Crockett,General,Who invented Cornflakes,John harvey kellog -Sports & Leisure,Where were the 1956 Olympics held ?,"Melbourne, Australia",General,Tachophobia is a fear of ______,Speed, History & Holidays,"Who Had An 80's Hit With The Song 'Never Say Never,' ",Romeo Void  -General,What does the energiser bunny wear on his feet,Flip flops,Music,Who Sang The Girl From Ipanema,Stan Getz,General,Moscow is the capital of ______,Russia -Music,"""High Class Baby"" & ""Travellin Ligh"" Were Hits For Which Singer",Cliff Richard,Music,By What Name Are The Four Lovers Better Known,The Four Seasons,Music,Name One Of The Other 2 Groups ThatLuke Haines Has Made Albums With Since Forming The Auters In 1991,Baader Meinhof & Black Box Recorder -General,What was jimmy carter operated on for while serving as president,Haemorrhoids,General,"Which film star made his screen debut in the film ""Steamboat Willie"" in 1928",Mickey mouse,General,What town and stream in West Australia same name pop group,Abba River -Food & Drink,What Does 'CAMRA' Stand For ,The Campaign for Real Ales ,General,The artist Marc Chagall was born in what modern-day country?,Belarus,General,What is the purpose of an analgesic drug,To reduce pain -General,Give either of poet E.E.Cummin s' christian names. edward,Estlin,General,What two factors do meteorologists combine to determine the heat index,Temperature & humidity humidity & temperature,Entertainment,"This actress appeared in ""St. Elmo's Fire"", ""The Scarlett Letter"", and ""Striptease"".",Demi Moore - History & Holidays,What Were Frosty The Snowmans Final Words ,I'll Be Back Again Someday ,General,What is the motto of the three investigators,We investigate anything,Sports & Leisure,"In Rhythmic Gymnastics, competitors have four pieces of apparatus; rope, hoop & ball, what is the other piece? ",Ribbon  -General,In which drink will a raisin in a glass keep floating to the top and sinking to the bottom,Champagne,General,Into what sea does the river Volga flow,Caspian,Sports & Leisure,"AQOS is now the longest running sports quiz on TV when was it first broadcast? 1969, 1970, 1971,1972 ",1970  -General,"Which bony structure includes the zygomatic, ethmoid, and vomer bones'",Skull,General,"Mechanical device that produces a force, or thrust, along the axis of rotation when rotated in a fluid, gas or liquid",Propeller,General,What is green in a pure molten form,Gold -General,What meteorological significance is traditionally attached to cows lying down,Rain,General,Maseru is the capital of which African country,Lesotho, History & Holidays,"What was the nickname of President Duvalier of Haiti, who died in 1971? ",Papa Doc  -General,The Swiss spend the worlds most money per capita on what,Insurance,Sports & Leisure,"In which sport is the term ""love"" used",Tennis,General,"What war began in 1899 with the invasion of natal, and ended in 1902 with the peace of vereeniging",Boer war -General,"Which character did Mel Gibson play in the film ""Braveheart""",William wallace,General, A person in his eighties is called a(n) __________.,Octogenarian,General,Walt Disney World is home to the largest working wardrobe in the world with over ________________ costumes in its inventory,2.5 million -General,What was the largest town in Britain before it became a city in 1992,Sunderland,General,Graham Hill won 1968 world championship in which make of car,Lotus,General,Who was the Roman Goddess of the land,Terra -General,Who was known as The King of Pop,Michael Jackson,General,Which British car was the first to sell over 1 million models,Morris Minor,General,Who was the first person to wear a wristwatch,Queen Elizabeth 1st -General,In 1999 470 Chinese were injured by what,Exploding beer bottles,General,What's the most abundant metal element in the earth's crust,Aluminum,General,William Hartnell was the first to play what TV character,Dr Who -General,A stitch in time saves ____,Nine,Geography,In which country is Sapporo,Japan,General,300000 American teenagers get what every year,Venereal disease - Geography,What is the capital of Belgium ?,Brussels,General,What do you do with a hassock,Kneel on it in church,General,Which Latin American dance involves forming a chain,Conga -General,"In Which Film Did Madonna Play A Character Called ""Gloria Tatlock""",Shanghai Surprise,General,Who earned a Nobel Prize for peace for his role in ressolving the Russo Japanese War,Theodore roosevelt,General,"In Greek mythology, what is the alternate name for polydeuces",Pollux -General,In 1973 Roland Ohisson was buried in a coffin made of what,Chocolate,General,Where - accident 1953 - motor sport killed 83 spectators,Le Mans, History & Holidays,"He is a pumpkin whose top and stem have been cut out and interior removed, leaving a hollow shell that is then decoratively carved. Twelve Letters ",Jack O' Lantern  -General,What state is only part of the United States by treaty?,Texas,General,What is a group of this animal called: Cattle,Herd drove,General,What is the Capital of: Malaysia,Kuala lumpur -General,"President richard m nixon called what songstress an ""ambassador of love""",Pearl baily,Sports & Leisure,How many minutes is each period of hockey?,Twenty,General,Matador and Sniff are two varieties of what game,Dominoes -Music,Name The Legendary Australian Outlaw Portrayed On Film By Mick,Ned Kelly,General,Thomas Sullivan in New York in 1908 introduced what,The Tea Bag, Geography,What is the longest mountain range in the world?,Andes -General,In which film do the blue meanies attack pepperland and are defeated by the beatles,Yellow submarine,General,Alfred Bailey started what annual publication in mid 19th century,Whos Who, Geography,In which state is Stone Mountain?,Georgia -General,Who Was The First US President To Take Up Residence In The White House,John Adams,General,What attaches the muscles to the bones or cartilage,Tendons,Science & Nature,"Predating The Model T Ford Which Was The Worlds First Car To Be Made In Large Quantities 19,000 Being Sold Between 1902 & 1906 ",The Curved Dash Oldsmobile  -General,How was the greek city of troy penetrated,Wooden horse,Sports & Leisure,Why Did Henry Viii (8 th ) Ban Bowls ,To Force People To Take Up Archery ,General,"Who was the lead actress in the famous bomb ""Grease 2""?",Michelle Pfiffer -General,Mexico city is the capital of ______,Mexico,General,Where was the Hesperus wrecked,Massachusetts Normans Woe Glos.,General,An area of low pressure is called a what,Cyclone -General,What celebrated photographer snapped shots of Yosemite for 67 straight years,Ansel adams,Music,Which Band Backed Herb Alpert,Tijuana Brass,General,Who played sherlock holmes in the hounds of baskerville in 1978,Peter cook -Geography,Which River Forms A Border Between France & Germany ,The Rhine ,General,A fimetarious organism grows where,In faeces or shit,General,What animals head appears on the label of Gordon's Gin,Boar -General,"In the game 'banjo-kazooie', who is banjo's little sister",Tooty,General,Which Piece Of Sporting Equipment Used To Be Called A BattleDore?,Badminton Racket,General,"What us academy is located in colorado springs, colorado",Air force -General,What are affected by phylloxera,Vines, History & Holidays,Which Band Turned Down A 1 Million Pound Offer To Play At The Shea stadium In 1967 ,The Beatles ,General,For which country is the lotus flower the national symbol,India - Geography,What tunnel connects France and Italy ?,Mont Blanc Tunnel,General,In India what is 'pachisi',Board game,General,What is the name of the Russian triangular guitar,Balalaika -Music,Who Wrote The Collection Of Short Stories On Which Fiddler On The Roof Was Based,Sholom Aleichem,Music,Who Had A Heart Attack On Stage In 1975 & Remained In A Coma Until His Death 1984,Jackie Wilson,General,What is a group of caterpillars,Army -Sports & Leisure,Baseball: The Chicago ______?,Cubs,General,Collective nouns - A Labour of what,Moles,General,Homophobia is the fear of,Sameness -General,Which White Blues Singer Attended The University Of Texas In The Early 60's & Was Voted Ugliest Man On Campus,Janis Joplin,Sports & Leisure,Where Were The 1964 Olympics Held ,Tokyo ,General,"What word can be added to Fae, Fen, Bil, Goose to make fruit",Berry -Entertainment,"Who played the lead in the movie ""The Mask""?",Jim Carrey,General,Which artery supplies the kidneys with blood,The renal,General,Do frogs or toads move faster,Frogs - History & Holidays,To what position was John Masefield appointed in May 1930? ,Poet Laureate ,General,"Traffic Trivia: Red means stop, _____ means go.",Green,General,What is the nickname for Missouri,Show me state -General,Which of Shakespeares plays involves a pound of flesh,The merchant of venice,General,Who lost her sheep,Little bo peep,General,"How does a wine become a ""fortified"" wine",Brandy is added -General,What is the Capital of: Mauritania,Nouakchott,Food & Drink,What delicacy comes from fattened livers of geese? ,Pate de Foie Gras ,General,What does P stand for in the abbreviation PLO,Palestine -Music,Which Beautiful Capital By The Sea Is Wonderful,Wonderful Wonderful Copenhagen,General,Who invented the rocking chair,Benjamin Franklin,General,What's the only movie Alfred Hitchcock make twice,The man who knew too much -General,What do you call the person who carries a golfer's clubs,Caddie,General,Which country with over 800 languages is the woirld's most linguistically diverse country?,Papua New Guinea,General,Who was the 4th president of the U.S.,James madison -Science & Nature,"When a tumour is cancerous, what is it said to be?",Malignant,General,"The Term ""Money Is The Root Of All Evil "" Features In Which Book Of The Bible",Timothy,General,Tubetti lunghi is what pasta shape,Elbows -General,What common word comes from the Latin for who are you,Quiz,General,Thomas Savery & Thomas Newcomen invented the___.,Steam engine,General,1910 act illegal to transport woman state line immoral purposes,Mann Act -Music,Freda Payne Enjoyed Her Only Major Chart Hit In 1970. Name It?,Band Of Gold,General,The human body contains enough of what to make 900 pencils,Carbon,Music,Which Drug Culture Record Took The Shamen To No.1 In 1992,Ebeneezer Goode -General,Joan O Neill Who Sings With The Tina Turna Tribute Band Is Actually The Mother Of Which Very Successful Pop Star,Mel C (NOT MEL B), History & Holidays,Where did the first atomic bomb explode ,"Trinity site, new mexico ",General,Where is the fourth most popular place on a ship to have sex,The lifeboat -General,"Who wrote the classic science fiction novel ' Hellicona Spring""",Brian aldiss,General,What type of animal is a markhor,Wild Goat,General,Who was the driver for the jordan team in the 1998 grand prix,Damon hill -General,In what sport would you use spikes and blocks,Athletics,Sports & Leisure,Name The Snooker Player Who Is Nicknamed 'The Rocket''? ,Ronnie O'Sullivan ,General,With what type of meat would you make the dish Marengo,Chicken -General,What country - largest earthquake of 20th cent 8.6 Richter 1906,Colombia,General,Who starred as an alien in the 1970's film 'The Man Who Fell to Earth,David bowie,General,A Sitophilliac gets sexually aroused from what,Food in sex play -Music,What Is Chopin's Piano Sonata In B Flat Minor Also Known As,The Funeral March,General,Which year were the Jesse Owen Olympic games,1936,General,What is made from the bark of the cinchona tree,Quinine -General,Which U.S. State is known as the Mother of Presidents,Virginia,General,What is the most used expression in any language on earth,Ok,General,What’s the only alt therapy fully recognised Western medicine,Osteopathy -Music,Who recorded 'I Can't Explain' in 1965?,The Who, History & Holidays,Who Released The 70's Album Entitled Exile on Main Street ,The Rolling Stones ,General,When was the Kon-Tiki expedition,1947 -Geography,Where were the Pillars of Hercules located,Gibraltar,General,In The Simpsons what is the first name of Chief of Police Wiggum,Clancy,Science & Nature, Thirty thousand monkeys were used in the massive three_year effort to classify the various types of __________,Polio -General,Where could you have a kip - then spend it,Laos its currency,General,"Founded in 1896, what was IBM formerly called",Tabulating machine company, Geography,What is the capital of Libya ?,Tripoli -Food & Drink,Which Supermarket Chain Uses Jamie Oliver To Advertise It's Products ,Sainsburys ,General,Who designed the Statue of Liberty?,Frederic Bartholdi,General,Which airline has the registration prefix 'VR'?,Cathay Pacific -General,What language do gypsies speak,Romany,General,What is a person who has made a pilgimage to mecca,Hajji,General,Who played the title role in the U.S. sitcom,Rhoda' valerie harper -General,In which sea would you find the island of Bornholm,Baltic sea,General,Odontophobia is fear of ______,Teeth,General,What city does orly airport serve,Paris -General,Approximately how many genes are there on one human DNA molecule,80,General,What U.S. city is home to the Pentagon,Washington,General,What is the fear of light known as,Photophobia - Geography,In what country do people speak the Language they call Nihongo?,Japan,General,Of what did israel acquire 4 out of 7 in 1955,Dead sea scrolls,General,"Crested, Smooth, & Palmate Are All Types Of What Sort Of Amphibious Creatures ?",Newts -General,What candy did president reagan keep on his desk in the white house,Jelly,General,What is the name of the Austrian monk who experimented with peas and is considered the founder of genetics,Gregor mendel,General,Who devoured a cake with the words 'eat me' written on it in currants,Alice -General,"What comedy act started as ""the six musical mascots""",Marx brothers,General,"Until the 18th century, who produced almost all the world's diamonds",India,General,What's the capital of peru,Lima -General,An upright masonry support.,Pier,General,Which African country has the shilling as it's currency?,Kenya, History & Holidays,Which Musical Opened On Broadway In 1956 And Starred Julie Andrews ,My Fair Lady  -General,Collective nouns - What are a group of greyhounds called,A Leash,Science & Nature,What is the SI unit for frequency? ,Hertz ,General,Ida morgenstern was played by what actress in the sitcom rhoda,Nancy walker -General,"Popular in the south of the United States, which peculiar meat was the original basis of a 'Brunswick Stew'?",Squirrel,Music,According To Alan Price What Did Simon Smith Have,Simon Smith & His Amazing Dancing Bear,General,Who wrote The Rime of the Ancient Mariner,Samuel taylor coleridge -General,Rhus Radicans shrub green flowers white berries common name,Poison Ivy,General,What sport is played at Smiths Lawn,Polo,General,In 1605 Japanese Emperor made what compulsory in schools,Learning swimming -Science & Nature,What is the abbreviation for trinitrotoluene?,TNT,General,"""Mageirocophobia"" Is The Fear Of What",Cooking, Geography,What is the capital of Saudi Arabia ?,Riyadh -Science & Nature,What Is The Most Common Venereal Disease ,Gonorrhoea ,General,Which French brothers were responsible for the development of cinematography,Lumiere,General,Who wrote The Symphony of a Thousand,Mahler his eighth -General,Average woman's 1.5 times bigger than average mans - what,Circumference of Thighs,General,What kind of energy powers most communications satellites,Solar energy,Science & Nature,What is a female deer called?,Doe -General,"Who was the father of Ham, Shem and Japheth in the bible?",Noah,Science & Nature, 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,Geography,"In the country of __________________, the basic monetary unit is the tala.",Western samoa -General,Which country has the smallest birth rate,Vatican City,General,What is the name of a small computer introduced in 1975 by Micro Instrumentation Telemetry Systems of New Mexico,Altair 8800,General,To what can keratitis lead,Blindness -General,Which film producer said 'Anyone who goes to a psychiatrist should have his head examined,Samuel goldwyn,General,Lord byron had a ____ foot,Club,General,How are the first five books of the bible known collectively,The pentateuch -General,Manufacturer of the Pentium microprocessor,Intel,Mathematics,"What is the name given to a curve that approaches a line, but never quite touches it?",Asymptote,General,What peoples name literally translates as ordinary,Maori -General,What's the principal river of ireland,Shannon,Music,"Which Former Stooge Was A ""Real Wid Child"" In 1986",Iggy Pop, History & Holidays,Which US Singer Duetted With Donna Summer On The US Number One 'No More Tears'' ,Barbara Streisand  -Science & Nature,In the field of psychiatry this term means self-love.,Narcissism,General,What is the capital of Austria?,Vienna,General,Whose motto is 'be prepared',Boy scouts -Music,"In 1992 Who Famously Described Himself As A ""Bisexual Who's Never Had A Homosexual Experience""",Brett Anderson,General,"Ramshorn, Wandering & Dwarf Are All Varieties Of Which Creatures",Snails,General,Where would you find pedals a resonator and a piller,On a Harp -General,Railings on a balcony are called a..,Baulstrade,General,In 1994 314 Americans had what type of surgery,Buttock Lift,Science & Nature,Name The Only Monkey Living In Freedom In Europe? ,"Barbary Ape, Gibraltor " -General,Ancient Rome / Greece what Temple was dedicated to all Gods,Pantheon,General,Who founded troy,Cadmus,People & Places,By Which Stage Name Was Norma Jean Baker More Commonly Known ,Marilyn Monroe  -General,Which classical composer wrote the Hungarian Rhapsody,Franz Liszt,General,A Spanish country estate is known as a _____,Hacienda,Sports & Leisure,Who Was The Dutchman Who Became Embassy World Darts Champion In 1998? ,Raymond Barneveld  -Entertainment,Who sang 'Mull of Kintyre'?,Wings,Music,Which group went on a “Teenage Rampage”?,The Sweet,General,Who took his library wherever he went,Abdul kassem ismael -General,"What show did the catch phrase, ""Yeah, That's The Ticket"" originate on?",Saturday Night Live,Music,The Model Iman Is Married To Which Music Star?,David Bowie,General,What Organization Was Founded In 1865 By General Bedford Forest,Ku Klux Klan - Geography,What is the capital of Central African Republic ?,Bangui,General,Which sugar is found in milk?,Lactose,General,Hemmingway's Old Man and the Sea is set in which country,Cuba -General,What Is Phobophobia The Fear Of,Fear Of Fears,General,Whose original name was Jasper,Tom - From Tom and Jerry,General,How many equal angles has a scalene triangle,None -General,Daniel Keys wrote which 1959 Hugo award winning SF novel,Flowers for Algernon,General,"In Which American City Will You Find The ""Gateway Arch""",St Louis, History & Holidays,What was name of the Titanic's sister ship?,Lucitania -General,U.S. Captials - Vermont,Montpelier,General,During US recessions which group have the most unemployment,Automobile assembly workers,General,Which Himalayan hybrids of yaks and cows are invaluable to Scrabble players,Zho -General,What was the name of the train on the tv series petticoat junction,Cannonball,Geography,In What County Is Broadmoor Located ,Berkshire ,General,In Medieval China children up to 7 years old would do what,Breastfeed -Geography,"The _____________ is the lowest body of water on Earth at 1,315 feet below sea level at its lowest point.",Dead sea,General,The locals call it Al-Magrib what do we call this country,Morocco,Sports & Leisure,Which Disaster Re United The 1966 England & German World Cup Teams In A Charity Match ,The Bradford Fire  -General,Mythophobia is a fear of ______,Stories,General,Spermophobia is a fear of ______,Germs,Geography,What Is Seismology ,The Study Of Earthquakes  -General,In football where was the World Cup played in 1970,Mexico,General,Who signed the Emancipation Proclamation,Abraham Lincoln,General,What canal does Port Said stand on,Suez canal -General,In Yuma Arizona what is the punishment for citrus fruit thieves,Lots of Castor Oil,Sports & Leisure,How Many Human Players Are There In A Polo Team ,Four ,Art & Literature,"Who said 'But, soft! what light through yonder window breaks'?",Romeo -General,How many great lakes are there,Five,General,Who invented doctor Who,Terry Nation,General,Of what is genetics the study,Heredity -Sports & Leisure,Was Jimmy Connors left or right handed? ,Left Handed ,General,What islands were named after Prince Philip of Spain,The philippines,General,Under what name did Michael Barratt have four number one hits in the 1980s,Shakin' stevens -Sports & Leisure,What was unusual about Ted Schraeder's appearance at Wimbledon in the 1949 tournament? ,He played whilst smoking a pipe ,General,Who Was The Youngest Ever Solo Singer To Win A Grammy Award,Leann Rimes,General,"What movie cast included James Garner, Richard Attenbourough, Steve McQueen, Charles Bronson, Donald Pleasance, James Coburn, Gordon Jackson, Angus McPhee among many others",The Great Escape -General,Which city is home to Coleman's mustard,Norwich,General,Who is the 20th century zoologist who wrote The Naked Ape,Desmond morris,General,What does the abbreviation 'UNICEF' stand for?,United Nations Childrens' Emergency Fund - Geography,Where is Queen Maud Land located?,Antarctica, Geography,What is the basic unit of currency for Bosnia and Herzegovina ?,Marka, Geography,"On which river is London, England?",Thames -General,What is the singular of dice,Die,General,To what fabric does the French city of Nimes give its name,Denim,General,What Is George W Bush's Middle Name,Walker -Food & Drink, Name the only fruit named for its color.,Orange, Geography,"In total, how many provinces and territories are there in Canada?",Thirteen,Music,"""Yellow"" Was Which Bands First Uk Top Ten Hit",Coldplay -General,What instrument is sometimes called the clown of the orchestra,Bassoon,General,In 1995 13 books every minute sold in US were on what subject,Star Trek,General,What broadway musical was inspired by cervantes's 'don quixote',Man of la -General,What is the flower that stands for: agreement,Straw,General,The Italians call it pesce what is it in English,Fish,General,What thrill flick master died at 80 in 1980,Alfred hitchcock -General,What was the name of Alistair Macleans first best selling novel,HMS Ulysses,General,Who Was The First Undisputed Heavyweight Boxing Champion To Be European,Max Schmelling,General,In the UK 3% of people store what in their fridges,Live Maggots -Music,Number of Beatles tribute bands that are currently performing,44,Entertainment,What did Dr. David Banner become when he got angry?,The Incredible Hulk,Science & Nature,How Many Chromosomes Does A Healthy Human Have ,46 (23 Pairs)  -General,"Where did we meet Newkirk, Carter, LeBeau and Kinchlow",Hogan's Heroes, History & Holidays,"The last line of this document is ""Working men of all countries, unite.""",Communist Manifesto,General,What was mixed with vodka in 1946 to make a Moscow Mule,Ginger ale -General,"In John's Gospel, which was the first named disciple to join Jesus",Andrew,Food & Drink,Which countrys does one associate with the following foods or drinks: 'Kasutera' ,Japan ,Entertainment,What does the statue of Oscar stand on?,A Reel of Film -General,Where did we see a snorkasaurus,Flintstones it was Dino,Music,The Soundtrack To Which Musical Topped The UK Album Charts For 70 Consecutive Weeks Between 1958 & 1960,South Pacific, Geography,What river is known as China's Sorrow?,Yellow -Music,"Who sang ""Never Can Say Goodbye"" in 1974?",Gloria Gaynor,Science & Nature,As what is a camelopard also known?,Giraffe,General,Who would use a claque,Actor - Paid audience clappers -General,Whose legs were insured for one million dollars,Betty grable,General,Who would use an ankus in their job,Mahout to goad an elephant,Sports & Leisure,"Competitive Swimming Has 4 Events Butterfly, Breast Stroke, Back Stroke, & What Other ",Freestyle  -General, Dendrochronology is better known as _________.,Ring dating,Toys & Games,"In which game or sport are ""Staunton"" pieces used?",Chess,General,What would you find on Pink Sheets,Bid Asked prices OTC stocks -Entertainment,What film did John Wayne win his only Oscar for?,True Grit,General,A bath of hot aerated water used for recreational or physical therapy,Hot tub,Sports & Leisure,Where were the 1968 Olympics held ?,"Mexico City, Mexico" -General,Who was known as the 'Lady of the Lamp',Florence nightingale,General,Ombrophobia is a fear of ______,Rain,General,Agnes the girls name means what,Chaste -General,"Countries of the world:south eastern Europe, the capital is Ljubljana",Slovenia,General,Where in Canada is its Dildo,Newfoundland Town,General,Who starred as History lecturer Jim Dixon in the film version of Kingsley Amis' novel Lucky Jim,Ian carmichael - Geography,What is the capital of Alaska?,Juneau,General,Where would you find the 'cornea',Eye,General,Who created 'yertle the turtle',Dr seuss -General,"Who Famously Spent Over $200,000 On Crockery In 1981",Nancy Reagan,General,"Hot chocolate believes in miracles, and wants to know where you're from ______",YoU.S.exy thing,Music,Who Was The Lead Singer With Spandau Ballet,Tony Hadley -Science & Nature,Which Disease Of The Liver Is Associated With Alcoholism ,Cirrhosis ,Music,"""Was I Wanna Dance With Somebody"" A Hit For Cyndi Lauper Or Whitney Houston",Whitney Houston,General,Which parent determines the gender of their offspring,Father -Science & Nature,What name is given to animals which only eat plants ?,Herbivore, Geography,Which Portuguese colony reverted to China in December 1999?,Macau,General,What is the fear of glaring lights known as,Photoaugliaphobia -People & Places,What Should You Call An Inhabitaant Of Newcastle ,A Novocastrian ,General,What is halloween,All hallow's eve,Entertainment,What did Dagwood give up to marry Blondie,A family inheritance -General,Who created The Scarlet Pimpernel,Baroness Orczy,General,What Is The Name Of The Successful Group That Evolved Out Of The Group “The Split Enz”?,Crowded House, Geography,Where were the Pillars of Hercules located?,Gibraltar -Music,What Nationality Was Mozart,Austrian,General,What fruit did elvis most often layer on his peanut butter sandwiches,Bananas,General,"Calamine, used as an ointment , contains a carbonate of which element",Zinc -General,What famous director makes a cameo appearance in the Blues Brothers?,Steven Spielberg,General,What term describes the gravitational boundary which encloses a black hole?,Event Horizon,General,"Plant with oval, usually purple fruit used as a vegetable",Aubergine -Music,"Who Recorded The Albums ""Change Everything"" & Waking Hours""",Del Amitri,General,When were 'instamatic' cameras first sold,1968,General,Merinthophobia is the fear of,Being bound tied up -General,In the bible to whom is the book of Lamentations attributed,Jeremiah,General,In what film was the first flushing toilet seen,Psycho,General,Who betrayed Samson to the Philistines,Delilah -General,Bob Ayling is the Chief Executive of which British company?,British Airways,Music,Which Southport Lad's Love Became Tainted In Later Life,Marc Almond,Science & Nature,"Granny smith, james grieve and egremont russet are all types of which fruit ",Apple  -General,Who would use a mashie niblick,Golfer,Geography,What capital city does the liffey river flow through ,Dublin ,General,"On George Martin's farewell album In My Life, which actor sings the title song",Sean connery -General,Whose last published novel was Murder from the Past,Agatha Christie,General,Who wrote the music for Carmen,Georges bizet,Entertainment,Whats the smallest size grand piano?,A Baby Grand -General,In 1929 Vatican City (world's Smallest Country) is made an enclave of,Rome,Geography,In Which Country Is The Famous Volcano Popacatapetl ,Mexico , Geography,Which country are the Galapagos Islands part of?,Ecuador -General,What milk is Pecorino cheese made from,Ewes, History & Holidays,What Christmas item was invented by London baker and wedding-cake specialist Tom Smith in 1847? ,Christmas cracker ,General,Which airline has the registration prefix 'vr',Cathay pacific - History & Holidays,What Was The Name Given To The French Goverment Which Collaborated With The Nazis? ,Vichy ,General,What type of beverage is Tio Pepe,Sherry,Science & Nature, It may take longer than two days for a chick to break out of its __________,Shell -Music,Which pop singer was known as ‘the king of the wild frontier’?,Adam Ant,Food & Drink,What P word is the name given to a German Black Rye Bread? ,Pumpernickel ,General,Who discovered gold on the witwatersrand,George harrison -General,What 80's cartoon was a showcase for 'New Wave' Music videos?,Kidd Video,General,Sea Cucumbers are a type of what,Animal,General,"What 1969 film last line Clint Eastwood ""I fall off em everywhere""",Where Eagles Dare -General,What sport would you be playing if the score was duece,Tennis,General,"Where did the clones have their laboratory in ""colony""",Germantown,Music,What was Hermans Hermits only No1 UK hit?,I'm into something good -General,Mel Gibson and Danny Glover appear in which series of films,Lethal weapon,Sports & Leisure,Which Wood Are Cricket Stumps Usually Made From? ,Ash ,Food & Drink,In Which Country Were Fortune Cookies Invented ,United States  -General,What does a person look like if described as 'wan',Pale-faced,General,Pif Paf Pof is the Dutch equivalent of which English phrase,Snap Crackle Pop,General,What is the metric word for a million,Mega -General,What is 'bobba' in english,Grandmother,General,"In the film 'jurassic park', what was the largest predator",Tyrannosaurus rex,General,Name Casper the friendly ghosts horse,Nightmare -General,What media format did the denon company help pioneer,Compact discs, Geography,Albany is the capital of _____?,New York, History & Holidays,Who led the attack on the Alamo?,Santa Ana -General,"""Baby It's You"" was just one of the many hits of the early 60's for this girl group",The Shirelles,General,The average Manhattan wife takes 14 minutes to do what in bed,Turn off Light, Geography,What is the capital of Mauritania ?,Nouakchott -Science & Nature,Electrum is a natural alloy of gold and what other metal?,Silver,People & Places,Name The Playwright Who Was Born On And Who Died On 23rd April ,Shakespeare ,General,"What was Dustin Hoffman's character's name in ""Rain Man?""",Raymond Babbitt -General,French in tennis love means zero but what did it originally mean,Eggs,General,"In Greek mythology who gave the ""eyes"" to the peacock",Argus,General,The Attock is a forbidden river that no pure who can pass,Hindu -Science & Nature," 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,General,The Nullarbor desert is in Western Australia what's it mean,No Trees Null Arbor,General,Who is the Patron Saint of TV,St Clare -General,What actor Howard Hughs call pay toilet didn't give shit nothing,Robert Mitchum,General,What is a group of this animal called: Emus,Mob,Sports & Leisure,"In 1985, Manchester United player Kevin Moran became the first player to do what in an FA Cup final? ",Get Sent Off  -General,Which footballer starred in the film Lock Stock and Two Smoking Barrels,Vinnie jones,General,What are mustard and ketchup,Condiments,General,"What creature, when drunk, always falls on its right side",An Ant - History & Holidays,How Many Films Were Made In The Jaws Series ,"4 (Jaws 1,2,3 & Jaws The Revenge) ",Music,"Which Irish Singer Got To No.3 With ""Tarzan Boy"" In 1985",Baltimora,Toys & Games,How many discs does each player have to start with in draughts (checkers),12 -General,What is a female cat,Queen,Food & Drink,Who released the following album 'Larks tongue in aspic' ,King Crimson ,Science & Nature,What is the abbreviation for trinitrotoluene,Tnt -General,What sport was called The Royal Sport,Cock Fighting, Geography,Kingston is the capital of ______?,Jamaica,General,What type of cloud is a thundercloud,Cumulonimbus -Science & Nature,What Was The Name Of The First Plastic Ever Developed ,Bakelite ,General,"On get smart, who was seldom called by his name thaddeus",Chief, History & Holidays,Good King Wenceslas was a 12th Century king of which country ,Bohemia  - History & Holidays,What was George A Custer's horses' name?,Comanche,General,"On what river is London, England",Thames,Sports & Leisure,Which Irishman was World Snooker Champion in 1997? ,Ken Doherty  -Art & Literature,Which Author's Father Was Imprisoned For Debt ,Charles Dickens ,General,What was the real name of the monk known as Rasputin,Grigori efimovich,General,What is a group of this animal called: Mallard,Sord -General,Which modern artist created the Mother and Child Divided,Damien Hurst,General,"Which group released the album ""Urban Hymns"" in 1997",The verve,General,"Who wrote Principia Mathernatica. with Alfred North Whitehead, between 1910 and 1913",Bertrand russell -Music,As Of 2006 Who Are The Only Brother And Sister To Have Recorded Separate UK Number One Hit Singles?,Daniel & Natasha Bedingfield,Food & Drink,How would you say 'house wine' in 'Spanish' ,Vino de la casa ,Sports & Leisure,Shirley Crabtree Was Better Known As Which Larger-Than-Life Character? ,Big Daddy  -General,"This weapon lends its name to a type of woman's shoe with a slender, tapered high-heel.",Stiletto,Art & Literature,Which British Painter Frequently Uses A Swimming Pool As A Theme ,David Hockney , History & Holidays,Which movie had a device known as a flux-capacitor? ,Back to the Future  -General,In what 1998 did film David Bowie play Pontius Pilot,Last Temptation of Christ,General,What is the international telephone code for the uk,44,General,Who is the presenter of the British TV quiz show 'Perfection'?,Nick Knowles -General,Which country are the current Olympic Rugby Champions 1924,USA,General,In which country did the first Christmas stamp appear in 1898,Canada,General,"In the Royal Navy, which rank is immediately above captain",Commodore -Music,"Which Classic 1960's Protest Includes The Lines ""Think Of All The Hate There Is In Red China, Then Take A Look Around At Selma, Alabama""",Eve Of The Destruction / Barry McGuire,General,What was the first USA team to win the Stanley Cup,Seattle Metropolitans,General,What is the largest animal that ever lived,Blue whale -Science & Nature,Which Is The Largest Member Of The Cat Family That Is Indigenous To The New World ,Jaguar ,General,Which English word comes from the French for candle,Chandelier,Geography,What Asian country has the highest population density,Singapore -General,What French designer introduced the sack dress in the '50's,Christian dior,General,The profits from the 1929 edition of Mein Kampf went to where,International Red Cross,General,How many ponies did the pony express use weekly,None - They used only horses -General,According to the cowboy encyclopaedia what is an orejano,Unbranded calf,General,Yellow alloy of copper and zinc,Brass,General,What is the fourth most common language in the USA,ASL American Sign Language -General,Who was Time Magazine woman of the year in 1936,Wallis simpson,General,What's the formula for the area of a rectangle,Length times width, History & Holidays,Which TV Family Adopted A Greyhound For Christmas? ,The Simpsons  -Art & Literature,Womens magazine launched by New York in the 70's.,Ms,General,The Archie Moore cup is competed for in which sport,Polo, Geography,What is the capital of the Italian province Lazio?,Rome -Science & Nature,What Colour Does Litmus Paper Turn When Dipped In Acid ,Red ,General,Pagophobia is the fear of,Ice frost,General,The inaugural London Marathon was run in which year?,1981 -General,What is ornamental work in silver or gold thread called?,Filigree,General,"In the first Scream, what was Stu's motive for the killings?",Peer Pressure,General,"In the Sherlock Holmes stories, of what subject was professor Moriarty a professor",Mathematics -General,"During pregnancy, how many times its normal size does the uterus expand",Five, History & Holidays,Who Was Marie Antoinette's Husband? ,Louis XVI ,General,Fuggles and Goldings are varieties of what,Hops -General,Which Movie Did 'Titanic' Overtake In The UK As The Highest Grossing Movie,The Full Monty,Art & Literature,Which Former Jockey Specialises In Novels Concerning Horse Racing ,Dick Francis ,Music,"Which Soul Singer Was Arrested, Charged And Fined For Putting On A Sexually Explicit Show Following A 1989 Gig In Georgia",Bobby Brown - History & Holidays,What country is Men Without Hats originally from? ,Canada ,General,Which planet has a moon called Charon,Pluto,Music,"Who Sang About A ""Wild Thing"" In 1966",The Troggs -General,The effect produced when sound is reflected back is known as a(n) _______.,Echo,Science & Nature, A group of foxes is called a __________,Skulk,Entertainment,Josie and the ________,Pussycats -General,Edradour is the smallest one in Scotland - what,Distillery,General,In what Australian state would you find Bendigo,Victoria,General,In the Bible who put Daniel in the lions den,King Darius -General,Which instrumental album launched the Virgin record label,Tubular bells,General,The metal gallium will melt in the heat of your ______,Hands,General,What kind of electricity is produced when you rub a balloon against your hair,Static electricity -Sports & Leisure,"In rugby, what is the equivalent of a hockey face-off?",Scrum,Science & Nature,Where are one quarter of the bones in the human body?,Feet,General,Who coined the term gossip column,Mark Twain -General,Dalmatian dogs originated in which country,Yugoslavia - Dalmatia,Entertainment,Who is the lead singer of 'The Doors'?,Jim Morrison,General,What is the last element - Alphabetically,Zirconium - History & Holidays,What was E.T.'s favorite candy? ,Recee's Pieces ,Entertainment,"He was known as the ""Elephant Man"".",Joseph Merrick,General,In ancient Sparta what was the penalty for bachelorhood,Can't watch women's gymnastics -Food & Drink,Company that was purveyor of Vodka to the Imperial Russian Court (1886_1917),Smirnoff,General,What recently independent country was formerly known as greenland?,Kalaalit nunaat,General,What is the literal translation of haute couture,High Sewing -General,The Mexican bearded and what are the only venomous lizards,Gila Monster,General,Which film stars Spencer Tracy as a war veteran with a mission to deliver a posthumous medal,Bad day at black rock,General, Hills and ridges composed of drifting sand are known as ________.,Dune - History & Holidays,"In 1647, the English parliament passed a law that: Let Prisoners spend Christmas At Home, Gave Santa Immunity To Burglary, Made Christmas An Official Holday, Made Christmas Illegal ",Made Christmas Illegal ,General,Tirana is the capital of ______,Albania,Sports & Leisure,What Occurs On The Glorious Twelth ,Start Of The Grouse Shooting Season  -General,There are more what in Italy than Canadians in Canada,Barbie Dolls,General,Parachutes were invented for what use,Fire escapes – people jump, Geography,What is the capital of Switzerland ?,Bern - Geography,Alba is the Celtic name for what country?,Scotland,Music,"Who Had A No.1 Album With ""Talk On Corners""",The Corrs, History & Holidays,He shot Lee Harvy Oswald.,Ruby -General,What TV role did actress Shirley Booth play,Hazel,General,What is the spanish word for 'fox',Zorro,General,What does AMSTRAD stand for,Alan Michael Sugar Trading -Entertainment,Porky Pig had a girlfriend named ________.,Petunia,General,Authority Music: What instrument does Ravi Shankar play,The Sitar,General,What is a group of bees,Swarm -Music,Who Was The First Member Of The Pop Group “Hear Say” To Leave The Band,Kim Marsh / Ryder,Music,Which Singer was “Lost in France” in 1976?,Bonnie Tyler,Music,According To His Song Whose Home Was Wherever he Laid His Hat,Paul Youngs -General,A(n) _________ is a person bound for a number of years to a master who undertakes to instruct him,Apprentice,Sports & Leisure,"Which Horse Won The Grand National In 1992, Winning With An Appropriate Name, As It Was Election Year? ",Party Politics ,General,In a museum La Crosse Kansas is Crandals Champion what,Barbed Wire museum -General,"In ballet, low, as in placement of arms.",En bas,General,In Japan they sell a last climax - what is it,Brand of tissues,General,Gina Hemphill carried the Olympic Torch at the opening ceremony of the 1984 Summer Olympic Games. Who was her famous grandfather,Jesse owens -General,What was Webster's adopted mom and dad's name,Poppadouupalus,General,In Connecticut it is specifically illegal to dispose of what,Used Razor Blades, History & Holidays,Who advocated planting peanuts and sweet potatoes to replace cotton and tobacco?,George Washington Carver -Science & Nature," Bird droppings are a chief export of Nauru, an island nation in the __________",Western pacific,General,"Football Team, san diego ______",Chargers,General,"Which F1 racing driver, after receiving the last rites, went on to win 2 world championships",Niki lauda -General,Babs Gorden is better know as what heroine,Batgirl,Music,The Song West End Girls Was A Number For Which Famous Pop Duo?,The Pet Shop Boys,General,Stenophobia is the fear of,Narrow things narrow places -General,Thomas Sweeny Was The Real Name Of Which Fictional TV Soap Character (Not The Actors Real Name),Sinbad (Brookside),General,What World First Occurred At Kill Devil Hill In 1903,First Powered Flight (Wright Brothers),General,Fox what is the capital of idaho,Boise -General,Racing who was the second male actor to refuse a best actor oscar,Marlon brando,General,Catherine the Great of Russia was born in which country,Poland,General,"Who reigns over Japan an emperor, a king or a queen",Emperor - History & Holidays,In which country do they eat 12 grapes as the clock strikes midnight (one each time the clock chimes) on New Year's Eve? ,Spain ,General,"What indian tribe is associated with ""the trail of tears""",Cherokee,General,"Where was first time, in 1894, the Mormons settled",Nevada -General,Joel Chandler Harris born December 1848 better known as who,Uncle Remus,General,What is the Capital of: Argentina,Buenos aires,General,In what Australian state would you find Cairns,Queensland -General,Who is the greatest boxer ever,Muhammid ali cassius clay,General,"During the u.s civil war, what did 22 union army blacks win",Medal of honour,General,Collective nouns - a siege of,Herons -General,What does a i stand for,Artificial intelligence,General,What river in Africa carries the most water,Congo - Zaire,General,What do the letters MG stand for on cars,Morris Garages -General,"Throat, foxing, & platform are parts of a(n) ________",Shoe,Sports & Leisure,What Is The Name Of Blackpool Football Club's Home Ground? ,Bloomfield Road ,General,What State was founded in 1948,Israel -General,Dilbert: How are Elbonian factories powered,Stationary bikes,Science & Nature, 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,General,Which motorway is seen as Manchester's equivalent to the M25?,M60 -General,What is the atomic number for palladium,Forty six,General,What is the chemical symbol for tin,Sn,Geography,Which element makes up 3.63% of the Earth's crust,Calcium -General,"This large mammal that is called a "" loxodonta africana "",and is also known as the (_____)",African elephant,General,To what is the chattanooga aquarium is devoted,Freshwater fish,General,Who invented the most common projection for world maps,Gerardus mercator -General,What does UNESCO stand for ?,"United Nation Educational, Scientific and Cultural Organization",General,Gladys knight and the _______,Pips,General,Which feature length Disney cartoon had a Scottish Terrier called Jock in it,Lady and the tramp -Music,Which Ex Rich Kid Played With Visage & Ultravox ?,Midge Ure,General,St Peter was the first Pope - Who was second,St Linus,General,"This military attack took place on Dec. 7, 1941",Pearl harbour -General,Every year there's a ton of it for every person in the world - what,Cement poured,General,What name did Vincent Van Gogh sign to his paintings,Vincent,Entertainment,"Mentor of Titan had two children in the Marvel comics, Thanos and ___?",Ero -General,Which detective lived in Cabot Cove Maine,Jessica Fletcher,General,All the Richard Hannay books got their titles from where,Bunyon's The Pilgrims Progress,General,How many engines are on a B52 bomber?,Eight -General,A ________ can eat only when its head is upside down,Flamingo,General,Fontana tv: barbara bel geddes won a emmy in 1980 as outstanding lead actress in what drama series,Dallas,General,Who introduces Channel 4's Time Team programme,Tony robinson -General,Emperor Claudius passed a law legalising what at banquets,Farting - for public health,General,"Thomas Keneally's Booker Prize-winning novel was made into a film, what was the novel called",Shindlers' ark,General,What is the aquatic nickname of Schubert's Piano Quintet in A,The trout quintet -Music,"Who Declared herself To Be ""Not That Kind Of Girl"" In 2001",Anastacia,General,Who starred in the film 'the dirty dozen',Lee marvin,General,Hagen what is a young lion called,Cub -General,Where would you find your natal cleft,Arse it’s the crack,Music,"What ""Size"" Was The Wonderstuff's First Uk Top Ten Hit",The Size Of A Cow,General,"What is this sign called ""&""",Ampersand - Geography,Approximately what percentage of the earth do the oceans cover?,71,General,What killed 23 people in Rostov Russia in July 1923,Giant Hailstones,General,"Who once famously quipped ""Do I Not like Orange""?",Graham Taylor -Geography,Where is mount kennedy ,Yukon ,Food & Drink,How many gallons of beer are there in a firkin? ,Nine ,Religion & Mythology,Who did the Norse god Odin have as handmaidens?,Valkyries -General,What family is a rhinocerous,Ungulate,Science & Nature,What Is a Woman's First Period Known As ,The Menarche ,Music,Which US Trio Had A 1996 Hit With The Song “Ready Or Not”,The Fugees -General,Fill in the blank: adding insult to____,Injury,General,"In which novel did we meet Jack, Ralph and asthmatic Piggy",Lord of the Flies, Geography,Ankara is the capital of ______?,Turkey -General,"What sport originally meant in French, look here",Tennis, History & Holidays,Which 1950s films took place in Altair-4 2280 ,The Forbidden Planet ,General,Which children's comic character lives at Bunkerton Castle?,Lord Snooty - History & Holidays,Who had a Christmas No 1 with 'There's No-One Quite Like Grandma'' ,St Winifred School Choir ,Music,Moby Is A Descendent Of Which Famous Author,Herman Melville,Music,Who wore the pink uniform on the cover of Sgt. Pepper's?,Ringo -Science & Nature,What Is A Female Goat Called? ,A Nanny ,Music,What Was Neil Diamonds First British Hit,Cracklin Rosie,General,All soldiers of every country do it - do what,Salute with right hand -General,"Who directed the films, Mrs Miniver, Ben Hur and Funny Girl",William wyler,Food & Drink,What Is The World's Best-Selling Chocolate Bar? ,Kit Kat ,General,What colour is the most popular eye shadow of all time,Max Factor's Powder Blue -Food & Drink,What type of fish is in an omelette Arnold Bennett? ,Smoked haddock ,Music,How does the death of Roger Peterson feature in the history of rock and roll,Pilot Of Buddy Hollys Plane,General,In which musical work of 1925 would you hear the song Summertime,Porgy and bess -General,Mycophobia is the fear of,Mushrooms,General,What is name of the tubes that connect the ear & throat,Eustachian,Sports & Leisure,Baseball: The Cleveland ______?,Indians -General,Who rehashes her triumphs and tragedies in the book Who's Sorry Now,Connie,General,Who allegedly killed officer JD Tippett,Lee harvey oswald,General,"Before Cartoon Characters ""Tom & Jerry"" Were Made Famous Tom Was Called By Another Name What Was It",Jasper -Geography,What is the capital of El Salvador,San salvador,Science & Nature,What Is The Damaging Film Which Builds Up On Teeth ,Plaque , Geography,What is the basic unit of currency for Central African Republic ?,Franc -General,The chief food for more than half the people in the world is ____,Rice,General,Jack Nicklaus named his course after his UK favourite what,Muirfield,General,"Born in Urbino in 1483, which Italian artist, with Leonardo and Michelangelo, is considered one of the three Masters of the High Renaissance",Raphael -General,Who sang 'god told abraham kill me your son. abe said man you must be puttin' me on',Bob dylan,General,What is the white of an egg,Albumen, History & Holidays,"Who were Balthazar, Melchior and Caspar ",The 3 Wise Men  -General,Kinpaku-iri sake contains what unusual ingredient,Flakes of gold,General,"American inventor, engineer, & steamboat builder",John stevens,Religion & Mythology,What mythical Scottish town appears for one day every 100 years?,Brigadoon -General,The paraclete is another name for which Christian religious item,The Holy Spirit,Music,"Who Had A Hit In 1995 With ""Hot Stepper""",Ini Kamoze,People & Places,Which former England international footballer was ordered to give his ex-wife over a third of his earnings in a land mark divorce case in 2004? ,Ray Parlour  -General,What is spain's biggest source of income,Tourism,General,Which boxer holds the record for the longest-reign as World Heavyweight Champion,Joe louis,General,"What is the oldest country in all Europe, & the oldest republic in the world",San marino -General,Nadine Gordimer was awarded the Nobel Prize for literature in which year,1991,General,In which city was the first of the Rocky films shot,Philadelphia,Music,Which Former Daily Mail Television Critic Wrote The Lyrics For Les Miserables,Herbert Kretzmer -General,"In which country is Tobruk, scene of heavy fighting during WW2",Libya,Music,"Which Band Was Famous For ""Burning Down The House""",Talking Heads,General,"Fish was lead singer with which band, before going solo",Marillion -General,From which country did the astromomer Tycho Brahe come,Denmark,General,What fell into the pool in Caddyshack which caused a major exodus?,A Baby Ruth candy bar,Music,Who Wrote Rhapsody In Blue,George Gershwin -Science & Nature,A medicine that hastens the emptying of the bowels is called a ________.,Laxative,General,Who's mugshot number was BK4454813?,Hugh Grant, History & Holidays,"Which popular 60s film took place in and around 17 Cherry Tree Lane, London, in 1910 ? ",Mary Poppins  -General,"After The Fire made ""Der Kommissar"" popular, but which eighties musician performed it originally?",Falco, Geography,Which state is the Wolverine State?,Michigan,General,The first cricket one-day international was held between england and ______,Australia -General,What us state is sixth alphabetically,Colorado,General,According to Guinness book what's measured in Milli-Helens,Beauty from Helen of Troy,General,What colour does the prefix 'leuco-' refer to,White -General,David Cook became famous as who,David Essex, History & Holidays,In which year did the Titanic sink? ,1912 ,General,Common non domestic animal is not mentioned in the Bible,Rats -General,Which Contribution To World Music Was Invented By Robert Hope Jones?,The Jukebox,General,"Gean, Northern bird and Dwarf all types of what",Cherry Tree,Sports & Leisure,Which Swimming Stroke Is The First Leg Of The Medley Relay Race? ,Backstroke  -General,What is a group of this animal called: Beaver,Colony,General,"Which famous museum is in Paris, France?",Louvre,General,To which city did the Lord tell Jonah to go and denounce its citizens' wickedness,"He tried to flee to spain instead, and was swallowed by the ""whale""nineveh" -Food & Drink,How many gallons are there in a firkin? ,Nine ,Entertainment,Porky Pig had a girlfriend named _______.,Pet,General,"Who said ""I’ve watched a lot of baseball - on the radio""",Gerald Ford -General,Where is the only digital rolex watch in the world,Wimbledon centre court,General,Windhoek is the capital of ______,Namibia,General,What does am fm do for a living,Disc jockey -General,"What color top hat does jiminy cricket sport, in pinocchio",Blue,General,Richmond is the capital of ______,Virginia,General,What did the contestants in the Greek olympics wear,Nothing -General,In El Monte California its illegal for who/what to sleep in bathtub,Horse - unless ridden,General,To who was cher married,Sonny bono,General,Per Ardua Ad Astra Is The Motto Of Which Organisation,The RAF -Sports & Leisure,The Green Jacket is presented to the winner of which event? ,US Masters ,General,What's Mauritania's official language,French,General,Libreville is the capital of ______,Gabon -Food & Drink,Zima iz made in thiz United Statez city.,Memphis,Music,"Which American R&B/Pop Quintet Released The Album ""No Strings Attached"" In 2000",N Sync,Food & Drink,What is laver? ,Seaweed  -Food & Drink,The Finest Strands Of Pasta Are Known As What ,Vermicelli ,General,In 1477 the first advert in English offered what for sale,Prayer Book,General,What is the flower that stands for: acknowledgement,Canterbury bell -General,Which food product did Henry Cooper advertise in 1984,Shredded wheat, Geography,What is the capital of Hungary?,Budapest,General,A curved structure used to span an opening.,Arch -General,What does a heliologist study (the),Sun,General,Who was the first American Vice President to resign?,John C. Calhoun,General,What was the average age of united states soldiers in the vietnam war,Nineteen -General,Who wrote the song 'See My Baby Jive',Roy wood,General,Who worked in a factory making toilets for airplanes before he recorded 'aint no sunshine when shes gone',Bill withers, History & Holidays,"""What Did My True Love Give To Me On The """"Second"""" Day Of Christmas"" ",2 Turtle Doves  -General,"In Greek mythology, dione was the mother of ______",Aphrodite,General,Sobek was an Egyptian god - in what form is he seen,Crocodile,General,What is the only number in English that has letters in alpha order,Forty -General,"The alcohol found in wine, beer & liquor is known as grain alcohol or what",Ethanol,General,The character Captain Queeg appeared in which film,The caine mutiny,General,The word amnesia (forgetfulness) derives from what language,Greek -General,Who is Bibendum better known as?,The Michelin Man,General,What is the Capital of: Niue,Alofi,Sports & Leisure,What sport would you helicopter to the Bugaboos for?,Skiing -General,Willie What do table tennis players change after five points,Service,General,"Any of as many as 50,000 marine, freshwater, & terrestrial species of mollusk",Snail, Language,What is the language of Hungary?,Magyar -General,What is the branch of medicine dealing with curing by operative procedures,Surgery,Science & Nature,Who ate watercress to dissolve gravel and stones in the bladder?,North American Indians,Science & Nature,What did Wilhelm Roentgen discover in 1895?,X-rays - History & Holidays,What was Max Headroom's network number ,23 ,General,Name the TV show which featured an average housewife teamed up with a secret agent.,Scarecrow and Ms. King,General,Schlionophobia is the fear of,School -Music,"Precocious Brats 2000 Hit ""Big Girl"" Featured Which Comedy Duo",Kevin & Perry,General,What type of rocks result from the wastage of pre-existing rocks,Sedimentary,General,A game played with rackets and shuttlecock,Badminton -General,What is the Great Smoo,Scotland's largest cave,General,Which pop group had the most US No 1 singles in the 70s,Abba,General,Who founded the Hospice movement in Britain in 1960?,Cicely Saunders -General,The white house had a telephone before it had an indoor ______,Bathroom,Sports & Leisure,Who was the 1978 Wimbledon Women's Singles champ,Martina navratilova,General,What is the flower that stands for: resolution,Purple columbine -Science & Nature,What is the chemical symbol for gold,Au,Music,"With Whom Did Boys 2 Men Record The Single ""One Sweet Day"" In 1995",Mariah Carey,General,Ville Marie was the original name of where,Montreal -General,"In ""Spaceballs"" what does the bumper sticker say on the back of Lonestar's ship?",I love Uranus,General,What place is called Rapa-nui by its native inhabitants,Easter Island,General,Which English Benedictine monk is known as the Apostle of Germany,St boniface -General,Who painted 'Christ in the Carpenter Shop'?,John Everett Millais,General,What was the name of Norse God Thor's hammer,Mjolnir, History & Holidays,In which country was Greenpeace founded in 1971? ,Canada  -General,What is a male swine called (giggle no ex boyfriends names___),Boar,General,What's the biggest living bird,Ostrich,General,Which former child star made his debut on the London stage in October 2000,Macaulay culkin -General,"Which Panamanian boxer's nickname, translated into English, means ""hands of stone"" or ""stone fists""",Roberto duran,Entertainment,Who did Larry Hagman portray in the TV series 'Dallas'?,J.R. Ewing,Science & Nature,What Is A Discovery? ,An Apple  -General,What is the largest land bird in europe,Bustard,General,What sport sees stones thrown at a house,Curling,General,What is a german 'alsatian',German shepherd -General,On A Movie Set What Is The Primary Job Of The Foley Artist,To Add Sound Effects,General,Ornithophobia is a fear of ______,Birds,General,Suez is at one end of the Suez canal what is at the other,Port Said -General,What is the Capital of: Latvia,Riga,General,Politicophobia is a fear of ______,Politicians,General,What color is the blood of an octopus,Pale bluish-green bluish green -Religion & Mythology,On which mountain did Moses receive the Ten Commandments?,Sinai,General,From what were balloons originally made,Animal bladders,General,What is the colour of lobster's blood,Blue -General,Where does the island of Surtesy lie,Off iceland,General,What's a 10-20 to a police officer,Location, Geography,What is the basic unit of currency for Tunisia ?,Dinar - History & Holidays,In the Bible who sent out a dove to find land ,Noah ,General,What country has three capital cities Admin Legislate Judicial,South Africa,General,"What Was Designed In The 1930's By The Englsi Architect ""Giles Gilbert Scott"" And Dubbed The K6",Red Telephone Box -Music,"Whose Version Of ""My Way"" Had A Perhaps Poignant Release Late In 1977",Elvis Presley,General,What completes this well known saying..'An Englishman's home,Is his castle,General,"What ""motowner"" was shot to death on april fool's day",Marvin gaye -General,Who owns corfu,Greece,Entertainment,Who released the double album 'Goodbye Yellow Brick Road' in 1973?,Elton John,General,What part of a person's body must be clutched to feel the 'biceps',Upper arm -General,The President of Gabon banned the use of what word in country,Pygmy,Science & Nature,What is the second hardest gem after diamond?,Sapphire,General,What African country gained independence in 1980,Zimbabwe -Science & Nature," The sea lion can swim 6,000 miles, stopping only to __________",Sleep, History & Holidays,Which racist organisation was formed in Tennessee in 1865?,Ku Klux Klan,General,What Does A Tegestologist collect?,Beer Mats - History & Holidays,Which Crime Did Sirhan Sirhan Say He Had No Knowledge Of But Was Later Executed For In 1969 ,Bobby Kennedy Assasination ,General,"In 'romeo and juliet', who says 'what must be must be'",Juliet,General,What was the second colour film to win best picture Oscar 1951,An American in Paris Gone with the wind 1 -Entertainment,Who sang Puff The Magic Dragon?,"Peter, Paul and Mary",Music,What Was Buddy Hollys First Hit Single,That'll Be The Day,General,"In 1983, who sang 'domo origato mr roboto'",Styx -General,What was a Pikelhaube used in WW I,Spiked German Helmet,General,A _______ is a pact between a secular authority & the church.,Concordat,General,What is the search for the existence of ghosts,Eidology -General,"What is the nickname for New Orleans, la.",Crescent city,General,What is the longest venomous snake,King cobra,General,What is the most common surname for Motel owners in the US,Patel -General,"Who composed the opera ""Boris Godunov""",Moussorgsky,General,"Who, with William Gaunt and Stuart Damon, played the lead parts in television's The Champions",Alexandra bastedo,General,Which Element's Name Is Derived From The Greek For “Lazy”,Argon -General,The Bear and the Dragon is the last novel by which writer,Tom clancey,General,Which musical includes the Barbara Dickson/Elaine Page song I Know Him So Well,Chess,General,Professor Kelp transformed into who,Buddy Love – Jerry Lewis Nutty Professor -Music,"With Their Album ""That Compact Disc By"" Who Are Crofts, Harry And Williams",Oceanic,General,Where did Simon & Simon take place?,San Diego,General,"Briton's say 'tarmac', americans say ________",Runway -General,“ St Georges Day ” Who We All Know Is Patron Saint Of England But Where Was He Born.,Turkey,Science & Nature," The Mola Mola, or Ocean Sunfish, lays up to __________ eggs at one time.",5000000,General,The US had 5% world population and 70% of worlds what,Lawyers -General,What countries highest award is The Order of the Elephant,Denmark,General,Which variety of cheese was invented by John Jossi,Brick - rhymes with dick,General,What was the name of the policeman in Enid Blyton's 'Noddy'?,PC Plod -General,There are over 130000 species of what on earth,Butterflies,General,What flower is the national symbol of India,Lotus,General,What is a group of this animal called: Hawk,Cast kettle -General,And which animals penis is prehensile,Dolphins,General,Piercing of holes other than the ear lobes,Body piercing,General,What russian word 'restructuring',Perestroika -General,What do the italians call munich,Monaco of bavaria,General,Collective nouns - A family of what,Sardines,General,What international airport is identified by the letters CCU,Calcutta -General,"In Greek mythology, what were Medusa, Stheno and Euryale collectively known as",The gorgons,General,The word electricity comes from the Greek word for what,Amber,General,What is the fear of beards known as,Pogonophobia -General,What country has the most elephants,Tanzania,Music,Who Is With Regard To Records Sold The Most Successful British Singer Of All Time,Cliff Richards,Food & Drink,"What country is the home of the relish called chutney? A=Korea, B= China, C= India, D= Japan ",C=India  -General,What does the abbreviation a.m. stand for?,Ante Meridian,General,What is the only state with an official state ship & hero,Connecticut,General,Who drew the comic 'the maxx',Sam keith -Sports & Leisure,What Colour flag indicates a fair throw in the shot put? ,White , Geography,The Nationalist Chinese occupy this island.,Taiwan,General,In the olden days what would you put in a large Bosom,Clothes - it’s a chest -General,Ashton In Northamtonshire Holds An Annual World Sporting Event In What Sport,Conkers,General,"On irc, what is a/s/l","Age, sex, location",General,The average size of what is a grain of sand,Meteor -General,"Where was the Armistice, between the Allies and Germany, signed on the 11th November 1918",Compiegne,General,Who sells more cars than Ford Chrysler Chevrolet and Buick,Matchbox toys,General,"In which Ealing Film Comedy do Alec Guinness, Herbert Lom and Peter Sellers try and fail to commit a major crime",The ladykillers -Music,"Glen Miller Received The First Ever Golden Record Award, For Which Single",Chattanooga Choo Choo, History & Holidays,Which enduring western made its television debut On Sep 12th 1959 and ran until Jan 17 1973? ,Bonanza ,Science & Nature,What planet is nearest the sun?,Mercury -General,The telephone country code 82 would connect you with,Korea,Science & Nature," When under extreme stress, such as when held in captivity, some octopuses will eat their own arms, which __________",Grow back,General,Zubin Mehta conducted who in concert,Three Tenors -Sports & Leisure,How many times did Ray Reardon win the snooker world championship? ,6 ,General,Approximately 3 million women in the USA have what,Tattoos,General,In Australia what is a Willy-Willy,Whirlwind -Music,What Do The Initials RCA Stand For,Radio Corporation Of America,General,What happened to the man who tried to hang himself over river,Rope broke – drowned in river,General,"Truck, Canton and Hoist are amongst others parts of what",Flag -General,"On the 1976 release, who 'wanted to fly like an eagle'",Steve miller band,Geography,In Which Ocean Is Greenland Located? ,Arctic ,General,"Real ______, kept below 55 degrees F, will sweat when brought too quickly to room temperature",Chocolate -Music,Which Female Trio Won 5 Grammy Awards In 2007?,The Dixie Chicks,General,Where were the 1964 winter Olympics held,Innsbruck Austria,Music,Number of Beatles conventions held each year worldwide,15 -General,In MASH what is Radars favourite drink,Grape Knee High,General,Which author wrote the novel Tom Jones,Henry fielding,Science & Nature,What breed of dog has an inability to bark ?,Basenji -General,In ancient Rome what was the tabularium,Hall of Public Records,General,What TV show with married couples and family life appealed to those over the age of 29?,Thirtysomething, History & Holidays,In what year did England's lease on Hong Kong expire,1997 -General,Deep freezing of bodies of people who have died of an incurable disease in the hope of a future cure,Cryonics,General,"Pine, Beach, Stone, Sable or American types of what creature",Martins,Entertainment,This Disney movie relies heavily on computer animation.,TRON - Geography,In what country is Mandalay?,Myanmar (formerly known as Burma), Geography,What is the capital of Portugal ?,Lisbon, Geography,What color are French Letter Boxes?,Yellow -General,What is the name used to describe materials that can be broken down by nature,Biogradable,Science & Nature,"In which organ is your ""hypothalmus"" located?",Brain,General,Which is the largest species of Tiger?,Siberian Tiger -General,Mother what is the real name of the painting 'whistler's mother',Arrangement in,Food & Drink,"Often eaten for breakfast, the egg comes from what barnyard animal?",Chicken,General,What is the fear of the moon known as,Selenophobia -General,A young what is called an Eyas,Hawk,General,In Alaska it is illegal to look at a moose from where,Window of any aircraft,General,"Musically, who described herself as 'The Last of the Red Hot Mommas'",Sophie tucker -General,What was the first song played on armed forces radio during operation desert shield,Rock the casbah,Entertainment,Who played Eddie in the pop-culture film 'The Rocky Horror Picture Show?,Meat Loaf,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 -General,Who was the last king of france,Louis philippe,General,What is the highest commissioned rank in the Royal Navy,Admiral of the fleet,General,What kind of material is guipure,Lace -General,Which Country Has The Most Countries Bordering It,China (16),General,What is a 'rail',Bird,General,In 1925 at Windsor Bookies went on strike - against what,Betting Tax - History & Holidays,Which country did St Nicholas come from? ,Turkey ,Music,From which metal band was Dave Mustaine fired in 1982?,Metallica,Science & Nature,This organ is a small pouch that stores bile.,Gall bladder -General,Who won the 1990 Nobel Peace Prize,Gorbachev,General,"Mansard, Gambrel and Hip all types of what",Building roof,General,"When John F. Kennedy was president, who was his attorney general",Robert kennedy -General,Which Country Invented The Kilt,France,General,Who defended World heavyweight title twice on same night in 1906,Tommy Burns – both 1st Kos,General,What is studied in Aerology,Planet Mars -Sports & Leisure,Which Team Defeated The World Champions Argentina In The Opening Game Of 1990 Football World Cup? ,Cameroon ,Food & Drink,"Iceberg, Boston, and Bibb are types of _________.",Lettuce,Science & Nature,On what part of the body is an 'LTK procedure' performed?,Eyes -General,In Star Wars George Lucas modelled the Emperor on who,Richard Nixon,General,Fill in the blank: you get what you ____ for,Pay,General,What is ornamental work in silver or gold thread,Filigree -General,Did it my way what is the capital of kentucky,Frankfort,Science & Nature,What science does Professor Stephen Hawking study and teach?,Astrophysics,Music,The label is Bludgen Riffola Name the Band?,Def Leppard -Food & Drink,A Dining Chair With Arms Is Known As A What ,Carver ,General,What is formed when the Earth comes betwen the Sun and the Moon,Lunar eclipse,Music,What guitar company created the 'Flying V' guitar in the late 1950's,Gibson - History & Holidays,"If you were offered a 'spotted dick' after Christmas dinner, what could you expect? ",A Steamed Pudding ,Science & Nature,For what metal is 'Au' the chemical symbol?,Gold,General,What did peter minuit buy for the equivalent of 24 dollars,Manhattan island -Music,“The Man Who” Was The Second Album For Which Band?,Travis,General,1936 film started with world war and ended with space flight,Things to Come HG Wells,General,Which member of the Cabinet draws the largest salary,Lord chancellor -General,Alfred White was a famous author under which name,James Herriot,General,What makes the holes in Swiss cheese,Gas given off by bacteria,General,Jack lemmon's portrayal of businessman harry stoner in ___ wins him an oscar,Save the tiger -General,Hippophobia is a fear of ______,Horses,General,What name did the Romans give to Wales,Cambria,General,The Spinnaker Tower is a feature of which English city?,Portsmouth -General,In Biker Slang what is a Coupon,Traffic Ticket,General,Whose castle was camelot,King arthur,General,Gamaphobia Is The Fear Of What?,Marriage - History & Holidays,In which popular 1950s film is a character played by Audrey Hepburn given 24 hours to do as she pleases in the eternal city ? ,Roman Holiday , History & Holidays,In 1953 'Stalin Died'. Who ultimately succeeded him as the leader of the Soviet Union? ,Khrushchev. ,General,Who wrote the play Waiting for Godot in 1954,Samuel Beckett -General,Who signed the Magna Carta at Runnymead,No One - John sealed it illiterate,General,What is the white or yellowish substance obtained from the honeycomb of the bee,Beeswax,General,Which metallic element atomic no 83 soothes Gastric Ulcers,Bismuth -General,Name the Beatles first LP released in 1963,Please-please me,General,Name the test applied to computers to see if they can think,Turing test,General,The hop-low is the worlds smallest what,Mushroom -Food & Drink,How many pieces of bun are in a Mcdonald's Big Mac ,Three ,Music,"Paul McCartney wrote The Song ""Martha My Dear"". Who did he know who was named Martha?",His Dog,General,What vitamin found in carrots is good for the eyes,Vitamin a -General,"What goes with ruby, emerald & sapphire to make up the world's most valuable gems?",Diamond,Geography,Taiwan was known formerly as _________________,Formosa,General,Joplin Music: What band did Dion form in 1958,The Belmonts -General,What is the most extensively grown & eaten food,Wheat,General,"What is the lone ranger's ""real"" name",John reid,General,Who killed macbeth,Macduff -General,What instrument in an automobile measures distance travelled,Odometer,General,Alces Alces is the Latin name for what animal,Moose,General,Which Band Were Originally Called The Angel And The Snakes?,Blondie -General,What type of lettuce should be used in a classic Caesar Salad ?,Romaine,Entertainment,What did Sheryl Crow do before she became a singer?,Teach,General,In literature and films whose father was the Earl of Dorincourt,Little Lord Fauntleroy -Art & Literature,Who wrote 'The Rose Tattoo'?,Tennessee Williams,Music,By What Name Did Marion Elliot Become Famous Fronting The Band X-Ray Specs,Poly Styrene,General,What actress/singer once worked in a doughnut shop,Madonna -General,"In the television comedy series, what type of animal did Manuel think his pet rat Basil was",Siberian hamster, History & Holidays,What Canadian sketch comedy show helped launch John Candy's career? ,SCtv , Geography,Where is the Parthenon located?,Athens -Music,"Who Hat A Hit With ""Mah Na Mah Na""",Piero Umiliani,General,The Black Swan is native to which country,Australia,General,Space for bells in a church tower,Belfry -Sports & Leisure,What Sport Is Played By The Chicago Bulls ,BasketBall ,Food & Drink,"Booze Name: 1/2 oz. light rum, 1/2 oz. dark rum, 1 oz. orange, lime, pineapple juice",Pina colada,General,What is the proper name for the queen of spades,Palas -General,Formal invocation of the divine blessing upon people or things,Benediction,General,What song was on the B side of The Beatles We can work it out,Day Tripper,Music,What Kind Of Summer Did Bananarama Have In The 80's,Cruel -General,What was Hebe the goddess of,Youth,General,Old superstition Wearing socks inside out protection from what,Witches,Religion & Mythology,Persephone was the Greek goddess of ______?,Spring -General,What is the Capital of: Senegal,Dakar,General,"A clip, shaped like a bar to keep a woman's hair in place is a _______.",Barrette,General,"Who said 'when power corrupts, poetry cleanses'",John f kennedy -General,"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,General,"What happened in tulbach on september 29, 1969",Earthquake,Sports & Leisure,Who Was The Fist Footballer To Receive A Knighthood ,Sir Stanley Matthews  -General,What was Queen Victoria's first name,Alexandria,General,Brigham Young was a pioneer of which institution,The mormon church,General,In 1961 U.S. breaks relations with,Cuba -Sports & Leisure,Name The Youngest And Oldest Members Of England's 2006 FIFA World Cup Squad ,Theo Walcott & David James ,General,What is the Capital of: Angola,Luanda,General,Mountain ranges like Sierra Nevada what does Nevada mean,Snow Topped -General,"A style that emerged in the 1970s characterized by references to and evocations of past architectural styles, particularly the classical tradition. It is frequently colorful and wittily ornamentive.",Postmodernism,General,Which writer of the 17th and 18th Centuries first penned the line 'For fools rush in where angels fear to tread.',Alexander pope,General,What was the name of Magnum PI's suave superspy alterego?,Sebastian Sabre -Science & Nature,What Was The Tomato's Original Name? ,Love Apple ,General,What technique records and reproduces three-dimmensional images using light from a laser but without the need for cameras or lenses,Holography,Food & Drink,The top fast food chain in the USA by revenue in 1995 was McDonalds. Which was second? ,Kentucky Fried Chicken  -General,"Barrier reef What famous writer was born May 25, 1803",Ralph waldo emerson,General,Which Rugby Union team play at Franklin Gardens?,Northampton,Food & Drink,What Does Chilli Con Carne Mean ,Spanish For Meat With Chilli Powder  -General,Who was the only man to knock out Muhammad Ali in a heavyweight title fight,Larry holmes,General,World what is ground being 'rested' for a season,Fallow,General,What is the chemical symbol for antimony,Sb -Sports & Leisure,On What Sport Was john Arlott A Noted Commentator ,Cricket ,General,"Which Frenchman published ""Centuries"" in 1555 containing rhyming prophesies up to the year 3797",Nostradamus,General,In around what year was Joan of Arc born,1412 -Geography,Of Which Settlement Did Local People Invite Sir Francis Drake To Become King ,San Francisco ,General,What is the second largest bone in the foot,Talus,General,Hitchhiker's Guide: What race writes the third worst poetry in the Universe,Vogons -General,What is a Dwarf Goby,Worlds smallest true fish,General,Who helped George Harrison produce 'My Sweet Lord',Phil spector,General,The spiral galaxy nearest ours is the ________,Andromeda -General,The fable The Hare and the Tortoise - what animal judges race,The Fox,General,"The four throwing events at the olympics are shotput, discus, javelin and ______",Hammer throw,Music,What Was The Name Of Junior Walkers Backing Group,The All Stars -General,Where were arabic numerals first used,India,Sports & Leisure,Which Country Does The Athlete Merlene Ottey Represent ,Jamaica ,Music,"What Did The Initials Stand For In The Name Of 1980's German Band ""DAF""",Deutsche Amerikanische Freundschaft - History & Holidays,What company made PacMan? ,Bally Midway ,General,Army officer ranked below major-general,Brigadier,General,"Racing Music Artists: Who did ""Unchained"" in 1981",Van halen -General,Which company produces the Sintra car,Vauxhal,Sports & Leisure,"She was ""Sports Illustrated's"" first female ""Sportsman of the Year"".",Billie Jean King,Technology & Video Games,Who invented Tetris ?,Alexi Pazhitnov -General,In the man from UNCLE what does UNCLE stand for,Utd. Net. Com. Law Enforcement,General,What elements name comes from the Greek meaning lazy,Argon,General,What country celebrates its National Day on 25th August?,Uruguay -General,Who's the lead singer of simply red,Mick hucknall,General,"What shuttle launch merited the time cover headline ""whew""",Discovery,General,What is a Googol?,The Largest Named Number -General,Two thirds of the worlds geysers are found where,Yellowstone Park,General,In Columbus Ohio its illegal for shops to sell what on Sundays,Cornflakes,General,Generation X Toys: Company that made Atari games like Kaboom and Megamania,Activision -Music,Name Any Three Of The Four Members Of The Ramones (PFE),"Joey, Dee Dee, Johnny, Tommy",General,What west coast U.S. state would you be in if you were honeymooning in Humptulips,Washington washington state,General,What word describes the scattering of the Jewish people around the world,Diaspora -General,In France what would you buy in a Boulangerie,Bread,Music,"Which Duo Did Bob Dylan Write ""Lay Lady Lay"" For Though They Never Recorded It",The Everly Brothers,General,From what country was the athlete Peter Snell,New zealand -General,What state is 'the gopher state',Minnesota,General,What is the common name for the 'pharynx',Throat,Science & Nature,These essential body cells do not contain nuclei?,Red Blood Cells -General,What job did Agatha Christies husband do,Archaeologist,General,Which authors first (unsuccessful) book was Inland Voyage,Robert Louis Stevenson,Sports & Leisure,Which Is The Only Non English Team To Have Won The FA Cup? ,Cardiff City  -Science & Nature,What is the longest venomous snake?,King cobra,General,What is a group of this animal called: Hound,Pack mute cry,General,Who called himself 8th wonder of world cos of his big dick,Charlie Chaplain -General,"Barbara, Carignan, Cinsaut, and Nebbilo are verities of what",Italian wine grapes,General,Which newspaper owner's name became an exclamation of surprise or disbelief,Gordon bennett,Sports & Leisure,Euro 2008 Gets Underway Later This Year But Can You Tell Me Either Of The Two Host Countries PFE ,Austria & Switzerland  -General,Nobody Does it Better was sung in which Bond film,The Spy Who Loved Me,General,Ursula is the name of the villain in which Disney film?,Little Mermaid,Music,What Is Elton Johns Real Name,Reginald Kenneth Dwight -General,What was the full name of Dr Henry Jekyll's alter ego,Edward Hyde,General,Jackdaws and magpies belong to which group of birds,Crows,General,A tayberry is a cross between which two fruits,Blackberry and raspberry raspberry and blackberry -General,OB is the international aircraft registration letters what country,Peru,Science & Nature,Which Is The Longest Bone In The Human Body ,"The Femur, Thighbone ",General,"Genus of annual and perennial herbs (Buttercup) containing about 20 species, grown for their showy flowers.",Adonis -General,What was the first version of microsoft windows to have networking capabilities,Windows for workgroups, Geography,What is the basic unit of currency for Tuvalu ?,Dollar,General,The buffalo weaver is the only bird to develop a false what,Penis to flash for mates -General,What did Charles Conrad of Apollo 12 become in November 1969,Third man on the moon,General,"What is this sign called ""*""?",Asterisk,General,Who created philip marlowe,Raymond chandler -General,The cob nut is the fruit of what tree,Hazel, History & Holidays,He ruled Rome when Christ was born.,Caesar augustus,General,In England it is illegal to drive a car without doing what,Sitting on front seat -Entertainment,Who patrols Gotham City?,Batman and Robin, History & Holidays,"Which computer manufacturer in 1984 advertised their new computer during the Super Bowl, and never re-used the commercial? ",Apple ,General,Planting of trees in urban or desert areas,Greening - History & Holidays,From which film do we get the song 'White Christmas'' ,Holiday Inn ,General,What does a spermologer collect,Trivia, Geography,Where is Euston Station?,London -General,Of which African country is Lilongwe the capital,Malawi,General,Whats the largest organ in the human body?,Skin,General,What is the name of the theme song for the film 'the highlander',Princes of -Geography,What is the capital of The Bahamas,Nassau,General,What name is given to the 4th Sunday in Lent,Refreshment sunday,General,What two countries is Andorra between,France & spain -Music,"Who Recorded The Albums ""Into The Fire"" & ""Waking Up The Neighbours""",Bryan Adams,General,In the Mohs scale of hardness what comes in at number eight,Topaz,General,Who is called the father of the h bomb,Edward teller -Science & Nature,Dense sea-water swamps along coasts of hot countries are called ________.,Mangroves,General,If you suffered from a luxating patella what wrong with you,Moving Kneecap,General,What hotel has been the target of the most take over bids,The Ritz - Paris - Geography,Which European country has the highest population density?,Monaco,General,Joan Sandra Molinsky became famous as who,Joan Rivers,General,Which country's troops sustained the greatest number of deaths in WWll,Russia -General,What ability has the silkworm moth lost through domestication,Flight,Music,What Was Mel B's First Solo Single,I Want You Back,Sports & Leisure,Which premiership football team are nicknamed 'The Toffees'' ,Everton  -General,Molysmophobia is the fear of,Dirt contamination,Science & Nature,How Many Teeth Does A Healthy Adult Usually Possess ,32 Teeth ,General,Who had hit records with 'You Love Us' and 'Kevin Carter',Manic street preachers -General,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,Music,"Who Was ""Horny, Horny, Horny""",Mousse T vs Hot n Juicy,Music,In Which Year Did & The Pacemakers Achieve Three No.1's,1963 -General,Who owns Weight Watchers?,Heinz Foods,General,"What famous actor is listed only as 'stud' in the credits for the 1970 film, 'myra breckinridge'",Tom selleck,General,Who was Canadian parliaments first Inuk member,Peter ittinuar -General,The RAF Red.Arrows have used British Aerospace Hawks since 1980. Which aircraft did they use prior to this date,Folland gnats,General,What are Swedish buns called?,Danishes,General,The tower over a castle draw bridge is a(n)___.,Barbican -Science & Nature,This fruit has its seeds on the outside.,Strawberry,General,How long is a paper anniversary,One year,General,Duffy: Quite a Year for Plums,Bailey white -Music,"In 1994, Who Returned To Hello Dolly For It's 30th Anniversary Revival",Carol Channing,General,"On Whose Gravestone Will You Find The Words ""My Jesus Mercy""",Al Capone,Science & Nature,How many times do your ribs move every year during breathing?,Five million -General,What was andrew jergens' profession,Lumberjack,General,What kind of animal was Black Beauty,Horse,General,Alfred Hitchcock's daughter appeared in Psycho - name her,Patricia Hitchcock -General,"Winner of four Oscars, which film featured the characters Joe Buck and Ratso",Midnight cowboy,General,"The small intestine is made up of the jejenum, the ileum & the ______",Duodenum,General,Who was imprisoned for faking howard hughes’s autobiography,Clifford irving -General,What european city is served by sheremetyevo and vnukova airports,Moscow,Science & Nature," With only a four_week gestation period, a cottontail __________ can produce 5 to 7 litters, and as many as 35 offspring per year.",Rabbit,General,Goitre is an enlargement of what gland,Thyroid - History & Holidays,What Colour Are Holly Berries ,Red ,Science & Nature,What is the fastest breed of dog after the greyhound?,Whippet,General,What countries people spend most private money on recreation,Taiwan's -Science & Nature,Which river made The Grand Canyon ?,Colorado,Sports & Leisure,Which animal is on top of rugby's Calcutta Cup? ,Elephant ,Religion & Mythology,Who is the greek equivalent of the roman god Venus,Aphrodite -General,"Who was bette davis' female co-star in hush, hush sweet charlotte",Olivia de,General,Who met in yalta in 1945,"Churchill, roosevelt and stalin", History & Holidays,"How old would Elvis have been on his birthday January 8, 2000? A=55, B=60, C=65 ",C=65  -General,"In painting, what is a Maulstick",Stick to steady the hand,General,What type of airplane did sky king use in sky king,Cessna,General,What kind of machines are floppy discs used in,Computers -General,What animals does a hippophobe fear,Horses, History & Holidays,"""Who Wrote The Christmas Story """"The Snowman""""?"" ",Raymond Briggs ,General,What foods name comes from the Tamil words for Pepper Water,Mulligatawny -General,Name the raven in George Orwell's Animal Farm,Moses,General,This statue was found on the Greek island of Melos in 1820,Venus de milo,General,Where is the lowest point in Europe,Caspian sea -General,What are formed by Orogeny,Mountains,General,Montana its illegal to have what in your cab without chaperone,A Sheep,General,What was the nickname given to marshall rommel of the german panzers,Desert -General,"Which novelist's latest chiller is called ""Bag of Bones""",Stephen king,General,Who created Woody Woodpecker,Walter Lantz, Geography,What country owns the island of Corfu?,Greece -Geography,In which county is Berwick-Upon-Tweed? ,Northumberland ,General,What are ceps morels and chantrelles,Mushrooms,General,Beatles were 1st UK group on Ed Sullivan who was second,The Searchers -General,In which field did Wayne Sleep achieve fame,Ballet, History & Holidays,Who was the second President of the USA? ,John Adams ,General,Thomas Chippendale mostly worked in what wood,Mahogany -Music,By what name is Beethoven's sixth symphony known?,The Pastoral Symphony,Music,Who Went For A Stroll Down Baker Street,Gerry Rafferty,Music,In 1969 Major Tom Appeared In Which Classic Track,Space Oddity -General,What does Stet mean to a printer,Let the Original stand,Science & Nature,If You Took The Number One Million & Converted It To Binary Form What Would It Equal ,64 ,General,And what is the least,Chocolate -General,Which Spanish painter has first exhibition at 16 - also 4 year blue,Pablo Picasso,General,For what was the acanthus plant used as a model,Corinthian columns,Music,Who Became Famous For Kung Fu Fighting,Carl Douglas -General,What is the capital of virginia,Richmond,General,In 1923 the BBC first broadcast what on the radio,Opera,General,What body organs did mae west say could be an asset if you hide them,Brains -General,In the Bible Cain built a city named after his son what,Enoch,General,What Is The Currency Of Seychelles,The Rupee,General,The word tragedy is Greek what does it literally mean,Goat Song - used to sacrifice goats - History & Holidays,Where Was The Roman's First Colony Based In England? ,Colchester ,Music,"Whose Record Label Was ""Fire"" By The Prodigy Released On",XL Recordings,General,Where did Cajun music originate,Louisiana -General,What was the name of Abraham Lincolns dog Stabbed to death,Fido,Geography,"What European country has ""Vaduz"" as its capital city",Liechtenstein,General,Which writer created the character Harriet Vane?,Dorothy L. Sayers -General,Heavy material stabilizing a ship,Ballast,General,Which states share Death Valley in the USA,California and nevada,General,Admiral Donitz succeeded Hitler in which year,1945 -General,"An adverb can modify a verb, an adjective, or ______",Adverb,Geography,Which Is The Largest Sea ,The South China Sea ,Science & Nature,One ragweed plant can release approximately how many grains of pollen?,One billion -Sports & Leisure,Which Grand Slam tennis event is played on a clay surface?,French Open,Music,"What Was The Royal Guardsmen's Follow Up To ""Snoopy Vs The Red Baron""",Return Of The Red Baron,Science & Nature,Who Made The Worlds First Over The Ocean Flight In A Heavier Than Aircraft ,Louis Bleriot  -Music,Son Of My Father Is Credited As Being The First Song Ever To Feature Which Instument,A Synthesizer,General,Who was the discoverer of the vaccine for polio,Jonas salk,Music,In 1996 Take That And Boyzone Both Had Number One Singles With Covers Of Songs By Which Band,The Bee Gees -General,Who wrote the book on which the Oscar winning film 'The Godfather' was based,Mario puzo,General,When did chuck berry's first rock and roll classic hit the charts,1957,Music,What Is The Name Of The Small Pipe With Finger Holes On The Set Of Bagpipes,The Chanter -General,In what 1967 film did gene hackman earn his first oscar nomination,Bonnie,General,"Complete the saying, 'He who praises everybody ____________'",Praises nobody,General,Of what was snow white's coffin made,Glass -Music,"Wrote the songs for ""Joseph and the Amazing Technicolor Dreamcoat""",Andrew lloyd webber,General,What was Lady Chatterlys first name,Constance,General,E H Shepherd illustrated which series of stories,Winnie the Pooh -General,"What Disney film features the song ""Give a little Whistle""",Pinocchio,Music,The Perfecto All Stars Are Better Known As Who,Paul Oakenfold & 808 State,General,"What molecule, known by three letters, controls heredity",Dna -General,Where in the US by law do you not have to pay taxes,An Indian Reservation,Science & Nature,Which Element Has The Chemical Symbol K? ,Potassium ,General,Duran What 1969 film did Glenn Campbell appear in,True grit -General,Which ultimately disgraced person was 'Surveyor of the Queen's Pictures' until 1972,Anthony blunt,Entertainment,"Of the new Supermen, this one was a villain",Cyborg,Music,"Which Vocal Group , Formed In 1954 As The Four Aims, Gave The Motown It's First Ever UK Number 1 Single In 1966",The Four Tops -General,Buckroe Beach Virginia illegal put what in someone's swimsuit,A Dead Fish,General,Which two Latin words nearly always abbreviated mean 'course of life',Curriculum vitae, History & Holidays,In which country do people wear masks to burn on December 31 to drive away bad luck? ,Ecuador  -General,One third of Taiwanese funeral processions include what,A stripper,General,"Which Pop Duo Consist Of The Members ""Graham Russell & Russell Hitchcock""",Air Supply,Sports & Leisure,"In which sport would you find the ""slapshot"".",Hockey -General,Which kitchen appliance was invented by fred waring,Blender,General,What was the eighth month in the ancient Roman Calendar,October,General,Their technical name are hydrometeors what's common name,Hailstones -General,How long must the first word in a Scrabble game be,2 letters,General,Authority charged with the disposition of legal actions involving children,Juvenile court,General,From what material are snooker balls made,Chrystallite -General,What salad vegetable would you be eating if you were having a 'French Breakfast',Radish,General,"Bistre, Sorrel and Vandyke are shades of which colour",Brown,General,Which comic book hero rode a horse called storm,Aquaman storm was a seahorse -General,Board game with pieces moved according to throw of dice,Backgammon,General,"""Earth has not anything to show more fair"" is the first line of a poem by whom",Wordworth,General,"Double diamond, Croquet and Rover terms in which sport/game",Croquet -General,In 1952 The Airfix Company Produced Their First Injection Moulded Construction Kit Of Which Famous Ship,The Golden Hind,General,In what game would you use a baguette,Boule - measuring / marking,General,When did the 'live aid' concerts take place,1985 -General,Evangeline Booth became the first woman general in what army,Salvation Army,General,What country borders libya on the east,Egypt, History & Holidays,In which Fox TV show did Johnny Dep play an undercover cop in high school? ,21 Jump Street  -General,Who was the first woman to be elected to the House of Commons?,Countess Markewicz,General,What's the smallest state (in area) west of the Mississippi,Hawaii,General,How long is a sesquicentennial,150 years -General,In 1820 what was taxed in Missouri,Bachelors,General,What's the study of gases in motion called,Aerodynamics, History & Holidays,"If you found a button in your Christmas pudding what would it symbolize Good luck, Poverty, Bachelor, Famous ",A Bachelor  -General,"Who wrote ""the life and opinions of tristram shandy, gent""",Laurence sterne,Music,Which Band Is Jarvis Cocker Associated With,Pulp,General,Where did Howdy Doody live?,Doodyville -General,Fuel especially methane poduced by fermentation of organic matter,Biogas,General,Which is sculptor Gutzon Borghun's most famous work,Mount rushmore,General,You have to run 360 feet if you hit a ______,Home run -General,In Which British City Did Body Shop Founder Annita Roddick Open Her Very First Store,Brighton,General,What is a group of swine,Sounder,Geography,What is the capital of China,Beijing -People & Places,Name Lloyd Bridges Two Sons ? ,Jeff & Beau ,General,If you landed at Balice airport where would you be,Cracow Poland,Art & Literature,"""Now is the winter of our discontent"" is a line from which Shakespearian play?",Richard III -General,Whose novels include 'The Joy Luck Club' and The Kitchen God's Wife,Amy tan,General,Phthisiophobia is the fear of,Tuberculosis,General,What is the sun's most abundant element,Hydrogen -Geography,What is a piece of shallow saltwater seperated from the deeper sea by coral or sand called? ,A Lagoon ,General,The Gulfs of Taranto and Corinth are inlets of which sea,Ionian sea,General,"Which company, formed by Cecil Rhodes in 1888, was an amalgamation of several diamond companies and is still going strong",De beers -General,Who had a No. 1 hit record in 1965 with 'I'm Alive',The hollies,General,The story above the cornice of a building.,Attic,Food & Drink,Name the only fruit named for its color.,Orange -General,Marley what did actor john wayne win from rudd weatherswax in a poker game,Lassie,General,Where does nessie live,Loch ness,General,"In The World Of Sport ""Spencer Gore"" Became The First Man To Do What In 1876",Win Wimbledon -General,Eric Arthur Blaire was the real name of which author,George Orwell,General,In the Flintstones what order did Fred and Barney belong to,Water Buffalos,General,Who drafted most of the american declaration of independence,Thomas -General,In what country does the cow tree grow - sap looks tastes milk,Venezuela,General,Which Russian Tsar died at Ekaterinburg in 1918,Nicholas ii, History & Holidays,What caused the computer in Electric Dreams to become alive? ,Spilled Champagne  -Entertainment,"Who sang the song ""Pretty Woman?""",Roy Orbison,General,Who was the first male to appear on the cover of Playboy in 1964?,Peter Sellers,General,"Who composed the songs ""The Old Folks at Home"" and ""Beautiful Dreamer""",Stephen foster -General,How many herrings are in a Warp ?,Four,General,Which boys name means - he who resembles God,Michael,General,What holiday is called Head of the World in the Jewish faith,Rosh Hashanah -General,Which country had The Dauphin as a ruler,France,General,In which film does Elvis Presley play an American soldier based in Germany,Gi blues,General,What did Francis Bacon call The Purest of Pleasures,The Garden -General,From Which Country Did The USA Buy The Virgin Islands In 1973,Denmark,General,What city is on the west end of lake ontario,Hamilton,General,What are a group of gulls called,Colony -Music,Who Had A Hit In 1985 With Walking In The Air,Aled Jones,General,In US only 8 % of women do it - but it changes their lives - what,Propose marriage to boyfriend,General,The Japanese art of growing miniature trees is called _____,Bonsai -General,How was Mark Feld better known in the 1970s when he had four number one hits with his band,Marc bolan,General,What is the capital of nevada,Carson city,General,Nebraska what is the mascot of the u.s naval academy,Goat - Geography,What is the capital of Macedonia ?,Skopje,General,What is Cape Kennedy now called,Cape canaveral,Art & Literature,"A decorative art movement that emerged in the late nineteenth century. Characterized by dense assymmetrical ornamentation in sinuos forms, it is often symbolic and of an erotic nature. ",Art noveau -General,In Norse mythology Odin traded an eye for What,Wisdom,General,"What century was the setting for tv's ""star trek""",23rd century,Geography,"Which Viking Chief , Banished From Iceland, Founded The Norse Colonies On Greenland ",Erik The Red  -Sports & Leisure,What is it called when a football team loses possession of the ball due to a misplay,Turnover,Food & Drink,How would you say 'house wine' in 'Italian' ,Vino della casa ,General,Which car manufacturer makes the Xantia model,Citroen -Sports & Leisure,Which Sport Is Often Termed As (The Sport Of Kings) ,Horse Racing ,General,Metrophobia is the fear of,Poetry, History & Holidays,Who Became President Of France After Charles De Gaulle? ,Georges Pompidou  -General,"Which city is directly northwest of Windsor, Ontario",Detroit,People & Places,Of What Were Lee Bowyer & Jonathan Woodgate Of Leads Accused ,A Racial Assault ,General,Tefnut was the Egyptian goddess of what,Rain -General,What is a gurdwara,A Sikh temple,Music,"Which Female Vocalist Sang With Take That On Their Single ""Relight My Fire""",Lulu,Science & Nature,What Fruit Is A Cantaloupe? ,Melon  -General,Sinophobia is the fear of,"Chinese, chinese culture",General,Queen Victoria was born in this year.,1819,General,What Do You Suffer From If You Have Diplophia,Double Vision -General,"Who wrote the book ""Computer Power & Human Reason""",Joseph weizenbaum,General,What are shaggy mane and pigs ear,Mushrooms or fungi,Sports & Leisure,What is Ian Botham's middle name? ,Terrence  -General,Hylephobia is the fear of,Materialism,General,After California what US state produces the most wine,New York, History & Holidays,What did Francis Crick and James Watson build a molecular model of in 1953? ,DNA  -General,According to his business card what job did Al Capone do,Sell second hand furniture,General,"What was discovered at Sutter's Mill, California in 1848",Gold,General,Churchill what was john lennon's first girlfriend's name,Thelma pickles -General,In 1964 A Power Cut Ruined The Opening Night Of Which Event,The Launch Of BBC2,Music,"What was the name of Van McCoy's orchestra on his ""The Hustle"" instrumental?",Soul City Symphony,General,East Pakistan is the former name of which modern republic,Bangladesh -Geography,What Was The Former Name Of Kampuchea ,Cambodia ,General,Who was the last king of Troy,Priam,General,Thomas Keneally wrote which book (Oscar winning film),Schindler's Ark -General,"What was the name of He-man's legless,wizard friend?",Orco,General,Which planet was discovered by William Herschel in 178l,Uranus,Sports & Leisure,Who Won The Womans Final At The Australian Open At The Weekend ,Maria Sharapova  -Sports & Leisure,Who Won BBC Sports Personality Of The Year In 2006 ,Zara Phillips ,General,Where is big ben,London,General,A talus is what geographical feature,Boulders fallen from mountain -Geography,On what river is the capital city of Canada,Ottawa,General,"During annual spring floods, this waterfall can become so loud as to break windows six miles away.",Victoria Falls, Geography,What is the basic unit of currency for Albania ?,Lek -Entertainment,"This female artist enjoyed sucess on both popular and country & western stations with such tunes as ""Let Me Be There"" and ""Have You Never Been Mellow.""",Olivia Newton-John,Music,"Which Motown Artist Wrote The Songs ""My Guy By Mary Wells"" & ""My Girl By The Temptations""",Smokey Robinson,General,What's a Coelacanth,Fish -General,What is the brightest star always in the Northern sky,Vega,Music,Also Reaching No.2 Which Technotronic Single Followed Pump Up The Jam,Get Up (Before The Night Is Over),General,Who printed 500 million stamps with elvis presley on the face,U.s postal -General,Name given to a fine woollen cloth,Barethea,Science & Nature,What Is The Offspring Of A Male Donkey And A Female Horse Called? ,A Mule ,General,King Thibaw - imprisoned by the British - last king of where,Burma -General,What are the stinging cells of a man of war called,Nematocysts,General,Who led the U.S. Air Force band in Europe during WWll,Glen miller,General,Thomas Holden was the first to top what list,FBI ten most wanted -General,Which South American country has borders only with Brazil and Argentina,Uruguay,General,What is the study of heredity called?,Genetics,General,What is a group of swans,Bevy -General,What is the most common sexual fantasy act,Oral Sex,General,In which game do players change service after five points,Table tennis,General,A petrologist studies what,Rocks history formation etc -General,The closure of which British nuclear re-processing plant was announced in 1998,Dounreay,General,"What is the name of the rabbit in the film, bambi",Thumper,General,Frederick Austerlitz became famous as who,Fred Astair -Sports & Leisure,Which West Indian Fast Bowler Died In 1999 Aged Just 41 ,Malcolm Marshall ,General,Cain & Abel were two of the sons of Adam & Eve. Name the third,Seth,General,Where can you find London bridge today,USA ( Arizona ) -General,The title of whose book translates as my struggle,Adolf Hitler,General,In Greek mythology which woman's name means all gifts,Pandora,General,What is the name for a woman who is superior of a convent in certain religious orders,Abbess -General,How many stars are there on the New Zealand flag?,Four,General,A gazette - is obvious what was a gazetta where word comes,A small Italian coin – pay for news,Sports & Leisure,Which sport do the Detroit Red Wings play? ,Ice Hockey  -General,How many lashes did jesus receive,39,General,In which sport is the Melbourne Cup awarded,Horse racing,General,What is the main ingredient in a Navarin stew,Mutton or Lamb -Music,Who Is Thomas Jones Woodward Better Known As,Tom Jones,General,Who was the Roman goddess of the hearth,Vesta,Entertainment,In what city does Fat Albert live?,Philadelphia -General,"In the oil industry, what do the letters VLCC mean",Very large crude carrier,General,Newspeak - Portable Handheld Communications Transcribers,A Pencil,General,What did Alfred Hormel invent,Spam -General,Eleutherophobia is a fear of _______.,Freedom,Sports & Leisure,Silly Point is a position in which sport? ,Cricket ,Music,"Which Megastar covered Don Mclean's ""American Pie""",Madonna - Geography,What country is Mt Etna in?,Italy,General,"In a Spanish bar, what are topaz?",Snacks,General,This word is used as the international radio distress call,Mayday -General,"When ocean tides are at their lowest, they are call what",Neap tides,General,In the Old Testament what is the first book of Moses,Genesis - first 5 all Moses books,General,Which element has the chemical symbol Sr; capital S lower-case r,Strontium -Science & Nature,Which plant is known for attracting hummingbirds?,Hibiscus,General,"In Greek Mythology, who stole fire from the Gods and brought it back to Earth hidden in a fennel stalk",Prometheus,General,Which two countries fought the Winter War of 1939?,Russia and Finland -General,"Who played the best friend of Sarah Jessica Parker in ""Girls Just Wanna Have Fun""?",Helen Hunt,Science & Nature,What Is Another Name For The White Poppy ,Opium Poppy ,General,"Who, when he won the Formula 1 World Championship in 1972, was the youngest driver to win it",Emerson fittipaldi -Music,"""The Obvious Child"" Was A 1990 Hit For Whom",Paul Simon,General,What name is given to a vertical bar dividing a window,Mullion,Music,Who released the album Auberge?,Chris Rea -Entertainment,Who played the first James Bond?,Sean Connery,General,"What is a combination of chopped and boiled pigs heads, feet, hearts and tongues, held together in a loaf shaped by gelatin",Head cheese,Sports & Leisure,On what type of surface are the tennis matches at Wimbledon played?,Grass -General,What canadian professional snooker player is nicknamed the grinder?,Cliff thorburn,General,Who is the patron saint of music,St Cecilia,General,Who wrote the book The Complete Angler in 1653,Isaac Walton -General,What is the square root of one quarter,One half,General,This word is used as the international radio distress call.,Mayday,General,In which sport would you hear the term shilling,Archery measure of arrows weight -General,September should be seventh month by name why is it ninth,Its 7th year used to start in March,General,What does an agrologist study,Soil,General,An Antarctic island was named after which cartoon character,Huckleberry Hound -General,In dry measure 16 pints make up a what,Peck,General,Who starred in the film The Man from Laramie,James stewart,Music,"Name One Of 2 Hits From Italian Singer ""Rita Pavone""",Heart & You Only You -Entertainment,How does Wonder Woman control her invisible airplane?,Mental powers,General,"What In The World Of Science Is The Russian ""Dmitri Mendelev"" Credited With Creating",The Periodic Table,General,What was Boucan that gave Buccaneers their name,Dried meat -General,What is the flower that stands for: cheerfulness under adversity,Chrysanthemum,General,Acetylsalicylic acid is the active ingredient in which well known drug,Aspirin,General,What nationality is toho film studios,Japanese -Science & Nature,How Many Legs Does A Wood Louse Possess? ,14 Legs ,General,"In mythology, which soil of Juno was considered to be the most Roman of gods",Mars,General,Who was the greek god of wine,Dionysus -Music,"Whose 1980 Debut Album Included The Song ""Thankfully Not Living In Yorkshire It Doesn't Apply""",Dexy's Midnight Runners,General,Promotion of friendly relations between countries,Bridge-building,Science & Nature,"Imperial, Buck, and Luna are types of _________.",Moth -General,In which Shakespeare. play does Lancelot Gobbo appear,The merchant of venice,General,Bert and ernie of 'sesame street' were named after bert and ernie in which frank capra film,It's a wonderful life,General,Who played guitar on 'Goodbye Yellow Brick Road',Davey johnstone -General,"Which Gloucestershire town, famous for its abbey, lies on the confluence of the Severn and Avon",Tewkesbury,General,"What company was formed by the Swede, Ingvar Kamprad",Ikea,General,Bwana means Sir in which language,Swahili -General,In which sport would you hear the term Intente,Jai Alai – Players Manager,General,What punishment was meted out to english poachers in the time of richard the lionheart,Castration,General,Spacephobia is the fear of,Outer space -General,Mithra is the persian god of ______,Light,General,What legendary monster does Seattle secretary Katie Martin believe to be the father of her furry faced son,Bigfoot,Music,Which DJ Is Associated With The Dance Act Clock,Stu Allen -General,Lampedusa is a small island lying between Malta and the coast of which North African country,Tunisia,General,What is the name of the body part which seperates the nostrils,Septum,Science & Nature,What does a Geiger counter measure? ,Radioactivity  -General,What UK gentleman's club first in 1891 to admit lady members,Reform club,General,What male name comes from the German meaning army rule,Harold,General,Whose rule is used to solve simultaneous linear equations by using determinants,Cramer -Science & Nature,"Nuclear membrane, cytoplasm, and nucleus are parts of a(n) __________.",Cell,General,What started in early 1900s to improve sales sports newspaper,Tour de France Le Petite Journal illustre,General,"Who said 'but, soft! what light through yonder window breaks'",Romeo -Music,The Single “Respect Yourself”  Was Released In The 1990’s By Which Die Hard Music Lover,Bruce Willis,General,Collective nouns a Toc of what,Capercailzie,Technology & Video Games,What was the first version of Microsoft Windows to have networking capabilities?,Windows for Workgroups -General,Ranidaphobia is a fear of ______,Frogs,General,If you were given a pot of vermicide what would you use it for,Killing worms,General,Sheriff' is actually a contraction of which words,Shire's Reeve -General,What record did Bill Haley and the Comets release in 1955,Rock around the clock,People & Places,By what name is Allen Konigsberg better known?,Woody Allen,Geography,What's the highest mountain in the 48 contiguous U.S. states,Mount Whitney -General,Where is 'old faithful',Yellowstone national park,General,Who Was The First Black Footballer To Score A Hat Tick Whilst Playing For England,Luther Blissett,General,Who played 'Banacek' in the 1970's TV series of the same name,George peppard - History & Holidays,Which Act Gave People Temporary Release From From Prison To Prevent Starvation? ,The Cat & Mouse Act , History & Holidays,Who was the last American president to sport facial hair?,Taft,General,Social phobia is the fear of,Being evaluated negatively -General,Who accused lancelot of sleeping with guinevere,Gawain, History & Holidays,"Which 1996 TV Christmas special, saw two of the stars dress as Batman and Robin, for a fancy dress party ",Only Fools & Horses ,Food & Drink,Thick spicy fish soup from Provence ,Bouillabaisse  -General,What is a group of this animal called: Caterpillar,Army,General,What dog shares his owner with Garfiled the Cat,Odie,General,Who invented dynamite,Alfred nobel -General,What does a Jingling Johnny do in Australia,Manually shear sheep,General,What is unusual about the nobody crab,Transparent appears No Body, History & Holidays,What Scary Movie Takes Place At The Overlook Hotel ,The Shining  -General,"Name the sitcom that featured Judd Hirsch, Andy Kaufman, Tony Danza and Danny Devito.",Taxi,General,Who painted The Naked Maja,Goya,General,On average man uses 2000 - woman 7000 what a day,Words -General,Which coin weighs exactly one Troy ounce,Krugerrand,General,"In Greek mythology, who judged a beauty contest on Mount Ida, between Hera, Athene and Aphrodite",Paris,Food & Drink,Which chicken dish is named after a battle in the Napoleonic wars? ,Chicken Marengo  -General,In Kentucky a man cannot purchase what without his wife,A Hat,Music,"Who Recorded The Album ""Eat To the Beat""",Blondie,Food & Drink,Which brewery makes 'Abbot Ale'? ,Greene King  -Science & Nature,What does a palaeontologist study ,Fossils ,General,A small naval escort vessel,Corvette,Music,"Who composed the overture, Peter and the Wolf?",Prokofiev -General,What is sometimes added to softdrinks to make them sweeter,Coal,General,What 'saturday night live' star played in the film 'stripes',Bill murray,General,In North Dakota it is illegal to sleep with what on,Your Shoes -General,What animal's milk is more than 54% fat,Humpback whale,Geography,Between Which 2 Countries Would You Find The Gulf Of Bothnia ,Sweden & Finland ,Music,Which Country Won The Eurovision Song Contest In 2007,Serbia -General,Which WW2 Norwegian collaborator's name became synonymous with treachery,Quisling,General,What is the fear of vegetables known as,Lachanophobia,Geography,__________ is home to the world's most remote weather station. Its Eureka weather station is 600 miles from the North Pole.,Canada -General,Domingo is Spanish for what,Sunday,General,The St. Moritz ski resort is in which European country,Switzerland,Science & Nature,Who is known as the father of genetics?,Gregor Mendel -Geography,What is the principal river of Ireland,Shannon,General,"What Animals Suffer From A Disease Called ""Strangles""",Horses,General,The pointed arch used in Gothic architecture.,Ogive -General,What are the surnames of the two men who determined the structure of DNA,Crick and watson,General,What scene is included for good luck in most of Spielberg films,A Shooting star,General,Where would you find Queen Maud Land,Antarctica -General,"ON Beverly Hills 90210,where did the Walshes live before they moved to Beverly Hills?",Minnesota,General,Mediolanum was the Roman name for what Italian city,Milan,Entertainment,What is the name of the Indian musical instrument made popular in western rock by The Beatles and Ravi Shankar?,Sitar -Music,"Who Had A Hit In 1996 With ""Wannabe""",The Spice Girls,Science & Nature,In Which City Was The First Heart Transplant Carried Out ,"Capetown, South Africa ",General,Who was Barbara Streisands first husband,Elliot Gould -General,What is the colour of the italian liqeuer galliano,Yellow,General,"Who wrote the christmas story, ""A Visit From St Nicholas""",Clement moore,General,Which motor company has the emblem of the prancing horse,Ferrari -Music,Who Had A Hit In 1984 With Dancing In The Streets,Shalamar,General,What is the part of a horse between fetlock and hoof called,Pastern,Sports & Leisure,In Which Sport Are The Ashes Trophy Set ,Cricket  -General,Who was the Christian missionary portrayed in Chariots of Fire,Eric Liddle,Sports & Leisure,In Which Sport Might You Encounter A Face Off ,Ice Hockey ,General,What U.S. state is completely surrounded by the Pacific Ocean,Hawaii -Music,"Who Had A Hit With The Song ""Don't Pay The Ferryman""",Chris De Burgh, Geography,In which country would you find the Yucatan Peninsula?,Mexico,General,What was the name of the pinball machine in the film 'tommy',Wizard -General,"What character did george burns play in 'oh, god'",God,General,Who wrote 'The Hitch-Hikers Guide to the Galaxy',Douglas adams,General,What is the astringent lotion obtained from North American trees,Witch hazel -Music,Name The Folk Group That Gerry Rafferty & Billy Connolly Were In,The Humbledums,General,What do toads do before mating,Sing,General,What is the medical term for the sudden and complete loss of memory,Amnesia -General,What is the flower that stands for: recall,Silver-leaved geranium,Religion & Mythology,What religion was founded by Siddhartha Gautama ?,Buddhism,General,"What was the name of captain geoffrey thorpe's pirate ship in ""the sea hawk",Albatross -General,"Prince George of England and his brother, Prince Albert Victor, witnessed this legendary ghost ship in 1881.",The Flying Dutchman,General,"In ""Alice in Wonderland"", who sings of ""Soup of the evening, wonderful soup""",Mock turtle,Music,Which Status Quo Album Cover Featured A Red Hot Stove Element As A Turntable,If You Cant Stand The Heat -General,Irrumation is what sexual practice,Fellatio - Blowjob,Sports & Leisure,In the world of sport what has the maximum dimensions of 60 metres by 30 metres? ,An Ice Skating Rink ,Science & Nature,What Did Prokofiev's Peter Catch & Take To The Zoo ,A Wolf  - History & Holidays,Israel occupied the West Bank. It belonged to _______.,Jordan,General,Skadi is the Norse Goddess of what,Winter and the Hunt,General,The average person spends 8 years of their life doing what,Being ill -General,In what Australian state would you find Maryborough,Queensland,Sports & Leisure,"In 1994, Who Collided With Damon Hill, Shattering His Chance Of Winning The World Title, At The Adelaide Grand Prix? ",Michael Schumacher ,General,"What ocean's area is 64,186,000 square miles",Pacific ocean -General,"On clothing, what does the symbol of a circle inside a square indicate",Can be tumble dried,General,What was Mother Theresa's Christian name - before she became a nun,Agnes,General,The Dolby sound system was introduced in which year,1967 -General,What type of bullet was named after an arsenal near Calcutta,Dum dum,General, The study of the composition of substances and the changes that they undergo is __________.,Chemistry,General,What country is also known as helvetia,Switzerland -General,What does the placement of a donkey's eyes enable it to see,All four feet at,General,Any material that hardens & becomes strongly adhesive after application in plastic form,Cement,General,What name is given to the unit of mass that weighs about 2.2046 pounds,Kilogram -Entertainment,Who was the original voice of Mickey Mouse,Walt disney,General,"What country is surrounded by brazil, argentina and bolivia",Paraguay,General,What stretch of water seperates Australia from Tasmania,Bass strait -General,In which Dickens novel does the character Fezziwig appear,Christmas Carol – Scrooges Boss,General,Who was the original Peeping Tom looking at,Lady Godiva, History & Holidays,According to the UK National Meteorological Office what year (prior to 2007) was the last White Christmas in Britain? ,2004  -General,As fit as a ______,Fiddle,Music,Name The Youthful Singer Who Headed The Teenagers,Frankie Lymon,General,Who released the double album 'yellow brick road' in 1973,Elton john -General,In Chicago its illegal to fish wearing what,Your Pyjamas, Geography,What is the largest island in the Philippines?,Luzon,General,A place name including worth e.g. Tamworth what's worth mean,Homestead -Science & Nature," 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,General,Who was Mr. Wizard,Don Herbert,General,What is the flower that stands for: pensive beauty,Laburnum - Geography,What is the capital of Andorra ?,Andorra la Vella,General,In which country is Gander airport,Canada,General,Mitre Dovetail Jig and Hack are types of what,Saw -General,In mathematics which prefix refers to 10 to the power of minus 9,Atto,General,On which coast of australia is sydney,East,General,60's tv: who lived at 000 cemetery lane,Addams Family -General,Part of the human body can expand 20 times its normal size,Stomach 0.5 litres to 5 litres,Science & Nature,What are the units of measurement for Pressure ?,Pascal,General,In WW2 what kind of aircraft was a horsa,A glider -General,What is missing from a navel orange,Seeds,General,In what Dickens novel is there a case of spontaneous combustion,Bleak House,General,What is the flower that stands for: suspicion,Mushroom -General,What is a Merkin - There are two possible correct answers,Artificial Vagina – Pubic Wig,General,On which item of clothing are the letters YKK often found?,Zipper,Music,"Who Had A Revival With ""Nothing Has Been Proved"" From The Film Scandal",Dusty Springfield -General,What marlon brando film was widely banned,Last tango in paris,People & Places,Which singer won the Eurovision Song Contest in 1999? ,Charlotte Nilsson ,General,"Of what are an arc, radius and sector a part",Circle -General,What is the mascot of the US naval academy?,Goat,General,Which is the largest cathedral,St peter's, History & Holidays,Who was the first woman to be shot by the FBI? ,Bonnie Parker (of Bonnie and Clyde fame)  -General,What did david stirling found,Sas,Food & Drink,What Do You Wrap Beef In When Preparing Boeuf Wellington ,Pastry ,General,In astrology which heavenly body rules the sign of Cancer,The Moon -General,Who is the tallest telletubbie,Tinky Winky,General,What peninsula does Mexico occupy,Yucatan peninsula yucatan,General,What is the name of the metal discs in the rim of a tambourine,Jingles -General,In what precinct did Barney Miller work,12th,General,What Song Was The Last Christmas No.1 Of The Millenium (1999-2000),I Have A Dream / Seasons In The Sun,Music,Name the British Prime Minister linked with a Cream LP?,Disraeli ( Disraeli Gears) -Religion & Mythology,"He was condemned in Hades to forever push a boulder uphill, only for it to come rolling down before it reached the top.",Sisyphus,General,The branch of medicine dealing with curing by operative procedures is ________,Surgery,Music,Who brought fame to a disco lady in 1976?,Johnnie Taylor -General,What is a wallaby,Kangaroo, History & Holidays,Oklahoma has more man-made ___ that any other state ,Lakes , History & Holidays,Who Preceded Mao Tse-Tung? ,Chiang Kai-Chek  -General,U.S. captials New Hampshire,Concord,General,President fd roosevelt appeared in the 1943 comedy princess o'rourke as what,Himself, Geography,What is the largest city in China?,Shanghai -General,Who would use or what are Tittums,Bellringers changes,General,Of what material was the hairspring made in early watches,Pigs Hair,People & Places,Who Was Killed By Indians At Little Big Horn ,General Custer  -Art & Literature,Where Was El Grecho Born ,Crete ,General,What nationality was alexander graham bell,Scottish,General,"In food preparation, what term is used for the removal of peas from the pod, or the green calyx from strawberries",Hulling -General,Who was the 1958 Cha-Cha champion of Hong Kong,Bruce Lee,General,"Much loved by Scrabble players, what kind of creature is a zebu",Ox,Entertainment,Who played Queen Amidala in the latest 'Star Wars' film?,Natalie Portman -Geography,In what country is the highest point in South America,Argentina, History & Holidays,"Germany's WW I allies were Austria_Hungary, Bulgaria, and ________.",Turkey,General,Who was the science advisor on the first Star Trek film,Isaac Asimov -General,Swine is a Chinese brand name of which food,Chocolate,Food & Drink,By what name is the love apple better known? ,Tomato ,General,In 1897 James Henry Atkinson Unveiled To The World His Prototype To Which Everyday Device Still Popular Today,The Mouse Trap -Art & Literature,A movement of the 1960s and 1970s that emphasized the artistic idea over the art object. It attempted to free art from the confines of the gallery and the pedestal.,Conceptual art,General,In Milton's Paradise Lost what was the lowest point of Hell,Pandemonium (Hells capitol),Science & Nature," Reportedly, __________ mate for life.",Beavers -General,Zane Grey the western writer had what initial profession,Dentist,General,Who is the roman god of light and sky,Jupiter,General,He was R C Robinson in 1948 what name famous as now,Ray Charles -General,Morello Is Known As Which Variety Of Fruit,Cherry,Geography,In which country is the great victoria desert ,Australia ,General,What is the sum of 444 x 2 x 2 - 1700,76 -Music,What Is The Best Selling Album Of All Time Anywhere,Michael Jackson's Thriller,General,Every year 11000 Americans are injured doing what,Trying out bizarre sex positions,General,In France what is eau de vie,Brandy -General,Who died in a porsche spyder,James dean, History & Holidays,Who Released The 70's Album Entitled Abraxas ,Santana ,General,Which artist painted The Scream,Edvard Munch -General,What country's entire population was condemned to death by the Spanish Inquisition,The Netherlands,General,What song was originally 'good morning to you' before the words were changed and it was published in 1935,Happy birthday to you, Geography,In which continent would you find the Ob river ?,Asia -Geography,Which town in Strathclyde was created a new town in 1955? ,Cumbernauld ,General,"On which river does Melbourne, Australia, stand",Yarra, History & Holidays,What was the name of Garfield's vet? ,Liz  -General,What is absinthe traditionally flavoured with,Wormwood,General,In Belgium if you are eating waterzooi what is it,Creamy fish stew,General,The 1984 winter olympics were held at what site,Sarajevo -General,What Was Epic Records First Million Selling Single (Sold Around 6 Million),Careless Whisper,General,With what charge was Al Capone imprisoned,Tax evasion,Entertainment,Which beatle was the first to release a solo record?,Ringo Starr -Science & Nature, A __________ can fall from a 5_story building without injury.,Rat,General,What became a full Olympic sport in 1992,Badminton,Music,Which Band Did Billy Idol Front Before Going Solo,Generation X -Science & Nature,What is the study of the earth's physical divisions termed?,Geography,General,The first telephone call was made in what year,1876,Sports & Leisure,Who holds the NHL record for the most goals scored during a regular season?,Wayne Gretzky -Geography,Where Are The Atlas Mountains ,"Algeria, North Africa ", Geography,In which country would you find Ayers Rock ?,Australia,General,In Indiana what is illegal in winter,Bathing -General,Dove where is most of the vitamin c in fruits,Skin,General,7:25 pm In military time is how many hours,1925,Music,Which Blur Hit Album Shares Its Name With A Classic War Film?,The Great Escape -Sports & Leisure,Name the sport with Valentino Rossi as a leading competitor? ,Motorcycling ,General,1838 Los Angeles man needed a licence to do what to a woman,Serenade her,General,Death of body tissue usually caused by bad circulation,Gangrene -General,In what professional sport did bob hope participate as packy east,Boxing,Music,"Who Had A Hit In 1988 With The Song ""Je Ne Sais Pas Pourquoi""",Kylie Minogue,Music,Which Journalist Used To Sing With The Group Gaz & The Gonads,Gary Bushell -Music,What Was Jamaican Singer Barry Biggs Highest Entry Making No.3 In 1976,Sideshow,General,Which explorer discovered the island of Spitsbergen,Willem barents,General,What is the name of the Chairman of the European Central Bank,Wim duisenberg -General,"In egyptian mythology, who married two of her brothers",Cleopatra,General,At what temperature should 'rice wine' be served,Warm,General,In Christian tradition what Saint is the Virgin Mary's mother,Saint Ann - History & Holidays,What Was Anne Frank Famous For? ,Writing A Diary About Her Hide From The Germans In WW2 ,General,Which was the first credit card,Diners club,General,What is a group of ferrets,Business -General,Who owned the newspaper in Lou Grant - Nancy Marchand,Mrs Pyncheron,General,"What artist was nicknamed ""Jack the Dripper"" action painting",Jackson Pollock,General,Periodic table: what is np,Neptunium - History & Holidays,Who Released The 70's Album Entitled Pretzel Logic ,Steely Dan ,General,Who is the Roman Goddess of flocks and herds,Pales,General,Who is the roman counterpart of poseidon,Neptune -General,The small tree Camellia Sinensis provides us with which digestible product,Tea,General,Who buried the treasure on Treasure Island,Captain Flint,Mathematics,How many nickles are there in 2.25?,Forty five -General,The W H O recons there are 100 million what each day,Sex acts,General,Who took over as Fuhrer after Hitler's death till his arrest 1945,Admiral Karl Donitz, History & Holidays,What was the name of the man who pioneered the above method of freezing food? ,Clarence Birdseye  -General,"Who said ""If a lie is told in the Whitehouse Nixon gets a royalty""",Richard Nixon,General,Whose single season strikeout record did Nolan Ryan beat by one,Sandy koufax,General,Which Charles Dickens novel was brought to the screen by David Lean,Oliver twist - Geography,What is the capital of Idaho?,Boise,Music,"Which Was The First Glen Miller Record To Sell 1,000,000 Copies",Chattanooga Choo Choo,General,What is a bushranger,Australian bandit - History & Holidays,Who sang No More Heroes? ,The Stranglers ,General,In terms of hair what does FSH stand for,Follicle Stimulating Hormone,General,"Which former Spanish soldier founded the Society of Jesus, commonly known as the Jesuits",Ignatius loyola -Music,Which British Guitarist Fronted The Mahavishnu Orchestra,John McLaughlin, History & Holidays,What are you supposed to remove after kissing someone under the mistletoe? ,"A berry from the mistletoe, for luck ",General,What Nationality Was The 1 st Person To Build The First Bicycle Propelled By Pedals?,Scottish (Kirkpatrick Mcmillan) -Tech & Video Games,What entertainment product did Nintendo make before entering the video game business? ,Playing cards,Music,"In 1995 The Japanese Stock Market Temporarily Collapsed Following Mistranslated Reports That Ronald Reagan Was Undergoing Heart Surgery, Which Veteran British Singer Was Actually The Patient",Lonnie Donegan,General,Which poet wrote Jerusalem,William blake -Science & Nature," February 18, 1930 marks the first flight by a __________ in an airplane.",Cow,General,Eiffel designed the Eiffel tower - what was his first name,Gustave,General,The worst sporting disaster was in Hong Kong when the stands collapsed at a race course killing 604 people in what year,1918 -General,Which book by Peter Wright did Margaret Thatcher try to supress,Spycatcher,General,Any of various scientific recording devices designed to register a person's bodily responses to being questioned?,Polygraph,General,What is the flower that stands for: absence,Wormwood -Science & Nature,What is the chemical symbol for curium?,Cm,General,What is an extract of fermented and dried orchid pods,Vanilla,Science & Nature,"Where Might You Find Hell, Julius Caesar, Birmingham And Billy? ",On the Moon  -General,During which month is the longest day in the Southern hemisphere?,December,General,Name both families in Soap,Tates Campbells,Sports & Leisure,"In which sport is a ""hole-in-one"" possible?",Golf -General,Name only sports team to play professionally seven continents,Harlem Globetrotters,General,"What is the method of resolving disputes without resorting to law, strikes or lock-outs",Arbitration,Sports & Leisure,St Andrews is home to which English Football Club? ,Birmingham City  -General,What is the Capital of: Lithuania,Vilnius,General,Where is Albuquerque,New mexico,General,Name the smurf spin off characters that live underwater,Snorks -Toys & Games,"In which sport or game is the term ""rook"" used?",Chess,Entertainment,In what film did Whoopi Goldberg make her screen debut?,The Color Purple,General,"In March 1785, what future president succeeded Ben Franklin as minister to France",Thomas Jefferson -Food & Drink,What is the basic ingredient of the Indonesian dish Nasi Goreng? ,Rice ,General,Besides the stones which group had the longest touring career until the founder's death in 1995,Grateful dead,Music,Jethro Tull Had Two Top 10 Hits In 1969 Name One Of Them,Living In The Past / Sweet Dream - Geography,What is the longest river in Australia?,Darling,People & Places,What Did Al Capone Die From ,Syphilis ,General,With which organ does a snake hear,Tongue -General,What does a Zamboni do,Machine cleans ice hockey games,Science & Nature,In which organ is a pulmonary disease located?,Lung,General,"In Greek mythology, who was the son of peleus and thetis",Achilles -General,What percentage of the Earth's crust is salty,92,General,What Country's Currency Is A Baht?,Thailand,General,What is the fear of being bound or tied up known as,Merinthophobia -General,"Which American Blues singer originally recorded ""Got my Mojo Working""",Muddy waters,General,Who owned a sword called crocea mors or yellow death,Julius Caesar,General,The Eiffel Tower receives a fresh coat of paint every _ years,Seven -General,In Bavaria what is defined as a staple food,Beer,General,Churchill It’s a Riddle wrapped in a Mystery in an Enigma what,Russia,General,Scurvy is caused by a lack of ___.,Vitamin c -General,As what is Beethoven's piano sonata in C-sharp minor more commonly known,The moonlight sonata,General,RCMP stands for___,Royal canadian mounted police,General,What would you do with an Edzell blue,Eat it - it’s a potato -Food & Drink,What Is The Ginger Like Root Crop Associated With Thai Cooking ,Galangal ,General,Oikophobia is the fear of,Home surroundings house,General,Hierosolymitan is of Greek origin and pertains to what city,Jersualem -General,How many children did Adam & Eve have,Three,General,Limnophobia is the fear of,Lakes,General,Parorexia is the desire for what,Strange Foods - Geography,On what sea is the Crimea?,Black Sea,General,Patricia Holm is the girlfriend of what famous fictional character,Simon Templar The Saint,General,Who made a TV advertisment for Southern Maid Doughnuts,Elvis Presley - History & Holidays,"The three buildings of the Acropolis are the Propylaea, the Erectheum, and the _________.",Parthenon, Language,What does the Greek root word 'chrom' mean?,Color,General,Rabat is the capital of ______,Morocco -General,What does M.A.S.K. stand for?,Mobile Armoured Strike Kommand, Geography,What Central American country extends furthest north?,Belize,General,Which side did britain support in the us civil war,Confederacy -Science & Nature,Animals and plants which produce light are said to be:,Bioluminescent,General,"Skopelos, Thasos and Andros are all what",Greek islands,Food & Drink,Which sweet treat is often found at the Ambassador's parties? ,Ferrero Rocher  -General,Of what is petrology the study,Rocks,General,"Which composer's second symphony was called the Resurrection, his tenth was unfinished",Mahler,Geography,What u.s. national park contains gumbo limbo trail ,Everglades national park  -General,In France what animal is specially trained to sniff out truffles,Pig,General,Which U.S. State is known as the Pelican State,Louisiana,General,What mammals fly,Bats -Science & Nature,On what do honeybees have a type of hair?,Eyes,General,How Did Stuart Lockwood From Worcester Make International Headlines On 23rd August 1990,Yound Boy Held By Sadham,General,What type of singing was associated with St Gregory the Great,Gregorian chant -General,Which acid is found in yoghurt,Lactic,General,Killer tomatoes what album holds the world record for copies sold,Thriller,Sports & Leisure,England play their home rugby union matches at which venue? ,Twickenham  -General,What did marconi transmit across the atlantic,Radio signals,General,"Which number, when doubled, exceeds its half by nine",Six,General,Who was offered and rejected the role of Indiana Jones,Tom Selleck too busy -Music,How Many Of The Original 5 Members Of The Spice Girls Have Not Had A True Solo No.1 Single? (Disregard Any Duets Or Collaborations),"Mel B, Victoria (2)",General,"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,General,Who was born in Wattenscheid Germany November 11th 1920,James Bond -Geography,What Is The Capital Of Ethiopia Called ,Addis Ababa , History & Holidays,Which country did China invade on Christmas day 1950 ,Tibet ,General,What song was the beatles first attempt at social commentary,Nowhere man -General,Collective nouns - A Troubling of what,Goldfish,General,Which country has the most cellular phones per capita,Sweden,General,Going Undergound' was a hit for The Jam in which year,1980 -General,What is the name given to the dish of prunes wrapped in bacon,Devils on horseback,General,In Gustav Holsts planets suite which planet is the magician,Uranus,Geography,What is the smallest of the Central American countries,El salvador -People & Places,In 1955 Tim Berners Lee Invented something fantasic What was It ,World Wide Web ,People & Places,Where Might You Come Across Walloons ,Belgium ,General,"What piano man used to play for Bette Middler and then went on to his own career and made Hits like ""Mandy"" and ""Copacabana""",Barry manilow -General,"Giovannie in the opera 'don giovanni', who was leporello",Servant,General,"Which fictional detective appears in the novel ""Farewell My Lovely""",Philip marlowe,Music,Who Lost Her Heart To A Star Ship Trooper,Sarah BrightMan - Geography,What is the capital of Niger ?,Niamey,General,Asparagus is a member of which family,Lily,General,To the ancient Greeks what was an agora,Public meeting place / market (forum) -General,For what principal purpose are UHF radio waves used,Transmission of television signals,General,"In mythology, who was the wife of Jupiter",Juno,Science & Nature,What is the symbol for tin?,Sn -General,USSR saying No ugly women in world just shortage of what,Vodka,General,In which 20th century decade was the first angle-poise lamp sold,1930's,Food & Drink,Which Spirit Is Pimm's No 1 Based On? ,Gin  -General,What is the fear of mushrooms known as,Mycophobia,General,In Greek mythology who invented the lyre,Hermes, History & Holidays,What country was formerly known as Siam?,Thailand -General,What was the full name of the butler in soap - later spin off,Benson Dubois,Food & Drink,A tayberry is a cross between which two fruits ,Blackberry and Raspberry ,Music,"Which Female Singer Had A Hit With ""Crazy For You""",Madonna -General,Where would you find an ideo locator,Map - You are here arrow,General,"Which Celebrity Is The Founder Of ""The Spirit Foundation"" For The Aged Abused And Orphaned",Yoko Ono, History & Holidays,"Who was the man convicted of masterminding the 1969 LaBianca-Tate murders, later to become known as the Helter Skelter killings?",Charles Manson -General,What year was film introduced to replace glass in making photographic negatives,1891,General,What are tiny cracks in the glaze of pottery,Crackle, History & Holidays,Paul Anka's Puppy Love is written to what star? ,Annette Funicello  - History & Holidays,Which Apollo space mission put the first men on the moon ?,Apollo 11,Geography,Prior to 1935 what was Iran known as ,Persia ,Science & Nature, The normal body temperature of the __________ horse is 101 degrees Fahrenheit (38 degrees Celsius).,Clydesdale -Geography,Which City Was Formerly Called (New Amsterdam) ,New York , History & Holidays,Who was the first incumbent u.s. president to survive being shot ,Ronald reagan ,General,What was the wwii verbal code meaning message received or will comply,Roger -General,What is the study of insects,Entomology,General,Adolf Hitler was fascinated by _____,Hands,Sports & Leisure,"The Terms Acid, Blunt, Casper & Spine Are All Associated With Which Sport ",Skate Boarding  -General,According CIA what language is most common in Afghanistan,Persian,General,Who had a hit with Sylvia's Mother,Dr Hook,Sports & Leisure,What Is The Proper Oriental Name For The White Suits Often Used In Karate And Judo ,GI (Geeeeee)  -General,"Who recorded such songs as 'toys in the attic' and 'angel', and also did the music for the film 'armageddon'",Aerosmith,Art & Literature,"A flat board used by a painter to mix and hold colors, traditionally oblong, with a hole for the thumb; also, a range of colors used by a particular painter. ",Palette, History & Holidays,In the song 'We wish you a Merry Christmas' what pudding was asked for? ,Figgy Pudding  -Sports & Leisure,Which Football Team Plays At The Baseball Ground ,Derby County ,General,Soyuz was a soviet spacecraft but what's it literally mean,Union,General,Which art gallery would you visit to see Botticelli's ' Birth of Venus',"The uffizi, florence" -Music,From A Distance Was A Hit In 1990 & 1991 For Whom,Bette Midler,General,Gentlemen what hairstyle did chris evert sport in her first us open tennis champions,Pigtails,Geography,What's The Capital Of Zimbabwe ,Harare  -Science & Nature, __________ and short_tailed shrews get by on only two hours of sleep a day.,Elephants,General,A poem written to celebrate a wedding is called a(n) ___________,Mercury,General,What Domestic appliance was invented By Charles Strite?,The Toaster -General,What century saw the War of the Roses,The 15th century,Religion & Mythology,What is the holy book of Islam ?,Koran,Entertainment,Who is Melanie Griffith's mother?,Tippi Hedren -Food & Drink,Where was Budweiser first brewed ,St Louis ,Religion & Mythology,In what city does a certain church forbid burping or sneezing?,"Omaha, Nebraska",Music,Peter Cetera Was Originally A Member Of Which Band,Chicago -Music,"Who Recorded The Albums ""Non Stop Erotic Cabaret"" And The ""Art Of Falling Apart""",Soft Cell,General,What Is Manufactured From The Sapodilla Tree?,Chewing Gum,Music,"Name The Kiss Member Whose Solo Album Featured Cher, Bob Seger, Donna Summer, Helen Reddy & Janis Ian",Gene Simmons -General,What is the fear of glass known as,Nelophobia,General,A cat has how many muscles in each ear,32,General,Viscous black liquid produced in the destructive distillation of coal to make coke & gas,Coal tar -General,In what play do we follow Aaron a Moor beloved of Tamora,Titus Andronicus,General,What canadian horse won the 1964 kentucky derby,Northern dancer,General,What is the earth's layer just below the crust,Mantle - Geography,In what city is the Smithsonian Institute?,Washington,General,Which Country Currently Holds The Record For The Heaviest Rainfall Ever Recorded,India,Music,Whose first chart album was called Concerto For Group and Orchestra?,Deep Purple - History & Holidays,As what was Taiwan formerly known?,Formosa,General,The medical journal Practitioner 1923 said it will never happen?,Teaching of contraception,General,Which car company manufactured the leganza,Daewoo -General,This is the Southeast Asian method of dying fabric using wax to create designs?,Batik,General,What fish has its head at right angles to its body,Sea Horse,Sports & Leisure,Which Is Always The 3 rd Grand Slam Event In The Tennis Calendar? ,Wimbledon  -Music,"Jimmy Young, The Righteous Brothers, Robson & Jerome. Who Comes Next?",Gareth Gates,General,The Romans called it Cambria - what do we call it,Wales,General,What is the name of the fruit that looks like a hairy lychee,Rambutan -General,Label for person whose i.q is 110-120,Superior,General,"In Greek mythology, who abducted europa to crete",Zeus,General,Saturn is the only planet that is less dense than ______,Water -Entertainment,Where did George of the Jungle live?,Imgwee Gwee Valley,General,Which ship did charles darwin captain,Hms beagle,General,According To The 2000 Census What Is Now The Least Populated State In The United States Of America,Wyoming -General,"The wrist, or the wrist bones",Carpus,General,Scelerophibia is the fear of,Bad men burglars,Technology & Video Games,Who is the main character in the 'DeathQuest' series? ,Lucretzia -General,The three toed sloth only does it every 10 days - what,Defecate - or crap,General,Prophesied the Chalus the Greek - Die on day - did of what,Laughing cos he was not dead,General,With what is sulphur and charcoal mixed to make gunpowder,Saltpetre -General,Van gogh what does oestrogen protect against,Heart attacks,People & Places,Who Was The First American Chess Champion ? ,Bobby Fischer ,General,How many letters in the roman alphabet,26 -General,How does paella get its name,From cooking pan,Geography,What prison island was off the coast of French Guiana,Devil,General,Who kept the book 'curious george' in his suitcase,Forrest gump -General,What books original title was Murder in the Calais Coach,Murder on the Orient Express,General,"Who recorded the album ""wish you were here"" in 1975",Pink floyd,General,What is the maximum number of degrees in an acute angle,89 degrees -Entertainment,What is Dennis the Menace's last name?,Mitchell,Art & Literature,"What was the sequel to Louisa May Alcott's ""Little Women""?",Little Men,General,Who did Zola Budd trip in the 1984 Los Angeles Olympics?,Mary Decker -General,What science deals specifically with plant & animal life in the sea,Marine biology,General,What is Palermo the capital of,Sicily,Music,Which Word Appeared Three Times In The Title Of A 1973 Gary Glitter Single,"Love (I Love, You Love, Me Love)" -General,What date is the 'ides' of march,Fifteenth,General,What was extracted through the nasal passages of dead pharaohs,Brain,General,Who performed the first successful heart transplant,Christian barnard -General,What's a bee's home called,Hive,General,Leader of the Iroquois Indians same name as what car,Chief Pontiac,General,Frank Heyes 1923 on Sweet Kiss only jockey ever to do what,Win a race after death - heart failed during race -Entertainment,"The film ""Crouching Tiger, Hidden Dragon"" takes place in which dynasty (- the ' )",Ching, Language,Name the soda that is often confused with a drug.,Coke,General,Harold Leek became famous as who,Howard Keel -General,Which dancer died in 1927 strangled by scarf on car wheel,Isadora Duncan,General,In Breton Alabama there is a law against riding what down street,Motorboat,General,What is the most popular theater in Japan called,Kabuki -General,What lives in a holt,An Otter,General,What product put its logo on Dover cliffs - Act Parliament get off,Quaker Oats Man,General,What does pp on a music score mean,Very quietly -General,What animals name translate from Arabic as He who walks fast,Giraffe – from Xirapha,General,"Elizabethan women had three what modest, rascal and secret",Petticoats worn modest outside,General,Rangoon is the capital of ______,Burma -Science & Nature, __________ can clock an amazing 31 mph at full speed and cover about 3 times their body length per leap.,Kittens,General,When was the magnetic telegraph invented,1837,General,The body of an aircraft,Fuselage -General,Who was the son of Zeus and Maia - Gods Messenger,Hermes,General,"Round, flat, filbert or sword types / shapes of what tool",Paintbrush,Science & Nature," 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 -Music,Who had 60's hits with 'Glad All Over' & 'Bits & Pieces',Dave Clark Five, History & Holidays,Which comic strip animal devised by Otto Mesmer first appeared in 1931? ,Felix the Cat ,General,"Who did the new york jets sign to a 427,000 dollars contract on january 2, 1965",Joe namath -General,Who started his film career as Anglo Saxton type 2008 in 1930s,David Niven,General,What is the most mountainous country in europe,Switzerland,Geography,St. George's is the capital city of what island country,Grenada -General,What does a Coprophobe fear,Crap - Shit - Faeces,General,Who Released The Album Anarchy In The UK?,The Sex Pistols,General,Who created 'horton',Dr seuss - History & Holidays,"What was the maiden name of Wallis Simpson, for whom Edward VIII abdicated in 1936? ",Warfield ,General,What is the junction between two nerve cells called,Synapse,Music,"Who Wrote The Musical ""Theres No Business Like Show Business""",Irving Berlin -General,How many cells die in the human body every minute,300000000,General,In Nevada it is illegal to drive what on the highway,A Camel,General,How did the little match girl die,Froze to death froze -General,French farmers get help from this barnyard animal to dig out truffles.,Pig,General,"Throat, foxing, and platform are parts of a(n) ________.",Shoe,General,The 'windflower' is the common name for which flowering bulb,Anemone -General,What's most commonly used password on computer systems,Password,Technology & Video Games,The Hylians come from what game series? ,The Legend of Zelda,Music,Which Beatles Song Includes Mick Jagger & Eric claptojn On Backing Vocals,All You Need Is Love -General,What yummy snack is used in the construction of dynamite,Peanuts,General,Thomas Watson in 1943 there is a worlds market for 5 - what,Computers – he chairman of IBM,General,Which films are about the corleone family,The godfather -General,Frank Hornby Found Fame As The Founder Of Hornby Model Railways & Dinky Toys But Which Other Famous Very Toy Brand did He I(nvent And Patent In 1907,Mechano,General,What was the first Hanna-Barbera cartoon,Ruff and Reddy,General,"In alphabet radio code, what word is used for 'f'",Foxtrot -General,Autolycus - accomplished invisible thief Greek myth whose son,Hermes,Music,"Who Teamed Up With Queen To Record ""Under Pressure""",David Bowie, History & Holidays,What Was The Name Of The 1971 TV Show In Which Adam Faith Played Ronald Bird ,Budgie  -General,What hath God Wrought was first message sent by Who 1844,S Morse Washington to Baltimore,Science & Nature,Which Engine Powered Both The Spitfire & The Hurricane Fighters Of World War 2 ,Rolls Royce Merlin ,Music,The Vocal Group Ladysmith Black Mambazo Are From Which African Country,South African -General,"The film ""High Society"" was a musical remake of which 1940 film",The philadelphia story,General,What is the fear of stuttering known as,Psellismophobia,General,What is a cello's real name,Violincello -General,Who did Perseus turn into stone with the Gorgons head,Atlas,General,What movie stars morgan freeman as a pimp known as fast black,Streetsmart,Entertainment,"He starred in, ""City Lights"".",Charlie Chaplin -Music,"Wheels Cha Cha & ""March Of The Mods"" Were Hits For Which Society Band Leader",Joe Loss,General,On what continent would you find ash trees,North america, Geography,What is the capital of Saint Vincent ?,Kingstown -General,Who starred as Rocky Balboa,Sylvester Stallone,General,What's the most unusual official sporting event in China,Granade Throwing,General,What is Shakespeare's play 'Twelfth Night' also known as,What you will -Geography,What U.S. city is named after Saint Francis of Assisi,San francisco,Music,Which Labels First Crop Of Artists Included Elvis costello & Lene Lovivh,Stiff,General,Moving On Up' by M-people was released in what year,1993 -General,What was Michelangelo's only signed sculpture,The Pieta,General,"On Mr Ed, what was Wilbur's last name",Post,General,"Who was the nba, mvp in 1976, 1977 and 1980",Kareem abdul-jabbar -General,"Any free-moving liquid in outer space will form itself into a sphere, because of it's surface ______",Tension,General,What hormone is produced by the adrenal glands,Adrenaline,General,Samuel Pepys wife always slept with what in her hand,His Dick -General,In USA / Britain give finger - What do you show in Thailand,Sole of foot,General,Over which islands does the spanish flag fly,Canary islands,General,"What was the name of the white gang in ""west side story""",Jets -Food & Drink,What Does IPA Stand For ,India Pale Ale ,General,What do people use to propel kayaks,Paddles,Art & Literature,Who wrote the 'Myth' series?,Robert Asprin -General,What Was The First British Gameshow Adapted For Screening In The USA,The Krypton Factor,Geography,What American state is also called the 'Garden State'?,New Jersey, History & Holidays,Which groups first album was entitled 'Piper At the Gates Of Dawn'' ,Pink Floyd  -General,"Who was known as ""the sultan of swat""",Babe ruth,Science & Nature,What Colour Will Litmus Paper Turn When Dipped In Acid ,Red ,General,Where was Antonio Vivaldi born,Venice -General,What is the second month of the year,February,General,"Capital city of Arizona & seat of Maricopa County, located on the salt river in the south central part of the state",Phoenix,General,Who built the taj mahal,Shah jahan -General,Which Mediterranean island is named after the soldiers who were skilled in the use of slings,The balearics,General,Who was the defeated Socialist Prime Minister in the Spanish General Election of March 1996,Felipe gonzalez,Science & Nature,Which German Company Introduced The Interrupter Gear Enabling A Machine Gun To Fire Through An Aeroplanes Propeller ,Fokker  -Science & Nature,Which Bird Can Fly Backwards? ,The Humming Bird ,General,How many women know the formula of Coca Cola,None - not allowed,General,Who wrote The Day of the Jackal,Frederick forsyth -Geography,"There are approximately 100,000 glaciers in ______________",Alaska,General,"What does captain furillo's main squeeze, joyce davenport, do for a living",Assistant da,General,What kind of animal is a carnivore,A meat eater -General,"In cornish folklore, what is a bucca",Sea spirit,Toys & Games,"In a game of horseshoes, how many feet apart must the stakes be?",Forty,General,Bascule cantilever suspension all types of what,Bridge -General,In what city was the first US circus April 3rd 1793,Philadelphia,General,What is the fear of memories known as,Mnemophobia,General,"Which group sang the song ""Everything you want""?",Vertical Horizon -General,In which film did the Rolls Royce have the number plate AU1,Goldfinger,Science & Nature,Which Aircraft Manufactuer Produced The Spitfire ,Supermarine ,General,Gephydrophobia is a fear of _____,Bridges -General,In Italian pasta cusine what does al dente literally mean,To the teeth,General,What is the acronym for 'yet another hierarchical officious oracle',Yahoo,General,The wide wall built along the banks of rivers to stop flooding is a(n) _____.,Levee -General,What tiny vessel connects an artery with a vein?,Capillary,General,If you had aprosexia what would be impaired or reduced,Ability to study,General,Which 2006 'heist' movie featured Clive Owen as the architect of a bank robbery on a New York bank?,Inside Man -General,On which river is the city of Mandalay situated,Irrawaddy,Entertainment,"""Joy to the World"" was a hit in 1971 for what band with three lead vocalists?",Three Dog Night,General,What welsh singer used to work as a condom tester,Shirley Bassey - History & Holidays,Who does Jamie Lee Curtis play in 'Halloween 20 years later (H20) ,Kere Tate ,Art & Literature,"An eighteenth-century European style, originating in France. In reaction to the grandeur and massiveness of the baroque, it employed refined, elegant, highly decorative forms. ",Rococco,General,"What husband wife team starred in ""a turkey for the president""",Ronald and - Geography,What is the capital of Ukraine ?,Kiev,Entertainment,The theme tune for 'Monty Python's Flying Circus' was written by which composer?,John Philip Sousa,General,A pogonip is what type of weather condition,Heavy winter fog with ice crystals -General,What fashion designer is credited with the Bob hairstyle,Mary Quant,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,Music,"How Are Jake Shears, Baby Daddy, Ana Matronic, Del Maquis & Paddy Boom Better Known",Scissor Sisters -General,Jeffery Archer wrote Kane and Abel what was the sequel called,The Prodigal Daughter,Art & Literature,What subject did 'Mr. Chips' teach?,Latin,General,"Name Shakespeare play Ariel, Miranda and Prospero appear",The Tempest -General,Graham Kerr became famous under what nickname,Galloping Gourmet,General,Who invented the clockwork radio,Trevor bayliss,General,Who was the last Indian chief to die in battle at Wounded Knee,Big Foot - Geography,What is the smallest Canadian province?,Prince Edward Island, Language,What do the initials 'VCR' stand for?,Video Cassette Recorder,General,Who is the Commonwealth Secretary General,Emeka anyaoku -General,Peridot is the birthstone for ______?,August,General,What was unusual about the drawings of artist Cesar Ducornet,Drawn with feet – he had no arms,General,What Does Dc Stand For In Washington DC,District Of Columbia -General,In 1896 1st modern Olympic Games officially opens in,Athens,General,Who directed the film of Ray Bradbury's Fahrenheit 451,Francois Trufeau,General,"Nicholson what u.s president's home is located in columbia, tennessee",James polk -General,"Before Finding Fame Under Another Name Which Girl Band Were Originally Known As ""The Colours""",The Bangles,General,"Who wrote the book ""Prisoner of Desire""",Jennifer blake,General,What is the name of the Boston baseball team based at Fenway Park,Boston red sox -General,What number does a heart denote on a Moroccan bank note,Five,General,Which is the longest bone in the body,Femur,Toys & Games,"What number is on the opposite side of the ""five"" on dice",Two -General,What shape are playing cards in india,Round,General,Where would you find a Mihrab,Mosque Niche show Mecca direction,General,In a Gynocracy - who rules,Women -General,"Whose epitaph reads ""He snatched the lightning from the skies and the sceptre from tyrants""",Benjamin franklin,General,Waving a yellow flag is the international signal for what,Infectious disease,Science & Nature,The Spinning Wheel Arrived In Europe In The 13th Century From Which Country Did It Supposedly Originate ,India  -Music,What Was The Gang Name Of John Travolta And His Cohorts In The Movie Grease,The T-Birds,Music,What 4 Letter Word Is Tattooed Of The Body Of Former Spice Girl Emma Bunton?,Baby,Science & Nature,What is the most widely accepted theory for the creation of the universe?,Big Bang -Geography,In which ocean or sea are the seychelles ,Indian ,General,What is the atomic number of cesium,55,General,What is san francisco's equivalent to sydney's 'city to surf' race,Bay to - History & Holidays,Who played Norman Bates in the 1998 remake of 'Psycho' ,Vince Vaughn ,General,Portuguese West Africa is now known as what,Angola,General,"What Part Of The Human Body Is Studied By A ""Myologist""",Muscles -General,In York its legal to kill a Scotsman (not Sunday) what weapon,Bow and Arrow,General,Which film won the best story and best song Oscars in 1969,Butch Cassidy and Sundance Kid,General,What is a group of widgeons,Company -General,Who was the first female monster to appear on film,Bride of Frankenstein,General,Who invented the compact disc or CD?,Philips,General,"What U.S. state gave the world Louis Armstrong, Fats Domino, Mahalia Jackson and Jelly Roll Morton (and, dare I say, Britney Spears)",Louisiana -Geography,Myanmar was known as _____________ until 1989.,Burma,General,Who won Euro song contest Save All Your Kisses For Me,Brotherhood of Man,General,What metal do fools mistake iron pyrites for,Gold - History & Holidays,How many years were between the creation of the Magna Carta and the American Declaration of Independence ?,561,General,From where to where did the first railway on the witwatersrand run,Johannesburg to springs,General,Weissmuller what do you call the hollow spaces in the bones surrounding your nose,Sinuses -Music,In The 9 Weeks Following John Lennons Death He Spent 7 Weeks At No.1 What Novelty Single Interrupted His Run At The Top Of The Charts,Theres No-One Quite Like Grandma,Music,"Born James Osterburg, Who Is Called The Godfather Of Punk",Iggy Pop,General,"North American Indian language family including languages of Alaska and north-western Canada, the Pacific coast and the south-western United States.",Athapascan - History & Holidays,"""In the TV show """"The Simpsons"""", who or what is Santa's Little Helper?"" ",Their Pet Dog ,General,How did Van Gogh dispose of his ear,Gave it to prostitute,Geography,Name the longest river in Asia.,Yangtze -General,"Who visited australia and new zealand, then surveyed the pacific coast of north america",Captain george vancouver,General,In Which Country Was Ice Cream Invented,China,General,A chinese imperial dragon has how many toes?,Five -Art & Literature,"A late-nineteenth-century French school of painting. It focused on transitory visual impressions, often painted directly from nature, with an emphasis on the changing effects of light and color. ",Impressionism,General,"In the series of 'Doctor' films based on the works of Richard Gordon, which actor played the part of Sir Lancelot Spratt?",James Robertson Justice,General,What two states in the U.S. do NOT observe daylight saving's time,Hawaii and -General,In which country is Dominion Day celebrated,Canada, History & Holidays,In Which City Did Chamberlain Make His(Wind Of Change) Speech In 1960? ,Cape Town ,Science & Nature,What aminal is the logo of the World Wildlife Fund?,Panda -Sports & Leisure,In What Sport Did Nolan Ryan Once Throw A Ball At A Record Speed Of 100.9 Miles Per Hour ,Baseball ,General,What is the flower that stands for: riches,Corn, History & Holidays,He killed Jesse James.,Ford -General,"The second longest suspension bridge in the world is the Ismit Bay, located where",Turkey,General,What became legal in 1901 in the UK,Boxing,General,Beirut is the capital of ______,Lebanon -Sports & Leisure,What Country Does Motor Racing's Jacques Villeneuve Come From? ,Canada ,General,"What continent is bounded on the north by the Timor Sea, The Arafura Sea & the Torres Straights",Australia,Music,"Whose Albums Include ""Steel Town"" & ""Peace In Our Time""",Big Country -Sports & Leisure,Which tennis star wore denim shorts during matches?,Andre Agassi,General,What does AIDS stand for,Acquired immune deficiency syndrome,Science & Nature,This bird lays its eggs in the nests of other birds.,Cuckoo -General,Melons are made up of approximately what percentage of water,90,General,In which sport are left handed people banned from playing,Polo,General,What is a group of this animal called: Bee,Swarm grist hive -General,Who killed his grandfather with a quoit at the Larrisan games,Perseus,Science & Nature,What animal lives in a form?,Hare,General,"Who wrote the thrillers, ""Sheba"" and ""Year of the Tiger""",Jack higgins -General,Which author wrote about the Cornish seaside boarding school Malory Towers?,Enid Blyton,General,Who is the first cartoon character to ever have been made into a balloon for a parade,Fruit,Science & Nature," 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 -Food & Drink,If you were served crudit?s as a starter before your main meal what would you be eating? ,Sliced or shredded raw vegetables,General,What is a group of badgers,Cete,General,Where in a woman would you find the pisiform bone,Wrist -Food & Drink,Which red jelly is a traditional accompaniment to lamb? ,Redcurrant ,General,Who wrote the music to the film The Odessa File,Andrew Lloyd Webber,General,Who was the author of the story Pinnochio,Carlo collodi -General,What would you do with a naked lady,Plant it – its Colchinium,General,What Is The Worlds Oldest Known Vegetable?,The Garden Pea,Food & Drink,"Booze Name: Vodka, tomato juice, lemon, tabasco sauce, salt, pepper, celery salt.",Bloody mary -Music,"Their Most Famous Single Is ""Don't Fear"" Who Are They",Blue Oyster Cult,Music,"Whose Debut Album Was Titled ""Rafis Revenge""",Asiandubfoundation, Geography,What is the capital of Kiribati ?,Bairiki -General,"What composer boasted ""I could set a laundry list to music""",Rossini,Entertainment,Beethoven's Sixth Symphony shares it's popular name with a method of animal farming. What is it?,Pastoral,General,What plant has the largest seed,Coconut -Science & Nature,Which Disease Is Carried By The Tsetse Fly ,Sleeping Sickness , History & Holidays,In 1939 which pub game was banned in Glasgow for being too dangerous? ,Darts ,Music,Of Which Record Label Was Ahmet Ertegun The Co-Founder,Atlantic Records -Science & Nature,Where Is The Worlds Biggets Lathe ,"In Rosherville South Africa, It Can Machine Components Wighing 300 Tonnes ",General,What weapon was invented by Ernest Swinton used in 1916,Tank,Music,Donnie Wahlvberg Was A Member Of Which Band,New Kids On The Block -General,Name Mary Quant's shop that led the 60s fashion revolution,Bazaar,General,Between 1956 and 1960 which song made top 40 seven times,Mack the Knife Bobby Darin best,Food & Drink,What Milky Drink Is Often Drank On New Years Eve ,Egg Nog  - Geography,Which is the most populated state/territory in Australia?,New South Wales,General,A social dance of American origin in duple time.,Fox-trot,Sports & Leisure,How many points is the bullseye worth in outdoor archery? ,25  -Art & Literature,"Which English Writer Divided His Novels Into 3 Categories, Novels Of Character & Environment, Romances & Fantasies & Novels Of Ingenuity ",Thomas Hardy ,General,Whose only loss in 1983 was to kathy horvath,Martina navratilova,Music,Which Now Legendary Sports Chant Reached No.1 In 1996,Three Lions -General,What is the capital of nova scotia,Halifax,General,Something that containing both letters and numbers,Alphanumeric,General,Who replaced Johnny Carson as host on 'The Tonight Show' in the US,Jay leon -Geography,What is the capital of Panama,Panama city,General,For what purpose was the chow chow dog originally bred,As food or Chow,General,What is the name of the CIA agent played by Harrison Ford in Patriot Games and Clear and Present Danger,Jack ryan -General,What type of wine was Napoleons favourite,Burgundy Chambertin,General,"What is the Capital of: Man, Isle of",Douglas,General,On what hobby is most money spent,Gardening - History & Holidays,From which phrase is the word Halloween Derived ,All Hallows Eve ,Music,"Which Singer Was Born In Nutbush, Tennessee In 1939?",Tina Turner,General,Debby Boone sang the No 1 song of the 70s name it,You light up my life - History & Holidays,On what did Marley's ghostly face first appear to Scrooge in Dickens' A Christmas Carol ,A door knocker ,Music,Which Oxford Trio Began Their Career As The Jennifers,Supergrass,General,In which city is the worlds oldest tennis court from 1496,Paris -General,What Olympic event only takes place at 70 and 90 meters,Ski Jumping – official ramps,General,Which Politician Caused Outrage When They Famously Said That Northerners Die Of Ignorance And Crisps,Edwina Currie,General,"Who said 'The greater our knowledge increases, the more our ignorance unfolds' ?",John F. Kennedy -General,"Channels In 1978, whose music did Def Leppard like to cover in small clubs",Thin lizzy, Geography,Which of the 48 contiguous states extends farthest north?,Minnesota, History & Holidays,What Christian holiday is celebrated immediately after Halloween ,All Saints Day  -General,John Downland was 16th century composer for which instrument,The Lute,General,What does a chronometer measure,Time,Geography,What is the capital of Hungary,Budapest -General,Nazi secret police,Gestapo,General,Musical instrument is named from the Greek wooden sound,Xylophone,General,Where did the Pied Piper play,Hamlin -General,What is Joeys favourite food in Friends,Sandwiches,Geography,What Is The Largest Ocean On The Planet ,Pacific ,General,Who plays kevin arnold on 'the wonder years',Fred savage -Music,In Which Year Did Pink Floyd Achieve Their Only No.1,1979 (Another Brick In The Wall),General,Extreme fear of open spaces,Agoraphobia,Science & Nature,What is the mathematical term used to describe the shape of a cell in a honeycomb ,Hexagon  -General,With what are camel hair brushes made,Squirrel hairs,Sports & Leisure,Which sport do you associate with the Russian woman Maria Sharapova ,Tennis ,General,Soteriophobia is the fear of,Dependence on others -Sports & Leisure,Which Golfer Won Over $9 Million Prize Money In 2000 ,Tiger Woods ,General,What is the main ingredient of mock turtle soup,Calf's head,Music,"Which Duo Performed The No.1 Song ""I Know Him So Well""",Elaine Paige / Barabara Dickson -General,In the Vietnam war what was the signal US to evacuate Saigon,Bing Crosby White Xmas on Radio,Food & Drink,In Monty Pythons The Meaning Of Life What was Mr. Creosote's very last course? ,A wafer thin mint ,General,How did Buffalo Bill stick to one glass whisky a day,Quart glass -General,Who was the title character in The Merchant of Venice?,Antonio,General,What is a long wire wound in a close-packed helix and carrying a current,Solenoid,General,Where could you spend a Kyat,Burma -General,What did Lorraine Chase famously advertise on TV,Campari,Geography,______________ is the world's oldest black republic. The major religion there is voodoo.,Haiti,General,Skopje is the capitol of where,Macedonia -Tech & Video Games,Which character was introduced in 'Super Street Fighter II'? ,Cammy,General,U.S. captials North Carolina,Raleigh,People & Places,Whose Real Name Is 'Arthur Stanley Jefferson' ,Stan Laurel  -General,Which group recorded the albums Regatta de Blanc and Ghost in the Machine,The police,General,If you were severed a dish 'belle h'elen what fruit would it be,Pears,Science & Nature,With Which Animals Do You Associate The Disease Myxomatosis? ,Rabbits  -General,What is the fear of step mother known as,Novercaphobia,General,Duo who had a hit song with 'I got you babe',Sonny and cher,General,Name Any Year in The Life Of Davy Crocket King Of The Wild Frontier,1786 – 1836 Lived Till He Was 50 -General,What foreign country's phone book is alphabetized by first name,Iceland,General,Who is the american inventor of photographic materials,George eastman,Geography,In which country did acupuncture originate? ,China  -General,Where does the u.s government keep it's supply of silver,West point academy,Entertainment,What was Keanu Reeves' first big film?,Point Break, History & Holidays,The name of which place of biblical significance actually means 'House of Bread'' ,Bethlehem  -Science & Nature,Which Animal Can Jump The Highest? ,The Whale , History & Holidays,Which Group Had A 60s Hit With The Song 'She's Not There'' ,The Zombies ,General,Xavier Roberts was the original creator of which toy,Cabbage Patch Dolls -Science & Nature,What is the world's longest snake,Python,General,"In 'southpark', what is chef obsessed with",Sex,General,E J Allen led spy team to South Civil war what name better known,Alan Pinkerton -Science & Nature," While dangerous to swimmers, the fact remains that __________ are much less dangerous than sharks.",Barracudas, History & Holidays,What is Zimbabwe's President Robert Mugabe's middle name ,Gabriel ,General,What carbonated beverage started out life in the 1890's as 'Brad's Drink',Pepsi -General,What is a group of this animal called: Swift,Flock,General,In what magazine does Alfred E Newman appear,MAD,Science & Nature,This parasite lives in the intestines of man and animals.,Tapeworm -General,What was Blondies name before she married Dagwood,Boopadoop,General,What word can mean a RC prayer Blood Clot extra calendar day,Embolism,General,The tumblebug is an alternative name for which insect,Dung Beetle -Sports & Leisure,In Horse Racing How Many Furlongs Are In A Mile? ,Eight ,General,"In Which Country Was The ""Lords Of The Rings"" Creator J.R.R Tolkien Born",South Africa,Music,"Written By Jagger And Richards Who Had A Hit With ""Out Of Time"" In 1966",Chris Farlowe -General,What is sometimes referred to as Zulu time,Greenwich mean time,General,"Who discovered their dream girls, the chipettes in an 1987 flick",Chipmunks,Science & Nature,Name the heaviest breed of domestic dog.,St. Bernard -General,A young what is called a Cheeper,Grouse Partridge Quail,General,What plant does the Colorado beetle attack,Potato,Geography,Which City Is The Capital Of Bulgaria? ,Sofia  -General,Which WW2 fighter-bomber did de Havilland's make out of wood,Mosquito,General,What is the collective noun for a group of Rhino?,Crash,General,"This disease consists of a purposeless, continual growth of white blood cells",Leukemia -General,How many players are there in a men's lacrosse team,Ten,General,If you landed at Merignac airport - where are you,Bordeaux, History & Holidays,Who led the children of Israel out of Egypt?,Moses -General,Are yabbies found in fresh or salt water,Fresh,General,Cassius Marcellus Coolidge painted which famous paintings,Dogs playing pool cards etc,General,What did the old woman who lived in a shoe give her children for supper,Broth without any bread -General,What was Junko Tabei the first woman to reach,Summit of mount everest,General,What nationality was dr bart hughes,Dutch,General,"What's a new yorker trying to bribe a way into when offering ""key money""",Apartment -General,Fatty Arbuckle was the first filmed recipient of what in 1913,Custard Pie, Geography,What is the basic unit of currency for Indonesia ?,Rupiah,General,What is the name for the sacred circle in Tantric Buddhism,Mandala -Geography,What is the capital of Burma,Rangoon,General,Which country is alphabetically last,Zimbabwe,General,"Up To & Including Tony Blair, How Many Prime Ministers Have Served Under Queen Elizabeth II",Ten -General,A myomancer predict the future by studying what,The shape of mice,General,What was Maggie Seaver's maiden name on Growing Pains?,Maggie Malone,General,"Pinky Punky, Who Was Known To Have A Bit Of A Nasty Streak, Belonged To Which Entertainer.",Timmy Mallets Mallet -General,Where was the first football world cup,Uraguay,General,What animal has the worlds shortest sperm,Hippopotamus,Art & Literature,"A movement of the 1920s and 1930s that began in France. It explored the unconscious, often using images from dreams. It used spontaneous techniques and featured unexpected juxtapositions of objects. ",Surrealism -Music,Name The Band That Lost 4 Members In The Plane Crash That Killed Otis Redding,The Bar Kays,General,Which mythological monster had nine heads,Hydra,General,The first 'talking' film was released in what year,1927 - History & Holidays,What 'IR' Does Michael Fish Say To His Wife When The Heavens Open On Christmas Day ,It's Reindeer ,General,What is the young of this animal called: Whale,Calf,General,"On Diff'rent Strokes,what pet did Arnold keep in his room?",Goldfish - History & Holidays,"The current image of Santa Claus as a plump man with white beard and red and white tunic dates from a 1931 Advertising campaign, for which product ",Coca-Cola ,Science & Nature,What Is The Horn Of A Rhinoceros Made From? ,Keratin (Hair) ,Music,Which American President Was Fighting In The Ring In The Frankie Goes To Hollywood Video Two Tribes,Ronald Reagan -General,"In the 15th Century, in which ship did John Cabot sail to Canada",Matthew,General,What Grim Discovery Was Made By An Electrician Fitting A Burglar Alarm In Seattle In 1994,Kurt Cobains Body,General,Metathesiophobia is the fear of,Changes -General,What is Belgium's national Airline,Sabina,General,"Which hero of tv and cinema fights an unending battle for 'truth, justice, and the American way",Superman, History & Holidays,"Name the sitcom that featured Judd Hirsch, Andy Kaufman, Tony Danza and Danny Devito. ",Taxi  -General,In ancient China what was hung outside a bad doctors house,Lantern for each dead patient,General,What is the world's fastest land animal,Cheetah,General,Who was Captain Edward J. Smith,Captain of the titanic -General,Illyngophobia is the fear of,Veritgo,Science & Nature,North American Indians ate watercress to dissolve what in the bladder?,Gravel and stones, History & Holidays,Which type of vegetable went on sale in frozen form in Massachusetts in June 1930? ,Peas  -General,In traditional wedding anniversaries what is given on the seventh,Wool,Science & Nature,Who Is Considered As The Originator Of The Concept Of A Computer ,Sir Charles Babbage ,General,Who were the main combatants in the punic wars,Rome and carthage -General,The base of the great pyramid of Egypt is large enough to cover how many football fields,10,General,Who was Arthur Scargill's predecessor as President of the NUM,Joe gormley,General,What is the worlds largest sand island northeast of Brisbane,Fraser island -Music,"Which Artist Topped The Us Billboard Singles Chart, The Latino Singles & Album Chart All In The Same Week",Christina Aguilara,General,Robert de Niro won Best Actor Oscar for which film in 1980,Raging bull,Technology & Video Games,What does ASCII stand for?,American Standard code for information interchange -General,What is the Capital of: Iran,Tehran,General,Complete the proverb: There's many a good tune,Played on an old fiddle,General,What is the better known name of writer Madame Dudevant,George sand -General,What is the fastest racket sport - over 200 mph,Badminton,General,What is a corrosive substance,Acid,General,The 'Grand Pensionary' was the most important official of which country during the time of the United Provinces?,Holland -Food & Drink,What Is Black Velvet ,A Mixture Of Stout & Champagne ,General,What are the world's tallest trees,Coast redwoods,General,What eighties TV show starred Tom Hanks in women's clothing?,Bosom Buddies -General,With what band was harvey schmidt,The fantasticks, History & Holidays,What does Beetlejuice eat when he reaches out of his grave in the scale model of the town? ,A Fly ,General,A game of pool is referred to as a _____,Frame -General,Who's Autobiography Is Entitled “Catch A Fire”?,Mel B (Spice Girls),Geography,Which Island Lies At The Most South Westerly Part Of The United Kingdom ,Bishop Rock ,General,Which old English time unit is 1.5 minutes long,A Moment -General,What liqueur is flavoured with the rind of bitter oranges,Cointreau,Music,When The Supremes Hit The No.1 Spot In The UK in 1964 With Baby Love It Was Not Released On Motown But On Which Other Label,Stateside,General,From what material are millefiori ornaments made,Glass -General,Where was it once against the law to have a pet dog,Iceland, History & Holidays,Which royal couple were married on the 29th July 1981 ,Charles and Diana ,General,The dial tone of a normal telephone is in what key,F -General,What is the flower that stands for: self-esteem,Poet's narcissus,General,"""Dragon Whiskers"" is a type of tea from what country",China,General,Hippopotomonstrosesquippedaliophobia Is the fear Of What?,Long Words -General,Who appeared on the first US postage stamps (both names),Washington - Franklin,Music,"Was Maniac A Hit From ""Flashdance"" Performed By ""Richie Sembello"" Or Glen Menderios",Richie Sembello,Music,"Which DJ Championed The Undertones Naming ""Teenage Kicks"" As His All Time Favourite",John Peel -Entertainment,Before Olive Oil met Popeye she was engaged to someone. Who was he,"Ham gravyzzcomment: olive oyl was wrong, jono82 said",General,Where did the Angel falls get its name,Pilot Jimmy Angel crashed 1937,Music,By what name is Don Van Vliet better known?,Captain Beefheart -General,What shoe brand were all 39 members of the Heaven's Gate cult wearing when they committed suicide in 1997,Nike,General,Who patented the first photograph,Thomas edison, Geography,What is the basic unit of currency for Vietnam ?,Dong -Music,"Which Group Took ""My Perfect Cousin"" To No.9 At The Start Of The 80's",The Undertones,Sports & Leisure,At Which Venue Does The Us Open Tennis Tournament Take place ,Flushing Meadows ,General,A thoroughgoing & complete republican might be called a dyed-in-the___what kind of republican,Wool -General,Who was lead singer and principal songwriter with the American pop group Bread,David gates,General,What viral skin condition does folklore say is caused by handling toads,Warts,Music,A Daughter Was Born To Mick & Bianca Jagger In October 1970 What Did They Name Her,Jade -Sports & Leisure,In which sport is the America's Cup awarded,Sailboat racing,Geography,How many u.s. states border the pacific ocean ,Five ,Religion & Mythology,The sea gods had a three-pronged spear called a(n) ________.,Trident -Science & Nature,What animal has red patches on its rear?,Mandrill,General,In which film did Groucho Marx play the veterinary doctor Hugo Z. Hackenbush',A day at the races,General,What does MILK1 do for a living,Dairy farmer - History & Holidays,How many astronauts manned each Apollo flight?,Three,General,Who founded the boy scouts of America,Daniel Beard,General,Who did yoko ono marry,John lennon -General,What profession has four times the average aids in USA,Catholic Priests,General,"Who said 'when the going gets tough, the tough get going'",Knute rockne,General,What is the name of the cryptography machine used by the german's in WW2?,ENIGMA -General,What is a cross between a blackberry and a raspberry,Tayberry,Science & Nature," __________ gather in groups to sleep through the winter. Sometimes up to 1,000 of them will coil up together to keep warm.",Rattlesnakes, History & Holidays,"""What Did My True Love Give To Me On The """"Fourth"""" Day Of Christmas"" ",4 Calling Birds  -General,What animal has the best hearing,Bats,Music,In Which Year Did Abba Win The Eurovision Song Contest,1974,General,What cartoon characters first name is Quincy,Mr Magoo -General,What countries native name is Land of the long white cloud,Aoteraroa – New Zealand Maori,General,Kind of Swiss cheese with holes in,Gruyere,Music,Which 60's Icon Released Lovesick In 1998,Bob Dylan - Geography,In which city is the Sistine Chapel ?,Vatican City,General,The locals call it Metohkangmi what do we call it,Abominable Snowman or Yeti,General,In what sport would you find a Hosel,Golf - Hole in club shaft fits into -General,Yggdrasil is what in Norse mythology,Tree,General,In CHIPS what make of motorcycles did they ride,Kawasaki,General,What candy received it's name because the machine that makes them looks like it is kissing the conveyor belt,Hershey kisses -General,What is on a 5000 acre landfill at the head of jamaica bay near new york city,John f kennedy airport, History & Holidays,In what year of WW II did Russia declare war on Japan,1945,General,Which two great physicists developed calculus independently of each other?,Isaac Newton and Leibniz -General,Ireland's River Shannon flows into which ocean,Atlantic,General,Who was the lone ranger's indian companion,Tonto,General,If you were eating a Prunis Domesticia what would it be,Plum -Science & Nature,What is a young swan called?,Cygnet, History & Holidays,"What song, popular in the First World War, was written by George and Felix Powell? ",Pack up your Troubles in your Old Kit Bag ,General,Who wrote A Farewell to Arms,Ernest hemingway -General,Who Played The Role Of Father “Noel Furlong” In The TV Show Father Ted,Graham Norton, Geography,What is the capital of Bahrain ?,Manama,General,What constellation is represented by a crab,Cancer -General,What word means 'to chew the cud'?,Ruminate,General,Which County Inflicted Englands First Ever Football Defeat On Home Soil,Ireland,General,Who sailed in the Golden Hind,Sir Francis Drake -General,Each unit on the Richter scale is euivalent to a power factor of how much,Thirty two 32, History & Holidays,In 1453 it is alleged that a witch flew on a broomstick for the first time but was it a male or female witch ,Male ,Sports & Leisure,In which sport is the Davis Cup awarded,Tennis -General,What is extracted from the ore caserite,Tin,General,"Eddie Bauer, Erehwon, and North Face are these types of stores.",Outfitters,General,Prosophobia is the fear of,Progress -Sports & Leisure,"Which Race Over 200 Laps Is Started With The Words, 'Ladies And Gentlemen, Start Your Engines''? ",The Indianapolis 500 ,General,What word appears in more film titles than any other,Love,General,How many ounces of orange juice contains the minimum daily requirement for vitamin c,Six ounces -General,What is ccdos,Chinese character disk operating system,General,Roger Moore's first appearance as James Bond was in which film,Live and let die,Food & Drink,"Almond liqueur that comes from the Italian for ""bitter"", not ""love""",Amaretto -General,In Japan Trade Unions collect dues from what unusual source,Robots in factories pay dues,General,What is 'anacreon in heaven',Old english drinking song,General,How many books are there in anne rice's vampire series,Five -General,Who baptised jesus,John the baptist,Geography,Who Found The True Source Of The River Nile ,Sir Richard Burton & John Speke ,General,In roman numerals what does the letter M with a Bar over it stand for?,One Million -General,John Pierpoint wrote what seasonal ditty,Jingle Bells,General,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,General,What was the original filling of the savaloy sausage,Pigs Brains -Food & Drink,How do you prevent a black rim forming round the yolk of a boiled egg? ,Plunge into cold water after boiling,General,Which novel of the Russian Revolution did Boris Pasternak write,Dr zhivago,Science & Nature,What word is used for a female sheep,Ewe -General,Which hollywood actor combined gibraltar and a river to create his name,Rock,General,In 1950 what character was on first metal lunchbox in the US,Hopalong Cassidy,General,What material did Michelangelo carve most of his sculptures out of,Marble -General,Which museum in Washington DC is said to be the largest in the world,The smithsonian institute,General,Paul Robeson the singer of old man river had what profession,Lawyer,Entertainment,Who shot Bruce Wayne's parents,Chill -General,What sport is played 11 a side on ice with a ball - variable pitch,Bandy,Music,"Which Freeway Did ""Aretha Franklin"" Sing About",Freeway Of Love,General,Which shakespearean character provided the plot for verdi's only comedy,Falstaff -General,What 2 countries border the Dead Sea,Israel and jordan,General,Where was the first Three Tenors concert held,Rome,Technology & Video Games,What was Nintendo's first Arcade game? ,Radarscope -General,In Hindu philosophy what does Yoga literally mean,Union,General,Who played garp's wife in the movie the world according to garp,Mary beth,General,5 items a Sikh must have Comb Dagger Hair Metal Bracelet and,Knee length undershorts 5Ks -Sports & Leisure,"What football player rushed for 2,003 yards in 1973",O j simpson,General,What is the Ikurrina,Basque Flag,General,Banaba (or Ocean Island) is found in which country,Kiribati -General,Which countries wine might be labelled DOCG,Italy,General,Pancho was whose faithful sidekick,Cisco kid's,General,What ship was blown up at the end of The African Queen,The Louisa -General,A light iron-tipped S.African spear,Assegal, History & Holidays,In the 9th century which city had several thousand bookstores ?,Baghdad,General,What links Cary Grant Mohammed Ali Prince Charles,All amateur Magicians -General,What does the 'c' in the equation e=mc2 stand for,Speed of light,General,Which musical note is the longest,Breve,General,Simpson's what was Homers nickname as baseball team mascot,Dancing Homer -Music,What Happened To Lisa Selson At The Tibetan Freedom Concert In 1998,She Was Struck By Lightning,General,"This actor played Blondie in The Good, The Bad, and The Ugly?",Clint Eastwood,General,Where in the body would you find the carpals,Wrist -General,What is Thalassophobia a fear of,The Sea,General,Who coined the term 'assassination',William shakespeare,General,How many cigars did sir winston churchill ration himself to a day,Fifteen - History & Holidays,"Who was kidnapped on the night of March 1, 1932?",Charles Lindbergh Jr,Geography,Why Did David Livingstone Go To Africa ,He Was A Missionary ,Art & Literature,Who wrote 'The Female Eunuch'?,Germaine Greer -General,What Hebrew word means 'so be it'?,Amen,Entertainment,Name Donald Duck's girlfriend?,Daisy,Food & Drink,What alcoholic beverage is produced by the Solera method? ,Sherry  - History & Holidays,"Which name belongs rightfully to The Craft Is It Bonnie, Shelly, Sally, Penny ",Bonnie ,Food & Drink,Which sauce is named after a river and state in Mexico? ,Tabasco ,General,Dark volcanic rock,Basalt -Music,In Which Year Did Abba's Benny & Frida Get Divorced,1981,General,Amy the girls name means what,Beloved, History & Holidays,Who wrote 'The Starry Messenger'?,Galileo -General,In every show that tom jones and harvey schmidt there is at least one song about ______,Rain,General,"Copeland, Mason, Dux and Bow all types of what",Pottery,General,Barajas is the main airport - where,Madrid - Geography,"This country is divided into two parts: Sabah and Sarawak on the island of Borneo, and a peninsula north of Singapore.",Malaysia,General,"Name the oppressive hot dry wind on the north coast of Africa, that comes from the Sahara during the spring and summer.",Sirocco,General,In which country is the cheese Bolbo produced,France -General,Mead is made from this,Honey,General,Poison oak and ivy belong to which general family,Cashew,General,Baptista is Katherine's father in which Shakespeare play,The Taming of the Shrew -General,What was the worlds first X rated cartoon,Fritz the cat,General,What U.S. state includes the telephone area code 704,North Carolina,General,"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 -General,Where did the flower Lupin originate,Canada,General,St Boniface is the Patron Saint of which country,Germany,Entertainment,Where does George Jetson work,Spacely sprockets -General,"To what was colonel potter, of 'mash' fame, allergic",Tomato juice,General,"In religious art, which Saint is associated with an ox",Saint Luke,Music,Which Female Vocalist Sang On Eminem's Hit Song “Stan”?,Dido -Music,Which Group Was Formed By The Original Members Of Joy Division?,Joy Division, Geography,On what river is Liverpool?,Mersey,General,To which planet does the moon iapetus belong,Saturn -Entertainment,Who is lead guitarist for Guns'n'Roses?,Slash,General,What are Black Bulger Lawyers Wig Penny Bun types of,Fungi,General,"Cuirass, greave and pauldron are all pieces belonging to what",Armour -General,The volume of the earth's moon is the same as the volume of what ocean,Pacific ocean,Sports & Leisure,Baseball: The New York ______?,Mets,General,Where were the 1956 Summer Olympics held?,"Melbourne, Australia" -Food & Drink,What fruit flavour is used in crepes-suzette ,Orange ,General,Armand Tarmizan is the 'real' name what cartoon character,Principle Skinner,General,In which 1971 film did Jane Fonda play a prostitute fearing for her life,Klute -General,What is the monty python parody of the legend of king arthur called,Search, Geography,Where is the statue 'Le Petit Pissoir'?,Brussels,People & Places,King Richard The 1 st Is Sometimes Refered To As What ,Richard The Lionheart  -General,Nina Post and Louise Gordon of which group released 'Seether' off 'American Thighs' in 1994,Veruca Salt,General,Which chemical element has the ancient name Stannum,Tin,Music,In which pop band does Damon Alburn sing?,Blur -General,Tia Maria - Vodka and Coke make what cocktail,Black Russian,General,Who wrote the 39 steps (both names),John Buchan,Music,Kylie Minogue Had To Back Out Of Which Venue Due To Finding Out That She Had Breast Cancer?,Glastonbury -General,Which 1949 comedy film featured Scottish islanders looting a stricken ship laden with Scotch,Whisky galore,General,With what do camels protect themselves from blowing sands,Three eyelids, Geography,What is the capital of Guinea-Bissau ?,Bissau - History & Holidays,Who Was Henry Bolingbroke's Father ,John Of Gaunt (The Duke Of Lancaster) ,General,"Which famous horse race was won Urban sea, Carnegie, Lammtarra",Prix de l'arc de Triomphe,General,What is the chemical name for vitamin c,Ascorbic acid -Science & Nature," 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,Music,What Was The Prodigys First Uk Hit Single,Charlie,Science & Nature,What name is given to a female calf?,Heifer -General,"Name used interchangeably for a disease of rye, for the fungus causing the disease, for the sclerotium (compact hardened mycelium, or fruiting surface) of the fungus, & for the dried sclerotium, what contains certain valuable drugs",Ergot,General,What was the pharon,Lighthouse,Science & Nature,Linseed oil is obtained from the seed of which plant,Flax -General,What year did the first motel open,1925,Technology & Video Games,The Minus World of Super Mario Bros. is a never-ending version of what stage? ,2-Feb,General,"On december 1, 1990, workers from france and england met in what structure in the middle of the english channel",Chunnel -General,The Name Of Which Creature Meant “ Little Thief ” In Latin ?,Ferret,Music,Which 1960 Vocalist Changed His Name From Ernest To Evans,Chubby Checker,General,Lagos is the capital of ______,Nigeria -General,"The aniseed-flavoured drink absinthe contained, originally, an extract of which plant",Wormwood,General,What is the Capital of: Liberia,Monrovia,General,In which country did the turnip originate,Greece -Science & Nature,Which Creature Had A Short Nose Horn & Two Larger Horns On The Brow ,Triceratops ,General,What gets its name from the Greek meaning large catapult,Howitzer,General,What U.S. state includes the telephone area code 706,Georgia -Music,"Which Musical Do The Songs ""Look At Me I'm Sandra Dee"" & ""Beauty School Drop Out"" Come From",Grease,Food & Drink,From what is the Mexican dish huevos rancheros made? ,Baked Eggs ,Food & Drink,What is the main ingredient of the Korean Soup Bosintang? ,Dog  -Music,"Who Wrote ""I Wanna Be Your Man"" The Stones 2nd UK Hit",Lennon McCartney,Sports & Leisure,"In pro football a ""sudden death"" period lasts how many minutes long",15,General,"What Was Discovered By ""Garcia Lopez De Cardenas"" In 1540",The Grand Canyon -General,Laliophobia is the fear of,Speaking,General,"In a hospital, what would the O & G Department be",Obstetrics and gynaecology, History & Holidays,Which King of France was known as the (Sun King)? ,Louis XIV  -Music,Chuck Berry Had His Only No.1 In The UK In 1972 With What,My Ding-A-Ling,General,Where is the worlds largest Chinese settlement outside Asia,San Francisco – Chinatown,General,In Detroit wilfully destroying your old what is illegal,Radio -General,Which 19th century French artist painted 'Bathers at Asnieres',Georges seurat,General,When did Andy Warhol die,1987,General,"Potentially dangerous to human life on earth, what is filtered out by the Ozone Layer",Ultra violet radiation -Entertainment,Who was the only songwriter to win the Eurovision Song Contest twice?,Johnny Logan,Food & Drink,If You Asked For Scraps In A Chippy What Would You Get ,Bits Of Fish Batter , Geography,Seoul is the capital of which country?,South Korea - History & Holidays,In which country was Adolf Hitler born?,Austria,General,What is the Capital of: Syria,Damascus,Music,"Which Rap Band Originally Entitled Their 1986 Debut Album ""Don't Be A Faggot"" Until Their Distributor Refused To Accept It",The Beastie Boys -General,Armadillos can walk where,Underwater,Science & Nature, __________ have been trained to have recognition vocabularies of 100 to 200 words. They can distinguish among different grammatical patterns.,Chimpanzees,General,Who wrote Man are from Mars Women are from Venus,John Grey -Sports & Leisure,At Which Motor Racing Circuit Was Ayrton Senna Killed ,Imola ,General,A Group of Whale is called a,Pod,General,Who was the first european explorer to reach India by sea,Vasco da gama -General,The westernmost point in the contiguous U.S. is where,"Cape alava, washington",General,"Who said ""The child is the father of the man""",Wordsworth,General,In 1760 what means of personal transport was invented,Roller Skates -General,What structure in the back of the brain governs motor control,Cerebellum, Language,What is the last letter in the Greek alphabet?,Omega,Music,Which Major 90's Dance Act Was Fronted By Heather Small,M People -General,The human bodies got 45 miles of them - what,Nerves,Sports & Leisure,Who was sent off on Saturday in the match between Arsenal and Bolton? ,El-Hadji Diouf ,General,Information about what subject is recorded in Wisden,Cricket -General,What is Burma now known as,Myanmar,General,What is the name of the desert region of south east Ethiopia over which Somalia also claims sovereignty,Ogaden, History & Holidays,What was the name of the domestic videocassette tape recorder system introduced by Sony in 1975? ,Betamax  -General,Whose military autobiography was titled Crusade in Europe,Dwight d eisenhower,General,"Founded in 1608 by Champlain, it was the capital of New France",Quebec,General,Which king married Charlotte of Mecklenberg Strelitz,George the third -General,What number did Levi Strauss affix to the first pair of jeans sold,501, History & Holidays,On What Japanese City Was The First Atomic Bomb Dropped ,Hiroshima ,General,What is a group of giraffes,Tower -Sports & Leisure,Football: The Dallas _________.,Cowboys,General,What is the capital of tennessee,Nashville,Sports & Leisure,Which 3 Athletics Events Do Woman Not Participate In ,"Hammer, Pole Vault, Triple Jump " -General,"What has 1,792 steps in it?",Eiffel tower,General,"Who said ""I think therefore I am""?",Rene Descartes,General,How did folk singer Roy Harper catch Toxoplasmosis,Kiss of life - to a sheep -General,Vermicelli pasta literally translates as what,Little worms,General,Jean Claude Killy famous in which sport,Skiing,General,"A projecting support built into or against the external wall of a building, typically used in Gothic buildings. A flying … is an arch that transfers the thrust of a vault to a lower support.",Buttress - History & Holidays,In 1953 Queen Elizabeth II was crowned following the death of her father George VI but what was his 'proper'' first name; David - Albert - Louis - Edward - George ,Albert ,General,Lucus Dominitus Ahenobarbus was better known as who,Nero,Music,In Which Country Was Olivia Newton John Born,"Cambridge, England (Went To Oz Aged 5)" -Music,Before Eddie Money Became Famous Was He A New York Cop Or A Pastrty Chef,A New York Cop,General,Who still receives an estimated 25 pieces of junk mail per year at Walden Pond?,Thoreau,Music,"Only 2 Singers Appeared On Band Aid Versions Of ""Do They Know Its Christmas"" What Group Were Thay Both In",Bananarama (Disputable) -Art & Literature,Where is the Louvre located,Paris,Music,What Was Virgin Records First LP Release Back In 1973,Mike Oldfield / Tubular Bells,General,"In an average lifetime, the average American visits a ___ 22 times",Pediatrician - History & Holidays,Which country is the largest exporter of Christmas trees? ,Canada ,Food & Drink,What is the fruit flavour of Cointreau? ,Orange ,General,The thickness of what is given an 'swg' rating,Wire -General,The oldest one in America still working opened in 1829 what,Brewery, History & Holidays,Don Mintoff became which countries first Prime Minister after it became a republic in 1974? ,Malta ,General,Where were tommy lee jones and al gore freshman roommates,Harvard -General,What company used the little aligators as it's symbol on clothing?,Izods, History & Holidays,Who was the leader of the Khmer Rouge?,Pol Pot,Science & Nature, Most tropical marine fish could survive in a tank filled with __________,Human blood -General,Who narrated Jeff Wayne's War of the Worlds,Richard Burton,General,Which English King holds the official record of bastards 21,Henry I,General,In what country would you find Timbouctou,Mali -General,Which war was ended by The Congress of Westphalia,Thirty Years War,General,What year was the Habitat company founded,1971,General,"Which Soap Boasted A Cafe Called ""The Hot Biscuit""",Dallas -General,The constellation Mensa has what English name,Table, History & Holidays,"What type of shoes did Run-D.M.C. sing about, which were what most rappers in the early eighties were into? ",Addidas ,General,"For every tree that is cut for lumber, how much is sold as timber",One eighth -General,"Who, in World War Two, was the Japanese equivalent of 'Lord Haw Haw'",Tokyo rose,General,Cardinal and Ordinal are types of what,Numbers - 1 2 3 - 1st 2nd 3rd,General,What song is sung the most,Happy Birthday -General,Which is the stately home of the Devonshire family,Chatsworth,General,How many blades are there on a kayak paddle,Two,Sports & Leisure,"Who was known as the ""Sultan of Swat""",Babe ruth -General,What line on a weather map links all points of equal pressure,Isobar,General,In the original Star Trek the Horta was a life form based on what,Silicon,General,"Until 1947, what did 'gripe water' contain",Opium - History & Holidays,To What Did The Chant Hell No We Won't Go Refer ,The Vietnam War ,General,What is the term for the distance around a circle,Circumference,Music,"Which White Motown Singer/Songwriter Had Hits With ""Indiana Wants Me"" & ""Theres A Ghost In My House""",R Dean Taylor -General,Aescapalious emblem staff snake Greek Roman god of what,Medicine,General,In what sport is the Charles Brownlow award for fairest player,Aussie Rules Football,General,What is the sum of 4 x 4 x 24 x 44,16896 -General,In what Australian state would you find Bathurst,New south wales nsw,General,There are 15 peaks in Europe higher than Mont Blanc. In which mountain range are they,Caucasus,General,Who had a hit with the song '24 hours from Tulsa',Gene pitney -General,Another name for guardian angels is,Watchers,General,What sport appears in the phonetic alphabet,Golf,General,What does a Hafiz know,Koran by Heart -People & Places,With Whome Do You Associate Lady Falkender ,Harold Wilson ,General,"What do Christians call the place which the Hebrews called Golgotha, (Place of Skulls)",Calvary,Music,Which Group Were Drowning In Berlin In 1982,The Mobiles -General, What is a device to stem the flow of blood called,A tourniquet,General,What country is coffee originally from,Ethiopia,General,What is the fear of new drugs known as,Neopharmaphobia -General,Mel Blanc Provides The Voice Of Which Famous Cartoon Character?,Porky Pig & Others,General,Iguaca National Park lies on the border between Argentina and which other country,Brazil,General,Who wrote the opera Zaide,Mozart -Music,Which Band Took Their Name From A Type Of Fire Engine Manufactured In The 1920's,REO Speedwagon,General,"American money with serial #'s beginning with ""B"" are printed where",New York,Geography,What Is The Worlds Largest Ocean By Area ,Pacific  -Science & Nature,Who discovered x-rays in 1895 ,Rontgen ,Science & Nature,What was the first animal on the endangered species list?,Peregrine falcon,General,Which painters work is the most stolen,Pablo Picasso -General,What shoemaker was an underwriter for rock's 1988 human rights now tour,Reebok,General,Beethoven reportedly poured this over his head to stimulate his brain,Water,Entertainment,What group refused to have their pictures taken while they were not in their makeup?,Kiss -General,Aphallatosis is a mental disorder caused by the lack of what,Sex life,General,Singapore is the capital of ______,Singapore,Music,What Song was George Harrisons first composition on the A Side of a Beatles single?,Something -General,Who invented the radio,Reginald fessenden,General,What german military leader of the afrika korps was known as 'the desert fox',Erwin rommel,General,What is a drug or other substance used to produce unconciousness and insensibility to pain,Anaesthetic -General,Name the first British actress to appear on a British stamp 1985,Vivien Leigh,General,"Who wrote ""words of love"" that the beatles recorded",Buddy holly,General,What is 'mother's ruin',Gin -General,What is a Sam Browne,Military belt,General,The temperature at which a liquid gives off a vapour which can be ignited is called it's ______,Flashpoint,General,Gerry Dawsy became more famous as who,Englebert Humperdinck -General,Which British rock group released a 1990s album called Parklife,Blur,General,In Ireland what is a Gombeen Man,Moneylender,General,Chase chevy chase was the first original cast member to leave which show,Saturday -General,Where is the rock and roll hall of fame,"Cleveland, ohio",General,"Which behaviorist conducted the ""Little Albert"" experiment?",John Watson,Science & Nature,Where Might You Find Your Temporal Lobe ,On Your Brain  -General,Schubert always slept with what on,Spectacles - in case he got idea,General,"Who was known as ""The Ace of Spies""",Sydney reilly,General,What do we more commonly know a 'Tup' as?,Ram -General,U.S. Captials - Rhode Island,Providence, History & Holidays,"According to the lyrics of the famous Christmas song, what was Frosty The Snowman's nose made from? ",A Button ,Music,"Which Song Had The Working Title ""Scrambled Eggs""",Yesterday -Tech & Video Games,"What is the name of the cloud-riding, glasses-wearing koopa in the Super Mario Bros. series? ",Lakitu,Geography,What is the capital of Thailand,Bangkok, History & Holidays,Which T - Rex hit contains the line 'Take a black cat and sit it on your shoulder' ,Ride A White Swan  -General,In which U.S. state is the city of Minneapolis,Minnesota,General,In the Commedia del'Arte who was the daughter of Pantaloon,Columbine,Geography,What country is located between Panama and Nicaragua,Costa rica - Geography,As what is Constantinople now known?,Istanbul,General,Tempera uses water and what to paint with,Egg Yoke,General,What nationally was Mata Hari shot as a spy,Dutch -General,"What U.S. highway is the longest, starting in Cape Cod, Massachusetts going through 14 states, & ending in Bishop, California",Route 6,General,"Who stood at the top with ""stand by your man",Tammy wynette,General,Which American state has a Union Jack on its flag,Hawaii -General,Carson City in Nevada - dubious distinction first what 1924,Gas Chamber used,General,In Ghandi who played the General caused massacre Amritsar,Edward Fox General Reginald Dyer, History & Holidays,Who Became Chancellor Of Germany In 1933 ,Adolf Hitler  -General,In Paris there are two islands - Ile de la Cite and what,Ile St-Louise,General,What is Holland's largest ever flood control project called,Delta plan,General,"Which genetic trait, often passed from mother to son, was first recognised by John Dalton, who was himself a sufferer",Colour blindness -Science & Nature,What Is A Prosthetic ,An Artificial Body Part ,People & Places,By what name is Richard Starkey better known as?,Ringo Starr,General,On a racing form what does the letter u indicate,Unseated rider -Geography,What was the former name of Manhattan's Park Avenue? ,Fourth Avenue ,General,"Acronym for microwave amplification by stimulated emission of radiation, a device that amplifies or generates microwaves or radio waves",MASER,Entertainment,"What was the name of Han Solo's spaceship in ""Star Wars""?",Millennium Falcon -General,St Luke followed what profession before joining Jesus,Medicine,General,Epiphany Christian feast 6th Jan translates from Greek as what,Manifestation,General,Virginia Woolf always did it standing up - did what,Wrote her books -General,The sewing machine was patented in what year,1846,Food & Drink,"A Cocktail Known As TNT Comprises Of Tequila, Neapolitan Brandy, But What Does The Second T Stand For? ",Tia Maria ,General,How did Queen Victoria ease her menstrual cramp pain,Used Marijuana -General,How did captain cook lose 41 of his 98 crew on his first voyage to the south pacific in 1768,Scurvy,General,With what country is prince rainier iii associated,Monaco,General,What pole is colder the South Pole or the North Pole,The south pole -General,What does a hygrometer measure,Humidity,Food & Drink,"Which country house in the south of England gives its name to a summer drink of claret, soda, and sugar? ",Badminton ,General,"What is the name of a floor in a building between floors, especially between the ground and first floors",Mezzanine -General,"Thick, light yellow portion of milk from which butter is made",Cream,General,Who was adolf hitler's mistress,Eva braun,General,In the UK 60% of pets have what,Health Insurance -General,Indians where is sand creek,Colorado,General,To whom is Sleeping Beauty betrothed,Prince charming,General,Hades was god of what,The underworld -General,"Which comedian said'If they liked you, they didn't applaud - they just let you live'",Bob hope,Sports & Leisure,Prior To Joining Manchester Utd In 2007 Which Club Did Cristiano Ronaldo Play For? ,Sporting Lisbon ,General,What is a Kakapoo,Nocturnal New Zealand Parrot -General,Potatoes were fist sold as what,Ornamental Plants,Music,What Title Connects A Hit For The Police And A Film Starring Steve Martin?,Roxanne,General,If a doctor gave you an Ishihara test what is he testing for,Colour blindness -General,Almonds - the nuts - are members of what general family,Peach,General,Company what is the former name of the tonka metalcraft company,Mound metalcraft,General,Koinoniphobia is the fear of,Rooms -General,How long did the thirty years war last,Thirty years 30 years,General,Ignatius Loyola founded which organisation,Jesuits,Geography,What is the largest island in the Indian Ocean? ,Madagascar  -General,For which team will Jensen Button be driving in the forthcoming Formula 1 World Championship motor racing season,Benneton,Food & Drink,Cocktails: Cognac (brandy) and white creme de menthe make a(n) _____________.,Stinger,General,What dictator was the first to be abducted prosecuted USA drugs,General Manual Noriega- Panama -Music,"""Word Up"" Was A Hit For Which Band In 1986",Cameo,General,What two colours are blood cells,Red & white,General,What is the largest dinosaur,Brachiosaurus -General,Who wrote 'a christmas carol',Charles dickens,General,"What did people desperately tried to avoid getting on ""Press Your Luck?""",The Whammy,General,Collective nouns - a spring of what,Pheasants -General,What is a group of this animal called: Antelope,Herd, Geography,Is Dublin in Northern or Southern ireland?,Southern,General,If you were in Lou Grants office what city are you in,Los Angeles -General,Whose original back up group were The Blue Moon Boys,Elvis Presley,General,Mens world championships started 1903 but 1934 women what,Gymnastics,Geography,What is the capital of Mozambique,Maputo -General,What kind of tree did James Markham obtain a patent for,Peach,Science & Nature,What color spots has the common ladybird ,Black ,Science & Nature,Snakes are reptiles. What are frogs?,Amphibians -General,What healthful practice is chewing an acacia twig a substitute for in India,Brushing teeth,General,Who won Best Actress for her role in Hud,Patricia neal,Art & Literature,A russian abstract movement begun in the early twentieth century. It employs an analytic vision based on fragmentation and multiple viewpoints.,Cubism -General,Which region of France do Germans call Lothringen,Lorraine,General,What celestial body gets its name from the Greek long haired,Comet,People & Places,Who Was the First Woman To Be Officially Ranked A Billionaire In The USA? ,Oprah Winfrey  -General,Who was king of England from 1422 until 1461,Henry Vl,General,What was the name of the first U.S. atomic submarine,Nautilus,General,What is a group of turkeys,Rafter -Science & Nature," In Pakistan, goats are often sacrificed to improve the performance of the __________",Stock market,General,If an Italian was having Pranzo what would they be having,Lunch,General,Which level of the Earth's atmosphere is the closest layer to its core?,Hydrosphere -General,"Which novel begins ""The family of Dashwood had been long settled in Sussex""",Sense and sensibility,General,On which river does Berlin stand,Spree,General,A word like 'NASA' formed from the initials of other words is a(n) _________.,Acronym - Geography,Name the longest river in Nigeria.,Niger,General,Augusto Pinochet was the ruler of which country,Chile,Food & Drink,"Which Food Has A Name, Which Literally Means On A Skewer? ",Kebab  -General,Who developed the method school of acting,Konstanstin Stanislavsky,General,From what plant is opium derived,Poppy,General,What is the flower that stands for: assiduous to please,Sprig of ivy with tendrills -General,"Country 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,General,Mottephobia is the fear of,Moths,General,The pop group Satan's Jesters found fame under what name,The Rolling Stones -Music,Who had a Number 1 in 1999 with the song 'Fly Away'?,Lenny Lravitz, History & Holidays,"Which U.S. president said, ""The buck stops here""?",Truman,General,What show was a spin-off of Transformers?,Go-Bots -General,She is the Chinese name of what year (animal),Serpent,General,Which sportswear company is named after a Greek Goddess,Nike,General,A biography written by the subject is called a ______,Autobiography -Geography,What Is The National Airline Of Greece ,Olympic Airways ,General,Which famous building in New York lights up a red heart each St Valentine's Day ,Empire State Building ,Music,Teardrop Explodes Was Fronted By Who,Julian Cope -General,A structure that forms the arms of a cross-shaped church.,Transept,General,In 1965 they urged you to keep on dancing,The gentrys,General,What was the profession of the character who heard the Blow Out,Horror film -Food & Drink,What sort of fish is a kipper? ,Herring ,General,Ilium is the Latin name for what ancient city,Troy,General,The Welland Canal links Lake Erie to which other of the Great Lakes,Lake ontario -General,How many hours a day does a ferret sleep,20,General,The human body contains enough carbon to make ______,900 pencils,General,Which Comedian Used To Have A Cemedy Partner Known As Fanny The Wonderdog,Julian Clary -General,Any month that starts on a Sunday will have a ______________ in it,Friday the 13th,General,In which country is the style of beer called LAMBIC brewed,Belgium,Food & Drink,In The World Of Music How Are 'Cheryl James & Sandra Denton'' More Commonly Known ,Salt & Pepper  -Science & Nature,What is a shark's skeleton made of ,Cartilage ,Music,What Were The 2 Top Ten Hits For Actor Turned Singer Bruce Willis,Respect Yourself & Under The Boardwalk,General,Deuteronomy what is the capital of illinois,Springfield - Geography,"Where is the land of 10,000 lakes?",Minnesota,Food & Drink,Which drink is served in a Schooner? ,Sherry ,General,The Shining Path is a revolutionary movement in which country,Peru -Science & Nature, All mammals have __________,Tongues,General,What is the worlds largest airline,Aeroflot,General,"In an average lifetime, the average American ___ 410078 times",Laughs -General,What is another name for Plexiglass,Perspex,General,Who was the first woman to swim the English channel in both directions,Florence chadwick,General,Slang:A promiscuous woman,Slapper -General,Androphobia is the fear of,Males,General,To which U.S. state would you travel to sample authentic Cajun cooking,Louisiana, History & Holidays,1955 saw the first ever Disneyland open in which U.S. state ,California (Annaheim)  -General,What countrys national flower is the wattle,Australia,General,What shop outnumbers MacDonald's 3 to 1 in the USA,Adult Bookshops,Science & Nature,What Is The Largest Living Bird? ,The Ostrich  -Music,"Which 60's British Record Label Used The Slogan ""Proud To Be Part Of The Industry Of Human Happiness""",Immediate,General,In what village do Tom Sawer and Huckleberry Finn live,St Petersburg,General,What nationality was tennis player Michael Chang,American -General,What is the only duty of police Gracthenvissers in Amsterdam,Motorists in canals,General,Dantes Inferno what crime was done by those in the lowest level,Betrayal,General,Vladamere Ashkenazy plays what musical instrument,Piano -General,"Whose big band's signature tune was ""One O'Clock Jump""",Count basie,General,Who was the female star of 'The Graduate',Anne bancroft,General,How long does it take for sunlight to reach earth,Eight minutes -General,Who composed and played the score for the film Genevieve,Larry Addler,General,"What allowed mexican, andean and some north american indians to hurl their spears a great distance",Atlatl, History & Holidays,What was the name of the show that featured Sniglets? ,Not Necessarily The News  -General,"What does ""Rx"" mean to a pharmacist",A prescription prescription,General,Pigs Eye was the original name of what Minnesota city,St Paul,Science & Nature,What Sort Of Animal Was Tarka ,An Otter  -General,What is the full name of Batman's butler,Albert Pennyworth, History & Holidays,In what war did the jet fighters first battle each other?,The Korean War,General,What is a group of gulls called,Colony -General,What was the name of princess leia's home planet,Alderon,General,"Of what country did Napoleon make his brother, Louis, king",Holland,Music,What Song Features The Lyric “ Stars In Your Eyes Little One Where Do You Go To Dream,Land Of Make Believe -Science & Nature,This comet appears every 76.3 years.,Halley,General,Who invented the difference engine,Charles babbage,General,What is the super bowl trophy called,Vince Lombardy trophy -General,Who led the children of israel out of egypt,Moses,General,"Which Eastender Provided The Voice Of ""Dipsy"" In The Teletubbies",Rudolph Waker / Patrick Truman,General,"In the recent television series Batman, who played the part of the siren",Joan collins -General,A person who sells fruit etc. from a barrow,Costermonger,General,Bunyon wrote Pilgrims Progress - where,Bedford Jail, History & Holidays,"Which word, associated with Christmas comes from a Greek word meaning 'we can act anything'' ",Pantomime  -General,What nationality is golfer Paul Azinger,American,General,Of which Spanish province is Seville the capital city,Andalucia,Science & Nature,Which archaic imperial unit of measure is equivalent to 54 gallons? ,A Hogshead  -Toys & Games,Large plastic animals gobbled marbles in this game.,Hungry hungry hippos,Science & Nature," Not all leeches are bloodsuckers. Many are predators which eat earthworms, etc. The nearest relatives of leeches are __________",Earthworms,General,"This is the animal that never learns, ""Trix are for kids!""",Rabbit -General,Which car company tried harder because they were number two,Avis,Art & Literature,What Was The Only Novel To Be Written By Margaret Mitchell ,Gone With The Wind ,General,Where on the body is the vena cava,Heart -Sports & Leisure,In What Make Of Car Did Michael Schumacher Make His Formula One Debut In 1991 ,Jordan ,General,Who said I have had a talent for irritating women since I was 14,Marilyn Munroe, History & Holidays,What Is The Name Given To A Group Of Witches ,A Coven  -Art & Literature,Sherlock Holmes lived at 221b _____ street?,Baker,Music,Which Radio Station Bought XFM In 1998,Capital Radio,General,George Simenon created Maigret - what nationality was he,Belgian -General,What's the name of the largest area of the brain,Cerebrum,General,In what shaped ring does sumo wrestling take place,Circular,Geography,What Mountain Range Seperates Europe & Asia ,The Urals  -General,What island country do Cyprians call home,Cyprus,General,63% of Americans spend five minutes a day looking for what,TV remote control,Science & Nature," According to experts, __________ don't like to head straight for anything. For safety, they may run past and sweep around from the side.",Squirrels -Music,In 1975 Which Female Singer Was Officially Crowned The Queen Of Disco By The Mayor Of New York City,Gloria Gaynor,General,In 1989 michael bolton won a grammy with this song that asked a question,How,Food & Drink,What is the main flavour in the following alcohols 'Cassis'? ,Blackcurrant  -General,What American state has the most outhouses,Alaska,General,"The first Modern Olympics were held in Athens in 1896, where in 1900 were the second games held",Paris,General,Until 1998 by law The QE hotel must do what if you rent a room,Feed your horse freely -Science & Nature,What Do The Initials MG Stand For ,Morris Garages ,General,What is the name of harvard university's satirical newspaper,Lampoon,General,Aruba is an island under which kingdom,Netherlands -Science & Nature,"What was the claim to fame of laika, the russian bitch ",The first dog in space ,General,Which U.S. state is nick named 'the First State' because it was the first to ratify the American Constitution in 1787,Delaware,General,Phthiriophobia is the fear of,Lice -Geography,"Formally called Kiritimati, ____________________ in the Indian Ocean is 52 square miles.",Christmas island,General,What is a female deer,Doe,General,When was the gas turbine invented,1849 -General,"In ""Running Scared,"" how much money does Billy Crystal's character inherit from his dead aunt Rose?",50000,General,What do enzymes in a beer's mash convert the starch into,Sugar,Music,Which Style Of Jazz Was Pioneered By Charlie Parker & Dizzy Gillespie,Bebop -General,What is the richest natural vegetable food,Soya bean,General,Which eighties fashion accessory consisted of a saftey pin and small beads?,Friendship pins,Music,"From the 1980's name the song and artist “Cowboy No. 1, A born-again poor man's son, On the air America, I modelled shirts by Van Heusen-yeah”",Frankie / Two Tribes -Music,"Which Songwriters Connect David Bowie, Chris Farlowe , Melanie & Marianne Faithful",Mick Jagger & Keith Richards,General,What do the words 'par avion' on the outside of an envelope mean,Airmail,General,In Greek mythology who rowed the dead across the river Styx,Charon -General,What did Vasco Nunez de Balboa discover when he crossed the Panama in 1513,Pacific ocean,General,Who was responsible for the American style of spelling ?,Noah Webster,General,"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 -General,"Who composed ""Invitation to the Dance "" in 1819",Weber,General,"Whuch Band Before Becoming Famous Used To Go By The Name Of ""Feedback""",U2,Music,What was the original name of the group 'Chicago'?,Chicago Transit Authority -General,What branch of mathematics is named for the Latin for pebble,Calculus, History & Holidays,This racist organization was formed in Tennessee in 1865.,Ku Klux Klan,General,What is the shortest French word with all five vowels,Oiseau -General,What is the name for the group of men who elect a Pope,College of Cardinals,General,"What's the largest island in the British Isles, with 84,200 square miles",Great britain,Music,Which Member Of Boyzone Has Had solo Hits With “When You Saying Nothing At All” & “If Tomorrow Never Comes”?,Ronan Keating -General,Which American female vocalist had a hit in 1985 with 'We Don't Need Another Hero',Tina turner,General,What is the Capital of: Australia,Canberra,General,What was the name of the drug used as an anti-cancer agent and extracted from the blue periwinkle,Vincristine -General,How many teeth does a walrus have,Eighteen,General,Which city in Central Alabama was the first capital of the Confederacy (1861) during the Civil War,Montgomery,Food & Drink,What is Japanese Drink 'Sake' Made From ,Rice  -Music,"Who Started The 70's On A Sober Note With ""When I'm Dead And Gone""",McGuiness Flint,General,"The Film ""10 Things I Hate About About You"" Is Based On Which Shakespeare Play",The Taming Of The Shrew,Music,Who Had Love In Their Tummy With Yummy Yummy Yummy,Ohio Express -General,The screw was invented after the _______,Screwdriver,General,What national flag has the largest animal emblem - a lion,Sri Lanka,General,"The ""Oyster"" watch is a famous model produced by what top Swiss watchmaker",Rolex -Music,Whose debut album was called Different Class?,Pulp, History & Holidays,Also In 1968 Which British Coin Was Introduced To Replace The Ten Shilling Note ,50 Pence Piece ,General,The human body contains enough of what to kill all the fleas on an average dog,Sulphur -General,Ichabod mudd was what to captain midnight,Mechanic,General,"Any substance that produces disease conditions, tissue injury, or otherwise interrupts natural life processes when in contact with or absorbed into the body",Poison,General,Lily Cauchoin became famous as who,Claudette Colbert -General,Britain's first _______ was installed in Harrods in 1878,Escalator,General,Who was the giant wife of the Norse god Njord,Sonja, History & Holidays,In which year did the Queen make her infamous 'Annus Horriblis'' Christmas broadcast ,1992  - History & Holidays,Who killed who in 1963 in what is generally regarded as the first live televised murder? ,Jack Ruby killed Lee Harvey Oswald ,General,What kind of car was Kitt in Knight Rider,Pontiac Trans Am,General,In Frankfort Kentucky its illegal to shot what off a policeman,His Tie - Geography,What is the capital of Nicaragua?,Managua,General,What language (not dialect) has the most characters in it,Cambodian,General,Jacinth or Hyacinth are alternative names of what mineral,Zircon -General,Who's Auto Biography Is Entitled “Polly Wants A Zebra”,Michael Aspel,General,In which year did three German emperors reign?,1888,General,Crystallite is used in what sport,Snooker - Pool balls made from it -General,"What's short for ""light amplification by stimulated emission of radiation""",Laser,General,A shroff is an expert in what,Testing coins,General,"In the film 'titanic', who did leonardo dicaprio and kate winslet play",Jack -General,Japanese Soya noodles are made from what,Buckwheat,Technology & Video Games,Who invented the Telephone ?,Alexander Graham Bell,Technology & Video Games,What country did the operating system 'Linux' come from?,Finland -General,Reed Richards was a member of which Superhero team?,Fantastic Four, History & Holidays,Who got slimmed first in Ghostbusters? ,Peter Venkman ,Music,"Which Over The Top Performer Played Piano On The 1986 Wham Hit ""Edge Of Heaven""",Elton John -General,What tree is mentioned just once in the Bible,Poplar,Sports & Leisure,In Which Sport Do Players Sweep Ice ,Curling ,General,Red flags flown by French ships - Joli Rouge origin of what name,Jolly Rodger -General,"On maps, what is the technical name for the 'you are here' arrow?",Ideo locator, History & Holidays,What Event Killed On In Four People In Europe In The Fourteenth Century? ,The Black Death Or Bubonic Plague ,General,The yo yo both the toy & its name originated where,Philippines - History & Holidays,Which group released the album 'Dark Side of the Moon' ,Pink Floyd ,General,Which californian desert drops below sea level,Death valley,Science & Nature,What is the chemical symbol for tungsten?,W -General,In Greek mythology what event did Paris trigger when he took his lover Helen home with him,Trojan war,General,The dog breed borzoi gets it name from the Russian for what,Fleet or swift,General,Atephobia is a fear of what,Imperfection -Sports & Leisure,Which Football Manager Was Reprimanded In 2006 after Criticising Female Officials? ,Mike Newell ,General,Cat's _____ glows under a black-light,Urine, History & Holidays,Which English Monarch used radio to start the tradition of The Christmas Broadcast ,George V (1932)  -General,Who sang 'all i want to do',Sheryl crow,General,Who was the American psychologist known for his experiments with hallucinogenics in the 60s,Timothy Leary,Science & Nature,Horse Is To Equine As Pig Is To What? ,Porcine  -Music,Name 3 Of The Four mebers Of Culture Club,"Mickey Craig, Boy George, Roy Hay, Jon Moss",General,What is the currency of ecuador,Sucre,General,Only dead people can be on US postage stamps except who,Astronauts -General,In the USA on January 1 you have the greatest risk of what,Being Murdered,General,The word 'hacienda' comes from which language,Spanish,General,What does the term 'dj' mean,Disc jockey -General,Popular 1970's tv series '_____ and the man',Chico,General,Who marched his elephants through the Pyrenees & the Alps in 218 b.c.,Hannibal,General,Which classic British car company of the 1940s and 1950s now produces armoured vehicles for the British military,Alvis -Geography,Artificial PKN Fertilisers Were Introduced In Britain In 1926. What Are The Constituent Parts ,"Phosphorus, Potash & Nitrogeon ",General,Each day 3000 Americans do what for the first time,Start Smoking,General,Which Popular Fictional & TV And Movie Characters Live At 118 West Wallaby Street,Wallace & Gromit -General,Majorca belongs to which island group,Balearic Islands,General,America what is the second most common word said before die,Shit,General,What is a figure with eight equal sides called?,Octagon -General,To which family of fishes does the Sprat belong,Herring,Music,Which Festival Was Notoriously Captured On Film In Gimme Shelter,Altamont,General,"________ 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 -General,What country's border would an Azerbaijani reach by hiking due south across rhe Talish Mounains,Iran's irans iran,General,Which winter game is known as the roaring game,Curling,Science & Nature,"In 1905, Albert Einstein wrote that E=mc2. What theory is commonly associated with this equation? ",The Theory Of Relativity  -General,What is the unabomber's real name,Ted kaczynski,Art & Literature,Who Wrote The Murder Of Roger Ackroyd ,Agatha Christie ,Sports & Leisure,What Numbers Are Either Side Of 20 On A Dartboard ,5 And 1  -General,Douglas Adams said what is the best spacecraft propellant,Bad News - it travels the fastest,Entertainment,Charles Boyer inspired a cartoon skunk. Who,Pepe le pew,General,What French city is famous for its champagne,Reims -General,Baseball: the Milwaukee _______,Brewers,General,Lovely Rita meter maid appeared on which Beatles album,Sergeant Peppers,Geography,The official state musical instrument in South Dakota is the _____________,Fiddle -General,What's the capital of Senegal,Dakar,Mathematics,If you cut through a solid sphere what shape will the flat area be?,Circle,General,What musical show discovered leslie uggams,Sing along with mitch -General,"Candy named for Mars and Murrie, the company's founders.",Mms,General,Which Countries Men Use The Largest Amount Of Deodorant,Japan,General,The clavicle is more commonly known as which bone?,Shoulder blade -General,What is a twenty five year anniversary,Silver anniversary,General,What large sea is between Europe and Africa,Mediterranean,General,What was the first animal on the endangered species list,Peregrine falcon -General,Windor Castle Employs A Fendersmith What Is The Job Of A Fendersmith,Tends & Lights The Fires,Art & Literature,How many books are there in Anne Rice's vampire series?,Five,General,Which song was a hit for Elvis Costello in 1979,Oliver's army -General,"Who was the attorney who defended jack ruby, oswald's assassin",Melvin belli,General,"Maiden, Mother of All, Footman all parts of what",A Spinning wheel,General,In the English legal system how many judges form a quorum in the Court of Appeal,Three -General,Who were the legendry founders of Rome,Romulus and remus,General,What novel did Daphne du Mauruer write about Cornish Shipwreckers,Jamaica inn,General,"Which Shakespeare Play Features The Line ""All The Worlds A Stage And The Men And Woman"" Merely Players",As You Like It -General,"Which former drama critic of the Observer devised the revue ""Oh Calcutta""",Kenneth tynan,General,A cough releases an explosive charge of air that moves at speeds up to how many miles an hour,60,General,"Other than england, which european country took part in the 1996 cricket world cup",Netherlands -General,Coq Bang can be found in which country,Vietnam,General,Who named a city after his horse Bucephalus,Alexander the Great,General,What film found bruce willis at 'flotsam paradise',Fifth element -General,"After Caesar, who did Cleopatra woo",Mark antony,General,In downtown Lima Peru there is a brass statue of who,Winnie the Pooh,General,"Who was nicknamed ""Joltin Joe""",Joe dimaggio -General,Who won the World Series in 1987,Minnesota twins,General,Who won the world soccer championship in 1974,West germany,General,Which country is indicated by the car identification letters WAL,Sierra leone -General,"Carole king sings 'you just call out my name, and you know wherever i am i'll come running ..'. what is the song title",You've got a friend,General,"What are Cobol, Fortran and Ada types of",Computer languages,General,Which city is served by Ringway Airport?,Manchester -Music,Mike Oldfield Had A Shadow Of Light Or A Moonlight Shadow,Moonlight Shadow,Sports & Leisure,How Long does a game of field hockey last ,70 Mins , Geography,What country has the biggest population?,China -General,"What does the abbreviation BP, used in hospitals, stand for",Blood pressure,General,Of which country was Andreas Papandreou prime minister,Greece,Music,Which UK Number One By Marvin Gaye Was Written By Norman Whitfield & Barret Strong,I Heard It Through The Grapevine -General,Prospective Italian grave diggers have to take what test,Exhume - dig up a body, Geography,What is the basic unit of currency for Bahamas ?,Dollar,General,Which song was released by Billy Joe Royal and written by Joe South,Down in -Science & Nature,Which Italian Companys Emblem Features A Raging Bull ,Lamborghini ,General,Which Band Have Spent The Most Weeks In The UK Singles Charts In One Year With An Incredible 134 Weeks (2008),Oasis,General,What in Japan is a Mawashi,Sumo wrestlers belt -Music,Name 2 Of The 4 Original Members Of The Ramones,"Joey, Johnny, Dee Dee & Tommy",General,What is a group of herons,Darkness,General,Who was alexander the great's wife,Roxana - History & Holidays,What was the name of the government newspaper in ancient Rome ?,Acat Diurna (Daily Happenings),Sports & Leisure,The name of the only weapon in women's fencing?,Foil,General,What gemstone was reputed to heal eye ailments,Emerald -General,What country was once named New France,Canada,General,How many days can a us tourist stay in south korea without a visa,Fifteen,General,Which was the first animated full-length cartoon,Snow white -Science & Nature,What element has the periodic table name Sb ?,Antimony,General,What name did Octavius adopt on becoming the first Roman Emperor in 27 B.C.,Augustus,General,Franz Halls The Laughing Cavalier - what's the paintings real title,Portrait of a man -Science & Nature, Minnows have teeth in their __________,Throat,Food & Drink,"Cocktails: Bourbon, sugar and mint make a(n) ___________.",Mint julep,General,What job does the Gaffer do in the film industry,Chief Electrician - History & Holidays,Where were the first books printed?,China,General,What does RAMDAC stand for,Random access memory digital to analogue,General,"What product built hershey, pennsylvania",Chocolate -Geography,The highest point in Pennsylvania is lower than the lowest point in ______________,Colorado,General,Operation Urgent Fury was the US invasion of where,Granada,General,Who Was Boxing's First Ever Black World HeavyWeight Champion,Jack Johnson -General,Where is the house of seven gables located,Salem,General,What is the fear of fears known as,Pantophobia,Science & Nature, A cow can't __________ until she's given birth to a calf.,Give milk -Food & Drink,Which village in County Antrim gives its name to a brand of Irish whiskey produced there and at a companion distillery in Coleraine? ,Bushmills ,General,"In The Early 1980's Which Television Personality Was Briefly A Backing Singer For The Band ""Dawn Chorus"" And The Blue Tits",Carol Vorderman,Music,Who guested with Dire Straits on the Money For Nothing track?,Sting -General,What is a group of squirrels called,Dray,General,What actor was freshman college roommate to Al Gore,Tommy Lee Jones,General,Barrel sizes - there are 216 gallons in a what,Tun -General,"What was the name of the Other short-lived spinoff of ""Three's Company""","""Three's a Crowd""",General,"This sport gave us the term ""Hang Ten.""?",Surfing,General,The first what was called The Original,Purpose built lifeboat -General,"What is Dulce Base, New Mexico infamously associated with?",Secret Alien/Human Base for Experiments on Humans,Sports & Leisure,In which city is the Hockey Hall of Fame located?,Toronto, Geography,What is the basic unit of currency for Syria ?,Pound -Geography,What river is Liverpool on,Mersey,Science & Nature,What Trick Does The Mirror Orchid Play On The Male Bee ,Flower Resembles A Female Bee ,General,"What ship was found drifting in 1872, but all the crew had disappeared",Marie celeste -General,Where did Napoleon suffer his final defeat,Waterloo,Food & Drink,Approximately How Many Coffee Beans Make Up An Expresso Measure ,40 ,General,"In the TV series The Six Million Dollar Man, what kind of man was Steve Austin",Bionic -General,"Actress Fenella Fielding's late brother was a famous comedian, what was his name",Marty feldman,Music,"Who Sang Songs About Rosie, Caroline & Desiree","Neil Diamond (Cracklin Rosie, Sweet Caroline, Desiree)",General,Which month was named after julius caesar,July -Music,Hand On Your Heart Was A Hit In 1989 Name The Singer,Kylie Minogue,General,"What does the acronym ""cpu"" stand for",Central processing unit,General,"In alphabet radio code, what word is used for 'c'",Charlie -General,How long is a diamond anniversary,Fifty years,General,What was Hilary Clinton's maiden name,Rodham, History & Holidays,"Which Bill Haley song, which featured in the 1954 film _The Blackboard Jungle_, became the U.K.'s first Rock and Roll number one ",Rock Around The Clock  - History & Holidays,In Sabrina The Teenage Witch What Is The Name Of Sabrina's Cat ,Salem ,General,Which 19th century Russian chemist formulated the Periodic Table of Elements,Mendeleyev,Food & Drink,From what is the liqueur kirsch made?,Cherries -General,How many hurdles are there in a women's hurdle sprint,Ten,Music,"Whose Greatest Hits Album Was Entitled ""Don't Bore Us With The Chorus""",Roxette,General,Which state forms an enclave at the heart of the city of Rome,Vatican city -General,Which Fashion designer launched the 'Space Age Look' in the 1960's?,Pierre Cardin,General,Specifically ( And You Must Be Very Specific ) If You Comitted The Crime Of Uxoricide What Very Naughty Thing Have You Done?,Killing Your Wife,General,Who was abdul kassem ismael in tenth century persia,Grand vizier of persia - History & Holidays,Who was the founder of Live Aid? ,Bob Geldof ,General,Lucius Tarquinius Superbus was the last king of where,Rome,General,What was the worlds first televised murder,Ruby killing Oswald -General,In which 1949 film does Alec Guinness portray 8 members of the D'Ascoyne family,Kind hearts and coronets,General,By Law Lexington Kentucky what can't you carry in your pocket,Ice Cream,General,For what is the Italian town of Carrara world famous,Marble -General,If you dial 123 in the UK what service do you get,The speaking clock,General,Who opened the circus 'The Greatest Show on Earth' in Brooklyn in 1871,Phineas barnum,General,"Which boxer's nickname was ""Smokin' Joe""",Joe frazier -General,Dodie Smith wrote what book (later filmed by Disney),101 Dalmatians,General,What bit of Bobby Goldsboro syrup focused on a dying young wife?,Honey,Music,Which Song Gave Hanson A Transatlantic No.1 In 1997,Mmmm Bop -Sports & Leisure,In which sport must the ball have a diameter of at least 42.67 millimetres and weigh no less than 45.93 grams? ,Golf Ball ,General,What is Chinese checkers played with,Marbles,Science & Nature,What Do The Initials DB Stand For In Conjunction With Aston Martin ,David Brown (1 Time Owner)  -Science & Nature, A __________ cannot jump if its tail is lifted off the ground. It needs its tail for pushing off.,Kangaroo,General,And he was born in which country,India,General,Medicinal root of a plant found in E.Asia and N.America,Ginseng -General,Blanco Gaucho Excelsior Nutcracker Cassette types of what,World Cheeses,Music,"Which Bands Reunion Album Was Titled ""Hell Freezes Over""",The Eagles,General,How many times was Joe diMaggio named most valuable player,Three -General,"Aarchie Moore, was world champion in what sport from 1952 1962",Boxing,General,"On the london underground, which station has a different name on two of its platforms",Bank and monument,General,The commander of the Apollo 11 command module & the first woman shuttle commander share this same last name,Collins -General,Which dog is named for the German word for muzzle,Schnauzer,General,Who had a hit with 'Stand By Your Man',Tammy wynette,General,What are the two main ingredients of a Lyonnaise sauce,White wine & onions -General,What was the name of the dog owned by nick and nora charles in the thin man,Asta,General,What American Indian tribe currently has over 300000 members,Cherokee,Food & Drink,What color is a Remy Martin bottle,Green - History & Holidays,Which Actress Played Emma Peel In The Avengers ,Diana Rigg ,General,What kind of 'mate' produces a tie in a chess game,Stalemate, History & Holidays,What Is Traditionally Supposed To Happen On Halloween ,Witches Come Out  -General,Who was Dan Dare's greatest enemy in the Eagle,Mekon,General,What was the name of Facts of Life's Mrs. Garret's gourmet food shop?,Edna's Edibles,General,What are truffles - highly prized as food,Fungi -Music,Which 3 Surnames Name The Group Responsible For The Resurrection Shuffle,"Ashton, Gardner And Dyke",General,What australian city had the country's first steam and electric trains,Melbourne,Science & Nature,What Do The Initials IATA Stand For ,International Air Transport Association  -General,What is a south african coin containing 1 troy ounce of gold called?,Krugerrand,General,Which Somerset Maughn novel is considered autobiographical,Of Human Bondage,General,What make and model of car does Nash Bridges drive?,A 1971 Plymouth Barracuda convertible. -General,Which UN Secretary-General was killed in an air crash in 1961,Dag hammarskold,General,Who sang the theme tune to the James Bond film Tomorrow Never Dies,Sheryl crow,General,What releases an explosive charge of air that moves at speeds up to 60 mph,Cough -Science & Nature,What Colour Are The Egg's Of The Redstart ,Usually Blue With Greenish Tinge ,General,Where is the famous Blaze nightclub located?,Melbourne,General,What is the most common atom in the universe,Hydrogen -General,From what group of wild plants are cereals derived,Grasses,General,Arthur Paul designed which icon - appears on a magazine,Playboy bunny, History & Holidays,Who Released The 70's Album Entitled Live at Leeds ,The Who  -Science & Nature,What is the proper name for falling stars,Meteors,General,Who was accused of smuggling $225 million out of the Philippines,Imelda marcos,General,What inside corn makes it pop,Water -General,"Where was the earthquake on september 29, 1969",Tulbach,Technology & 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,General,Destruction of the natural environment,Ecocide -General,What canadian province was largely taken over by irish rebels for a month in the 19th century,Ontario,General,"Bechemel, espagnole and bearnaise are types of which food",Sauce,General,Who starred in 'city lights',Charlie chaplin -General,What shrinks on some birds to allow them to carry additional food on long flights,Brains,General,And which word comes second,Paris,General,In Arkansas it is illegal to serve what drink at a party,Petrol - Gasoline -General,"Common, English, Flemish, Running and Stack types of what",Brick wall bonds – how laid,General,What is the first name of Mr Toad - in Toad of Toad Hall,Thaddeus,Science & Nature,What branch of science studies the motion of air and the forces acting on objects in air?,Aerodynamics -General,What late motowner was memorialized in the diana ross hit missing you,Marvin,General,"Which sea, with no placename in its name, lies between Korea and Shanghai",Yellow,General,Who was the only survivor of custer's last stand,His horse -General,What is the winter counterpart to estivation,Hibernation,General,Who did henry winkler play in 'happy days',Digital video disc,Science & Nature," 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 -General,This city is the capital of Armenia?,Yerevan,General,"On the chinese calendar, the year 2000 will be the year of the what",Dragon,General,Nossa Senhora da Aparecida is Patron Saint of which country,Brazil -General,"What is the first sign of the zodiac, symbolized by the ram",Aries,General,What is the common name for corporations formed to act as trustees according to the terms of contracts known as trust agreements,Trust companies,General,From which animal is 'ambergris',Sperm whale -General, This word is used as the international radio distress call.,Mayday, History & Holidays,*How many people resided in the Brady house on The Brady Bunch?* ,9 , Geography,What is the basic unit of currency for Georgia (country)?,Lari - History & Holidays,Who was the first African-American female to win a Wimbledon Tennis event? In both 1957 And 1958 ,Althea Gibson ,General,What combination of nitrogen and hydrogen is in part produced commercially as a by-product of coal-gas manufacturing,Ammonia,General,What Milton Bradley game wants to make you a millionaire tycoon,Life -General,What head of Government was the first to give birth in office,Benazir Bhutto – Pakistan,General,Only 55% of men do what,Wash hands after toilet visit,General,Which element has the chemical symbol Cs; capital C lower-case s,Caesium -People & Places,Which British Jockey Was Jailed For Tax Evasion ,Lester Piggot ,General,Name Ladysmith Black Mambazo's chart-topping album of 1986,Graceland,General,What ailing founding father was carted to the Constitutional Convention in a sedan chair carried by four prisoners,Benjamin franklin -General,"Infectious virus disease of the central nervous system, sometimes resulting in paralysis?",Poliomyelitis,General,What is the Capital of: Germany,Berlin,General,In 1961 Anton Geesink was the first non Japanese to do what,Win a Judo title -General,The half wit Smike appears in which Dickens novel,Nicholas Nickleby,General,Who married prince albert,Queen albert,General,How many continents must a sport be played on before the IOC will consider making it an Olympic event for men,Four -General,In Australian slang what is a dishlicker,Dog,General,Who wrote the Booker Prize-winning novel Oscar and Lucinda,Peter carey,Music,"In What Year Was The Song ""Hello Goodbye"" At No.1",1967 - Geography,"What lake is approximately 394,000 sq. km in area?",Caspian Sea,General,As what is America Online better known?,AOL,General,"The 1996 Movie ""The Cable Guy"" Was Actually Directed By Which Other Actor / Comedian",Ben Stiller -General,11:37 pm In military time is how many hours,2337,General,What was the earliest known symbol of christianity,Fish,General,How long passed from the making of the first zipper & its marketing,Fifty five years 55 years -General,Where is the space needle,Seattle,General,What was the penalty (in britain) in 1810 for stealing a pocket handkerchief,Hanging,General,What is a group of squirrels,Dray -General,What is a group of ants,Colony,General,There are more bald eagles in what Canadian province then there are in the whole U.S.,British columbia,General,What colour is the danger flag in motor racing,Yellow -Sports & Leisure,Who threw their Olympic Gold Medal in a Kentucky River after being refused a meal at a diner because of his colour ,Casius Clay / Muhamed Ali ,General,In USA 20s Mary 50s Linda 70s Michelle what most pop 90s name,Ashley,Science & Nature," The word ""struthious"" refers to something that resembles or is related to __________",Ostriches -Music,"Who Composed The Rag, The Entertainer Used As The Theme To The Sting",Scott Joplin,General,In the theatre what do the initials FOH stand for,Front of House,General,In which American State is Stanford University',California -General,How Is “ Alberto De Salvo ” Better Known?,The Boston Strangler,General,Which was the first japanese city bombed in 1945,Hiroshima,General,Name the largest gland in the human body.,Liver -General,What are padmasana sirsasana and savasana,Yoga Positions,General,What river were the Joan of Arc's remains cast into,The seine seine,General,"In Greek mythology, who had a ship with a beam hewn from the 'speaking oaks of dodona'",Atlanta -General,If you have a viral infection of the parotid glands what is it,Mumps,General,Under Mississippi law there cannot be a female what,Peeping Tom,Science & Nature,What Type Of Bird Is A Teal ,Duck  -General,The Italian for tail what comes at the end of a musical score,Coda, Geography,Which mountains are regarded as the east border of Europe ?,Ural,General,"Who directed the film ""One Flew Over the Cuckoo's Nest""",Milos forman -General,What is the flower that stands for: poetry,Eglantine,General,Which island is known to its inhabitants as Kerkyra,Corfu,Food & Drink,"What is the name of the turkish dish of vine leaves filled with rice, chopped meat and onions? ",Dolmas/ Dolmades  - Geography,On the banks of which river is the Taj Mahal?,River Jumna,General,Who wrote the Summa Theologica,Thomas aquinas,General,Bib-label Lithiated Lemon-Lime Soda better known as what,Seven Up - History & Holidays,Snarf' and 'Liono' are both characters from what famous 80s cartoon show? ,Thundercats ,Sports & Leisure,Hockey: The Calgary __________.,Flames,General,Who was Bonnie Parker's partner,Clyde barrow -General,Peter Sellers is best known for his role as Inspector _________,Clouseau,General,In Chinese mythology what is Taimut,A Dragon,General,What blonde was the subject of the four most expensive Andy Warhol works sold at auction,Marilyn monroe -General,In what Australian state would you find Moe,Victoria,General,Term applied to a migratory people of southern China,Hakka,Geography,In which city is saint paul's cathedral ,London  -General,What 17th Century pirate ended up a governor of Jamaica,Sir Henry Morgan,General,What would you be doing if you were suffering from somnambulism,Sleep Walking,General,Your eyeballs are 3.5% what,Salt -Sports & Leisure,Name 1 Country Where Badminton Is The National Sport ,Malaysia & Indonesia ,General,What is another name for crude oil,Black gold,General,What is the top selling candy bar from vending machines,Snickers -General,Which two South American countries do not share a land boundary with Brazil,Chile & ecuador,General,Who Has Made The Most Appearnces On Jackanory?,Bernard Cribbins, Geography,"""Yellow River"" is the common name for which Chinese river?",Hwang Ho - Geography,In which continent would you find the Nile river ?,Africa,Science & Nature,Where are the 4 major moons of Jupiter discovered by?,Galileo,General,In 1903 Sir Arthur Conan Doyle published which book,The hound of the baskervilles -General,Who invented the aerosol,Erik rotheim,General,What was built on the site of the old Waldorf Astoria Hotel in New York,Empire state building,General,Which Part Of His Body Did Bob Marley Havwe Surgically Removed In 1977,His Toe -General,What U.S. state includes the telephone area code 614,Ohio,General,"Whose latest album is called ""Forever""",Spice girls,General,What was Richard Bach's best selling book,Jonathan livingston seagull -General,What sort of writing system did the ancient Egyptians use,Hieroglyphics,General,Which Saints day is the 23rd April,Saint George of England,General,Average US male does it in 11.4 mins but female takes 13 what,Shower -General,Which American President Once Worked As A Male Model Before Occupying The White House?,Gerald Ford,Geography,The peacock is the national bird of _________,India,General,Who is the bad boy that leads Pinocchio astray,Lampwick -General,What actor played john wayne's son in red river,Montgomery clift,General,Poseidon was the greek god of the ______,Sea,Music,"Who plays the uncredited lead guitar on ""While My Guitar Gently Weeps""?",Eric Clapton -General,Who wrote the opera Pagliacci,Leoncavallo,General,In Casablanca what is the name of the nightclub,Rick's,Entertainment,"Number of new Supermen after his ""death""",Four -General,Who wrote 'the scarlatti inheritance',Robert ludlum,General,What is the fear of theatres known as,Theatrophobia, History & Holidays,The following is a line from which 1970's film 'It's as big as a house' ? ,Close Encounters of the 3rd Kind  -General,"Other than susan b anthony, which two women have been represented on u.s currency",Martha washington and pocahontas,Music,With Which Football Club Is Noel Gallagher Linked,Manchester City,General,Who allowed the bugging of the democratic committee headquarters.,Richard - History & Holidays,In which Massachusetts town were 20 people executed for witchcraft in 1692 ,Salem ,General,2112' was the first in a long line of gold and platinum albums for which canadian trio,Rush,General,"Of waterloo Common name for the family comprising a peculiar group of spiny, fleshy plants native to America",Cactus - History & Holidays,Which State Became The 47th US State In 1912 ,New Mexico ,General,What colour are mickey mouse's gloves,White, History & Holidays,Who led the attack on the Alamo,Santa anna -General,Who is the Egyptian God of the dead,Anubis,General,A spiral scroll used on Ionic and Corinthian capitals. ,Volute,Entertainment,Who wrote and preformed the soundtrack for Live and let die?,Paul McCartney and Wings -Music,"Besides playing with the Beatles, what was Stu's real artistic ambition?",Painter,Food & Drink, What is the name of the syrup drained from raw sugar,Molasses,General,"What's the international radio code word for the letter ""E""",Echo -General,In Tennessee it is illegal to sell what on a Sunday,Bologna,General,"What geographic entity ""shrunk"" more than 1300 feet in 1980",Mount st helens, Geography,In which modern day country is ancient Troy?,Turkey -General,To which elemetary school did tv's 'the brady bunch' go,Dixie canyon, History & Holidays,Who Released The 70's Album Entitled Machine Head ,Deep Purple ,Science & Nature,Which Mammal Has The Longest Gestation Period? ,The African Elephant  -General,Corporals Henshaw and Barbella report to which sergeant,Sergeant Bilko,Entertainment,"What Procol Harem tune was based on the Bach cantata ""Sleepers Awake""?",A Whiter Shade of Pale,General,What does a mosquito vibrate to make its buzzing sound,Wings - History & Holidays,"`Is this the real life, is this just fantasy', is the opening line of which hit song? ",Bohemian Rhapsody ,General,What is the Capital of: Mauritius,Port louis,General,"China Sun-Fin-Chin, Russia bayan, Norway trekspill what is it",Accordion -Music,"Who Had A Hit In 1988 With The Song ""First Time""",Robin Beck,Music,"Who Group Dismissed Love As ""Just A Silly Phase Im Going Through""",10cc,General,What vitamin is also called ascorbic acid,Vitamin c -General,What is the atomic number for hydrogen (h),1,General,"What word is used in a balance sheet to mean ""Everything a company owns""",Assets,Art & Literature,Which St Louis Born Novelist & Poet Became A British Subject In 1927 ,T S Eliot  - History & Holidays,Which 1993 Disney Movie Starred Bette Midler As A Witch ,Hocus Pocus ,General,What percentage of alcohol is contained in a 100 proof mixture,Fifty 50,General,Frass is the correct word for what,Insect faces - bug shit -General,In contract bridge a hand called chicane has what,No trump cards,General,Which organisation was founded by Nathan Bedford Forrest in 1865,Ku klux klan,Food & Drink,"What is the cocktail called, that consists of four parts of tequila to two parts of lemon or limejuice? ",Margarita  -General,Florence nightingale was known as 'the lady of the ______',Lamp,Sports & Leisure,Who Were The First British Football Club To Have Under Soil Heating? ,Everton ,Music,Who was known as 'The Killer' in the 1950's?,Jerry Lee Lewis - History & Holidays,Which famous Tapestry Commemorates The Conquering Of England? ,Bayeux Tapestry ,General,On a darts board what number is directly opposite 10,Fourteen, History & Holidays,This U.S. President suffered from polio during WWII.,Franklin D Roosevelt -Music,Who Had A Hit In 1988 With I Get Weak,Belinda Carlisle,Music,Whom Would You Expect To Find Being Chase Across The Moors By The Hounds Of Love,Kate Bush,General,"Which group sang the Song ""Hotel California""?",Eagles -General,What was Princess Diana's maiden name,Spencer,General,The american flag first flew over a foreign fort in what country?,Libya, History & Holidays,1970 Saw Which Treaty Between USSR & Germany ,The Moscow Treaty  -General,Peter Parker is the alter ego of which superhero,Spiderman,General,What colour is the number 13 on a roulette wheel,Black,General,Gene Kelly Michael York Joss Ackland all played who,D'Artagan -Science & Nature," The bottle_nosed __________ can dive to a depth of 3,000 feet in two minutes.",Whale,General,What sport do you compete for Currie cup and Ranfurly Shield,Rugby Union,General,"Which writer created Tabitha Twitchet, Babbity Bumble, Mr Tod",Beatrix Potter -General,Mythical race of female warriors,Amazons,General,What is the Capital of: Cape Verde,Praia,General,What is the name of the element whose symbol is Pm,Prometheum -General,What 1994 olympic gold-winning figure skater was an orphan,Oksana baiul, History & Holidays,Where did Bill and Hilary Clinton switch on Christmas lights in 1995?,"Belfast, Northern Ireland",General,Where is the annual all-american soap box derby held,"Akron, ohio" -General,What shape is Farfallini pasta,Small Butterflies,Science & Nature," 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,General,Scooby Do is what breed of dog,Great Dane -General,What did Wilhelm Roentgen discover in 1895,X rays,General,What means both 'hello' & 'goodbye' in Hawaii,Aloha,General,What is a group of colts,Team -General,Who would get an award known as the purple cross,Animal bravery by RSPCA,General,Which two teams automatically qualified for the France '98 soccer world cup?,France and Brazil,General,In which sport do they compete for the Iroquois Cup,Lacrosse -People & Places,Who Was Known As Scarface ,Al Capone , History & Holidays,Who sang 'I Want My MTV' on the Dire Straits song 'Money For Nothing'? ,Sting ,Science & Nature,These essential body cells do not contain nuclei.,Red blood cells -General,Alcoholic beverage made from rice,Arrack,Science & Nature,What is the meaning of the name of the constellation Serpens ?,Serpent,General,What modern dance was supposed to cure a spiders bite,Tarantella -Music,Who had a UK No.1 hit in 1982 with “goodie two shoes”?,Adam And The Ants,General,Where was Room 222,Walt whitman high school,General,Who married john lange,Shania twain -Science & Nature,What is the name for the theoretical end-product of the gravitational collapse of a massive star?,Black hole,Science & Nature, Some species of earthworms in __________ can measure more than ten feet in length.,Australia,General,Back in the Habit' is the sub-title to which film sequel,Sister act -General,What is the only word in the English language that ends in the letters 'mt',Dreamt,General,What is mauna kea,Volcano,Music,"In 1978 Who Had Their First Hit With ""I Lost My Heart To A Starship Trooper""",Sarah Brightman -Tech & Video Games,Who has the world's largest double-decker tram fleet?,Hong Kong,Geography,"__________ was admitted to the U.N. in May 1993, making it the smallest country represented there.",Monaco,Religion & Mythology,"In Greek mythology, who turned Arachne into a spider?",Athena -General,Christopher Proudfoot owns the worlds largest collection of what,Lawnmowers,General,"Does a 'milliner' make & sell flour, hats or windmills",Hats,General,What were the first names of the comedy duo Laurel and Hardy,Stan and oliver -Sports & Leisure,Which Colour Ring Surrounds The Gold Center Of An Archery Target ,Red ,General,Virginia Patterson Hensley became more famous as who,Patsy Cline,Science & Nature, The fastest animal on four legs is the __________,Cheetah -General,Top USA food consumption days - Xmas Thanksgiving and what,Super Bowl Sunday,General,Who was united nation's first general secretary,Trygve lie,General,In New Jersey what can't be sold on a Sunday,Cabbage -Entertainment,The maiden names of which two cartoon characters are Slaghoople and Mcbricker?,Wilma Flintstone and Betty Rubble,General,USA UK and Irish women golfers play for which trophy,Curtis cup,General,Who invented the electric cooking range,Thomas ahearn - History & Holidays,On what date did 'The Wall' fall? ,1989 ,General,What is the oldest brewery in the u.s,Yuengling brewery,Geography,What is the capital of Uzbekistan,Tashkent -General,Which Canadian city was originally called Bytown,Ottawa,Sports & Leisure,Who Was Captain Of England In 1966 When They Won The World Cup ,Bobby Moore ,General,"Annoying, litigious (and possibly duplicitous) owner of Boston Beer Company",Jim koch -General,What is the capital of New Mexico,Santa fe, Geography,What London borough does the Prime Meridian pass through?,Greenwich,General,Which is the second largest city in Norway,Bergen -General,Who was the last surviving signer of the declaration of independence,Charles,General,Brothers Jacob and Wilhelm were librarians and professors of language in 19th Century Germany. What was their surname,Grimm,General,In the US civil war what were graybacks,Body lice -General,Soundtrack(Kelly/Ellis/Hare),Joey b elis & tynette hare,General,What was voted toy of the 20th century,Lego,General,Who controls more than 80% of the world's rough diamond supply,De beers -General,Germany's equivalant to the dollar is ______,Deutchmark,General,What ape is the best acrobat,Gibbon,General,What small region at end of medulla oblongata serves as 'bridge' to brain,Pons -People & Places,Whose Real Name Is 'Cherilyn Sarkisian La Pierre' ,Cher ,General,Which country invented the clothing button in the 13th century,France,General,Ancient mariner who flew too near the sun waering wings attached with wax,Icarus -Science & Nature,Does The Water Run Clockwise Or Anti Clockwise Down A Plug Hole In Britain ,Anti Clockwise ,General,Which mountain range reaches from the Black Sea through Georgia to the Caspian Sea,Caucasus kavkaz,General,By which name is Eric Claudin better known,Phantom of the opera -General,In which French island territory would you find the towns Bastia and Calvi,Corsica,General,What country has the third most satellites in orbit?,France,General,Grevys and Burchells are types of what animal,Zebra -General,"Which Group Were The First Group To Have A UK No.1 From The ""Stock, Aitken & Waterman"" Hit Factory",Dead Or Alive,General,"Who sang of ""great balls of fire""",Jerry lee lewis,General,"Poet Robert Frost & the white mountains, both call this state home",New hampshire -Science & Nature,Which Russian chemist (1834-1907) founded our modern periodic table?,Dmitry Ivanovich Mendeleyev,General,What Chinese city is the world's largest noncapital,Shanghai,General,What was the famous line uttered by an old woman in Wendy's ads?,Where's The Beef? - History & Holidays,"Who Had An 80's Hit With The Song 'Other Woman,' ",Ray Parker Jr ,General,In which American state is Wankers Corner,Oregon,General,What is the fastest bird,Spine tailed swift -Science & Nature,By what chemical process do plants manufacture food?,Photosynthesis,Music,What Rush album cover features rabbits and a magician's hat?,Presto,General,"What did Dr Samuel Mudd do that your inspired ""name is mud""",Treated J W Booth Life imprison -General,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,General,Who played Johnny Yuma in the series The Rebel,Nick adams, History & Holidays,"According to the bible, who are Gaspar, Balthazar and Melchior ",Three Wise Men  -General,What were king arthur's knights called,Knights of the round table,General,Who is the patron saint of Gypsies,St Sarah,General,What did John F Kennedy claim was his biggest mistake as president,Bay of pigs invasion -General,Capital cities: Finland,Helsinki,Entertainment,Which British group holds the record for the album to remain in the US Billboard charts for the longest time?,Pink Floyd, History & Holidays,Name the original eight reindeer from the 'Twas the night Before Christmas' poem. ,"Comet, Cupid, Dasher, Dancer, Prancer, Vixen, Donner, Blitzen (or Dunder and Blixem) " -Music,"Which Ex Spice Girl Had A Hit With ""Lift Me Up""",Geri Halliwell,General,Lamb where were the 1956 summer olympics,Melbourne,Geography,Where is le figaro published ,Paris  -General,"What kind of animals are impalas, elands & kudus",Antelopes,Sports & Leisure,How many referees work a soccer game?,One,Science & Nature,Who discovered the four largest moons of Jupiter?,Galileo -General,At which battle did General James Scarlett lead the Charge of the heavy Brigade,Balaclava,General,Canberra in Australia has 2 meanings meeting place and what,Female breasts,General,In Oxford university what can you not take into the library by rule,Sheep -General,Where is brest,France,General,What two seasons do the equinoxes occur in,Spring & autumn,Toys & Games,"In roulette, what number is green?",Zero -General,Which famous building was built by Shih Huang Ti ?,Great Wall of China,General,What Is The Best Selling Copyright Book Of All Time?,The Guiness Book Of Records,Science & Nature,As what is haemophilia also known?,Royal disease -General,What song did Rick ask Sam to play in Casablanca,As Time Goes By,General,Collective nouns - A tiding of what,Magpies,Music,What is the real name of singer Meatloaf?,Marvin Lee Aday - History & Holidays,Which Character On TV Has The Real Name Of Eddie Fitzgerald ,Cracker ,General,Which Nobel Prize is not awarded annually in Stockholm,Peace,General,What is the square root of 81,Nine -General,Boccaccios collection of ten stories are known as what,Decameron,Entertainment,Who played Bobby Ewing in the TV series 'Dallas'?,Patrick Duffy,General,Who does the voice for yoda in the star wars films,Frank oz -General,Sir Francis Drake named it New Albion what is it today,Oregon USA,Science & Nature,"Native To America , What Type Of Bird Are Lewis's Red Bellied , Ladder-Backed & Nuttall's ",Woodpeckers ,General,How Are Tom Rowlands & Ed Simmons Better Known?,The Chemical Brothers -General,The Easter lily is a native plant of which country,Japan, Geography,What is the basic unit of currency for Guyana ?,Dollar,General,Who was the King of Swing,Benny Goodman -General,"In the 1983 movie ""National Lampoon's Vacation,"" where were the Griswolds headed on their cross country trip?",WalleyWorld,General,Capital of Scotland,Edinburgh,General,At which American University were four students shot dead in 1970 whilst protesting against the Vietnam War,"Kent state, ohio" -General,In Lynch Heights Delaware its illegal to do what in an airplane,Sneeze,General,What is a group of crocodiles,Bask,General,What US state has no motto,Alaska -Music,"Whose Debut Solo Album Was ""I Got Dem Kosmic Blues Again Mama"" In 1969",Janis Joplin,Geography,What island is pearl harbour on ,Ohau ,General,What dance is usually performed to Orpheus in the Underworld,Can Can -General,What is the capital of the Australia's Northern Territory,Darwin,General,Where would you experience serious pain if someone dropped a concrete block on your hallus,Your big toe big toe,Science & Nature," There are 1,600 known species of __________ in the world.",Starfishes -General,Aulophobia is a fear of what,Flutes,General,Which actor has played Fagin on both the stage and in the 1968 film Oliver!,Ron moody,General,Which Fictional Character Played On Screen Has A Relative Named Aunt Lucy,Paddington Bear -General,Where is angel falls,Venezuela,Art & Literature,Where Might You Find The Museum Of Modern Art ,New York ,General,Cocktails: Vodka and lime juice make a,Gimlet -General,Who recorded 'a boy named sue',Johnny cash,General,In What Country Did Horse Radish Sauce Originate,Japan,General,"What was the name of the actress who played ""Melonie"" on the show ""Webster and Melonie""?",Heather O' Rourke -General,If you are at Comiskey Park what sport would you be watching,Baseball,General,In Disney's The Lady and the Tramp what kind of dog is 'Lady',Cocker spaniel,General,Eras are divided into units called ________,Periods -General,What was the name of the dog in Fraggle Rock?,Sprocket, History & Holidays,Which chapter of the 'Phantasm' series was entitled 'Oblivion' ,Phantasm 4 ,General,Who followed Henry VIII to the throne,Edward vi -General,Gamophobia is fear of ______,Marriage,General,A young what is called a blinker,Mackerel,General,What is the title of the sequel to the book Gentlemen Prefer Blondes by Anita Loos,Gentlemen marry brunettes -General,Ostraconophobia is the fear of,Shellfish,General,Which US President did Anthony Hopkins play in a 1995 film?,Richard Nixon,Food & Drink,What colour is extra-virgin olive oil ,Green  - Geography,What is the capital of West Virginia?,Charleston,Music,Who Appeared On The Cover Of A June 98 NME Dressed As A Tiger,Damon Albarn,Sports & Leisure,"Lincoln, East End, Manchester & London Are All Types Of What ",Dartboards  -Entertainment,What was the first cartoon to feature sound?,Steamboat Willie,General,What is the flower that stands for: reward of virtue,Garland of roses, History & Holidays,What Family Live At 1313 Cemetary Lane ,The Adams Family  -General,"A lively social dance popular during the 1930s; it originated at the Savoy Ballroom in Harlem in 1928, where it was known as the Lindy.",Jitterbug,General,Which German city stands on the confluence of the Rhine and Moselle rivers,Coblenz,Science & Nature,A heavenly body moving under the attraction of the Sun and consisting of a nucleus and a tail is a(n) _______.,Comet -General,What kind of bones once stiffened corsets,Whale,General,The worlds first was 69.5 feet long and took a year to make ?,Oil Well,General,In which country are the most flowers bought per capita,Netherlands -General,"Alec Issigonis Is Credited With Designing The Mini, The Morris Minor And Which Other Classic British Car",Austin 1100 / Austin 7,Sports & Leisure,The very first Olympics were part of a festival to honor which God? ,Zeus ,General,Texas prisons have banned death row prisoners last what,Cigarette - bad for their health -General,What do the four quarters of a hot cross bun symbolise,Moon phases,General,What country is home for Europe's largest glacier,Switzerland,General,What berries give gin its flavour,Juniper berries -General,Under which rules was boxing standardised,Marquise of queensberry,General,What job links Kris Kristoffensen and Gene Roddenbery,Both worked as pilots,General,Michael Cain starred as Carter in the film Get Carter. Who plays Carter in this year's remake,Sylvester stallone -General,In which song does frank sinatra sing 'i travelled each and every highway',I,Food & Drink,Which Restaurant Crtic Took Over From Jonathan Meades In The Times ,Giles Coran ,General,What film is about the migration of poor workers from the dust bowl to the california fruit valleys,Grapes of wrath -General,An anemometer measures ____ ________.,Wind velocity,Science & Nature,What is the name given to a group of stars?,Constellation,General,A woman has Hisdoy syndrome what has she got,A Moustache -General,What sound made by people can be almost as loud as the noise of a pneumatic drill,Snore,Science & Nature," A robin has nearly 3,000 __________",Feathers,General,"Vincent Van Gogh sold exactly one painting while he was alive, what was it",Red vineyard at arles -General,What is a group of fish,Shoal,General,What's the only crime that the church would not grant sanctuary,Sacrilege, Language,What does 'alma mater' mean in English?,Bountiful mother -Science & Nature,What Is Ten In Binary Notation ,1010 , History & Holidays,"Child star Jimmy Boyd sang which hugely popular 1950's Christmas song, which was initially banned by the Catholic Church in Boston because it supposedly mixed sex and Christmas? ",I saw Mommy kissing Santa Claus ,General,"In 1933, mickey mouse, an animated cartoon character, received 800,000 of these",Fan letters -General,Where do Grand Prix drivers put their cars at the beginning of a race,Grid, Geography,What is the basic unit of currency for Zimbabwe ?,Dollar,General,What does peritonitis affect,Abdomen -General,What Countries Capital City When Translated Literally Means “ Gods Gift ”?,Bagdad,Music,"Who Had A Hit With ""Rock The Boat"" In 1974",The Hues Corporation,Geography,Which Is The 3rd Most Widely Spoken Laanguage ,Russian  -General,"In the contract that gave cuba freedom from the us, what was required",Permanent us navy base there permanent naval base,General,"What jockey was nicknamed ""Wee Willie""",Willie shoemaker,General,What is a geoduck,Clam -General,What city was martin luther king jr assassinated in,Memphis,General,Hundred kilometres from what do camels protect themselves with three eyelids,Blowing sand,Science & Nature,From 1979 until 2000 the most distant planet from the earth was ________.,Neptune -General,The Merry Go Round is Broken Down - whose melody is that,Looney Tunes,General,Odysseus captured by Cyclops Polyphemus what false name,Nobody,General,Englishman John Woodhouse created which fortified Italian wine,Marsala -General,In you called Jl52020 or 555 2020 in film who would answer,Ghostbusters,General,Ambrosia the food of the Gods from the Greek Ambroata means,Immortal,Science & Nature, Baby beavers are called kits or __________,Kittens -General,What shakespearean play refers to the date of epiphany,Twelfth night,General,What is the shortest and bloodiest of Shapespeare's plays,Macbeth,General,"Which French mathematician, ""the father of Modem Mathematics"", invented analytical or co-ordinate geometry",Rene descartes -General,What's in 5 groups Today Arts People Well being Outdoors,Classifications Girl Scout Badges, History & Holidays,"Santa Claus is based on St Nicholas, where was he born ",Turkey ,General,What does the initials NMT on a prescription mean,Not More Than – usually narcotics -General,"What is the name of the ""Oklahoma Bomber""",Timothy mcveigh, Geography,In which continent would you find the Mackenzie river ?,North America,General,CaCo3 is the chemical formula of what common item,Calcium Carbonate – Chalk -General,What Was The First British Tv Show To Give Away 1 Million Pounds,T.F.I - Friday,Music,What was Dina Carolls first solo top ten hit?,Don't be a stranger,Science & Nature,What did Einstein get the nobel prize for?,The Photelectric effect -General,Rafflesia flowers smell like what to attract pollinators,Rotting Meat,General,What's the largest museum in the world,Louvre,General,The words 'dungarees' and 'jungle' originate from which language,Hindi -General,Who was the Angel in Milton's Paradise Lost,Beelzebub,Food & Drink,Who wrote the novel Cakes And Ale? ,W. Somerset Maughan ,Sports & Leisure,What Is The Name Of The (War Dance) The All Blacks Perform Before A Match ,The Haka  -Music,Which Soul Pairing Duetted On “Endless Love” In 1981?,Lionel Ritchie & Diana Ross,General,What is a group of this animal called: Teal,Spring,Science & Nature,What Road Safety Device Was Invented By Percy Shaw In 1943 ,The Cats Eye  -General,Who served under Nelson commanding the Glatton 1801,William Bligh,General,By what name was outlaw Harry Longbaugh better known,Sundance kid,General,What is a group of this animal called: Badger,Cete -General,Which political party was founded in West Germany in 1972 by the late Petra Kelly,The green party,General,We call them Turkeys what do the Turks call them,American Birds,Science & Nature,"What does the ""lithosphere"" refer to",The earth's crust -General,What numbers does the binary system use,One and zero,Sports & Leisure,What Is The Only Sport In Which You Can See Teams Defending Goals Of Different Sizes ,Water Polo ,General,"Where Exactly Is The 89,000 Feet High Olympus Mons Volcano?",Mars -General,Necrophobia is the fear of,Death,General,What is a female ferret,Jill,General,For Which London Club Did David Seaman Begin His Professional Football Career,Queens Park Rangers -General,Tribology is the study of what,Friction,Geography,Lake Baikal in ______________ is the only lake in the world that is deep enough to have deep_sea fish.,Siberia,General,What is the name of jaleel white's character in the tv series 'family ties',Steve erkel -General,Stanley Gibbons started as a chemist but changed to what,Stamp Dealers,General,Who was the first president born in a hospital,Jimmy carter,Sports & Leisure,Which sport is Toxophily? ,Archery  -General,91% of Americans do what regularly,Lie,General,"What creature's name was derived from French words meaning ""spiny pig""",The porcupine porcupine,General,"""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 -General,Routine is what shaped pasta,Wheels,General,What is the Capital of: Palau,Koror,General,"The symbol on the ""pound"" key () is called a(n) _________",Octothorpe -General,Which creatures name translates as the lizard in Spanish,Alligator,General,Amuhea Princess of Medes was the wife of who,Nebuchadnezzars,General,"Who, with 90 years, is the longest ruling monarch in history",Pepi ii of egypt -General,"This dry, warm wind flows eastward down the slopes of the Rocky Mountains",Chinook,General,Who made the first solo round the world flight,Wiley post,General,What does the girls name Deborah mean,Bee - from Hebrew -General,In 1741 Robert Keeler first to commercially manufactured what,Marmalade in Dundee Scotland,Food & Drink,"What nationality is the lager producer, `grolsch'? ",Dutch ,General,Who took eight days to do the first solo round the world flight in 1933,Wylie post - History & Holidays,Who Released The 70's Album Entitled Trafalgar ,Bee Gees ,General,What are the three winter months in the southern hemisphere,"June, july and",Music,Which Troggs hit from 1967 was a worldwide smash in 1994 for another bandf?,Love Is All Around (Wet Wet Wet) -General,"Eddie and his father's last name in ""The Courtship of Eddie's Father""",Corbett,General,A stupa is a shrine to the memory of whom,Buddha, Geography,What is the capital of Burkina Faso?,Ouagadougou -General,Reykjavik translates into what,Smoky Bay,Entertainment,Who played the mayor of the munchkins in 'The Wizard of Oz'?,Charlie Becker,General,In which country was it once against the law to slam your car door?,Switzerland -General,"Name 18th Century playwrite of The Rivals, School for Scandal",Richard Brindsley Sheridan,General,In Sesame street name the two headed friendly monster,Frank and Stein,General,Who is the longest serving Head of State who is not a member of a Royal Family,Fidel castro -General,What keeps one from crying when peeling onions,Chewing gum,General,Okamoto in Japan is the worlds largest maker of what,Condoms,General,Who is the Patron Saint of Young Boys,St Pancreas -Music,What Was The Title Of David Essex's Not Very Successful Stage Musical,Mutiny,General,What is the holiest day in the Jewish calendar,Yom Kippur,Music,What Do The Initials DMC Stand For With Regard To The Hip Hop Band Run DMC,Dynamic Microphone Control -General,Who was disqualified after winning the 1976 british grand prix,James hunt,General,Why would women dislike using a West Indian Dildo,Its a cactus, Geography,What is the basic unit of currency for Ecuador ?,Sucre -General,Motorphobia is a fear of ______,Automobiles,General,"In musical notation, what is the effect of placing a dot immediately after a note",Increases its length by half,General,How many steps are there to the top of the eiffel tower,1007 -General,Who was a bullfrog and a great friend of mine,Jeremiah,Science & Nature,Which Snake Is Also Known As A Hamadryad ,King Cobra ,General,"On which object would you find a crown, a waist, a sound-bow and a clapper",Bell -Music,Which British Group Won The 1981 Eurovision Song Contest,Bucks Fizz,Science & Nature, All porcupines float in __________,Water, History & Holidays,What Name Was Given To The Practise Of Killing Every Tenth Man In A Mutinous Roman Cohort? ,Decimate  -Music,"Which Talented Us Producer Reached No.14 With ""Ai No Corrida"" (I-No-Ko-Ree-Da)",Quincy Jones,General,What lucky charm does Luciano Pavarotti carry in his pocket whilst performing,A bent nail,General,What is unusual about the number 8549176320,Digits alpha order -Food & Drink,What Is Karahi ,A Type Of Wok Used In Asian Cooking ,Music,Who Covered Wayne Fontana's A Groovy Kind Of Love In 1988,Phil Collins,General,When did William Lyon Mackenzie King retire,1948 -General,What is the largest lake in South America,Lake titicaca,General,There are over 800 brands of what for sale in the USA,Bottled Water,General,Cliff Richards She's so Beautiful who played every instrument,Stevie Wonder - Geography,What is the capital of Zambia ?,Lusaka,Music,"Which British R&B Band Were Featured In The 1969 Norman Wisdoms ""What's Good For The Goose""",The Pretty Things,General,What is the most common name in the Bible,Zachariah -General,Which medical condition is detected using the Ishiharo Test,Colour blindness,Food & Drink,What Do You Call Champagne Mixed With Orange Juice ,Bucks Fizz ,General,Inspector Bucket appears in which Dickens novel,Bleak House -General,What country was the first in the world to allow women voters,New Zealand,General,Who was known as the Queen of Folk Music,Joan Baez,General,"Which English Football Team Used To Be Known As "" Newton Heath ""?",Manchester United -General,What's a dead body of an animal called,Carcass,General,Who got his 100-meter dash gold medal stripped away due to his steroid use in the 1988 Olympics?,Ben Johnson,General,What food stuffs name come from the Italian for Pick me Up,Tiramisu -General,France the bliss of mrs blossom starred what actress in the title role,Shirley,General,The assault on Starfleet by the Borg was at,Wolf 359,General,What is the most popular jukebox song of all time,Crazy - Patsy Cline -General,Les Paul and Charlie Christian were exponents of which musical instrument,Guitar,Music,"The 3 Degrees Recorded ""Ta ke Good Care Of Yourself"" In What Yeat 1972,1973,1974,1975",1975,General,Give either of the two men who completed the first circumnavigation of the globe in a balloon,Bertrand piccard brian jones -Sports & Leisure,Who holds 3 World Heavyweight boxing belts? ,Lennox Lewis , History & Holidays,"Double, double toil and trouble; Fire burn, and cauldron bubble. Comes from which of Shakespeare's plays ",Macbeth ,General,Whats the capital of Bermuda,Hamilton -General,Who lived at 1431 North Beachwood,The Monkeys,General,What is a group of mares,Stud,General,What was mildred ella didrikson's nickname,Babe - History & Holidays,Who Released The 70's Album Entitled Twelve Dreams of Dr. Sardonicus ,Spirit ,General,At what does singapore use the colors blue and yellow to ward off evil spirits,Funerals,General,Dishabiliophobia is a fear of ______,Undressing in front of someone -General,From which plant do we get linseed oil,Flax,Science & Nature,What planet boasts the Great Red Spot,Jupiter,General,"In Greek mythology, who was aphrodite's mother",Dione -General,Beans who was the only actor to become president of the u.s.a,Ronald reagan,General,What is the Capital of: New Zealand,Wellington,General,"What name did George Eastman invent in 1888 because it was easy to memorize, pronounce & spell",Kodak -General,"Texas Chainsaw Massacre, there was a guy in a wheelchair. What was his name?",Franklin,General,Who was the sun king,Louis xiv,General,"What is the Capital of: Gambia ,The",Banjul -General,"What is this Italian dessert, made from sponge cake, mascarpone cheese and flavoured with coffee and brandy called",Tiramisu,Food & Drink,What is the main flavour in the following alcohol 'Amaretto' ? ,Almond ,Sports & Leisure,What do the letters ERA mean in baseball?,Earned Run Average -General,What novel by Geoffrey Household was about an attempt to kill Hitler,Rogue male,General,In which U.S. state is the Lowell Observatory,Arizona,General,Bridge River Kwai - Bridges Toki Rio - what actor links films,William Holden -General,What two words were merged to create the word 'meld',Melt and weld,Science & Nature,"Dinosaurs Lived In The Mesozoic Era Between 65 & 290 Million Years Ago. Split Into 3 Periods, Which Came Between The Triassic & Cretaceous Periods ",The Jurassic Period ,General,Who plays joey potter on 'dawson's creek',Katie holmes -General,What are the separators on a guitar neck called,Frets, History & Holidays,"""Who invented the Christmas Cracker? (""""George Cracker"""", """"Tom Smith"""", """"Thomas Edison"""", """"John Bell"""" "" ",Tom Smith ,General,"In which mountains would you find Mount Logan, the highest mountain in Canada?",St Elias Mountains -General,What carries sensations from the tongue to the brain,Lingual nerve,Geography,"The _______________ is not a sea, but a landlocked salt lake, 45 miles long by 9 miles wide.",Dead sea,General,"In 1924, pope urban viii threatened to excommunicate people who used what",Snuff -General,What links Vespasian Titus Domitian Nerva,Rulers Roman Empire 69 - 98,General,Who would use an 'embouchure' in their work,Musician,Science & Nature,Secret Research Into What Was Nicknamed The Manhattan Project ,The Atom Bomb  -General,"What is the nickname of fifth avenue, new york",Millionaires' row,Music,From Which Country did The Band Black Box Originate,Italy, History & Holidays,The Tradition Of Dressing Up On Halloween Started Because ,It Was Believed If You Looked Like A Ghost Then You Would Be Tormented By A Real One  -General,"What riddle asked: ""what is it that walks on four legs, then on two legs, & then on three""",The riddle of the sphinx,General,What is in a Ballini cocktail,Peaches and Brut Champagne,General,Which SF author invented the idea of the com Satellite,Arthur C Clark -General,What was Procul Harem's greatest hit,Whiter shade of pale,General,Who was Jack the Ripper's first victim,Mary ann nichols,People & Places,Which actress played the younger Diana Dors in the 1999 TV film The Blonde Bombshell? ,Keeley Hawes  -General,Christine Jorgensen in 1952 was the worlds first what,Sex Change Operation,General,"What is a standard 7'8"" x 3'2"" x 6'",Grave,General,Who advised us to 'break on through to the other side',Doors -Entertainment,Where does Yogi Bear Live,Jellystone park,Music,Who Wrote The Firebird Suite & The Ebony Concerto For A Swing Band,Igor Stravinsky,General,What's the capital of Nicaragua,Managua -Toys & Games,Building tool named after Civil War president.,Lincoln logs,General,As what is a moose also known,Algonquin,General,Henry Harley Arnold was the first US pilot to do what,Carry Mail -General,In 1967 what new safety measure was introduced to the UK,Breathalyser,Geography,Which motorway connects London with Cardiff? ,The M4 ,General,"What is the common name for ""tinea pedis""",Athletes foot -Science & Nature," 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,General,Where did the greek gods live,Mount olympus,General,What is the most popular name for a dog in the U.S.,Rover -General,"After leaving '10000 maniacs', who released her first solo album 'Tiger Lily' in 1995",Natalie Merchant,General,Who was the last person executed by the guillotine,Hamida djandoubi,General,Which buff coloured cotton comes from China,Nankeen -General,Britain France and who fought the battle of Trafalgar,Spain,Science & Nature, __________ 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,General,Patusnaya and mallasol types of what,Caviar -General,What flowers name translates from the Greek as Water Vessel,Hydrangea,General,"Author of 'Coming of Age in Samoa', the mostly widely read book in the field of anthropology",Margaret mead,General,Where is the Longchamps race track,Paris -General,A snooker game needs how many balls,22,Entertainment,What is Super Chicken's partners name?,Fred,General,In which film was Charlie Chaplin first heard to speak,The great dictator -General,What Does The MP Stand For In The Abbreviation MP3,Motion Picture / Moving Picture It Does*NOT* Stand For Music Player,General,What Is Measured By A Pluviometer,Rain,General,What is a marcupium,A marsupials pouch -Music,Billy Joel Gave An An Exhaustive List Of 20th Century Events In Which Song,We Didn't Start The Fire,General,Who wrote the children's book Bedknobs and Broomsticks,Mary Norton, Geography,What is the only borough of New York City that is not on an island?,Bronx - History & Holidays,Which was the first magazine to publish a hologram on its cover?,National Geographic,General,On Full House Uncle Jesse had a last name before it became Katsopolis what was it?,Cochran,General,What 1998 film broke the opening weekend box-office record,The waterboy -General,What letters are not on the telephone dial,Q and z,General,Which former dishwasher had his movie premiere in 1921,Rudolph valentino, History & Holidays,What does Dorothy have to steal from the wicked witch in oz ,Her Broomstick  -General,Who was killed in The Little Bastard,James Dean - his cars nickname,General,Tropical tree bearing edible orange fruit,Guava,Music,"Elvis Costello's ""Watching The Detectives"" Was The First Hit For Which Label",Stiff -Sports & Leisure,Polo consists of 8 periods called what?,Chukkers,General,What is a tucket,Baseball organ music,General,Name the brand of the first sour mash whiskey made in 1835,Old Crow -General,West Side Story tells about the West side of what or where,Fifth Avenue,Music,Which american singer had 35 consecutive uk top ten hits between 1984 and 1994?,Madonna,General,What is the'Literary' connection between the wife of a Beatle and a character played by Michael Elphick on TV ,Mills and Boon (Heather Mills-McCartney and Ken Boon)  -General,What Type Of Creature Is A SilverBack?,A Gorilla,Art & Literature,"A European movement beginning in France. Gothic sculpture emerged c. 1200, Gothic painting later in the thirteenth century. The artworks are characterized by a linear, graceful, elegant style more naturalistic than that which had existed previously in Europe. ",Gothic,General,What Is The Name Of This Mr Man Character,Mr Nonsense -General,In what country was Che Guevara born,Argentina,General,Dream of jeannie license plates: what film series does ob wan enjoy,Star wars,General,What astrological star sign covers July 24 - August 23,Leo - Geography,What is the largest island in the Caribbean?,Cuba,Science & Nature, The king crab walks __________,Diagonally,General,Where did 24 democratic and republican national conventions take place,Chicago -People & Places,"In which European country is Dalmatia , from where the Dalmatian Dog gets it's name? ",Croatia ,Entertainment,What song was originally 'Good Morning To You' before the words were changed and it was published in 1935?,Happy Birthday To You,Religion & Mythology,Who is the Greek messenger god?,Hermes -General,Who was the legendary front man for the band roxy music,Brian ferry,General,What's the capital of Wyoming,Cheyenne, History & Holidays,"Which novel, published in1932, was a vision of the future as a sanitised society? ",Brave New World  -General,Which was the first country to host 2 soccer world cups,Mexico,General,A bone specialist is a________,Osteopath,General,What is a group of this animal called: Mule,Barren span -Geography,Which country at the southern tip of the Arabian Peninsula was previously known as Aden? ,Yemen ,General,Who is reported to have invented The Blow Up Doll?,Adolf Hitler,General,Who led 900 followers in a mass suicide in 1979,Jim jones -General,What is the fifth day of the week,Thursday,Sports & Leisure,In Which Game Would You Use A Spider? ,Snooker ,General,"Who wrote ""the marriage of figaro""",Mozart -Geography,What is the capital of Malawi,Lilongwe,General,What is the smallest species of penguin,The Fairy Penguin,General,Linus Torwalds invented and wrote what,Linux computer operating system -Entertainment,"The song ""Matchmaker, Matchmaker"" came from which musical play?",Fiddler On The Roof,General,Which country has a plain green flag?,Libya,General,Name Chewbacca's son - seen Star wars holiday special 1978,Lumpy -General,When did Pope Paul Vl say that fasting was still obligatory on certain days,1966,General,British policemen have truncheons what is USA equivalent,Nightstick,General,What country celebrates its National Day on 25th June?,Slovenia -Geography,What is the second largest country in the world? ,Canada ,Toys & Games,This game (involving a net) was introduced in 1874 as sphairistike,Tennis,Science & Nature,A hot spring which shoots steam into the air is a _______.,Geyser -General,"Whose life story is titled 'fly me, i'm freddie!'",Freddie laker,General,On which ground did Brian Lara score 501 not out,Edgbaston,General,"What links a Gig, Spider and Phaeton",Horse drawn carriages -General,"In 1864, who was massacred at sand creek detention camp in colorado",300,Music,"How Are The Band Aston, Marvin JB & Oritse More Commonly Known",JLS,General,Name the Japanese Stock Exchange Index.,Nikkei -General,Arnold Schwarzenegger played Doug Quaid in which 1990 film?,Total Recall,General,What does the word antediluvian mean,Before the flood,General,What is the U.S. equivalent of the S.A.S.,Delta force -General,Who is supposed to be buried under Kings Cross station,Boadicea, Geography,How many time zones are there in China?,One,General,Who is on a U.S. $50 bill,Ulysses s grant -General,How many legs does odin's horse have,Eight,General,What was Emperor Napoleon Bonaparte's official emblem,Bumblebee,General,What us state includes the telephone area code 607,New york -General,Whose nickname was slowhand (both names),Eric Clapton,General,What is a 300th anniversary called,Tercentenary,General,Peniaphobia is the fear of,Poverty -General,Taken literally what should you see in a Hippodrome,Horses,General,What does a.n.c stand for,African national congress,Geography,What canal connects lake ontario and lake erie,Welland canal -General,Tradionally What Does A Fletcher Make,Arrows,Science & Nature,Is Your Stomach Positioned Above Or Below Your Intestines ,Above ,General,Which film of the 70s received the most Oscars,Cabaret 1972 -General,In which state would you find the geographical centre of the contiguous United States of America,Kansas,General,The word 'traitor' comes from which wwii norwegian who collaberated with the germans,Quisling,General,"When he died, the Romans re named September after him, but soon turned back to September. Who was he",Tiberius -General,Who founded the Church of Scientology,L. ron hubbard,Music,"The Song ""Party All The Time"" Was Released By Which Famous Actor",Eddie Murphy,General,What is the second largest city in Ireland,Cork -Music,"""Axl Rose, Izzy Stradlin, Steve Adler, Slash, Duff McKagen"" All Make Up Which Group",Guns N Rose,General,Who was the only player to win mvp in both leagues,Frank robinson,General,To where in France do the sick make pilgrimages,Lourdes - Geography,What is the capital of Canada ?,Ottawa,General,For what feat is Alexei Leonov famous,First space walk,General,What is a group of this animal called: Dog,Pack -General,What is silviculture,Forestry,General,Which date in the year is seen as the traditional high spot of the Protestant marching season in Northern Ireland?,12th July,General,"What country lifted a ban on Aristotle, Shakespeare & Dickens in 1978",China -General,An astronomical unit is the standard measurement taken from the earth to where,The sun,General,"Which group sang the song ""Ordinary World""?",Duran Duran,General,What is a group of chickens,Brood -Science & Nature,The Worlds First Motorway Opened In 1924 In Which Country ,Italy ,General,Who makes barrels,Cooper,General,On what side should yoU.S.leep to improve digestion,Right -People & Places,What Do O.J Simpsons Initials Stand For ,Orenthal James ,General,In the 18th century what would a pencil be,Brush,General,What neck of water do you cross when sailing from Malaga to Tangier,Strait of gibralta -Science & Nature,What Is Another Name For The Leopard? ,The Panther ,General,Excluding religious works what is the worlds top selling book,Guinness Book of Records,General,Who wrote The French Lieutenant's Woman,John fowles -General,What is used to flavour Kriek Belgian beer,Cherries,General,The Little Shop of Horrors (1986) takes place in what kind of shop,Florist shop,General,Where would you find a Dry Bible,Heart chamber of a ruminant -General,"To what family of plants do the following belong apples, pears, plums, cherries, almonds, peaches and apricots",Rose family,General,What is the largest environmental organisation in the world,Greenpeace,Music,"Who Had A Hit In 1993 With ""For Whom The Bell Tolls""",The Bee Gees -General,"Which Actor Played The Character Of ""Abdul"" In The Beatles Movie ""Help!""",Warren Mitchell,Science & Nature, Ninety percent of all species that have become extinct have been __________,Birds,General,Which father and daughter starred in the film 'Paper Moon',Ryan and tatum o'neal -General,Santo domingo is the capital of ______,Dominican republic,General,What is the main ingredient of Scotch Woodcock,Anchovies,General,How many claws does a housecat have,Eighteen -General,In England it is specifically illegal to be drunk where,In a pub,Music,Ice In The Sun Was An Early Hit For Which Rock Legends,Status Quo,Art & Literature,What publication was subtitled The What's New Magazine,Popular science -General,What is the Olympic motto in the original Latin?,"Citius, altius, fortius", Geography,Where is Angel Falls?,Venezuela,General,Car racing and what sport were banned in the USA during WW2,Horse Racing -Music,Who Had A Hit In 1980 With Captain Beaky,Keith Mitchell,Science & Nature," The hummingbird's tiny __________, 4.2% of its body weight, is proportionately the largest in the bird kingdom.",Brain,General,An animal is a fish if it has _________,Gills -General,"Which Long Running TV Show Had It's First And Only Female Winner ""Katy Cropper"" In 1990",One Man And His Dog,General,The Great Salt Lake lies in which American state,Utah,General,This band was formed in Germany in 1976 by writer and producer Frank Farian,Boney m -General,90% of Americans consider themselves what,Shy,General,Recycling one glass jar saves enough energy to watch TV for how many hours?,Three,Geography,What is the capital of Zimbabwe,Salisbury -General,Which brothers published the storybook entitled 'Household Tales' in the 19th century,The brothers grimm,General,Where are three quarters of the world's pineapples grown,Hawaii,General,Dominica supplies a good part of the world with Rose's,Lime juice -General,Who saved Andromeda from the sea monster,Perseus,Science & Nature, A bear in hibernation loses up to 25 percent of its __________,Body weight,General,Albert Finney turned down which role - Peter O Tool - Oscar,Laurence of Arabia -General,What was William H. Bonney's nickname,Billy the kid,Sports & Leisure,What game features the largest ball?,Earthball,General,What was T E Lawrence better known as,Lawrence of arabia -General,Outside the work is the literal meaning of which snack food,Hors Derves,General,What is the fear of becoming bald known as,Phalacrophobia,General,"In Greek mythology, who defeated Athene in a weaving contest",Arachne -General,Go down on me football the denver ____,Broncos,General,Whats a Sultans wife called,Sultana,General,What is a triangle whose sides are all of different lengths,Scalene -General,"Which painter, famous for his pop-art, died in 1997",Roy lichtenstein,General,"Who wrote a diary entitled ""Five Years of my Life"" at the beginning of this century",Alfred dreyfus,Sports & Leisure,What does TKO stand for,Technical knock out -General,What does the Latin RIP stand for ?,Requiescat in pace,General,Who was the longest serving president in French history,Francois mitterand,General,Who played lulu hogg on dukes of hazzard,Pearl shear -General,What did My Favorite Martian have to do before he could become invisible,Raise his antenna,General,What is the name of the elevated semi-desert region found in the northern and western Cape provinces of South Africa,Karoo,Geography,What is the capital of Mali,Bamako -Music,Which Group Had The Last Xmas Number One Of The 1980's,Band Aid 2,General,"Whose car, when found in Dallas in 1963, contained brass knuckles, a pistol holder, and a newspaper detailing JFK's motorcade route",Jack Ruby,General,"What were the names of Kevin's best friend and girl friend on ""The Wonder Years?""",Paul and Winnie -General,"Of what are Bristol, Rockingham, Chelsea, and Minton types",Pottery Porcelain China,Music,"What's The Connection Between Tom Jomes, Shirley Basey & The Alarm",Wales,Geography,"Unlike most African nations, ________ was never a European colony.",Ethiopia -General,What did Gene Autry name his ranch,Melody ranch, Geography,What is the capital of Chad ?,N'Djamena,General,"How did Mork, in ""Mork and Mindy"" say hello?",Nanoo nanoo -Geography,"___________ is smaller than the state of Montana (116,304 square miles and 147,138 square miles, respectively).",Italy,General,The sports manufacturing company 'Butterfly' are most famously associated with which sport?,Table Tennis,General,What is a zeppelin,Dirigible -General,What was first sold at the 1904 St Louis worlds fair,Ice cream cones,General,The Clifton Suspension Bridge spans which river,Avon,Geography,Which element makes up 2.5% of the Earth's crust,Potassium -Geography,Suez lies at one end of the Suez Canal which city is at the other end? ,Port Said ,Music,"Which American Singer Was Married To Debbie Reynolds , Elizabeth Taylor & Connie Stevens",Eddie Fisher,General,"What Greek wrote Meteorologica, popularizing that name for the study of weather",Aristotle -General,Amor Vincit Omnia a Latin phrase meaning what,Love conquers all,General,In which European city is the Arch of Titus,Rome,Science & Nature,From Which Country Did The Leek Originate ,Switzerland  -General,Pyrophobia is the fear of,Fire,Science & Nature,What does the Binet test measure,Intelligence,General,What is the first book in the vampire chronicles,Interview with a vampire -Science & Nature,What's the technical name for a three legged frog?,Ai,General,What is the young of this animal called: Eagle,Eaglet,General,What craft uses a kiln and a kick wheel,Pottery -General,"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, Geography,In which city is Westminster Abbey?,London,General,Yeovil Yown Football Club wear shirts which closely resemble which famous team?,Celtic -General,What was the subtitle of Police Academy Six,City Under Siege,General,What does the boys name Paul mean,Small - from Latin,General,Who is the heroine of Silence of the Lambs and Hannibal. (Full name),Clarice starling -General,What is the name of the strait located between the Italian and Balkan peninsulas?,Straits of Otranto,Music,"Charlie Watts Books ""Ode To A Flying Bird"" Is A Tribute To Which Jazzman",Charlie Parker,General,Which famous person said 'Hell is other people',Jean-paul sartre -General,Who was the first pilot to fly faster than the speed of sound,Chuck yeager,General,What is the force that brings moving bodies to a halt,Friction,Music,Which Songwriters & Musicians Are The Core Of Steely Dan,Walter Becker & Donald Fagen -General,"Name the female civilian teacher killed in the ""Challenger"" shuttle disaster",Christa mcauliffe,General,"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,Science & Nature,What Colour Does Litmus Paper Change To When Dipped In Acid ,Red  -Music,"""Don't Leave Me This Way"" was a 1976 success for both Harold Melvin and the Blue Notes and Thelma Houston. But who scored with a cover version in 1986?",The Communards,General,All windmills turn counter clockwise except where,Ireland,General,What U.S. general was known as old blood & guts,George s patton jr -General,Feijoada is the national dish of what country,Brazil,General,When does macau revert to china,1999,General,What was hg well's first novel,Time machine -General,Glycyrrhiza Glabra is better known as what,Liquorice,General,Whose autobiographical novel was called The Bell Jar,Sylvia plath,General,Rim Butte sounds like something sexual - in which US state,Alaska -General,Who was Prime Minister at the end of World War One,Lloyd george,Entertainment,Who sang 'Beauty and the Beast'?,Celine Dion,General,Ellen Marrenner became more famous as who,Susan Hayward - History & Holidays,"He said, ""I have nothing to offer but blood, tears, toil and sweat.""",Sir winston churchill,General,What was Wilma Flintstone's maiden name,Wilma Slaghoopal,Science & Nature,What is the name of the brand of mathematics that deals with the sides and angles of a triangle ,Trigonometry  -General,Which Canadian city is know as The Steel City,Hamilton - Ontario,General,Violetta Valery is better know as who in the world of opera,La Traviata - by Verdi,General,In the Bible Jesus walked on water who else did this,St Peter - to Jesus from boat -Music,"Who Recorded The Album ""Too Low For Zero""",Elton John,General,Who founded The Society Of Jesus,Ignatius loyola,General,Jackson Whipps Showalter was a US champion at what,Chess -General,Sukkot is a festival in which religion,Jewish,Science & Nature,Paper is made from the pulp of _____.,Wood,Sports & Leisure,What Is The Maximum Score Possible In A Game Of Ten Pin Bowling ,300 Points  -General,1960 Orange bowl was first appearance of which sporting giant,Goodyear Blimp,General,"What links a bick, throat, half swage, punching hole",Anvil they are parts of it,Music,"What Song Features The Lyric ""We Dont Need No Education, We Don't Need No Thought Control""",Another Brick In The Wall -General,Margarita Carmen Casino became famous as who,Rita Heyworth,Music,Under What Name Does Georgious Panayiotu Perform,George Michael, History & Holidays,"According to the nursery rhyme, who, 'sat in the corner eating a Christmas Pie'' ",Little Jack Horner  -General,"Which Pop Group Were Originally Called ""The Frantic Elevators""?",Simply Red,General,1894 Orville Gibson started worlds oldest company make what,Electric Guitars,Music,When I Need You” Was A U.K Hit For which Singer?,Leo Sayer -Sports & Leisure,Which position is usually played by the tallest member on a basketball team,Centre,General,Which operas last lines are Mimi. Mimi,La Boheme,General,What does an artist's easel support,Canvas -Sports & Leisure,With Which Sport Would You Associate Colin Montgomerie? ,Golf ,General,This sport is called camogie women play what's it when men do,Hurling,Art & Literature,Which Gilbert and Sullivan Opera is about the Emperor of Japan? ,The Mikado  -General,What did joseph priestely discover,Oxygen,General,What was the name of the Titanic's sister ship,Olympic,General,When did Sir Walter Scott write Ivanhoe,1819 -General,What does IRS stand for?,Internal Revenue Service,General,Certain marbles are called 'alleys' because they are made of ______,Alabaster,General,Taliban women required by law to wear what on left arms,Tattoo of husbands name -General,Anthesis means what in relation to plants,In Flower - blooming,General,What nationality is the designer Galliano,British,Music,"In Which Musical Did Donald O Connor Perform The Breathtaking ""Make Em Laugh"" Routine",Singing In The Rain -General,Cagney shoves grapefruit Mae Clarke face was going to be what,An Omelette,Technology & Video Games,What does the acronym COBOL stand for?,Common Business Oriented Language,General,BOZ was the penname if which writer,Charles Dickens -General,As easy as ______,Pie 3.14159,General,Which Car Manufacturer Was Founded By Sir William Lyons In 1922?,Jaguar,General,"An ""omniscient"" person has unlimited __________",Knowledge -General,The okapi is most closely related to what african mammal?,Giraffe,General,"What is the name of the sign which is put over the letter 'n' in Spanish, to give a 'nya' sound",Tilde,Science & Nature,Name the only native North American marsupial.,Opossum -General,"In The World Of Entertainment How Is ""Dana Owens"" More Commonly Known",Queen Latifah,General,Which Famous Novel Starts With The Line….. “ I Never Knew My Father ”?,Tarzan,General,In which decade did Jacques Garnerin make the first parachute descent (from a balloon),1790's -General,What was the name of the nightclub owner in 'Casablanca',Rick stein,General,Pennsylvania was the first colony to legalise what,Witchcraft,Entertainment,Who did Charlie Becker play in 'The Wizard of Oz'?,The mayor of the munchkins -General,In which century was the Ming Dynasty founded in China,Fourteenth,General,Where was Keanu Reeves born,Beirut - Lebanon,General,What do spiders and ticks have in common,Eight legs - History & Holidays,Which famous ship sank in 1912 ?,Titanic,General,"Who won the best Actor Oscar for ""Scent of a Woman""",Al pacino,General,What did the sparrow kill Cock Robin with,Bow & arrow - History & Holidays,What Did British Troops Destroy In Washington DC In 1814 ,The President's House ,General,What is the state flower of South Dakota,Pasqueflower, History & Holidays,Which Pop Singer Married Maurice Gibb Of The Bee Gees In February Of 1969? ,Lulu  -General,Collective nouns - what group af animals are a labour,Moles,General,The classical music term fugue comes from Latin meaning what,Flight,General,What is the sum of 27 + 52,79 -General,Who created Popeye,Elzie Seger,General,Which two countries made up the 'Dual Alliance' between 1879-1918?,Germany and Austria,General,Famous painter that paints with both his right & left hands,Leonardo da vinci da vinci -General,Nothing's so loyal as love 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,General,What is drawing wild but politically favorable electoral districts,Gerrymandering,General,Which dish gets its name from the French meaning to stir,Ratatouille -General,What magazine has the largest unpaid circulation in the US,Disney Channel Magazine,General,"In Greek mythology, who was the mother of perseus",Danae,General,"""All human life is there"" - a quotation from Henry James - was used to promote which British Sunday newspaper in the 1950s",News of the world -General,What is the fear of things to the left side of the body known as,Levophobia,People & Places,Who Was Caught On Film Kissing The Duchess Of Yorks Toes ,John Bryan ,Music,Prince Was Going To Party Like It Was What Year,1999 -General,Who released 'love roller coaster' in 1984,Ohio players,General,Which soul singer died in 1984 after lying in a coma for eight years?,Jackie Wilson,General,The word 'cop' is an abbreviation for what,Constable on patrol -Science & Nature,What is the only man-made structure on earth that can been seen from space?,Great Wall Of China,General,Which actress had a job putting cosmetics on corpses,Whoopee Goldberg,General,Whose Dictionary of the English language was published in 1755,Samuel johnson -Food & Drink,"Crushed grain, nuts and dried fruit ",Muesli ,General,What newspaper do the Flintstones read?,The Daily Slate,Music,"Sinead O Connors Song ""Nothing Compares 2 U"" Was Actually A cover Of A Song By Which Artist",Prince -General,In which field of science is the history of the universe studied ?,Cosmology, Geography,What is the capital of Liechtenstein ?,Vaduz,General,What animal does the adjective 'talpine' refer to,Mole -General,What do spanish dancers hold in their hands,Castanets,General,61 is the international telephone dialling code for what country,Australia, History & Holidays,What was the name of the company that the characters on Taxi worked for? ,Sunshine Cab Company  -Music,"Which Jimi Hendrix classic features the line ""Scuse me while I kiss the sky""?",Purple Haze,Art & Literature,"Who wrote the book ""The Origin of Species"" ?",Charles Darwin,General,What does the typical American eat 263 of each year?,Eggs -Science & Nature,Which Creature Got It's Name Because Scientists Felt That It Fed On Eggs ,Oviraptor ,General,In The Dukes of Hazard who was the sheriff,Roscoe P Coltrane,General,"In the Hollywood classic 'The Greatest Show on Earth', who plays 'Buttons' the clown",James stewart -Food & Drink,What is pumpernickel? ,German Black Bread ,General,Who was the first man in space,Yuri gagarin,General,In pro-football how long does a 'sudden death' period last,Fifteen minutes -General,Mao had the red book who did the green book on African unity,Moammar Qaddhaffi,General,What natural phenomenon can never be seen at noon,Rainbow - sun must be 40 deg or less,Music,Who Is Loretta Lynn's Younger Sister,Crystal Gayle -General,Which Fruit Is Affected By A Grey Type Of Fungus Known Commonly As Noble Rot,Grapes,General,"Name the children on ""Just the Ten of Us"". Bonus: Name the dog.","Cindy,Wendy,Marie,Connie,J.R.,Heidi,the twins: Melissa and Harvey",Music,Sung By John Taylor Which Single Was Also The Theme To The Movie 9 And A Half Weeks,I Do What I Do -Music,"Which Tv Soap's Theme Was ""Sold As Anyone Can Fall In Love""",Eastenders,General,What colour graded slope do expert skiers use,Black,General,Who succeeded Caligula as Roman Emperor,Claudius - History & Holidays,What Was The First Reich? ,The Holy Roman Empire ,General,Beelzebub is Hebrew for which phrase - also a novels title,Lord of the Flies,Sports & Leisure,Which Australian cricketer was sent home from the cricket World Cup in February 2003 after failing a drug test? ,Shane Warne  - Geography,What country has the highest per capita tea consumption?,Ireland,Geography,In what country is the Jutland peninsula,Denmark,General,What was originally called Eskimo Pie,Chocolate Ices -General,Which mummified tendon was auctioned at Christies in 1969,Napoleons Penis,General,Who kissed the girls & made them cry,Georgie porgie,Music,"What Was Unusual About The Archies, Who Had A Number One Hit With Sugar Sugar",They Were Cartoon Characters -General,"Dandy Dinmont, Bedlington, Sealyham are what types of dog",Terriers,General,What is the name of the Flintstones cat,Baby-Puss,General,What is a castrated ram,Wether -General,White Room' was a hit off which Eric Clapton album,Cream,General,A 'morel' is what type of vegetable,Mushroom,General,What Was The Very First Product Made By The Philips Company?,Light Bulb -General,One eighth of the US population have done what,Worked in MacDonald's, History & Holidays,Which 50's Movie features the Line 'We've become a race of peeping toms' ,Rear Window ,General,According to USA today what is the favourite luxury car,1 Lexus 2 Mercedes 3 BMW -General,Who was born Sarah Jane Fulks?,Jane Wyman Reagan,Music,"Which British Female Singer Had An International Hit In 1981 With The Single ""Cambodia""",Kim Wilde,Geography,The tallest building in the Southern Hemisphere is in which city?,Melbourne -General,Who made their first royal visit to Canada in 1951,Princess elizabeth,General,"What are mazurka, fandango and polonaise types of",Dances,General,What is the Chinese word for wind,Feng - Shui is water -General,What is the capital of guinea-bissau,Bissau,General,"Members Of The Band ""Split Enz"" Went Onto Form Which Popular Band",Crowded House,General,What was originally made of bamboo then a plastic called grex,Hula Hoops by Arthur Melin 1958 -General,In TV series The Prisoner what's the name of the giant balloon,Rover,General,What is the flower that stands for: bantering,Southernwood,General,What poster queens's record did et beat with sales of ten million in 1982,Farrah fawcett-majors farrah fawcett -General,The Mabinogion is a collection of legends from which country,Wales,General,French racing driver Jean Behra kept a spare what in his pocket,Plastic right ear,General,What name in Hebrew means to add,Joseph -General,What is the common name for the condition dyspepsia?,Indigestion,General,What links a Sylvester Stallone character and Panama,Balboa Panama cash Rocky name,General,Who wrote Beau Geste,P C Wren -General,Only one woman's lifespan is given in the Bible - Who,Sarah Wife Abraham 127 Genis 23,General,In Greek mythology any of 3 snake haired sisters able to turn people to stone,Gorgon, Geography,What is the capital of Nigeria?,Abuja -General,What sexual practice is maritate,Female masturbation,General,Which Gallantry Award Bears The Inscription “For Bravery In The Field?,The Millitary Medal, Geography,What is the basic unit of currency for Kyrgyzstan ?,Som -General,What animal is dr. dolittle's pushmi-pullyu,Two-headed llama,General,"In the House of Lords, where does the Lord Chancellor sit?",Woolsack,Science & Nature,What percentage of the population has an iq above 100 ,Fifty percent  -General,When was george jones inducted into the country music hall of fame,1992,General,"Which musician wrote the book ""twixt twelve and twenty"" in 1958",Pat boone,General,What famous reference work is illegal in Texas,Britannica - It shows beer making -General,"What was the top technology manual of 1996, at over one million sales",Windows 95 for dummies,General,How one would describe Jeremiah Peabody's pills,Poly unsaturated quick dissolving fast acting pleasant tasting green and purple,General,Unu and Ne Win have been leading figures in the post- 1945 history of which country,Burma -Food & Drink,Black German rye bread ,Pumpernickel ,General,What Did Buisnessman Peter De Savray Buy For £6.7 Million Pounds In 1987,Lands End,General,Its illegal to do what in the French vineyards,Land a Flying Saucer -General,Basketball: the utah ______,Jazz, History & Holidays,What Chinese dynasty was overthrown in 1911?,Manchu,General,"On the 11th day of christmas, my true love gave to me",Eleven pipers piping -General,Who was signed by motown when he was 5,Michael jackson,General,Copenhagen is the capital of ______,Denmark,Geography,What is the capital of West Virginia,Charleston -Science & Nature," 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,General,A healthy person does it 16 times a day - what,Farts,General,What film won the best picture Oscar in 1967,In the heat of the night -General,What character first appeared in the film The Wise Little Hen,Donald Duck,General,Collective nouns - A wiggle of what,Tadpoles,Music,Bark At The Moon Was An Album For Ozzy Osbourne Or Meatloaf,Ozzy Osbourne -General,All US presidents have worn what,Glasses - not in public,General,"In science, which term refers to the number of protons in the nucleus of an atom",Atomic number,Geography,What does the river seine empty into ,The english channel  -General,"What was master po's name for young cain in the tv series ""kung fu""",Grasshopper,General,Who or what is the Empress of Blandings,A pig,Music,Who Had A Hit In 1979 With A Super Speedy Version Of The Banana Splits (The Tra La La Song),The Dickies -Music,What was the first single released on the Beatles Apple label?,Hey Jude,Geography,In which county is the market town of St Austell ,Cornwall , History & Holidays,Which Act Has Had More Christmas Number One Singles In The UK Than Any Other? ,The Beatles  -General,Who did Roger Bannister beat at the Commonwealth Games of 1954,John landy,Sports & Leisure,"In showjumping, how many points are incurred for knocking down a fence?",Four,Sports & Leisure,Which piece of sporting equipment is a `biased'? ,A Crown Green Bowl  -Music,Which British Producer Worked In Tandem With Madonna On Her Ray Of Light Album,William Orbit,General,"Which apostle is the patron of bankers, book-keepers and tax collectors",Matthew,General,A musical instrument and the French word for paper clip what,Trombone -Science & Nature,"Fandible, lateral line, and dorsal fin are parts of a(n) ________.",Fish,Sports & Leisure,How Many Furlongs Are There In A Mile? ,8 ,General,What was the name of the dog in RCA Victor's trademark?,Nipper -General,Colourless volatile liquid formerly used as an anaesthetic,Chloroform,General,What is the art of bell-ringing called,Campanology,General,"Which product was advertised as 'tested by dummies, driven by the intelligent'",Volvo cars -General,43% of women want to try sadomasochism after smelling what,Vanilla extract,General,By what name is the bird Pica Pica better known,Magpie,General,In Greek cookery what are 'sheftalia',Minced lamb kebabs -General,George the boys name means what,Farmer,General,Which U.S. actress gave her name to an inflatable life jacket,Mae west,Music,"Although Re-Issued In The 70's ""Shotgun Wedding"" Was A One Hit Wonder For Whom In 1966",Roy C -General,MacDonald farm Sheep Cows Pigs Chicks Ducks Donkeys and what,Turkeys, Geography,What is the basic unit of currency for Brazil ?,Real,Music,"What Connects 10cc, Mick Hucknall, Oasis",Manchester - History & Holidays,"In 1893, this country was the first to give women the vote.?",New Zealand,General,Which historical event is depicted on the Bayeux tapestry,Norman conquest of,General,In the body what do the Islets of Langerhans do,Secrete Insulin -General,How is 75% of petrol in an engine wasted?,Combustion,General,In which London street is the US embassy,Grosvener Square,General,German wine is made from mainly what grape,Riesling -General,What is a travelator,Horizontal Escalator,General,As Of 2009 Which Musical Act Have Been The Most Successful In One Night At The Brit Awards,Blur,General,What was the name of the charter granted by King John,Magna carta -General,What nationality is designer Karl Lagerfield,German,Science & Nature,What Sort Of Animal Is A Fer De Lance ,Snake ,General,Who is the largest toy distributor in the world,McDonalds -Food & Drink,Sea Urchin Sushi Is Known As What In Japanese ,Uni ,General,Alhambra is a strong lager brewed in what country,Spain,General,What was the name of the Bjork-fronted 80's band?,The Sugarcubes -Sports & Leisure,What is Tiger Woods real first name? ,Eldrick Woods ,General,What dog appears in the wacky races,Muttley,General,Who is the greek equivalent of the roman god amor,Eros -Music,Who Partnered David Bowie On A Christmas Hit In 1982,Bing Crosby,Food & Drink,Vodka and Kahlua make up which type of cocktail ,Black Russian ,General,What type of number describes the ratio of the speed of a plane to the speed of sound,Mach -General,Where is a 'crossbuck',Railroad crossing,General,A French wine described as doux is what,Medium Sweet,General,What authors only detective work was The Red House Mystery,A A Milne -Sports & Leisure,How Many Times Are A Team Allowed To Touch A Volleyball Before It Crosses The Net? ,Three ,General,A group of oysters is know as a(n) _____,Bed,General,What or where was original deadline,USA Civil war prison -Music,The Notting Hillibillies Featured Famous Guitarist Eric Clapton Or Mark Knopfler,Mark Knopfler,General,"Where would you find a parlour, scriptorium, dorter and cellarium",A Monastery,General,As what is -40 degrees C the same as what in F,Minus forty degrees -40 minus fourty - Geography,What is the basic unit of currency for Bhutan ?,Ngultrum,Science & Nature,What is the chemical element Pa?,Protactinium,General,The Bering Strait divides Russia from where,Alaska -General,Of what is agrostology the study,Grasses,General,"Montpelier, vermont is the only u.s state capital without a _____",Mcdonald's,General,Who Is The Most Nominated Actor For An Oscar ?,Jack Nicholson -General,What countries women most likely to have sex on a first date,Australia 13%,General,In 1976 this former humble pie singer and guitarist came alive,Peter,General,Who dictated the Koran to Mohamed,The Angel Gabriel -General,What fantasia suite features autumn fairies and frost fairies,Nutcracker,General,"What famous chinese philosopher wrote the book ""the art of war""",Sun tzu,General,A Group of Cattle is called a,Herd -Entertainment,"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, Geography,This is the bridge with the longest span in the U.S.A.,Verrazano Narrows,Music,"Nena, Who Reached The No.1 Spot In The UK Came From Which Country",Germany -General,Who was French Prime Minister at the end of World War 1,Georges clemenceau,General,Narcolepsy is the uncontrollable need to ______,Sleep,General,What is the scientific study of the structure of living things,Anatomy -Sports & Leisure,Who was the first to win the grand slam of tennis,Don budge,General,If you landed at Mirabel international airport where are you,Montreal,General,Which planet is nearest the sun?,Mercury -General,Phobophobia is a fear of ______,Phobias,Sports & Leisure,How Many Players Comprise An Ice Hockey Team? ,Six ,Music,"Who Is ""Reginald Dwight"" Better Known As",Elton John -General,The word melee comes from what sport,Football village play,General,Other than fruit what is the only natural food made without killing,Honey,General,"In Greek mythology, who were the personification of the forces of nature",Titans -General,What does ebcdic mean,Extended binary coded decimal interchange code,General,What two olympic events require competitors to travel backwards in order to win,Rowing & backstroke,Science & Nature,What Did Sir John Harrington Invent In 1589 ,The Flushing Toilet  -General,What title has the wife of an earl,Countess,General,In the classical format there are strictly only five positions - what,Ballet,General,Calvin Broadus is better known under what name,Snoop Doggy Dogg - History & Holidays,What 'CP' Is One Of The Ghosts From A Christmas Carol ,Christmas Present / Past ,Music,What Was the First Number One Hit Single For “The Jam”?,Going Underground,Food & Drink,What are the essential ingredients of a daiquiri?,Rum and lemon -General,What Was The Name Of The Poodle That Once Resided At The Queen Vic In Eastenders,Roly / Rollie,People & Places,Who is Julie Andrews Married To ,Blake Edwards ,General,Huge battle at the end of the world,Armageddon -General,What is six inches in height and no bigger by the rules,Table Tennis Net,Science & Nature,What Is Measured In Amps ,Electric Current ,General,What is the main ingredient of risotto,Rice -Art & Literature,"In sculpture, the projection of an image or form from its background. Sculpture formed in this manner is described as high relief or low relief (bas-relief), depending on the degree of projection. In painting or drawing, the apparent projection of parts conveying the illusion of three dimensions. ",Relief,General,What is a group of falcons called,Cast,General,Where did the group 10cc get their name,Average sperm in ejaculation - History & Holidays,Which country blew up a Greenpeace ship in New Zealand?,France,Geography,San Francisco Bay is located near what city,San francisco,General,Name one of the three most common names in china,Chang -General,Someone who is prejudiced against Jews,Anti-semetic,Music,Name Either Of Marc Almonds 2 Groups That He Formed After The Demise Of Soft Cell,"Marc & The Mambas, The Willing Sinners",General,What is Carambola,Starfruit -Music,An Untypical Motown Record Which Single Gave Singer Charlene A UK No.1 In 1982,I' ve Never Been To Me,General,Which British aircraft company produced a classic car marque and also made buses and trucks in the post war era,Bristol,General,"The game preserve featured in the TV series ""Daktari""",Wameru -Music,1970’s Super Group Led Zeppelin Recorded “Stairway To Heaven” But Who Had An Unexpected Hit With In During The 1990’s,Rolf Harris,Music,What Is The Name Of The Lead Singer Of Staus Quo,Francis Rossi,General,What magazine did feminist expert Shere Hite pose for in 1971,Playboy -General,Which impresionist artist was known for his series of paintings based around Hampton on the river Thames?,Alfred Sisley,General,"The novel ""Weir of Hermiston"" was an unfinished novel by which writer",R l stevenson,General,Which duo has won seven Oscars,Tom and Jerry -General,In mythology which giant made of brass guarded Crete,Talus,General,"What ancient symbol's German name translates as ""hooked cross""",The swastika swastika,General,In New York it is illegal to shoot what from a moving trolley car,Rabbits -General,In which city are the Headquarters of INTERPOL located,Lyons,General,Smallest particle of a substance having the specific chemical properties of that substance,Molecule,General,"Goose-geese, passerby- ______",Passersby -General,Name the control centre beneath Derby House in Liverpool where the Battle of the Atlantic was plotted during World War 2,Western approaches, History & Holidays,"Which Date On The Christian Calendar Marks The Epiphany, When Jesus, Mary And Joseph Met The Three Wise Men? ",January 6 th ,General,Who opened the first unattended 24 hour self service laundromat,Nelson puett -General,Spumador was whose horse,King Arthur,General,Tiede Peak is a volcano on which island,Tenerife,Sports & Leisure,"Which annual sporting event attracts easily the most spectators (i.e. present, not watching television ) of any in the world with around 10 million? ",The Tour De France  -General,"What city in Nepal translates as ""wooden temples""",Katmandu,Sports & Leisure,Which Sporting Event Was BBC2's First Ever Colour Tranmission In 1967 ,Wimbledon ,General,What is the largest lake in Central America,Lake nicaragua -General,Where are you most likely to have a serious accident,In your home,General,Extortion of payment in return for silence,Blackmail,Music,"What Was The Instrument That Produced The Weird Noises On The Beach Boys ""Good Vibrations""",Theremin -General,In traditional Chinese thought what is the opposite of 'yin',Tang,General,What was the name of the castle that gave He-Man his powers?,Greyskull.,Science & Nature,Which substance has the chemical formula H3PO4?,Phosphoric acid - Language,"What does ""c'est la vie"" mean",That's life,General,"What's next in the series 2, 3, 4, 6, 8, 12, 14, 18, 20, ?",24, History & Holidays,Which horse won the 1964 Derby ,Santa Claus  -General,"Billie Holiday, James Dean, Eva Peron, Janis Joplin - Common",All were Prostitutes,General,With which island is the puffin associated,Lundy island,General,What is the name of the crispbread traditionally eaten by Jews at Passover,Matzo -General,Who's the bitty apprentice of the evil witch in the little lulu comics,Little itch,General,What do humans completely shed and regrow every 27 days,Skin,General,What is the only edible orchid,Vanilla -General,"What group has more gold, platinum & multi platinum albums than any other",The rolling stones rolling stones,General,What was the first movie filmed in sensurround,Earthquake,General,What does a.m stand for,Ante meridian -General,In Madagascar its illegal for pregnant women to do what,Wear Hats or Eat eels,General,What is the musical style called that mixes jazz with pop or other styles,Fusion,Sports & Leisure,How Many Epsom Derbies did Lester Piggott Win? ,Nine  -General,If you have dysmorphia what do you hate,A body part,General,Doha is the capital of which gulf state,Qatar,General,What 265m high peak is located in wyoming,Devil's tower - History & Holidays,"After the fall of the iron curtain, Russian leader Mikhail Gorbachev introduced a period of restructuring known as ________.",Perestroika,General,What kind of condition is 'protanopia',Colour blindness,General,Who was the Pope who served for the shortest time,Urban vii -General,What happened to the first traffic lights outside HP 1868,They exploded,General,Who formed the nhl players' association,Alan eagleson,General,What is Corvus another name for,Fellatio (Blowjob) -General,What is the more usual name for the Egg Plant or Guinea Squash,Aubergine,Science & Nature,This poisonous gas is in the exhaust fumes from cars.,Carbon monoxide,Religion & Mythology,What is Greek muse of dance and choral song?,Terpsichore -General,Which country had the first women MPs 19 in 1907,Finland, History & Holidays,Which Institution Was Founded By The Roman Catholic Church In The 13th Century To Root Out Heresay? ,The Inquisition ,General,What is the Capital of: Bolivia,La paz - History & Holidays,"Who Coined The Phrase (Goverment Of The People, By The People And For The People)? ",Abraham Lincoln ,General,Where are the finger lakes,New york,General,What did louis cartier invent,Wristwatch -Art & Literature,Who Wrote The Novels 'The Hunt For Red October'' And 'Clear And Present Danger'' ,Tom Clancy ,People & Places,Who is Ashton Kutcher Famous Older woman wife? ,Demi Moore ,Entertainment,What song's words were changed and then published in 1935 as 'Happy Birthday To You'?,Good Morning To You -General,What is a baby rabbit called,Kit or Kitten,General,Craven Walker invented what 60s fashionable icon,Lava lamp,General,What does a copoclephist collect,Key Rings -General,What is the flower that stands for: blackness,Ebony,General,Phobos and Deimos are moons of which planet,Mars,General,A young horse or related animal,Foal -General,How much of the Earth's surface is covered by water,70,Music,"In Which Year Were The Following All Chart Hits :""Ghostbusters"" By Ray Parker Junior, ""Jump"" By Van Halen And ""Smalltown Boy"" By Bronski Beat?",1984,Art & Literature,Which Em Forster Novel Features The Schlegal Sisters ,Howards End  -General,"Who is advised ""not to carry the world upon his shoulders""",Jude,Sports & Leisure,Hockey: The St. Louis __________.,Blues,General,What type of musical instrument are 'Timbales'?,Latin American Drums -General,What is the largest lake in Australia called,Lake eyre,General,Which president married Martha Dandridge Custis,George washington,General,America's country's first commercial oil well was located in what state,Pennsylvania -General,In Long Beach California where is specifically illegal to curse,Miniature Golf Course,General,The Dayak people are indigenous to which country or region?,Borneo or Sarawak,General,Name the only Senator whose parents had also served in the Senate,Russell -General,What did the name 'saxe-coburg' become,Windsor,General,Which common item was banned by law in Bermuda until 1948,Motor Cars,Sports & Leisure,In Which Sport Might You Win The Curtis Cup ,Golf  -General,What is a group of teal,Spring,General,Adolf Dasler created which company,Adidas,General,50% of 17 year old Americans can't do what according 700 club,Read - History & Holidays,"U.S. President, Herbert C. _________.",Hoover,General,Horses are Equine from the Greek Equus what's it mean,Quickness,General,"In The World Of Music How Is ""Jiles P Richardson"" More Commonly Known",The Big Bopper -General,Boise is the capital of ______,Idaho,General,What ten volume tome did Victor Hugo give the world in 1862,Les Miserables,General,"______, the story of prize fighter Jake Lamotta, packs a real punch",Raging Bull -Science & Nature," __________ 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,General,Sedimentary and igneous are types of what,Rock,General,"In literature, what was Long John Silver's status when on board ship",The cook -General,Erotophobia is a fear of ______,Sexual love,Entertainment,Who released 'Tuesday Night Music Club' in 1993?,Sheryl Crow,General,Ann Franklin in 1792 was the first woman to do what,Newspaper Editor in Newport USA -Music,Which Female Vocalist Guested With Massive Attack On Their 3rd Album Mezzanine,Elizabeth Frazier,General,What is the game we call Noughts and Crosses called in America,Tic tac toe, History & Holidays,Who was forced by Indian troops into the Black Hole of Calcutta?,British officers -General,What is a group of ptarmigans,Covey,Music,"Whose Only UK No.1 Single Was ""My Ding A Ling"" In 1972",Chuck Berry,General,What common allergens are the male sex cells of plants,Pollen -Sports & Leisure,What sport is sometimes called 'rugger'?,Rugby union,General,The starting point of the muslim era dates back to the time when Muhammad moved to which city?,Medina,General,Light Venetian canal boat,Gondola -General,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,General,What country was called Botany Bay and New Holland until 1820,Australia,Geography,"America purchased Alaska from __________ in 1867 for $7,200,000 _ about 2 cents an acre.",Russia -General,"In South Africa, what is 'biltong'",Dried meat,General,What medication discovered in 1928 but introduced 1940,Penicillin,General,Reginald Truscott-Jones became famous as who,Ray Miland -General,"Who directed the 1998 gangster film Lock, Stock and Two Smoking Barrels",Guy ritchie,General,What car has been voted European car of the Century,Mini,General,What is the flower that stands for: elegance and grace,Yellow jasmine - History & Holidays,"What Connects Richard Nixon, Lyndon B Johnson, Hubert Humphrey & Spiro Agnew ",4 US Vice Presidents During The 60's ,Music,Who Led The Blue Caps,Gene Vincent,General,Something that is fistular is what shape,Pipe shaped -General,How many states joinded the confederacy,Eleven,Science & Nature,How many stars make up the 'Southern Cross'?,5,General,What queen did edmund spenser dedicate his faerie queene to,Elizabeth i -General,What rock star joined the cast of General Hospital,Rick springfield,General,Duffy: Johnny Got His Gun,Dalton trumbo,Science & Nature, Gorillas and __________ sleep about fourteen hours a day.,Cats -General,Ventura county California who/what cant have sex without permit,Cats Dogs,General,What colour habit do Franciscan monks wear,Grey,People & Places,Which former Radio 1 DJ used to broadcast 'Our Tune'? ,Simon Bates  -General,Who founded the 'sas',David stirling,Music,Which Lucky Man Spent 7 Weeks In The Charts With Olivia And 16 With Sarah,Cliff Richard, History & Holidays,Which major international organization was created in 1945 ?,United Nations -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,General,What does a tsiologist study,Tea,General,What was George Washington's favorite horse's name,Lexington -General,What Car Manufactuer Were The First To Install Seatbelts In Their Vehicles In 1849?,Volvo,General,What country did Italy invade in 1935,Abyssinia - Ethiopia,Music,He Died Playing Russian Roulette And Has Since Been Celebrated In Song By Paul Simon Who Was He,Johnny Ace -General,In which sport do you need to score five to win,Fencing - five hits,General,Alexander the Great suffered from what malady,Epilepsy,General,Who was the mastermind behind the 'ahead of its time mother of inventions',Frank zappa -General,What's the biggest source of pollution in Lake Ontario,Lake Erie,General,"What U.S. state was named for Lord de la Warr, early governor of Virginia",Delaware,Sports & Leisure,"What was won in 1995 by a Spaniard, in 1996 by a Dane, in 1997 by a German, in 1998 by an Italian & in 1999 by an American? ",The Tour De France  -General,"If you drive on a parkway, you park on a _______?",Driveway,People & Places,Which British Director Attempted To Appear In All The Films He Directed? ,Alfred Hitchcock ,General,What was the country of Botswana called before 1966,Bechuanaland -General,"Which hard substance, closely resembling bone, makes up the bulk of a tooth",Dentine,General,What was Robin Williams paid for Disney's Aladdin in 1982,Scale $485 day + Picasso Painting,General,"Ailsa Craig, Bedford Champion and Rijnsburger varieties of what",Onions -General,What tennis player earned the nickname the Swedish steel,Bjorn borg,General,What does a polythesistic person believe in,Many Gods,General,Element 4 Is The Theme Tune To Which Hugely Popular Television Show,Big Brother -General,"Hammer, anvil, and stirrup are parts of ________.",Ear,General, A device used to change the voltage of alternating currents is a ______.,Transformer,General,The jealous Athena turned who into a spider,Arachne -General,In 1821 Jacob Fusel worlds fist commercial factory making what,Ice Cream,General,Where did the celts believe dead heroes went,Avalon,Music,"Who Recorded The 1960's Albums ""Have Twangy Guitar Will Travel"", ""The Roaring Twangies"" , ""Twangsville & Water Skiing""",Duane Eddy -General,Whose autobiography was called Tall Dark and Gruesome,Christopher Lee,General,How many years does it take for Saturn to orbit the Sun,29,Art & Literature,Who wrote the epic poem Odyssey ?,Homer - History & Holidays,What Reference Book Went On Sale For The First Time In 1955 ,Guinness Book Of Records ,General,"What is the gift on the eighth day of christmas in the ""twelve days of christmas""",Eight maids a milking,General,What is the literal meaning of the word 'Pharaoh',Great house -Sports & Leisure,What Is The First Event In The Heptathalon ,100 Metres Hurdles ,General,"What happened to lady Jawara , the President of Gambia's wife when he was at Prince Charles wedding",She was kidnapped,General,The Seven Pillars of Wisdom comes from where,Proverbs in Bible -General,What is the capital of delaware,Dover, History & Holidays,Who was 'The Elephant Man'?,Joseph Merrick,Music,"What Did Sigue Sigue Sputniks ""Flaunt It"" Album Feature In Between Each Of Their Songs",Commercials / Adverts -General,Capital of egypt and the largest city in africa,Cairo,General,"What colour is angelica, used in decorating cakes",Green,General,"In the tv series 'happy days', what was the fonz's full name",Arthur -Science & Nature,What is the only insect that can turn its head?,Praying mantis, History & Holidays,What was the name of the nuclear missle defense system Reagan proposed? ,Star Wars ,General,Wife Beware in 1933 was the first film shown where,A Drive in theatre -Entertainment,What was used for blood in the film 'psycho'?,Chocolate syrup,General,What is the first race in the Grand Prix season,Brazilian,General,Charles l was brought to trial in which year,1649 -General,Where was the first shopping mall opened,Saint louis,General,What does a pedometer measure,Walking distance,General,What is the tallest bird in the world,Ostrich -General,What is Steganography,Invisible ink writing,Music,"The Film ""Sixteen Candles"" Featured In A Song Called ""If You Were Here"" By Which Band",The Thompson Twins,General,Chachi was a character in Happy days whats it mean in Korean,Penis -General,What is the first event in the Decathlon,100 metres,General,Who was the brave Norse god of war & justice,Tyr,General,Which comedian and actors real first name were Leslie Townes,Bob Hope -General,"What were the B-52's named after? (Hint, it's not a plane)",Beehive,General,What is the name of Captain Ahab's ship,Peaquod,General,"From Which Language Does The Word ""Typhoon"" Originate",Chinese -General,What is the name of the wave generator in a microwave overt',Magnetron,General,What vegetable offers the highest source of calcium,Spinach,General,An anaesthetic injected close to the spinal cord,Epidural -General,What type of animal is a Samoyed,Dog,General,Of what did sigmund freud have a morbid fear,Ferns,General,What is the boy scout motto,Be prepared -Religion & Mythology,Who is the Norse god of the sky and thunder ?,Thor,General,What is the circle of the earth at 0 degrees latitude,Equator,General,Parturiphobia is the fear of,Childbirth -General,Who was fred flinstone's best friend,Barney rubble,General,What play was being performed when Abraham Lincoln was shot,Our american,General,Who was the first French women's designer to design for men,Pierre Cardin -General,Name the second most commonly spoken language in Australia,Italian,General,Bunny Austin first British male to do what at Wimbledon in 1933,Wear Shorts,Entertainment,"""He's So Fine"", ""One Fine Day"" and ""A Love So Fine"" where hits for what fine group?",The Chiffons -Geography,What is the capital of Mongolia,Ulaanbaatar,General,What is the correct name for a baby otter,Kitten,General,Ness What are panatelas,Cigars -General,Egg Fu is the enemy of what super hero,Wonder Woman,General,Of marlboro what latin word is used for information of little use,Trivia,General,Who is The Incredible Hulks girlfriend,Betty Ross -General,In the streets of Elko Nevada walkers are meant to wear what,Masks,General,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,General,Wired Digital Incorporated created which search engine,Hotbot -General,In Biker Slang what is a Belly Shover,A Racing bike,Science & Nature,Who Propsed The Theory Of Relativity ,Albert Einstein ,Music,Which Early Rock N Roller Is Known As The Killer,Jerry Lee Lewis -General,What country would you go to find Pervy Shag,Russia,General,What colour lenses are required to view a Anaglyph 3-D film?,Red and (blue or green),General,"In The Movie ""Back To The Future "" Marty McFly Travelled Back In Time To 1955 But What Was The Exact Date",Nov 05 / 1955 -General,Where is the grande canal,Venice,Art & Literature,Which Tavern Was The Favourite Haunt Of Falstaff In Shakespear's Henry IV ,The Boar's Head ,General,"Who has been married to joan, joanne, joanna and alexis",Johnny carson -General,In film who is the alter ego of Daniel Hillard,Mrs Doubtfire,General, What is a female swan called,Pen,Entertainment,What comic strip character is Beetle Bailey's sister,Lois (of hi and lois ) -Tech & Video Games,What was the name of the first plane ever to fly ?,Flyer,General,Where would you find your corrugator,Your Forehead,Sports & Leisure,Jaques Villeneuve replaced whom as a driver for Williams? ,David Coultarde  -General,What is a group of this animal called: Hen,Brood,General,What is a group of this animal called: Magpie,Tiding,Science & Nature,What type of animal is pulex irritans ,Flea  -General,What is the atomic number of tungsten,74,General,In what city is the Olympic torch first lit?,Olympia,General,"What sport has sprint, tandem and team pursuit events",Cycling -General,Which Apostle refused to believe in Christ's resurrection until he had seen His wounds,Thomas,Food & Drink,"According to the TV Ad, which beer is said to be 'Good for you'? ",Guiness ,General,Which 1996 Movie Was The First To Be Relased On DVD,Twister -General,What was Skippy ( on TV ),The bush kangaroo,General,In which month of the year are Nobel Prizes presented,December,Music,Dionne Warwicks Cousin Is A Famous Vocalist Name Her,Whitney Houston -Food & Drink,Which Italian city gave its name to a cheese and a type of ham? ,Parma ,Music,"Who Had A Hit In 1989 With ""I Want It Alll""",Queen,General,In which USA state is Churchill Downs racetrack,Louisville Kentucky -General,Which state is called the pelican state,Louisiana, History & Holidays,Who said: there is nothing in the bible that says i must wear rags ,Billy graham ,General,In what Australian state would you find Mackay,Queensland - Geography,What is the capital of Madagascar ?,Antananarivo,General,Who wrote the Royal Firework Music,George Friedric Handel,Science & Nature,"Excluding man, what is the longest_lived land mammal",Elephant -General,What shakespearean king was actually king of scotland for 17 years,Macbeth,General,What disney film boasts the song that's what uncle remus said,Song of the,General,Who became the oldest rookie in the major leagues at age 42,Satchel paige -Sports & Leisure,Basketball: The Denver _________.,Nuggets,General,Who plays the part of Inspector Gadget in the film 'Gadget',Matthew broderick,General,What do you call a man who has never been married,Bachelor -General,"In the body, what is the CNS",Central nervous system,Sports & Leisure,"Other than England, which european country took part in the 1996 cricket World Cup?",Netherlands,General,Which term is used in the Christian calendar for the last few days leading up to Easter Sunday,Holy week -General,Film character played by 4 people head body voice breathing,Darth Vader,General,What instrument is also called the octave flute,Piccolo,General,Which is the only part of an oar that should get wet,Blade -General,"Popular venues for which sport are at Romford, Hackney and Wimbledon",Greyhound racing,General,Most people associate the colour green with which flavour,Mint,General,Massacre who was the narrator of the film 'texas chainsaw massacre',John larroquette -Religion & Mythology,Who is the greek equivalent of the roman god Vesta ?,Hestia,General,Which actor played the title role in the mad max series of films,Mel gibson,Entertainment,Who is the lead vocalist of U2?,Bono - History & Holidays,John F. Kennedy Airport used to be called __________.,Idlewild,Music,Who composed Rhapsody In Blue in 1924?,George Gershwin,General,What statuette is awarded annually to the best TV commercial,Clio -General,Which American state is nicknamed the 'Evergreen' state,Washington,General,What is a popular name for the wood hyacinth,Bluebell,Music,What Is The Spanish Dance Music Normally Associated With Castanets,Flamenco -Art & Literature,"A figurative movement that emerged in the United States and Britain in the late 1960s and 1970s. The subject matter, usually everyday scenes, is portrayed in an extremely detailed, exacting style. It is also called superrealism, especially when referring to sculpture.",Photorealism,Music,Which John Lennon Song Did Roxy Music Take To Number One The Year After His Death?,Jealous Guy,Music,From 1971 What Was The Name Of Lobo's Dog,Boo (Me & You And A dog Named Boo) -General,Port moresby is the capital of ______,Papua new guinea,Music,Which 10CC Hit Was Covered By Jhonny Logan In 1987,Im Not In Love,Science & Nature,What Does A Manometer Measure ,Pressure  -Food & Drink,What do American's call an Aubergine? ,Eggplant ,General,Who is the first character to speak in 'star wars',C3po, History & Holidays,What was the name of the teenage showgirl who caused MP John Profumo to resign? ,Christine Keeler  - History & Holidays,Which is the most ancient walled city?,Jericho,Music,I'm Going Slightly Mad Was a Hit In 1981 For Whom,Queen,General,In Gulliver's Travels name the flying island,Laputa - History & Holidays,This U.S. Secretary of State won the Nobel Peace Prize in 1973.,Henry Kissinger, Geography,What is the basic unit of currency for Uganda ?,Shilling,Sports & Leisure,Which boxer is known as the Dark Destroyer? ,Nigel Benn  -General,Mr Mybug was only interested in sex with Flora in what book,Cold Comfort Farm,General,"Of what are corolla, filament and stigma a part of",Flower, Geography,What American city is known as Little Havana?,Miami -Art & Literature,"A painting technique using pigments mixed with egg yolk and water. It produces clear, pure colors.",Tempera,General,What is shed when you desuamate,Skin,General,Every year 8800 people injure themselves with what,Toothpick -General,Louisa Adams was the only first lady to be what,Born outside USA,Geography,What Was The First Town Founded By Europeans In Southern Africa ,Cape Town ,General,What type of tests were National League umpires ordered to undergo in 1911,Eye tests eye test an eye test -Science & Nature,What Word Is Used To Describe Bell Shaped Flowers ,Campanulate ,General,10% (by weight) of the worlds land animals are what species,Ants, Geography,What is the basic unit of currency for Mali ?,Franc -People & Places,Who Invented The Minors Lamp ? ,Humphery Davy ,General,What does a callipygian person have,Pretty shaped buttocks,General,Collective nouns - A bale of what,Turtles -General,Which professional wrestler popped both of John Stossel's ear drums during a 20/20 interview?,"""Dr.D",Sports & Leisure,"In hockey, what is the equivalent of a rugby scrum?",Face-off,General,"What was the first country to legalize abortion, in 1935",Iceland -General,Who started Laugh O Gram productions,Walt Disney,General,Who was responsible for the infamous assination attempt on then President Reagan?,John Hinkley Jr.,General,Obsessive desire to lose weight by dieting,Anorexia nervosa -Music,Whistling As He Left Although It Got Him Down Name The Man And The Northern Town,Roger Whittaker & Durham Town, Geography,What country is Santo Domingo the capital of?,Dominican Republic,General,Who is the U.S. of America named after,Amerigo vespucci -General,Between where does the ureter carry urine,Kidneys and bladder,General,What was landscape gardener Lancelot Brown's nickname,Capability,Art & Literature,Which Of The Bronte Sisters Married The Reverend A B Nicholls In 1854 ,Charlotte  -General,What was Buddy Hollies real first name,Charles,General,Which companies first product was an electric rice cooker,Sony It shocked fired, History & Holidays,What was the name of Grotbags the witches pet in the TV show 'Emu's World' ,Croc  -Science & Nature,What is the chemical symbol for californium?,Cf,General,Taphophobia is fear of what,Buried Alive,General,Bob Cummings played which character (both names),Maxwell Smart -Sports & Leisure,In 1984 Which American Equalled Jesse Owens Four Gold Medals? ,Carl Lewis ,General,What is basmati,Rice,People & Places,Which Television Presenter And Ex-Spurs & England Footballer Became An Alcoholic ,Jimmy Greaves  -Entertainment,Who played Hopalong Cassidy?,William Boyd,General,Which sport awards the Maurice Podoloff trophy,Basketball NBA MVP,General,What French actors catch phrase Come with me to the Casbah,Charles Boyer – in Algiers -Art & Literature,"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,General,How many teeth does a mosquito have,Forty seven,General,"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 -Sports & Leisure,"If You Potted Red, Black & Pink In Snooker What Would You Score? ",15 ,General,Which town was designated the first 'New Town' in Lancashire in 1961?,Skelmersdale,General,Who is the greek counterpart of neptune,Poseidon -General,What 42 year-old Panamanian boxer won his 89th pro fight in 1993,Roberto,General,"Which English football ground is the oldest professional football ground in the world, having hosted football since 1861, a year before Bramhall Lane?",Field Mill (Mansfield) now the One Call Stadium, History & Holidays,In which city were the Hanging Gardens?,Babylon -General,Which actor was born in Chiuhauha Mexico,Anthony Quinn, Geography,Where is the Blue Grotto - la Grotta Azzurra ?,"Capri, Italy",General,In a survey what is the most popular UK kids TV programme,The Simpsons -General,"In 1983 Which Car Manufacturer Ran A ""April Fools"" Ad For An Open Top Car That Supposedly ""Kept Out The Rain""",BMW,Science & Nature,What Does E C T Stand For ,Electroconvulsive Therapy , History & Holidays,What 'NP' Is An Opinion Survery Conducted In Alaska ,North Pole  -General,What year was the Battle of Bannockburn,1314,Geography,"The ___________ River has 1,100 tributary streams.",Amazon,Art & Literature,"Which Famous Book Begins With The Line 'On January 6, 1482, the people of Paris were awakened by the tumultuous clanging of all the bells in the city' ",The Hunchback Of Natre Damme  -General,Nine inches in nautical measure is called what,A Span,General,Name UK TV show with Jim Hacker and Sir Humphry Appleby,Yes Minister,Science & Nature," Garter snakes, though reptiles, do not __________. They bear young, just as mammals do.",Lay eggs -Science & Nature, Pandas spend about 12 hours a day eating __________,Bamboo,Food & Drink,What can be six litres of Champagne or the oldest person mentioned in the Bible? ,Metuselah ,Entertainment,"Name the band - songs include ""Strange Brew, White Room""?",Cream -General,Brent blend is a widely traded commodity - what is it,Oil,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,General,E is the international car registration plate for which country,Spain (Espania) -General,As what is a swimming pool also known,Natatorium,General,What term is given to that part of the Earth which can support life,Biosphere,General,South africa is the biggest producer and exporter of ______,Mohair -Science & Nature,What Make Of Car Did Don Mclean Drive To The Levy In American Pie ,Chevy (Chevrolet) ,General,Sixty what lives in a fornicary,Ants,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 -General,Church law once mandated death for believing in what,A vacuum,General,"Rising in Lesotho and flowing east to the Atlantic, which is the longest river in South Africa",The orange,General,What phrase did Quantum Leap's Sam Beckett use in every show,Oh Boy -Sports & Leisure,"What connects Ray Reardon, Geoff Capes and Christopher Dean? ",Were All Policeman ,General,A person in his eighties is called a(n) ____________.,Octogenarian,Art & Literature,"In sculpting, the cutting of a form from a solid, hard material such as stone or wood, in contrast to the technique of modeling. ",Carving -General,What was originally called flowmatic,Cobol,General,The plant Gypsophila Paniculata is grown predominantly for making bouquets what is its more common name,Babies breath, History & Holidays,Who Was The First To Sing On The 1984 Band Aid Single ,Paul Young  -General,Similes as neat as a ______,Pin,General,What is the Capital of: Taiwan,Taipei,General,Who was adam and eve's third child,Seth -General,Who sang the theme song for The Love Boat,Jack Jones,General,"A flat, round hat sometimes worn by soldiers is a _____.",Beret,General,What do you call the stock market that is on the rise,Bull market -General,What jethro tull lp cover featured minstrels playing,Minstrel in the gallery,General,In 1969 what category was added to the Nobel prizes,Economics,General,Killing a person painlessly especially one suffering from an incurable disease,Euthanasia -Geography,Which Country Sent The Most Explorers To Africa ,Scotland ,People & Places,Where Do Moaris Come From ? ,New Zealand ,General,Fado is a musical style popular in which country,Portugal -General,What was the first video played on MTV Europe,Money for Nothing – Dire Straits,General,What is the Capital of: Haiti,Port-au-prince,General,What is a male cougar called,Tom -General,Where do they speak Malagasy,Madagascar,Science & Nature,"What are Helium, Neon, Argon, Krypton and Xenon ?",Noble Gases,General,How much does a baby whale gain in weight every day,Two hundred pounds -General,"From 1980 to 1995, which country produced the largest amount of crude oil",Saudi arabia,General,What country consist of 700 islands,Bahamas,General,Operation Olympic was a WW2 invasion plan not used where,Japan surrendered -General,Anthocyanins are compounds which produce what,Colors,General,Which European Country Has The Most Volcanoes?,Iceland,General,What is the scent on the artificial rabbit that is used in greyhound races,Anise -General,What became a national holiday in the u.s in 1890,Christmas, History & Holidays,"In the song The Twelve Days of Christmas, '___my true love brought to me nine___' what? ",Ladies dancing ,General,1964 Iowa City had one Tokyo the other only ones in world what,Sperm Banks -General,Which verdi opera has the aria 'la donna e mobile',Rigoletto,General,Bor and Bestla his parents Vili and Ve his brothers name him,Odin chief Norse God,Music,"Robbie Williams Has Had By Far The Most Success Of The Former Members Of Take That , Gary Barlow & Mark Owen Have Had Some Success But What Are The Names Of The Other Least Successful 2",Jason Orange & Howard Donald -Food & Drink,What Do You Add To Advocat To Make A Snowball ,Lemonade ,Music,This Is My Truth Tell Me Yours Was The 5th Manic Street Preachers Album Name The Previous 4,"Generation Terrorists, Gold Against The Soul , The Holy Bible, everything Must Go",Sports & Leisure,What Sport Is Played By The Minnesota Twins? ,Baseball  -General,Boob Day in Spain is what day in Britain (practical jokes played),April Fools Day 1st April,General,"In the TV series 'Absolutely Fabulous, who played the part of 'Bubbles'",Jane horrocks,Science & Nature," Some __________ Pretend to be dead when captured, but quickly hop away when let go.",Bullfrogs -Sports & Leisure,Who Won A Seventh World Snooker Title In 1994? ,Alison Fisher , History & Holidays,Which series of films features a habitual serial killer called Michael Myers ,The Halloween series of films ,General,James Outram invented what,Tramways -General,What is the worlds most popular green vegetable,Lettuce,Science & Nature," 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,General,The liver of what is highly intoxicating to eskimos,Polar bear -General,What do koala bears dine on,Eucalyptus leaves,Sports & Leisure,How Many Consecutive Wimbledons Men's Singles Titles Did Bjorn Borg Win ,5 ,General,"Who Is The Famous Offspring Of ""Lara Lor Vari""",Superman -Music,Who Was The First Person To Cover A Lennon And McCartney Song,"Kenny Lynch ""Misery""",General,Lake Nyasa forms most of which country's eastern border,Malawi,General,Where is the largest gold refinery,South africa -General,Whose autobiography was entitled The Sport of Queens,Dick Francis,General,Which American author wrote The turn of the Screw,Henry James,General,"In a roman basilika, the central aisle. In a church, the main section extending from the entrance to the crossing.",Nave -General,What title character of a children's book turned his enemies into butter,Sambo,General,Ncaa: which team lost the men's basketball championship in 1955,La salle,People & Places,Who Was Faamous For Her 'Pomes' ,Pam Ayers  -General,Fangio the greatest ever F1 driver once had what job,Bus Driver,Geography,Which King Hired Henry Stanley To Carve Out An Empire For Him In Central Africa ,King Leopold II Of Belgium ,Geography,What Is The Worlds Busiest Seaport Handling The Most Tonnage Of Cargo ,Rotterdam  -General,Why are we playing trivia,Because we are bored for fun,General,Which member of the Monty Python team turned up as an English sheriff in the spoof western Silverado,John cleese,General,Who is the dog in 'the grinch who stole christmas',Max -Religion & Mythology,"In Greek mythology, into what did Athena turn Arachne?",Spider,General,Which norse god had the valkyries as handmaidens,Odin,Science & Nature,What are the units of measurement for Force ?,Newton -General,Fabled creature Head Man Body Lion Tail Scorpion Pork quills,Manticore,General,Cous-cous is Iranian for what,Vagina,Geography,Which Countries Are Divided By The 49th Parallel ,The Usa & Canada  -General,To what is coal sometimes added for sweetening,Softdrinks, History & Holidays,On May 1st 1931 the world's then tallest building was opened in New York City. which building was it? ,Empire States Building ,General,Who directed the films 'La Strada' and 'La Dolce Vita',Fellini -General,Which is the largest river forming part of the u.s-mexico border,Rio grande, History & Holidays,Which famous halloween party game originated from a custom to establish who would get married first ,Bobbing for apples. ,General,Who was captured in the third last row of the texas theatre,Lee harvey -General,Whose record did Babe Ruth break when he hit 60 home runs in 1927,His own babe ruth babe ruth's his,General,In what US state is area 51,Colorado,General,What colour is Spock's blood,Green -General,Who invented the potato chip,George crum,Geography,In which state is mount vernon ,Virginia ,General,Which industry uses the gravure method,Printing - Geography,What is the basic unit of currency for Libya ?,Dinar,General,Mosi-oa-Tunya - Smoke that Thunders - what natural feature,Victoria falls,General,What was Socrates wife's name,Xanthippe -General,"Plant community, predominantly of trees or other woody vegetation, occupying an extensive area of land",Forest,General,What was Barnaby Jones usual tipple,Milk,General,What did Lilius invent< Clavius complete and Pope Gregory XIII introduce,Gregorian calander -Food & Drink,What fruit contains the most calories? ,The Avocado Pear ,General,Who is the roman god of agriculture,Saturn,Toys & Games,A poker hand consisting of three of a kind and a pair is called a _______.,Full house -General,Poona was the original name of what sport/game,Badminton, History & Holidays,Name The First Steam Engine To Run Between Stockton & Darlington? ,Locomotion No1 ,General,As what was Istanbul previously known,Constantinople -General,At what angle above the horizon must the sun be to create a rainbow,Forty 40,General,What countries national anthem is The Bayambo song,Cuba,General,Ophidiophobia is the fear of,Snakes -Tech & Video Games,Linux is a clone of what operating system?,UNIX,Art & Literature,What Was The Name Of William Wordworths Sister ,Dorothy ,Science & Nature,Ethylene glycol is frequently used in automobiles.. How,Anti_freeze -Art & Literature,Who created Winnie the Pooh?,A. A. Milne,Music,"Mark Knopfler Produced An Album For Which Of These Acts ""Aztec Camera"" Or ""Huey Lewis""",Aztec Camera,General,What shape is formed by one side of a pyramid,Triangle -Science & Nature,The latin word for lips is:,Labia,General,Vor was the Norse Goddess of what,Truth,General,Xizang (spelt X-I-Z-A-N-G) is now a province of China. What is its other name,Tibet -General,What strongman was the original 97 pound weakling,Charles atlas,General,Here we go round the mulberry bush - what was original bush,Tree in Wakefield prison walked round,General,With what name did pablo picasso sign his paintings,Picasso -General,The term Septiquinquennial represents how many years ?,75,General,Sieze control of vehicle,Hijack,General,Orpheus went into the underworld to rescue who,Eurydice - Geography,On what island is Pearl Harbour?,Oahu,General,What was exchanged in Fair Exchange,Teenage daughters,General,Israel Baline became more famous under what name,Irving Berlin -Science & Nature,On A Standard Computer Keyboard Which Key Is The Largest ,The Space Bar ,General,Dr Susan Lark recommend what cure for menstrual cramps,Orgasm – increased blood flow helps,General,"Where would you see rope, hoop, ball and ribbon used",Modern rhythmic gymnastics -General,Name the country that starts with A but does not end with A,Afghanistan,General,"Which female vocalist released an album entitled ""Drag""",K d lang,Art & Literature,Who wrote 'Rendezvous with Rama'?,Sir Arthur C. Clarke -Geography,Which Famous Egyptian Queen Ordered The Expedition To Punt & Insisted On Dressing As A King While Wearing A False Beard ,Hatshepsut ,General,"What hardcore rock group sings, 'blind' and 'clown'",Korn,Music,"What was the working title of The Beatles Song ""With A Little Help From My Friends""?",Bad Finger Boogie - Geography,What is the basic unit of currency for Argentina ?,Peso,General,In the acronym BASIC for what does the letter B stand,Beginners',General,Tomblike monument to persons whose remains are elsewhere,Cenotaph -Geography,In which continent would you find the niger river ,Africa ,Geography,What is the capital of Tajikistan,Dushanbe,Sports & Leisure,Which Acid Is Produced In The Muscles During Strenuous Exercise ,Lactic  -General,"Hammer, anvil, and stirrup are parts of the ______.",Ear,General,Tigers have stripped fur - what colour is their skin,Stripped,General,In which country do the Sumi people live,Lapland -General,In which European country is Tokay wine produced,Hungary,General,Java is part of what country,Indonesia,General,Shoot a Waco was the original name for what drink,Dr Peppers -General,Analysis and manipulation of an image,Processing,Sports & Leisure,According To A Survey Conducted In 2000 Which 2 People Were Voted The Greatest Male & Female Tennis Players Of All Time Respectively? ,Bjorn Borg Martina Navratlilova ,General,The true seals are a diverse & widely distributed group of mostly marine & ___________,Aquatic mammals -General,Galt MacDermot wrote what 1967 musical stage show,Hair,Geography,Name the capital of Argentina.,Buenos aires,General,Which of the Apostles is traditionally pictured with a purse,Matthew taxman -General,Who conquered mexico,Hernando cortez,General,What is a group of this animal called: Pigeon,Flock flight,General,What is the name of Porky Pigs nephew,Cicero -Science & Nature," Hippopotamuses have killed more people in Africa than all the lions, elephants, and water buffalo combined, usually by __________",Trampling,General,White river is the principal tributary of which indiana river,Wabash river,General,What's was the nickname of New York's 28th street in 1920s,Tin Pan Alley -General,What country was the setting for 'the king and i',Siam,Food & Drink,Of which vegetable are Globe and Jerusalem varieties? ,Artichoke ,General,What is the name given to thin pieces of crisp toast,Melba -General,What area in the US translates from the Dutch as Broken Valley,Brooklyn,General,Who deposed Helmut Kohl as Chancellor of the Federal German Republic in 1998,Gerhard schroder,General,David Hasselhof spent most of his time driving a car on which eighties tv show?,Knight Rider -General,What's the name of the worlds first National theatre Paris 1680,Comedie Francaise,Art & Literature,In The Canterbury Tales At Which Tavern Do The Story Tellers Assemble ,The Tabard ,Science & Nature,What Is Alicante A Variety Of? ,Tomato  -General,"What is a ""tail piece"" rounding off a musical composition called",Coda,General,Kenneth Daigneau won $100 for naming which product,Spam,General,Speed skating started in which country,Netherlands - History & Holidays,Where Was A Famous (Tea Party) Held In 1773? ,Boston Tea Party ,General,Where are the Descartes highlands,On the moon,General,What was the name of Papa Doc Duvaliers secret police Haiti,Tonton Macoute -General,Who is the last Italian-born driver to have been Motor Racing Formula One world champion,Mario andretti,General,The berlin air lift was known as,Operation vittles,General,What is a snood,A kind of hairnet - History & Holidays,"In What Year Was The French Declaration Of The Rights Of Man (Liberty, Equality, Fraternity) ",1789 ,General,What is the only country in Southeast Asia to never be ruled by a European nation,Thailand,General,Operation Dracula in WWII freed what city,Rangoon Burma -Science & Nature,How many colors are there in a rainbow ,Seven ,General,What did Canada's Grand Falls change their name to 1964,Churchill,General,What's the square root of one-quarter,One half -Art & Literature,Homer wrote this account of the Trojan War.,Iliad, History & Holidays,Which actor won an Oscar in 1955 for their role in the movie 'The King and I'' ,Yul Brynner ,General,"What's the international radio code word for the letter ""R""",Romeo -General,What was the date in 1955 did Marty from Back to the Future arrive on.,"November 5th,1955",General,Which country was host to the 1999 cricket world cup?,England,General,A bending of the knees in any of the five positions.,Plié - Geography,What is the capital of Albania?,Tirana,General,The Adventure Gallery was whose ship,Captain Kidd,General,The italian bread focaccia gets its name from the Latin word for what,Hearth -General,The length of what is approximately 1/10th circumference of earth,Great wall of China,General,Who wrote 'the happy prince',Oscar wilde,Sports & Leisure,What sport has a hooker in a scrum?,Rugby -General,How many countries border the black sea,Four,Sports & Leisure,In A Game Of Tennis What Score Follows 'Deuce'' ,Advantage ,General,Which dessert is named after a ballerina,Pavlova -General,Which member of lily family is named from Greek for sprout,Asparagus,General,Who Is The Greek Goddess Of Love ,Aprodite ,Science & Nature, Male __________ lose the hair on their heads in the same manner men do.,Monkeys -General,The stinking cedar and yellow-wood trees are also known as what,Gopher wood,Entertainment,Who was Dr. Zhivago's great love?,Lara,General,The opening lines of which classic Russian novel are in French,War and Peace eh bien mon prince -General,Where is the grave of Oscar Schindler,Jerusalem, History & Holidays,Which Famous Venetian Merchant Travelled To China And Worked For Kublai Khan? ,Marco Polo ,General,"In Which Disney Movie Were There Characters John, Paul, George, & Ringo",The Jungle Book -Entertainment,"A graphical representation of the guitar fingerboard, used to teach someone to play a guitar without actually learning how to read musical notes.?",Tablature,General,For who was deana carter named,Dean martin, Geography,What is the basic unit of currency for Costa Rica ?,Colon -Music,She Blinded Thomas Dolby Wioth What,Science,General,The Chinese were using aluminum to make things as early as ___ ad,300,General,Which Country Were The First Ever Winners Of The European Championship Football Finals In 1960,Russia -General,What is a group of hens called,Brood,General,Where was the newspaper 'pravda' first published,Russia,General,Valentine Dyall was the voice of the computer `Deep Thought' in which 1980s TV series ,The Hitchhiker's Guide to the Galaxy  -General,Who is identified with the word 'eureka',Archimedes, History & Holidays,How many oklahoma land runs were there ,Six ,General,What is the name of the lift used to raise boats from the River Weaver to the canal system called,Anderton lift -General,What is the German word for poison,Gift,General,What size is A-0 paper?,One Square Meter,General,"What was the name of the rich boy that Andie was asked to go to the senior prom with in the movie ""Pretty in Pink""?",Blaine -General,Aconite the poison is obtained from what plant,Wolf's-bane,General,In legend who killed the mobster Grendel,Beowulf,General,Which group had their first U.K. number one hit ill 1973 with Rubber Bullets,Ten cc -General,Actor was known as Singing Sandy (dubbed) early in career,John Wayne,General,"What is the number 174,465 that belongs to the telephone",U.s patent number,General,What small island is in the bay of naples,Isle of capri - History & Holidays,Which US president said 'the buck stops here'?,Harry Truman,General,In Tucson Arizona it is illegal for a woman to wear what,Pants,General,What star once sold lingerie door to door,Burt Lancaster -General,Which Country Purchases The Largest Amount Of Condoms Each Year & Has Done So Since 1982,Japan,Music,Rick Olasek Was The Lead Singer Of Which Band,The Cars,General,Which Breed Of Dog Shares It's Name With A Costal Reagion Of Canada,Labrador -General,What is a 'niblick',Golfer's nine iron,General,"Who Played Harmonica On The Eurythmics Hit ""There Must Be An Angel Playing With My Heart""",Stevie Wonder,Food & Drink,Which sauce is made with mayonnaise and chopped pickled gherkin? ,Tartare Sauce  -General,Mckinley what u.s secretary of state bought alaska from russia for 7.2 million dollars,Seward,Sports & Leisure,What does it mean if a racehorse is described as a maiden? ,It hasn`t won a race yet ,General,What is geophagy,Practise of eating soil -General,85% of American people will eat what this year,Spam,General,What is the Capital of: Saint Lucia,Castries,General,What was the first movie to have a sequel - 1933,King Kong - Son of Kong -Geography,"Which is the most famous castle in County Cork, Ireland? ",Blarney Castle ,Music,Number of Beatles biographies registered at the Library of Congress,"177= Beatles, John=69, Paul=23, George=6, Ringo=2",General,"First produced in 1960, which Lerner and Loewe musical contains the songs - What Do the Simple Folk Do and If Ever I Would Leave You",Camelot -General,In Florida its against the law to put what on the school bus,Livestock,General,Shirley Manson Is The Lead Singer With Which Group,Garbage,General,A flower with brightly coloured daisy like flowers,Aster -General,"Name both of the planets that can be seen, from the Earth, 'in transit' - i.e. passing in front of the sun",Mercury & venus,Science & Nature,"What Is Meant By The Name Saxifrage , Which Grows In Cracks In Rocks ",Stone Breaker ,General,The film 'The Bishop's Wife' was released in what year,1947 -General,Who founded digital research,Gary kildall,General,Capital of Ghana,Accra,General,Which Christian Feast is celebrated on 1st November,All saints -General,The average human body contains enough phosphorous to make how many match heads,2000,General,What was checkpoint Charlie named after,Charlie – Phonetic Alphabet,General,"Which Actor/Comedian Provided The Voice Of ""Zazu"" In The Movie The Lion King",Rowan Atkinson -Food & Drink,What Wine Is Traditionally Matched With Pate And Brioche ,Sauternes ,General,Which Footballer Became The Very First European Footballer Of The Year,Stanley Matthews,General,Baby's Breath' is the common name for which plant,Gypsophila -General,Which Character of Tv & Film Had The Maiden Name Of Betty Jean McBricker,Betty Rubble,General,What stadium is home to the Seattle Mariners,Kingdome,General,Who is the chairman of the U.S. Federal Reserve Bank,Alan greenspan -General,What is the largest island in Asia,Borneo,Sports & Leisure,In 1980 An Official Was Knocked Unconscious Whilst Measuring In The WHHC What Does The Acronym WHHC Stand For ,World Haggis Hurling Championships ,General,In which Italian city would you find the headquarters of the Pirelli company,Milan -General,What is produced using the Kroll process,Titanium,General,What does an anthropophagist eat,People,General,What does an agriologist study,Primitive cultures -General,What is a group of moles,Labor,Music,What Did Air Supply Run Out Of In 1980,Love (All Out Of Love),General,"Where did two Boeing 747 aeroplanes collide on a runway in 1977, with 583 fatalities",Tenerife -General,Why were women barred from original Olympic Games,Male entries nude,Religion & Mythology,What is the shortest verse in the bible? (John 11:35),Jesus wept.,Technology & Video Games,"In Super Mario Bros. 2, how many extra lives do you get for spinning three 7s on the slot machine? ",10 - History & Holidays,In which film does a Moloko Plus loving Ludwig van fan live with his 'M' and 'P' ? ,A Clockwork Orange ,Music,"Which Gender Bender Had His Only Hit With ""Calling Your Name"" In 1983",Marilyn,General,Which actor once finished as 'runner-up' in the Le Mans 24 Hour Race,Paul Newman -General,Emeralds come from which mineral,Beryl,General,Who wrote The Little Prince,Antoine de saint-exupery,General,The port of Chittagong is in which country,Bangladesh -Food & Drink,Naughtiness Drug' is an anagram of which drink? ,Draught Guinness ,Science & Nature,Apart From Humans There Is Only One Other Creature That Has Sex For Pleasure Can You Name It ,Dolphin ,Science & Nature,The spot on the Earth's surface directly above an earthquake's focus is called the ______.,Epicenter -General,What sentence uses every letter of the alphabet,The quick brown fox jumps over the lazy dog,General,Who took the first space walk,Aleksei leonov,Music,"Singles Featuring Paul Mccartney Have Sold More Than 20, 60 Or 100 Million",100 Million -General,What famous building did sir john vanbrugh design?,Blenheim palace,General,The sprat belongs to what fish family,Herring,General,Where did cuneiform originate,Sumer -General,"What links Pythagoras, Hitler, GB Shaw and Henry Thoreau",Vegetarians,General,What is the most common surname in the world?,Chang, History & Holidays,What did President J. Buchanan not have?,A wife -Science & Nature,"On the Periodic Table, what is the Last element in alphabetical order?",Zirconium,Music,Which Henry Mancini/ Johnny Mercer Song Was Sung By Audrey Hepburn In Breakfast At Tiffany's,Moon River,General,What is the name given to a group of porpoises,School -General,What was The King of Trains and The Train of Kings,The Orient Express,General,In the language of flowers what does yellow lily mean,Falsehood,General,Al Borak was a flying horse owned by whom,Mohammed -Science & Nature,Which Electronics Company Dominates The Dutch City Of Eindhoven ,Philips ,Religion & Mythology,Who replaced Moses as the prophet of the Israelites?,Joshua,General,Who won an Oscar for best supporting actor in Spartacus 1960,Peter Ustinov -General,What Book Was Mark David Chapman Carrying When He Shot John Lennon In New York 1980?,The Catcher In The Rye,General,De Witt Wallace founded what,Readers Digest,General,The elephant can smell water up to how many miles away,Three -General,Which silent films stars contract forbade him smiling on screen,Buster Keaton,General,"Who, as of October 1998, is the Prime Minister of Israel",Benjamin netanyahu,General,Noctiphobia is a fear of ______,Night -General,What is epidaurus famous for,Greek theatre,General,What is a group of cats,Clowder,General,What tropic passes through Australia,Tropic of capricorn -General,How much did the hammer weigh that john henry swung,9 pounds,General,What is a group of foxes,Shulk,Music,"Who Co Wrote Band Aids Single ""Do They Know It's Christmas"" With Bob Geldof",Midge Ure -General,The first example of which type of brain-teaser appeared in the New York World newspaper in 1913,Crossword,General,Who makes Kleenex tissues,Kimberly Clark,General,What does GNP stand for ?,Gross National Product -General,Sir Richard Marsh was Chairman of British Rail in the 1970s and 1980s. He had earlier been prominent in what field,Politics (cabinet minister),General,Which Highly Sucessful Tv Show Of The 1980's Featured A Dog Called Muffit,Batllestar Galactica,Music,Who Won Best International Group At The Brit Awards In 1994,Crowded House -General,What is a group of rhinocerouses,Crash, Geography,Which is the only South East Asian country that is a member of the British Commonwealth?,Malaysia,Science & Nature,Where Does A Gopher Make Its Home? ,Underground  -General,The Westminster is the oldest and biggest what in the USA,Dog Show,General,More that I/3 adults do what average 3 time each morning,Hit Snooze button on alarm clock,Music,Who Helped Echo Have A Bunch Of Hits In The 80's,The Bunnymen -General,How did Liverpool football club get Anfield,Everton evicted not paying rent,Sports & Leisure,In Which British Sport Is A Leather Ball Hit By A Gloved Hand ,Fives ,General,How did Joy Friedericke Victoria Adamson die in 1985,Murdered in Kenya -General,Danakill tribe Ethiopia - mans grave 1 stone for each what he did,Man Killed,Music,What Was Love For Pat Benatar,A Battlefield,General,Which of the Great Train Robbers became a florist outside Waterloo station,Buster edwards -General,Peter Falk plays Lt Colombo but who was first offered role,Bing Crosby, History & Holidays,Who Played Bowls Before Engaging The Spanish Armada? ,Sir Francis Drake , Geography,What is the basic unit of currency for Micronesia ?,Dollar -General,In what profession is a 'ruderal,Gardening,People & Places,This Person Voiced The Muppet Characters Fozzie Bear & Kermit The Frog He Also Supplied The Voice To Yoda In The Star Wars Movies What was His Name? ,Frank Oz ,Music,Which Beatles song links tangerine trees and marmalade skies?,Lucy In The Sky With Diamonds -General,A 25 to 31 mph wind on the Beaufort scale is called what,Strong Breeze, History & Holidays,In the film 'The Santa Clause' who plays Santa? ,Tim Allen ,Art & Literature,"Author of such works as Gravity's Rainbow, V, The Crying of Lot 49 and most recently, Mason & Dixon?",Thomas Pynchon -General,A severe skin abscess or a bright red jewel,Carbuncle,General,What is the alternative name for rabies,Hydrophobia,General,What colour is yak's milk,Pink -General,In The Movie Toy Story 2 Who Proved The Voice Of Stinky Pete The Prospector,Kelsey Grammer,General,"In the film 'the lovebug', what number was painted on the side of 'herbie' the vw bug",Fifty three,General,What rodent is famous for building dams,Beaver -Music,"Who Had A Hit In 1983 With ""Hold Me Now""",Thompson Twins,Music,Which Record Label Did Abba Release All Of Their 70's Singles On,Epic,Sports & Leisure,What sport do the Harlem Globetrotters play,Basketball -General,What links Caprino Ziegenkase and Gaiskasli,Goats Cheese, History & Holidays,When did Christmas become a Federal holiday in the U.S.? ,1831 , Geography,What is the capital of Ghana ?,Accra - History & Holidays,Where did 'The Mayflower' take the pilgrims?,New World,Music,Which English punk band had Rat Scabies on drums?,The Damned,General,What unit of currency is used in Italy,Lira -General,"Knife, Clown and Pencil are types of",Tropical fish,General,In Britain a suffragette threw herself under the kings horse in what year,1913,General,A member of the largest group of algae in the golden algae phylum,Diatom -General,"What Was John Hinckley Famous For In 1981, Even Though He Wasn't Successful In His Task?",Shot Ronald Regan,General,What device did Henry Doherty patent in 1972,Pooper Scooper,General,What is a mud puppy,American Salamander -Sports & Leisure,Which sport takes place in a velodrome? ,Cycling ,Sports & Leisure,In 1985 who became the first unseeded man to win Wimbledon? ,Boris Becker ,General,"Which connects Delft, Sevres, Wedgwood, Chelsea",Porcelain -General,What is the fear of bees known as,Melissophobia,General,The Voyage of the Beagle told of which scientist's discoveries,Charles darwin,Science & Nature,What is the name of the world wide organization initiated by jean henri dunant in 1962 ,The red cross  -General,Men are ten times more likely than women to have what,Colour Blindness,General,Walt Disney in an interview admitted he was scared of what,Mice,General,In Greek mythology who built the labyrinth,King Daedalus - Geography,As what is Formosa now known?,Taiwan,General,What is the study of weather,Meteorology,Music,"From the 1970's which song and artist “You're a rhapsody, a comedy, you're a symphony and a play. You're every love song ever written, but honey what do you see in me”?",Rod Stewart / You're In My Heart -General,What was rhoda's maiden name,Morgenstern,General,In Elizabethan England rich people carried their own folding what,Spoons to Banquets,General,"Before going solo, the singer Louise was a member of which pop group",Eternal -General,How often must one perform a quotidian task,Daily,General,What acid is produced in the stomach,Hydrochloric,General,"Largest, rarest, and most powerful anthropoid ape",Gorilla -Food & Drink,"Apparently resembling a marine creature, which morsel of meat found in a fowl's back is reckoned by some to be the tastiest? ",Oyster ,Geography,Where Is The Veldt ,South Africa ,General,For which English king did Handel compose his Water Music,George the first -General,Which American Indians modern name in Spanish means village,Pueblo,General,Bumper Harris - wooden leg - what Job on London Underground,Ride new escalators,General,What is a bandy bandy,A Snake -Geography,Which Is The Longest River In Britain ,The Severn , History & Holidays,"As at November 2005, who is the only British Prime Minister to have been appointed and dismissed four times, serving four separate terms in office? ",William Gladstone ,Music,What Is The Best Selling Rolling Stones Single In Britain,Honky Tonk Woman -Music,"Who Had A Huge Hit Expecially In The States With ""Breathe Again""",Adam Rickett,General,Which TV Heartthrob Was The First Choice To Play Indiana Jones On Film But Missed Out Due To Commitments In His TV Contract,Tom Selleck,General,Who was the first to sign the U.S. declaration of independence,John hancock -Sports & Leisure,"In Olympic Competitions, What Is The Height Of A Diving Board ",10m ,Toys & Games,Board game involving rapid climbing and tragic sliding.,Chutes(Snakes) and ladders,General,Where was the first speed limit regulation of 20 mph set,England -General,What was the name of the toy spaceman in Toy Story,Buzz lightyear,General,Distaff is the female family side - what is the male,Spear,General,What first happened on January 4th 1885 Davenport Iowa,Appendectomy -Music,Name The 1990 Western Which Won John Barry An Oscar For Best Film Score,Dances With Wolves,Geography,What Is The Capital Of Iran ,Teheran ,General,Who coined the phrase 'good to the last drop',Theodore roosevelt -General,Inanna is the sumerian goddess of ______,"Love, fertility and war",General," This word means ""split personality"".",Schizophrenia,General,What kind of bird is a 'poussin',Chicken -Music,Who Changed His Name From Mark McLoughlin,Marti Pellow,General,A ships officer in charge of equipment and crew,Boatswain, History & Holidays,Which was the sacred animal of ancient egypt ,Cat  -General,Who starred as Bill Bittinger in Buffalo Bill,Dabney coleman,General,In 1912 Chinese republic proclaimed in,Tibet,Science & Nature,What Is AG The Chemical Symbol For ,Silver  -Music,French Kissin In The USA Was A Hit For Who,Dennie Harry,General,In 1947 it began at Callao Peru ended Tuamotu Island what did,Kon Tiki Expedition,General,"You've got a lot of repressed feelings, don't you (..)? Must be what keeps your hair up. (.. Name with held to protect the innocent)",Dragnet -General,"Who played the inventor in 'honey, i shrunk the kids'",Rick moranis,Sports & Leisure,Which Class Is The Lowest Weight In Professional Boxing ,Straw Weight , History & Holidays,What was the most Eastern country in Alexander The Great's command at his peak?,India -Music,"Name The Year Hotel California, Elvis Presley Dies, Ronan Keating Born",1977,General,What's the only day named for a planet,Saturday,General,In what city was Americas first stock exchange built,Philadelphia -General,What is dendrochronology,Tree ring dating,General,"In the u.s, for how long is a patent good",Seventeen years,Music,"He's Luke He's Five & His Dads Bruce Lee, But What Does His Dad Spend Most Of His Time Doing",Driving His JCB -General,Who won the world soccer championship in 1982,Italy,Music,With Which Artist Is The Funk Band The New Power Generation Associated,Prince,General,Which male mammals have the highest rate of homosexuality,Bats -General,Banjul is the capital of ______,Gambia,General,"A continuous aisle in a building, especially around the apse in a church. ",Ambulatory,General,A U.S. dime is worth ___ cents.,10 -Food & Drink,Which cooking term is used to describe vegetables cut into very thin strips and cooked slowly in butter? ,Julienne ,General,Who did lennox lewis represent at the olympics,Canada,General,What country was formerly called Ceylon?,Sri Lanka -General,He began his career as a lead vocalist with the group 'them' during the early british invasion.,Van morrison,General,Small piece of bread or pastry with a savoury topping,Canape,General,In the Bible what was the sixth plague of Egypt,Water into Blood -Music,What Is The Name Of Dolly Partons Theme Park In Tennesse,Dollywood,General,Which people slide down a pole to help them to get to work quickly,Firemen,Science & Nature,In Computing Esp Concerning The Internet What Do The Initials HTTP Stand For ,Hyper Text Transfer Protocal  -Entertainment,What famous singer was known to give automobiles to complete strangers?,Elvis Presley,General,Another name for wood alcohol is___.,Methanol,General,What is the longest typed word (found so far) that alternates hands,Skepticisms -General,Where did the ancient Egyptians paint pictures of their enemies,Foot of Sandals,General,Baron Silas Greenback was the enemy of which character,Dangermouse,Food & Drink,How many noggins in a pint? ,4  -General,"Launfal, Pelleas and Tristram were part of what group",Knights of the Round Table,General,"______, the first felt-tip pen, is introduced to the market",Pentel,General,Who was The Man of Destiny in George Bernard Shaw's play of that name,Napoleon bonaparte -General,What was alaska before 1867,Russian america, Geography,What is the basic unit of currency for Denmark ?,Krone,Food & Drink,What Is The Fruit From The Ananas Comosus Called ,Pineapple  -General,What is the flower that stands for: enchantment,Holly herb,General,"Any structure of animals, plants, or insects that produces chemical secretions or excretions",Gland,General,In the game Tomb Raider what's Lara Crofts profession,Archaeologist -General,What is the nickname for North Dakota,Sioux state,Science & Nature,The silkworm only eats the leaves of what plant?,Mulberry,General,Montana whom did aristotle onasis ditch for jacqueline kennedy,Maria callas -General,What is the most popular meal ordered in US restaurants,Fried Chicken,General,What year was the Americans first atomic submarine launched,1954,General,"As of November 2000, which golfer has won the most prize money in international competition",Greg norman -General,This planet has an atmosphere that is 98 percent Helium?,Mercury,General,Which protein forms nails and hair,Keratin,General,What band recorded the 1978 hit album: 'Briefcase Full of Blues'?,The Blues Brothers -Sports & Leisure,In what sport did the word 'crestfallen' originate?,Cockfighting,Food & Drink,"Cornflakes were invented in What Year 1863, 1890 or 1915 ",1890 ,General,What name is given to a division of a Hells Angels club,Chapter -General,Which Greek philosopher was appointed tutor to Alexander the Great in 342 B.C.,Aristotle,General,Funeral March of a Marionette theme tune to what old TV show,Alfred Hitchcock Presents,General,Who abolished christmas in 1647,English parliament -General,Valois wine is produced by which European country,Switzerland,General,"When asked what she did for a living, ""I'm a housekeeper-I get married-I get divorced-I keep the house.""",Zsa zsa gabor,General,The Punjab is an area of India meaning what,Five Rivers -General,Who reputedly first said - if in doubt tell the truth,Mark Twain,General,Except Australia 1 New Zealand 1 USA all since 1870 want?,America's Cup,General,Wadsworth In what year was Diet Pepsi introduced,1965 -General,What nationality is the racing driver Jean Alesi,French,General,What was the name of the regimental tune of the 7th cavalry,Garryowen,General,In which South American country does the plateau of Borborema lie,Brazil -General,Who wrote the line East is East and West is West,Rudyard Kipling,General,Which magician did lothar assist,Mandrake,Art & Literature,Who wrote 1984 ?,George Orwell -General,Which famous female character of TV and films was played by a male when she was first introduced to our screens in 1943?,Lassie,General,What is a poker hand consisting of three of a kind and a pair,Full house,General,A sailor who has not yet crossed the equator is referred to by what name,Pollywog -General,Approximately how many concertos were composed by Antonio Vivaldi,500,General,The very first bomb dropped by the allies on berlin during world wwii killed the only ________ in the berlin zoo,Elephant,Art & Literature,"The representation of inanimate objects in painting, drawing or photography. ",Still life -Music,"""Lost In America"" Was A 1994 Hit Who Sang It",Alice Cooper,General,"Who recorded the album ""Rio"" in 1983",Duran duran, Geography,As what is Krung Thep is more commonly known?,Bangkok -General,What is Bugs Bunny’s catch phrase?,What's up doc?,Science & Nature,This cell organelle is responsible for protein production?,Ribosome,General,Who wrote the Thin Man in 1934 (both names),Dashiell Hammett -General,What's the name of the technique for measuring at a distance,Telemetry,General,Translated literally what does television mean,Far Seeing,General,What kind of creature is a Lorikeet,A parrot -General,What trumpeter led all other jazz musicians in Ed Sullivan Show appearances,Louis armstrong,Food & Drink,"Mustard, ketchup and onions on a hotdog are all __________.",Condiments,General,"In the movie ""Better Off Dead"", what was the name of Lane's younger brother?",Badger -Sports & Leisure,Who Is Presently The President Of The Football Association? ,Prince William ,General,What does a thurifer do,Swing censor Anglican high mass,General,Who wrote Goodbye Mr Chips,James hilton -General,How many prongs are there on a dinner fork?,4,Entertainment,Who 'imagined' a better world?,John Lennon,General,What was the first known lighthouse,Pharon -Geography,What is the capital of Washington state,Olympia, Geography,"On what island is the U.S. naval base, Guantanamo?",Cuba,Art & Literature,Who Painted Flatford Mill ,Constable  -General,"What carmaker's ads boast ""we build excitement""",Pontiac,General,What is the term ph an abbreviation for,Potential of hydrogen,General,What is the tribal african word for dowry?,Lobola -General,In The Marriage of Figaro - who did Figaro marry,Sussanah,General,About 10% of the worlds population is what,Left handed,General,There is one gallon of water in every cubic mile of what,Fog -Sports & Leisure,What was Jack Nicklaus' nickname?,Golden Bear,General,What term is used by the British military to describe an incidence of friendly fire?,Blue on Blue,General,In Portland Maine it is illegal to put what under a girls chin,Feather Duster -General,Which modern author wrote The Regeneration trilogy,Pat barker,General,"In Greek mythology, gave fire to mankind",Prometheus,General,Hot springs are known as geysers after the great geysir that is located where,Iceland -General,Which once-common disease was also known as the 'white death',Tuberculosis,General,Who sang the theme tune to the latest James Bond film 'Tornorrow never dies',Sheryl crow, History & Holidays,In which country is a bell struck 33 times? ,Korea  -General,The game pailemalle played on grass evolved into what,Billiards,Science & Nature,What Type Of Creature Is The Most Poisonous In The World? ,A Frog (The 1&1/2 Inch Golden Poison Frog ) , Geography,What is the basic unit of currency for Andorra ?,Peseta -Food & Drink,Armagnac Is A Brandy Originating From Which Part Of France ,Gascony , Geography,What is the capital of Rwanda?,Kigali,General,What hospital did Dr Kildare work at,Blaire General -General,What organisation did C T Russell found,Jehovah Witnesses,Music,"Who Recorded Ther Albums ""Popped In Souled Out"" And ""Holding Back The River""",Wet Wet Wet,Science & Nature,What Does An Ammeter Measure ,Electrical Current  - History & Holidays,Who Released The 70's Album Entitled Tusk ,Fleetwood Mac ,Music,What Is The Reeded Wood-Wind Instrument Comprising A Wooden Tube Doubled Back On Itself,The Bassoon,General,What does 'anasazi' mean,The ancient ones - History & Holidays,Who Released The 70's Album Entitled The Scream ,Siouxsie and the Banshees ,Music,What Was ELO Short For,Electric Light Orchestra,General,What insect depends on sight to locate mates,Firefly -General,Where was it once against the law to have a pet dog?,Iceland,Music,Who Managed The Sex Pistols,Malcolm Mclaren,General,A squid found in New Zealand had the biggest what ever seen,Eye 15.75 inches -General,What is the Capital of: Burkina Faso,Ouagadougou,General,"The mathematical study of properties of lines, angels, etc., Is ________",Geometry,General,Where was Bob Dylan born,Duluth Minnesota -Art & Literature,Who won a Pulitzer Prize for Angela's Ashes? ,Frank McCourt ,General,"First Defence, In Home or Second Attack positions what sport",Lacrosse,General,"What line precedes ""You're the salt in my stew""",You're the cream in my -General,Whats the German name for their own country,Deutschland,General,Who experimented with the idea of contact lenses,Leonardo da vinci,Religion & Mythology,Who is the greek equivalent of the roman god Jupiter ?,Zeus -Music,Which Female SingerSpent Most Weeks In The Charts In 1995 & 1996,Celine Dion,General,"In the television series The Prisoner, what seas Patrick McGoohan's number",Six,General,"Vega mechanical device that produces a force, or thrust, along the axis of rotation when rotated in a fluid, gas or liquid",Propeller -General,What colour is natural cheddar cheese,White – it’s dyed red,General,"What islands were once called the ""fortunate islands"" or ""isles of the blest""",Canary islands canary,General,Baseball: the milwaukee ______,Brewers -General,"In the USA, for how many years is a patent good?",Seventeen,People & Places,Who Was The First Ever Man Seen On Channel 4? ,Richard Whitely ,General,Which month has a diamond as a birthstone?,April - History & Holidays,What's the resting place of those buried at sea?,Davey Jones's Locker,General,What do the letters 'r.e.m.' stand for,Rapid eye movement, Geography,What is the basic unit of currency for Lebanon ?,Livre -General,Which European country eats the most breakfast cereal,Britain,General,What does the family name Perkins mean,The Rock,General,Where are phalanges,Hand -General,Scotophobia is the fear of what,Being seen by others,General,"What Was The First UK Top Ten Hit For ""Adam And The Ants""",Dog Eat Dog,General,"The name ""Lego"" comes from which Danish words ?",Leg godt -Music,"Who As A Joint Artist Has Had Hits With Marvin Gaye, Lionel Richie & Julio Iglesias",Diana Ross,General,Earl Grey is a China tea flavoured with what,Bergamot,General,When was nelson mandela released from robben island,1990 -General,Who directed the 1962 film Lawrence of Arabia,David Lean,General,Who played the forger in the film The Great Escape,Donald pleasance,General,Who were the learned class of the ancient Celts whose name means 'knowing the oak tree',Druids -Music,"Which Controversial Star Had A No.1 Hit With ""Stan""",Eminem,General,How many hearts do earthworms have,Five,General,Cry Freedom was Richard Attenborough's film about who,Steve Biko -General,Who discovered Tasmania,Abel tasman, Geography,Which Canadian province extends farthest north?,Quebec,General,What 1955 fad was good for New York City fur dealers,Coonskin hats -General,What is a young whale,Calf,General,What country has the worlds largest merchant navy,Liberia,Science & Nature,What Type Of Creatures Are Cetaceans? ,"Whales,Dolphins And Porpoises " -General,Which infectious disease is known as Kissing Disease,Glandular fever,General,In Tennis where is the Australian Open played,Flinders Park,Technology & Video Games,"The quote ""You spoony bard!"" is from what game? ",Final FantasyIV -General,"What is made with a mix of charcoal, saltpetre and sulphur",Gunpowder,Religion & Mythology,In ancient Egypt which animal was considered sacred ?,Cat,General,Who was elected prime minister of Australia in 1991,Paul keating -General,Who was the sun god,Ra,Music,What Was The First Broadway Musical,The Black Crook In 1866,General,Samuel de Champlain founded which city,Quebec -Geography,What is the capital of Liberia,Monrovia,General,What is the Capital of: Serbia and Montenegro,Belgrade,General,The worst circus fire was in the USA in what year,1944 -General,In 'star wars' david prowse was darth vader's ______,Body,General,"On who's show would yoU.S.ee the german character, keeglefarven",Red buttons,General,In literature who is the alter ego of Percy Blakney,Scarlet Pimpernel -General,Quebec and newfoundland are the only two canadian provinces which do not allow ______,Personalised licence plates,Music,What Was The Title Of Mousse T And Tom Jones Hit Of 2000?,Sex Bomb,Science & Nature,What is the second derivative of distance ?,Acceleration -General,A typical bed usually houses over how many dust mites,6 billion,General,What Italian city had the Roman name Mediolanum?,Milan,General,Equator's favourite dish is Seco de Chivo - what is it,Goat stew on rice -General,What fruit is the basis for guacamole,Avocado,General,Sarah Jane Fulks - Anne Francis Bobbins both married who,Ronald Reagan J Wyman N Davis,General,Regnat Populus - The people rule - motto of what US state,Arkansas -General,It costs $30 a day in Austria to do this nude in winter - what,Cross country skiing,General,What is dennis the menace's surname,Mitchell,Geography,What is the capital of Nepal,Kathmandu -General,Chokan Moyogi Shakan Han Kengai and Kengai styles of what,Bonsai - styles, Language,What does the word 'karate' translate to in English?,Open hand,General,What microscopic animals name comes from Greek little Staff,Bacteria -General,"What organization helped defend earth in ""ultra man""",Science patrol,General,Between 1916 and 23 Clarence Saunders opened 2800 what,Piggly Wiggly – self service stores,General,A man's beard grows fastest when he ______,Anticipates sex -General,What makes Kirminski church in Finland unique,World biggest wooden church,General,Who is Warner Brothers oldest cartoon character,Porky Pig,Science & Nature,There Are 5 Elements In The Periodic Table That Conttain 4 Letters In Their Name Iron & Lead Are 2 Of Them 1 Point Each For Any Of The Other 3 ,"Gold, Neon, Zinc " - Geography,In which state are the Finger Lakes?,New York,Science & Nature,This animal is armed with bony plates and rolls up into a ball if frightened.,Armadillo,Music,"In 1998 ""Q"" Magazine Compiled A List Of The 100 Richest Rock Stars In Britain Name 3 Of The Top Five","Paul McCartney, Elton John, Mick Jagger, Phil Collins, David Bowie" -Sports & Leisure,How many hurdles must a runner jump over in the 110m men's hurdles race? ,10 ,General,What is the fear of property known as,Orthophobia,Science & Nature,Ethylene glycol is frequently used in automobiles.. How?,Anti-freeze -General,What alkaloid is derived principally from the bark of the cinchona tree,Quinine,Entertainment,This is a classic film about a huge gorilla.,King Kong,General,How many cards are there in each suit of a standard deck,Thirteen -General,A large patterned handkerchief,Bandanna,Food & Drink,Which region of France does claret come from? ,Bordeaux ,General,What was the name of the magazine on Suddenly Susan?,The Gate -General,"In What Year Did Russian Computer Programmer ""Alexi Pachitnov"" Design & Program The Video Game Tetris",1985, History & Holidays,What was the name of David Hasselhoff's talking car in Knight Ridder? ,Kitt , Geography,In which city is the Bridge of Sighs?,Venice -General,What is the fifth month of the year,May,General,What are non-precious metals called,Base metals,General,What ruined Cesar Borgia's honeymoon night,Mate gave him Laxatives -Sports & Leisure,"Which Sport Event Combines Riding, Revolver, Shooting, Fencing, Swimming & Running? ",The Pentathlon ,Religion & Mythology,Who founded Mormonism?,Joseph Smith,General,What is a group of this animal called: Snipe,Walk wisp -Sports & Leisure,The Gates To The Entrance Of Wimbledon Are Named After Which Player? ,Fred Perry ,General,What is thought to be the oldest English Cheese,Cheshire,Music,"""David Howell Evans"" Is Which Guitarists Real Name",The Edge - History & Holidays,"Which 1776 American Affirmation Asserted The Basic Rights Of All To (Life, Liberty & The Pursuit Of Happiness) ",American Declaration Of Independence ,Science & Nature,What forms when a diamond is cut with a laser?,Graphite dust,General,What was the name of Vanessa's last boyfriend on The Cosby Show?,Dabnes -Science & Nature," Flamingos are not naturally pink. They get their color from their food, tiny green algae that turn pink during __________",Digestion, History & Holidays,Which legendary American fire fighter was sent to extinguish the oilfields of Kuwait in 1991? ,Red Adair ,Geography,In Which City Might You Travel By Gondola ,Venice  -Sports & Leisure,In A Pefect 147 Snooker Break How Many Points Would Have Been Scored By Potting The Black ,112 ,General,In what game would you nurdle scrunge or carnovsky,Tiddlywinks , History & Holidays,What did David Stirling found?,SAS -General,What comes in varieties freestone and clingstone,Peaches, History & Holidays,"If someone gave you a frumenty at Christmas would you eat it, drink it or wear it ",Eat It (A spiced porridge) ,General,Yvon Petra was the last man to do what at Wimbledon,Wear flannels -General,A scholar who studies the Marquis de Sade is called a what,Sadian, History & Holidays,John McClane was fighting terrorists in a skyrise in which eighties movie? ,Die Hard ,General,What is the Capital of: Canada,Ottawa -General,With what did dricketer mansoor ali khan pataudi play with for a long time,Glass eye,General,What is a male ass,Jack,General,"In Italy what is a ""Zuppa Inglese""",Desert -General,You have head of ebay.com what's ebay translate to in Russian,Fuck off – imperative of word fuck,General,What's the best possible poker hand,Royal flush,General,What is fumet,Concentrated stock -General,Saudi Arabia law women get divorce if husband don’t give her it,What? - Coffee, History & Holidays,Who won the 1968 oregon democratic primary ,Eugene mccarthy ,General,What was the world’s first high level programming language 1957,IBM FORTRAN -General,Who wrote Sparkling Cyanide and Death on the Nile,Agatha christie,General,How many continents must a sport be regularly played in before it is accepted into the olympics,Five,General,Which biscuit is names after an Italian revolutionary leader,Garibaldi -General, This is the fear of enclosed spaces.,Claustrophobia,General,Which breed of dog was popularised from the name of a character in the Walter Scott novel 'Guy Mannering'?,Dandie Dinmont,General,The maiden names of which two cartoon characters are slaghoople and mcbricker,Wilma flintstone and betty rubble -General,What is a group of geese flying,Skein,General,Dianne Fossy the naturalist is famed working with what animals,Gorillas,General,In which country was Chopin born,Poland -General,"According to Espen Lind, who cries when 'she cries a rain storm, she cries a river, she cries a hole in the ground'",Susannah,General,What do opposite charges do,Attract,General,Who ordered the killing of the last incan king of peru,Francisco pizarro -General,Jobs from names - what did a Wayne do,Wagon Maker,Geography,"Ruby Falls, America's highest underground waterfall open to the public, is located on historic Lookout Mountain in Chattanooga, _______________",Tennessee,Food & Drink,"Duke Richelieu brought it to France after visiting Mahon, city on Minorca.",Mayonnaise -General,Which is the largest of the Egyptian Pyramids ?,Pyramid of Cheops,General,"What two characters from Sesame Street got their names from the movie ""It's a Wonderful Life""",Bert and ernie,General,Which game uses the largest ball,Earthball -General,"In agriculture, what is ground being 'rested' for a season called?",Fallow,General,What is a spoodle,Kitchen instrument spoon ladle cross,General,What was the Spice Girls' first single after the departure of Geri Halliwell,Viva forever - Geography,What is the capital of Czech Republic ?,Prague,Geography,Which Continent Did Captain Cook Discover In 1768 ,Australia ,Food & Drink,The lack of what vitamin causes beriberi (numbness in the hands and feet)?,B1 -General,Who makes the impulse se camera,Polaroid,Music,"Who Had A 1990 Hit With ""Tell Me There's A Heaven""?",Chris Rea,General,What is the common name for Carbolic Acid,Phenol -General,What term is applied to the natural process by which molecules will disperse evenly throughout a particular substance,Diffusion,General,Who wrote The Hunt for Red October,Tom clancy,General,What does the acronym CIA stand for?,Central Intelligence Agency -General,Where is the Salvador Dali museum located,St Petersburg Florida,General,In Peter Pan what were the names of Wendy's brothers,Michael John,General,Which country has a plain green flag,Libya - History & Holidays,What was The Eldest Son Of Edward III Better Known As? ,The Black Prince ,General,What's the connection between the Carol Burnett Show and Mama's Family,Eunice and Mama,General,What items name translates as distant voice,Telephone -General,Where is milk the most popular beverage,North america,General,In Islam what is the third piller of wisdom - there's 5 in total,Charity - 2.5 % of income,General,What drug is obtained from the poppy plant,Opium -Music,Who was lead guitarist with Mountain?,Leslie West,General,What is the official language of india,Hindi,General,A Hodophile gets sexually aroused by what,Travelling -General,John Simon Richie became famous as who,Sid Vicious,General,Who was disqualified during the 1908 Olympic Marathon,Dorando pietri,General,What is the common name for the astyeroidea,Starfish -General,"When used to describe a camera, what does SLR stand for",Single lens reflex,General,How many horses are there on a polo team,Four,General,What arts/literary movement founded by Tristan Tzara in 1915,Dadaism -General,Kevlar Is Tradionaly Used In The Manufacture Of Which Item Of Attire,Bullet Proof Vest,General,Whose tomb was discovered by Howard Carter in 1922,Tutankhamen,General,"In The TV Show ""Jamie And The Magic Torch"" What Was The Name Of Jamies Dog",Wordsworth -General,Which film won the best sound effects Oscar in 1990,Hunt for Red October, History & Holidays,Which famous horror film featured a killer wearing a mask which was actually a Captain Kirk mask painted white ,Halloween ,General,Snakephobia is the fear of,Snakes -Science & Nature,The Kelvin scale is used to measure _________.,Temperature,General,"In Shakespeare's Macbeth, which wood appears to move",Birnham wood,General,The King Cobra is the only snake that does what,Builds a Nest -Science & Nature,Of Which Plant Family Is The Leek A Member? ,The Lily ,Art & Literature,What DoYou Call A Picture That Is Made Of Various Materials Stuck Together ,A Collage ,General,In 1978 which punk rocker commited a serious crime in Manhattan,Sid vicious -General,Who was john lennon married to,Yoko ono,Science & Nature,Which planet was discovered in 1930 ?,Pluto,General,Lake Tiberius is better known by what name,Sea of Galilee -General,"In which film did Marlene Dietrich sing ""See What the Boys in the Backroom Will Have""",Destry rides again,Mathematics,What geometric shape has 4 equal sides?,Square,General,What is 42% carbohydrates 5% protein and 53% fat,Chocolate -Science & Nature,Which Detective Tried To Find Out Who Framed Roger Rabbit ,"Eddie Valiant, (Bob Hoskins) ",General,Cyprus lies in which sea,Mediterranean,General,"What does ""zucchero"" mean in italian?",Sugar -General,What geographical point did Robert Peary claim to have reached,North pole,General,What type of craft is the u.s's airforce one,Boeing 747, Geography,What is the basic unit of currency for Ivory Coast ?,Franc -General,Who was born in Chicago 5th December 1901 died 1966,Walt Disney,General,"Which City Has More Rolls Royce Cars ""Per Capita"" Than Any Other",Tokyo / Japan,Music,YWhich Former US President Does Dream Academy 's Life In A Northern Town Mention,John F Kennedy -General,Naturally we got to find a place called Fuka - Where,Zaire,General,Who recorded the song 'Rocket Man',Elton john,General,What world championship is the 'bermuda bowl',Bridge -Music,"How Many Chart Entries Did The Jam Have Between March & August 1980 (2,4,6 Or 8)",8,General,What was first work of fiction blessed by the Pope,Ben Hur – Lew Wallace,General,Ceres was the roman goddess of ______,Grain -General,Into which bay does the golden gate strait lead,San francisco bay,General,What is a group of hyenas,Cackle, History & Holidays,Who Founded The Open University? ,Harold Wilson  -General,Agriculture incorporating the cultivation and conservation of trees,Agroforestry,General,Which US states name means meadowland,Kentucky, History & Holidays,Which US state in 1907 was the last to declare Christmas a legal holiday? ,Oklahoma  - History & Holidays,""" What Letter Comes Next In The Following Sequence """"B, C, C, D, D, D, P, R"""" 'Blitzen, Comet, Cupid, Dancer, Dasher, Donner, Prancer, Rudolph, Vixen'' "" ",V= Santa's Reindeers in Alphabetical Order ,General,Where would you find the stuffing box and sucking rod,Oil Well Pump,General,What is the name of the spaceship in the film Alien?,Nostromo -General,In which Charles Dickens novel does Herbert Pocket appear,Great expectations,Food & Drink,What is the main flavour in the following alcohols 'Cointreau' ? ,Orange , History & Holidays,What ocean was amelia earhart flying over when she disappeared ,The pacific  -General,The relative speed of the TRS-80 to the ENIAC is __:1,20,Sports & Leisure,Who Scored Six Of England's Seven Goals At The 1986 World Cup Football Finals? ,Gary Lineker ,General,What organ did Aristotle think the blood cooled,Brain -General,"Which Famous Actor Played The Role Of ""Blake Carrington"" In The Pilot Episode Of Dynasty",George Peppard,Science & Nature,Dermatitis affects the __________.,Skin,General,Who composed the opera 'Macbeth',Verdi -Art & Literature,Who Is Novelist Helen Fieldings Most Famous Character? ,Bridget Jones ,General,What is a scut,A short tail,General,What is the flower that stands for: criticism,Cucumber -Music,Longest chart life of any Beatles single: 19 weeks,19 Weeks / Hey Jude,General,In Brainard Minnesota every man must do what by law,Grow a Beard,General,Janine Deckers suicided 1985 had top 10 hit 1962 as who,The Singing Nun Sister Luc Gabrielle - Geography,What is the capital of Missouri?,Jefferson City,Science & Nature,What Is The SI Unit Of Energy ,Joule ,Food & Drink,In 1981 Which Producer Of The Bond Movies Received The Irving G Thalberg Memorial Award? ,Cubby Broccoli  -General,What Russian writer was deported from the Soviet Union in 1974,Alexander,General,What produces the natural gas which is New Zealand's contibution to the greenhouse effect,Sheep,General,What leader was cremated on the banks of the Ganges river on 1/31/1948,Mahatma gandhi -Music,"Who Played Franz List In Ken Russells Film ""Lisztomania""",Roger Daltry,General,"Dows, Grahams and Warres famous producers of what wine",Port,General,"In ""The Blues Brothers"", what does SCMODS stand for?",State County Municipal Offender Data Systems -General,Mathew Webb swam the channel - where did he drown,Niagara Falls, History & Holidays,In Which War Was Pork Chop Hill Fought Over? ,Korean ,General,The Great Barrier Reef is how many miles long,1250 -Music,Which Band Released The Song Breakfast In America,Supertramp,General,In which weight category did John Conteh fight for the world title,Light heavyweight,Science & Nature," The armor of the __________ is not as tough as it appears. It is very pliable, much like a human fingernail.",Armadillo -General,Dendrologists worship what,Trees,General,What is Montreal's subway known as,Metro,Music,"Who Sang The Opening Song In The Film ""The Italian Job""",Matt Monroe - Geography,What is the capital of Indonesia?,Jakarta,General,Whose business cards identified the holder as a furniture dealer,Al capone,General,What did Johnny Staccato do when he wasn't busy as a private eye,Jazz pianist -General,"In 'dawson's creek', who does joshua jackson play",Pacey witter,General,Who is daisy duck's boyfriend,Donald duck,General,"Which car manufacturer built a model called 'Oxford', first produced in 1913",Morris motors -Science & Nature,What Type Of Insect Is A Weevil ,A Beetle , History & Holidays,Who Released The 70's Album Entitled Electric Warrior ,T. Rex ,General,Rudolf Rasendil is the hero of what novel and film,The Prisoner of Zenda -General,What is the capital of michigan,Lansing,General,Name the Lieutenant Colonel who was first black US in space,Bluford,General,Pitcairn Airlines were the first to provide what in 1922,Air Sick Bags -General,Which organ secretes insulin?,Pancreas,General,The head of which organisation is known as The Black Pope,The Jesuits,General,You'll Never Walk Alone came from which 1945 musical show,Carousel -Music,Who Was Lead Singer With Van Halen But Went Solo In 1985,David Lee Roth,General,"By 70 years of age, an average person will have shed how many pounds of skin",105,General,"Most digital watches have lcd displays, what does lcd mean?",Liquid crystal display -General,What word is spelled out in Morse by - .. - dash dot dot dash,TIT,Science & Nature, The smell of a __________ can be detected by a human a mile away.,Skunk,Science & Nature,This animal's name is the same as that given to a high church official.,Cardinal -General,McDonalds and Burger King put what on their fries,Sugar to brown colour,General,What is the Capital of: Vietnam,Hanoi,General,Whats the birthstone for July?,Ruby -General,What is the most popular street name in the u.s,Park street,General,What sin have inhabitants of Dantes first circle of hell committed,Pride - they are crushed by stones,General,Dapsang is another name for which major mountain,K2 -General,What country owns corsica,France,General,In which film does Kim Bassinger play a hooker who looks like Veronica Lake,LA Confidential,Entertainment,Who sang 'Islands In The Stream' with Dolly Parton?,Kenny Rogers -Entertainment,Who played the title role in the 'Mad Max' series of films?,Mel Gibson,Entertainment,Where did Clark Kent attend college,Metropolis university,General,What flower produces blue flowers in acidic soil,Hydrangea -Science & Nature," 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,General,A ballet movement in which the dancer repeatedly crosses his or her legs in the air.,Entrechat,General,In which town did F.W. Woolworth open his first store in 1879,Utica -General,Carlo Collodi created which famous children's character,Pinocchio,General,What are Zap Spirit Crazylegs and Chuckles,G I Joe figures,General,Sysyem used especially in tape recording to reduce hiss,Dolby -Music,"Which UK Instrumental Group Reached Number 5 With ""Sabre Dance""",Love Sculpture, History & Holidays,Who was Captain of the Titanic on her maiden voyage? ,Edward J. Smith ,Science & Nature,What Is Believed To Be The Most Stupid Bird? ,The Turkey  -General,In Merryville Missouri woman cannot by law wear what,Corsets - men have right to admire,General,The average human uses which muscles most,The eye eye,General,Names what portable object is the teleram t-3000,Computer -Music,Which Roberta Flack Album Track Became A Hit After An Association With Clint Eastwood,The First Time Ever I Saw Your Face,General,With what are frogs often confused,Toads, History & Holidays,Which slasher film series featured masked killer Michael Myers ,Halloween  -General,Traditionally Lamborghini Miura and Diablo are named for what,Fighting Bulls, Geography,What symbol is on the flag of Vietnam?,Star,General,"Original inhabitants of New Zealand, of Polynesian stock",Maori -General,Candlemaker soapmaker merged in Cincinnati 1837 making what,Procter and Gamble,General,"By the end of 1983, how many computers were in use in the world","Thirteen million 13,000,000",General,"What's the international radio code word for the letter ""T""",Tango -General,"What actor was famous for the line ""nanoo nanoo""?",Robin Williams,General,What Shakespeare play has Portia as the heroine,Merchant of venice,General,"A basic movement in the technique of Martha Graham, based on breath inhalation and exhalation.",Contraction -General,Dr. Feelgood' was which group's last album with Vince Neill,Motley Crue,General,By what name is Harry Angstrom known in the titles of John Updike's trilogy,Rabbit,General,Who created john blackthorne,James clavell -General,Which countries name translates as place with a great river,Paraguay,General,"We had joy, we had fun ..' what is the song title",Seasons in the Sun,General,What animal lives in a holt,Otter -General,What word starts and ends with und,Underground,People & Places,In Which Ocean Is The Island Group The Maldives ,Indian ,General,Which Batman TV villain leads the Molehill Mob?,Riddler -Music,"What Song Features The Lyric ""Ive Been Going Out With A Girl Her Name Is Julie""",Jilted John,Science & Nature,Which Bird Is Resident Of The American Southwest & Has Been Immortilized In A Cartoon Series ,Roadrunner ,General,The Model T Ford was produced from 1909 until 1927. Which revolutionary innovation was introduced in 1913,Mass production -General,"Unfriendly, cold and sexually unresponsive",Frigid,Music,"Which American Band Comprised Jeffrey Hyman , John Cummings, Douglas Colvin, & Tommy Erdelyi, Although All Were Known Professionaly By The Same Surname",The Ramones,General,Who is known in Argentina as The Filthy Satanic Whore,Madonna -General,How long is the longest tunnel,169 kms,General,What animal only blinks one eye at a time,Hampster,General,"On 'the roseanne show', who was d.j",David jacob -General,What is Harold Lloyd Jenkins' stage name?,Conway Twitty,General,Does Botany Bay lie to the north or south of Sydney,South,Science & Nature,What is the biggest criterion for prospective astronauts?,Eyesight -General,In Trenton NJ its specifically illegal to throw what in street,Bad Pickle,General,"In Greek mythology, who was minos",King of crete,General,"Which Comedians Single Entitled “ The Magic Roundabout” Was Banned By The BBC In 1975, Due To It's Sexual Content",Jasper Carrot -General,What is the flower that stands for: pure love,Single red pink,General,What is a war between parties of the same country,Civil war,General,What was the name of the principal in archie comics??,Weatherbee -Geography,In which state is Stone Mountain,Georgia, History & Holidays,In Victorian England what people were popularly called robins because of their red uniforms? ,Postmen , History & Holidays,Who did David Bowie duet with on the Christmas Hit 'Little Drummer Boy'' ,Bing Crosby  -General,Juan What type of animal is a wallaby,Kangaroo,Science & Nature,What Do Aardvarks Eat? ,Termites Or Ants ,General,In which film did Paul Newrnan eat 50 hard-boiled eggs,Cool hand luke -General,What short lived TV western did Rod Serling produce after Twilight Zone,Loner,General, The effect produced when sound is reflected back is known as a(n) _______.,Echo,General,Sextilis was the original name for what,August -Music,John Lennon Once Caused Outrage When He Said The Beatles Were More Popular Than Who?,Jesus,Sports & Leisure,What sport has a hooker in a scrum,Rugby,General,What Is Elton Johns Middle Name,Hercules - History & Holidays,Who was King Of England During The Battle Of Agincourt? ,Henry V ,Music,"With Which Boyband Did Mariah Carey Cover The Phil Collins Hit ""Against All Odds""",Westlife,Music,Before Judging On American Idol Which US Singer Had A Hit With The Song Opposites Attract,Paula Abdul -General,International car registration letters what country is IS,Iceland,General,Which is the largest planet in our solar system,Jupiter,Science & Nature," You can tell the sex of a horse by its teeth. Most males have 40, females have __________",36 -General,A company called Symbol owns patent to what common item,Bar Code,General,"Who wrote the 1994 biography ""Princess in Love""",Anna Pasternak,General,What poet won the pulitzer prize 4 times,Robert frost -General,The word cruise comes from which language,Dutch Kruisen,Geography,On what peninsula are Spain and Portugal located,The iberia n peninsula,Music,"What Is Pictured On The Album Cover ""Band On The Run""",A Group Of Convicts Caught In A Spotlight -General,What is a group of this animal called: Gnat,Cloud horde,Sports & Leisure,Where were the 1964 Olympics held ?,"Tokyo, Japan",General,What's Krypton's state at standard temperature & pressure,Gaseous -Music,Which Trio Wrote The Diana Ross Hit Chain Reaction,The Bee Gees,General,What is a Chuckwalla,Lizard,Music,His Incomplete 8th Symphony Is World Famous As The Unfinished Name This Prolific Austrian Composer,Franz Schuberts -Geography,The tenge is the basic monetary unit of which country? ,Kazakhstan (1 tenge = 100 teims),General,What group founded Brother Records,Beach boys,General,Calabrese is a form of which vegetable,Broccoli - Geography,What is the capital of Burma?,Rangoon,Food & Drink,What Drink Has The Words 'Quality Tennessee Sour Mash'' Written On The Label ,Jack Daniels ,General,"In 1976 Howard Hughes reclusive billionaire, dies at",72 -General,Who wrote The Magician's Nephew,C s lewis,General,Uranus' moons are all named after,Shakespearean women,General,On 21st July Neil Armstrong Became The 1st Man To Walk On The Moon But What Song Was A Uk No.1 At The Time,Thundercalap Newman / Something In The Air -General,What is the birthstone for August?,Peridot,General,A __________________ measures blood pressure,Sphygmomanometer,General,In Seattle women can get six months for doing what to men,Sit on lap bus/train without pillow -General,Scapegoat meaning blame taker comes from what religion,Jewish Yom Kippur,Art & Literature,His many Romantic odes include Ode to Melancholy and Ode to a Graecian Urn?,Keats,General,"What sport is associated with the clubs of Essendon, Hawthorn and Collingwood",Australian rules football -General,By Law in North Carolina you can't do what,Sing out of Tune,General,A Russian person famous as a horseman,Cossack,Art & Literature,Which Famous Book Contains The Line 'It is a truth universally acknowledged that a single man in possession of a good fortune must be in want of a wife' ,Pride & Prejudice  -General,Jake Burns was associated with which British punk band?,Stiff Little Fingers,General,What is the name given to a solid figure with 12 plane faces,Dodecahedron,General,What was the name of the bartender in the tv series 'cheers',Sam malone -General,What are catalogued under the Dewey decimal system?,Books,General,Where is the largest church in the world,Vatican in Rome,General,Who starred in 1950s Circus Boy then moved on to pop music,Mickey Dolenz -General,Clothes designer John Galliano works for which fashion house,Christian dior,General,Which creature taught Dr. Doolittle how to talk to the animals,His parrot,General,In any one month 36% of Americans eat what for breakfast,Cold left over pizza -General,Which playing card is known as The Devils Bedpost,Four of Clubs,General,What are or were Wix Fibs and Fax,Brands of Tampons,General,"On a monopoly board, what lies between st charles place and states ave",Electric company -General,What drink was named after 5th child Henry 8 Catherine of Aragon,Bloody Mary,General,What do Hansel & Gretel push the witch into,The oven,General,What's the most mountainous country in europe,Switzerland -General,What pigment is responsible for the red color in leaves,Anthocyanins,General,How do you Rizzle something,Sun dry,General,When are you most likely to see a penumbra,During an Eclipse -Music,"What was the original working title of the movie ""Help""?",Eight Arms To Hold You,Science & Nature, Cougars can kill animals __________ times their size,8,General,The term Quadricentennial represents how many years ?,400 -Music,"Which Saxophonist Was Born Kenneth Gorlick On June 6, 1956",Kenny G,General,What is the sacred animal of india,Cow,General,In what capacity did Ernest Hemingway take part in the first World War,Ambulance driver -General,What was the first product sold in aerosol sprays,Insecticides,General,What is the maximum length permitted for the blade of a goalies hockey stick,Fifteen and a half inches 15 and a half inches,General,Which World Champion heavyweight boxer held the title for the longest,Joe louis -Geography,"Japan consists of the four large islands of Hokkaido, __________, Shikoku, Kyushu, and about three thousand smaller islands.",Honshu,Music,Which Irish Band Is Led By Dolores O Riordan?,The Cranberries,General,The Sea Cook was the original title of what famous novel,Treasure Island - History & Holidays,What was the second carry on film? ,Carry on Nurse ,General,Logizomechanophobia is the fear of,Computers,General,What is a horse's foot called,Hoof -General,What ship sank off ireland in 1915,The lusitania,Music,"Which Groups Had Hits With ""At The Hop"" & ""Rock & Roll Is Here To Stay""",Danny & the Juniors,General,If you has caries who would you consult,Dentist - its tooth decay -General,What is a regurgitation of acid from the stomach into the aesophagus,Heartburn,Sports & Leisure,In Which Sport Might You See A Hiplock Or Flying Mare? ,Wrestling ,General,Where did you find Shadow Speedy Bashful Pokey,Pac man Blinky Pinky Inky Clyde - Geography,What is the capital of Senegal?,Dakar,General,A thick revolving cylinder for winding cables,Capstan,General,What is the flower that stands for: sincerity,Fern - History & Holidays,What was the war during Regan's first term that took place on an island in the carribean? ,Grenada ,General,In which country were pizzas made first?,Italy,Music,Which Label Shares It's Name With A Famous Hollywood Tower,Capitol -General,Who is the norse god of mischief,Loki,Music,What was the only hit song for the band 'It's a Beautiful Day'?,White Bird,General,Its usual diameter is 4.5 inches what is it,Golf Hole -General,"Who said, ""People don't credit me with much of a brain, so why should I disillusion them.""?",Sylvester Stallone,General,What book of the old testament has the least chapters (1),Obadiah,General,What was the title of Mantovani's signature tune,Charmaine -General,The only domestic animal not mentioned in the Bible is what,Cat,General,What part of a human takes about 6 months to grow from base to tip,Nails,General,Collective nouns - A Chatter of what,Budgerigars -General,What African countries capitol is named after a US president , Liberia - Monrovia – James Monroe,General,What airport in Uganda was the scene of a rescue drama in 1977,Entebbe,General,In what American state do most fail to graduate,Georgia -Entertainment,What came out of Milton's head,Steam,Science & Nature,What Widely Used Kitchen Item Was First Marketed By The General Electric Company In 1909 ,The Electric Toaster ,General,The Devonian period is also known as the age of __________,Fish -General,In Which English Citty Was Cary Grant Born,Bristol,General,"What was the first name of dom perignon, the monk who gave us champagne",Pierre,General,What war was fought by the houses of York & Lancaster,War of the roses -General,From what is rum distilled,Sugar cane,General,Where did 'the mayflower' take the pilgrims,New world,Science & Nature,What Is Bit Short For ,Binary Digit  - History & Holidays,What father/daughter duo made 'Gag Me With a Spoon' a household phrase during the eighties? ,Frank & Moon Unit Zappa ,General,In Glendale Arizona it is illegal for a car to do what,Reverse - Back up,Music,By What Name Are Chicago Transit Authority Better Known,Chicago -General,1 in 20 women say they have never touched what,Shovel, History & Holidays,How many points does a snowflake have? ,Six ,Science & Nature,What pistol took its name from the person who patented it in 1835 ,Colt  -General,"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,General,What is the fear of food or eating known as,Sitophobia, Geography,Which ocean has an area of approximately 166 sq. km?,Pacific Ocean -Science & Nature,In Computing What Does HTTP Stand For ,Hyper Text Transfer Protocal ,General,Rhodopsis original Egyptian Cinderella had what job,Prostitute - bird stole her shoe,General,The making of what well known dessert item was perfected by Sicilian Francisco Procopio in 1659,Ice cream -General,What is a group of bitterns,Sedge,General,Artist - The Monarch of the Glen in 1850 - Lions Trafalgar square,Sir Edwin Henry Landseer,Geography,In what country is banff national park ,Canada  -Science & Nature,"Which British Car Was Driven By Paddy Hopkirk To Win The 1964 Monte Carlo Rally , And Also Featured In The Film The Italian Job ",Mini Cooper ,General,What's the only property an orthodox Hindu woman can own,Jewelry,General,What are the names of the Ninja Turtles in alphabetical order,Donatello - History & Holidays,Who captained the HMS Beagle?,Charles Darwin,General,"In Greek mythology, which titans forged thunderbolts for zeus",Cyclops,General,What is Frances longest river,Loire -Music,Which Rock Legends Did The Harlem Shuffle In The 1980's,The Rolling Stones,General,What three counties were Eliza Dolittle taught to pronounce,Hertford Hereford Hampshire,General,The computer language LISP means what,List Processing -General,Who directed 'the shining',Stanley kubrick,General,What is the worlds highest island mountain,Mauna kea,General,What word is derived from the arabic word al-kimia,Chemistry -General,"North American tribe, of the Iroquoian linguistic family and the Southeast culture area",Cherokee,General,Which country has no public toilets,Peru,Music,Mike Batt Was The Voice Behind Who,The Wombles -General,In Which Country Might The Jets Play The Mariners & The Glory Take On The Roar At Football,Australia,General,With which four words did Samuel Pepys end his diary each day,And so to bed,General,Which animals Latin name is Cricetus-cricutus,The Hamster -General,Name USA city it's illegal to have a nude shop dummy on display,New York,General,What country is the setting for The Thorn Birds,Australia,General,"Who murdered Leno & Rosemary Labianca on August 10, 1969",Manson family -General,In what key do american car horns beep,F,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,General,The chrysanthemum is the flower for what month,November -General,At German country weddings the couple had to do what together,Saw through a log,General,"What actor played trapper john, md",Pernell roberts,General,The stems and leaves of the tomato plant are,Poisonous -General,What Greek slave wrote fables?,Aesop,Science & Nature,Which scale is based on the speed of sound ?,Mach,General,What is the Mexican dish 'huevos rancheros' made from,Baked eggs -General,Who played Judge Dredd on film in 1996,Sylvester stallone,Art & Literature,An italian movement c.1909-1919. It attempted to integrate the dynamism of the machine age into art.,Futurism,Entertainment,The standard major scale is also known as the _______ mode.,Ionian -General,"What was the name of the old fireman on ""leave it to beaver",Gus,Music,"Which Band Had A Hit With The Song ""Dr Mabuse""",Propaganda,General,It was finally abolished in Britain in 1948 - what was,Flogging -General,"""7x"" was used to refer to the secret ingredient of what drink",Coca cola,General,An ounce of gold can be stretched into a wire how many miles long,Fifty 50,Food & Drink,"Which Childrens Tv Show Featured Segments Entitled 'Danger Island, Arabian Knights, Micro Ventures & The 3 Musketeers'' ",The Banana Splits  -General,What meat do Muslims not eat,Pork, History & Holidays,Halloween originated from a festival celebrated by what ancient European tribe is it A Druids B Huns or is it C Celts ,C = Celts ,General,The angles inside a square total _______ degrees,360 -General,"What links Millionaires, Metropolitans, Black Hawks, Silver seven",Stanley Cup winners Ice Hockey,General,What loses colour if kept in dimly lit or running water,Goldfish, History & Holidays,Who resigned as Russian Premier on Christmas day 1991 ,Mikhail Gorbachev  -General,In which year was the British Dog License abolished?,1987,General,Where is lake maracaibo,Venezuela,Music,In 2001 Which Group Recorded A Cover Version Of The Michael Jackson Hit Smooth Criminal?,Alien Ant Farm -Geography,Which Is The Largest State In Australia ,Western Australia ,Music,Which Former Cambridge Footlights Comedian Made A Mint Out Of Me And My Girl,Stephen Fry,General,Who won the first Nobel prize for Physics in 1901 - gave away,Wilhelm Roentgen -General,After who was the month of August named,Augustus Caesar,General,Plant of the lily family with edible shoots,Asparagus,Music,Father Mckenzie Features In The Lyrics To Which Beatles Song,Eleanor Rigby -General,"Which group released the album ""O.K. Computer"" in 1997",Radiohead,General,"In sailing, what is a warp",Rope,People & Places,Who Is The Sister Of Warren Beatty ? ,Shirley Mclaine  -General, The study of man and culture is known as ________.,Anthropology,General,Martina Hinges represents what country at tennis,Switzerland,General,What future yippie leader was the first male cheerleader at brandeis?,Abbie hoffman -General,Leonard Sly became famous as who,Roy Rodgers,General,What is the flower that stands for: devotion,Heliotrope,General,The French Laurousse Gastronomique 9 recopies cooking what,Camels -Science & Nature,Which British Pop Group Had A Hit With Brontosaurus ,The Move ,General,What is the most essential tool in astronomy,Telescope,General,In Virginia its against the law for people to bribe except who,Political Candidates -Science & Nature, Hens do not have to be impregnated to lay eggs. The __________ is necessary only to fertilize the egg.,Rooster,General,This was the site of worse nuclear accident in history,Chernobyl,General,Which Sport Features A Series Of Bouts Known As A Barrage,Fencing -General,What process involves the heating of milk to a temperature of about 60 degrees,Pasteurisation,General,In Italy where are Monterosa Ave Park of Victory Constantine Ave,On a Monopoly board,General,Beneath which Paris monument is the tomb of France's unknown soldier,Arc de triomphe -General,"What are Jean Bernard, Pierre St-Martin and Berger in France",Worlds deep caves,General,Time ____ when your having fun,Flies,Music,Whose Albums Include Better Living By Chemistry & You've Come A Long Way Baby,Fatboy Slim -General,In medieval France a persons rank was shown by the length of ?,Shoe points bigger=higher,General,Who played Bonnie in the film 'Bonnie & Clyde',Faye dunaway,General,Britannia female embodiment of Britain who is the French,Marianne -Geography,"___________ is the most densely populated non_island region in the world, with more than 1,970 humans per square mile.",Bangladesh,General,What country is the worlds oldest functioning democracy,Iceland, History & Holidays,"Who said ""Veni, vidi, vici"" (I came, I saw, I conquered)?",Julius Caesar -General,Seretse Khama was the first President of which country,Botswana,General,The name of which constellation me 'harp',Lyra,General,Rudy Stevens became famous under which name,Barbara Stanwyck -General,Link Achtung Adagio Bravo Butterfly Gong Polo Rondo Zebra,Typefaces or Fonts,General,Who was the Bad in the spaghetti westerns,Lee van Cleef,General,"According to the Beatles, where could you find 10,000 holes","Blackburn, lancashire" -General,What was the profession of Ted Bundy,Attorney,Sports & Leisure,What Material Is The Puck Made Out Of In A Game Of Ice Hockey ,Rubber ,Science & Nature,Which metal is used to Galvanise Steel? ,Zinc  -Geography,_____________ is the largest Western European country. Its area is slightly less than twice the size of Colorado.,France,General,"Which mythological creature was half man, half horse",Centaur,General,What colour is cinnabar,Red -Music,"On The England New Order Song ""World In Motion"" Which Member Of The England Squad Provided The Rap",John Barnes,General,What Type Of Foodstuff Is A Dunlop,Cheese,General,Which Egyptian prime minister nationalized the Suez Canal,Nasser - History & Holidays,Who Was Prime Minister When Edward VIII Abdicated? ,Stanley Baldwin ,General,Over what place in india is it forbidden to fly an airplane,Taj mahal,General,Which tree is sacred to Apollo (Daphne changed into one),Laurel -General,Thomas Magnum's dad was played by what actor?,Robert Pine,General,Where is the columella,Nose,General,What food did the Romans call Pointed Stick,Broccoli - from Brocca -General,Single celled micro-organism,Bacterium, History & Holidays,How many reindeer does Santa Have? ,8 / (9 With Rudolph) ,General,"In the song 'Skip To My Lou', in what beverage are the flies?",Buttermilk -General,What precious metal did alchemists call luna,Silver,General,Through which ocean does the international date line approximately follow the 180 degree meridian,Pacific ocean, History & Holidays,Who Released The 70's Album Entitled Horses ,Patti Smith  -Food & Drink,"According to some, 'Dutch courage' in battle came from the over consumption of what ? ",Gin (Genever is Dutch for juniper) ,Sports & Leisure,In Which Surrey Town Is The British National Shooting Centre ,Bisley ,General,What is the essential characteristic of aerobic exercise,Oxygen is consumed -General,What is black gold,Crude oil,General,"What snack food was portrayed in claymation dancing to ""Heard it Through the Grapevine""?",Raisins,Science & Nature,A Boomer Is The Male Of Which Animal? ,Kangaroo  - History & Holidays,The Christmas period of 1813-14 saw the last what in London? ,Christmas Fair on a frozen River Thames (known as a Frost Fair) ,General,Mandoura Greece Zampogna Italy Corenmuse France what is it,Bagpipes,General,Where do the italians host the grand prix,Monza -General,What gems name means sea water in Latin,Aquamarine,General,British soldiers mentioned in despatches get which bronze award,The Oak Leaf,General,What is sericulture,Growing Silkworms -General,In Sioux language the Paha-sapa is what place,Black Hills - Dakota,General,When was Clinton first elected president of the U.S.,1992,Art & Literature,"In 'A Christmas Carol', how many ghosts visited Scrooge?",Four -General,Which bird is sometimes referred to as a 'pigeon hawk'?,Merlin,Science & Nature,"What is the only animal, other than a human that can catch leprosy?",The Armadillo,General,What were the occupations of the three men in the tub,"Butcher, baker and" -General,"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,Music,Which Heavy Metal Guitarist Provided The Soundtrack To The Movie Death Wish 2,Jimmy Page,General,"What is the common name of the family of plants which includes potatoes, peppers and tomatoes",Nightshades -General,Which motorway links Bradford with the M62?,M606,General,Where would you find the medulla oblongata,Brain,General,What was the first frozen food available in Britain in 1937,Asparagus -General,Whats the telephone area code for Chicago,312,General,Which cities name comes from Algonquin meaning traders,Ottawa,Music,Woody Left Madness To Join Which Group,Voice Of The Beehive -General,"A ""pigskin"" is another name for a(n) ________.",Football,General,Which islands way of life and culture is described as Bajun,Barbados,General,What worms will eat themselves if they can't find any food,Ribbon worms -General,Instrument with windbag for pumping air through reeded pipes,Bagpipes,General,A Queef is the name for what,Fanny Fart,General,What is the clavicle,Collarbone -General,"Who recorded the album ""the point"" in 1970",Harry nilsson,General,What was tokyo originally known as,Edo,General,The average American eats 5666 what in their lifetime,Fried Eggs -General,Where is noah's ark thought to have landed,Mount ararat,General,What word was created by merging the words 'melt and weld',Meld,General,Bruce Philip in 1985 recorded what sporting first,Rowed for Oxford and Cambridge -General,"What 80's group sang the theme song to ""Square Pegs"".",The Waitresses,Sports & Leisure,Which European Football Club Plays Its Home Matches At The Stadio Delle Alpi? ,Juventus ,General,Which English Mill Town Once Produced 99% Of The Worlds Cotton,Oldham -General,How many bends in a standard paperclip?,Three,Music,Who Was The Lead Singer Of The Plasmatics,Wendy O Williams,General,What is used to measure the depth of water,Bathometer -General,What is a figure with eight equal sides called,Octagon,General,What is the term for unlimited authority,Carte blanche,General,On the border between Brazil and which other South American country would you find the Itaipu Dam,Paraguay -Music,Which Legend Spent More Weeks In The Charts Than Any Other Artist In Both 1970 & 1971,Elvis Presley,General,What is the correct name for an animal's pouch,Marsupium,General,What is a group of bass,Shoal -General,In which sport are the trainees traditionally bricklayers,Bullfighting,Music,Which American singer sang “ Thank God I’m a Country Boy”?,John Denver,General,The bridge connecting boston and cambridge via massachusetts avenue is commonly know as the ______,Harvard bridge -General,What nationality was Goya,Spanish,General,Dr George Wander invented what drink in Switzerland 1860s,Ovaltine,General,Who composed The Karelia Suite,Sibelius -General,What is the study of the cosmos called,Cosmology,General,At Which Olympic Games Was The Modern Olympic Flag Introduced,Antwep 1920,Music,"Who Is The Oldest Of These A) Brett Anderson, B) Keith Flint, C) Robbie Williams",Brett Anderson -General,"Who Played The Psychotic ""Norman Bates"" In The 1998 Remake Of The Classic Movie ""Psycho""",Vince Vaughan, History & Holidays,In What Year Did The Spanish Civil War Begin ,1936 ,General,Drakes Golden Hind was originally called what,The Pelican -General,"What father/daughter duo made ""Gag Me With a Spoon"" a household phrase during the eighties?",Frank & Moon Unit Zappa,General,Which Prime Minister introduced Income Tax,Pitt the younger,General,What is a triangle with three equal sides called,Equilateral -Entertainment,Benny and Cecil were at odds with whom?,John,General,In 1975 Nationalist Chinese leader Chiang Kai-Shek died at the age of,87,Science & Nature,"This disease consists of a purposeless, continual growth of white blood cells.",Leukemia -General,"Empire Strikes Back' when the ghost of Obi Wan Kenobi said that Luke was their last hope against the Empire, who was Yoda refering to when he said: ""No, there is another""?",Princess Leia,General,"What science is celebrated on mole day, every october 23rd",Chemistry,General,In what Australian state would you find Newcastle,New south wales nsw -General,Dover is the capital of ______,Delaware,General,Which Shakespeare play contains the line 'if music be the food of love play on' ,Twelth Night ,General,"Who said ""Forgive your enemies, but never forget their names""?",John F. Kennedy -Music,Which Beatle`s album was the bestselling album on the 1960s in the UK?,Sgt. Pepper`s Lonely Hearts Club Band,People & Places,Who Replaced Betty Boothroyd As Speaker Of The House Of Commons ,Michael Martin ,General,Hyundai and which other car manufacturer are located in Korea,Kia -General,The chemical formula for rubidium bromide is rbbr. It is the only chemical formula known to be a what,Palindrome,General,"The French TGV train is called Traine Griende Viesta, what does that mean in english?",Train With Great Speed,Science & Nature,What is the term for a mass of mood moving from your mouth to your stomach called?,Bolus -General,Who sang with 'the dakotas',Billy j kramer,General,Who succeeded Queen Elizabeth l to the throne in 1603,James i,Food & Drink,What name is given to a cockerel that is castrated and fattened for the table? ,Capon  -General,What is the fear of worms known as,Scoleciphobia,General,James Hoban designed what,The White House,General,When did the first World Series game take place,1903 -General,How tall are the bearskins worn by the guards at buckingham palace,20,General,Which seven letter word in English contains all five vowels,Sequoia,Music,Which Indian Instrument Has Nineteen Strings?,Sitar - History & Holidays,How old was John F. Kennedy when he became president,43,General,Which Pop Singer Was Born “ Leslie Sebastian Charles ” On 21 st Jan 1950,Billy Ocean,Music,Whose Life Story Featured In The Movie Amadeus,Mozart -General,On average 100 people a year choke to death on what,Ballpoint Pens,General,What pop group took their name from a Herman Hess novel,Steppenwolff,General,What country finally adopted the Gregorian calendar in 1752,England -General,Homichlophobia is the fear of,Fog,General,Toxophily Is More Commonly Known As What?,Archery,Sports & Leisure,Who Won The 2008 Lakeside World Darts Championships ,Mark Webster  -General,Which Russian choreographer (1904-1983) moved to the USA and became a founder member of the School of American ballet,Balachine,General,C2 H5 OH is the formula of what,Alcohol,General,In which country were antibiotics first used,Egypt - used mouldy bread -General,What Italian word means swank,Mafia,General,Where Exactly (And You Must Be Specific) Will You Find The Words “Standing On The Shoulders Of Giants”,On The Edge Of A £2 Coin, Geography,Brussels is the capital of which country?,Belgium -General,Who was The Little Playful One,Pocahontas,Music,How Many Consecutive No.1's Did The Beatles Have Between 1963 & 1966,11,Religion & Mythology,What is God called in the Muslim faith?,Allah -Food & Drink,The Term 'Dutch Courage' Usually Comes From The Consumption Of Which Spirit? ,Gin ,General,What comic strip is set at Camp Swampy?,Beetle Bailey,Geography,On What Continent Is The Kalahari Desert ,Africa  -General,Yet Another Hierarchical Officious Oracle better known as what,YAHOO,General,What are FAQs,Frequently asked questions,General,From who did malta gain independence in 1964,Britain -General,What martial art's name means 'leisure time',Kung fu,General,In Florida it is illegal for a single woman to do what on Sunday,Skydive,General,Simon Peter and his brother were both disciples. What was the brother's name,Andrew -General,Who designed Madonna's famous pointed corset,Jean paul gaultier,General,What university was founded in 1160??,Oxford University,General,Which organ in the body is inflamed in nephritis,Kidney -General,"To 10 Years Either Way, In What Year Did Sir Francis Drake Begin His Voyage Around The World ?",1577,Sports & Leisure,Which Sporting Event Of 1985 Attracted 18.6 Million Viewers In The Early Hours Of The Morning? ,Embassy World Snooker (Taylor & Davis) ,Science & Nature,What Organ In The Human Body Produces Insulin? ,The Pancreas  -General,A person who eats only fruit,Fruitarian,General,What was James Bonds fathers name,Andrew,Technology & Video Games,"Which was the first console ""Duke Nukem' game? ",Duke Nukem 64 -Sports & Leisure,Name A Sporting Team Even In Which The Winning Team Only Move Backwards ,Rowing / Tug O War ,General,What is the flower that stands for: bashful shame,Deep red rose,Music,"Conga, Bongo's & Tabla Are All Forms Of Which Instrument",Drums -General,What is used in a tempera painting,Egg yoke and water,General,In Heraldry if things are accosted what position are they in,Side by Side,General,A rich deep red colour,Crimson -General,Lagnoperissia is a fancy name for what sexual condition,Nymphomania,General,Which of the Old Testarnent prophets was taken up to Heaven in a fiery chariot,Elijah,General,Philadelphia cream cheese was introduced in what city,New York -General,Alice Dormouse Mad Hatter who is missing from the Tea Party,March Hare,Science & Nature,"On the Periodic Table, what is the first element in alphabetical order?",Actinium,General,"The rover, ""Sojourner"", explored the surface of what place",Mars -General,Which Guitarist was in the original line up of Thin Lizzie,Eric bell,Sports & Leisure,"Did The Game Of Polo Originate In India, Persia, Or Argentina ",Persia (Iran) ,General,What do the letters 'T' and 'S' stand for in T. S. Eliot's name,Thomas stearns -General,"Which entertainers feet were insured for $650,000",Fred astaire,General,Which playwright and dissident became President of Czechoslovakia in 1989,Vaclav havel,General,Who committed the first daytime robbery,Frank and jesse james -General,Which Male Athelete Ran The Fastest 100 Metres Of The 20th Century,Maurice Greene,General,In cookery how is something julienne prepared,Thin Strips,General,An “Anoctothorpe” Is Another Name For What Everyday Monetary Item?,"The Pound Sign ""£""" -General,"What's the nickname for Paris, France",City of light,Science & Nature,Which Is Generally Considered To Be The Most Intelligent Breed Of Dog? ,The Border Collie , History & Holidays,In Which Country Did The Tradition Of Trick Or Treating Actually Originate ,England  -General,For what metal is 'au' the chemical symbol,Gold,General,What vegetables are sometimes called 'spuds',Potatoes,General,In what class of animals is a Herpetologist interested,Reptiles -General,In what sport did Jeffery Archer win an Oxford Blue (USA Letter),Athletics,General,What is best viewed from two tourist viewpoints - the North Rim and the South Rim,Grand canyon,General,"""Nuuk"" Is The Capital City Of Which European Country",Greenland -General,"There were no squirrels on Nantucket Island, Massachusetts until what year",1989,General,Who is the only person to win oscars for best actress and best song?,Barbara Streisand,General,What did Lippershey invent in 1608 that Galileo often gets the credit for,Refracting telescope -General,Hercules had to clean the stables in one night - whose,Aegean Stables,General,What is the word Taxi short for,Taximeter,General,In which book would you find the manservant Pas Partout,Around the world in 80 Days -General,Who was the first U.S. president to have been divorced,Ronald reagan,Music,How Much To Within £5 Was A Weekend Ticket For The Reading 98 Concert,£75,General,What is the real name of the 'man of arms' in 'He man and the Masters of the Universe',Duncan -General,What is having a hole drilled through the cranium supposedly enabling people to reach a higher state of consciousness,Trepanning,General,"In Greek mythology, what were the fifty daughters of nerius and doris called",Nereids,General,In Kansas City its illegal to what with more than 12 potatoes,Juggle with them -General,What animal has no vocal chords,Giraffe,Science & Nature,What Symptom Does The Affliction Tinnitus Cause ,Ringing In The Ears , Geography,What is the capital of Kuwait?,Kuwait -General,The construction of which famous New York City building was completed in 1931,The empire state,General,"Which English poet wrote 'No man is an island, entire of itself.'",John donne,Religion & Mythology,Who is the Norse god of mischief?,Loki -General,What is the name of the asteroid that was believed to have killed the dinosaurs,Chixalub,Music,What 1987 Movie Theme Is The Only No.1 Ever To Be Sung Entirely In Spanish,La Bamba,Music,By What Name Do We Know & Love George O Dowd,Boy George -General,"Acute infectious disease of the upper respiratory tract, caused by more than 100 kinds of viruses",Common cold,General,Before 1938 toothbrushes were made using hairs from what,Beaver,General,In which city was the first public opera house opened,Venice -General,Collective nouns - a Dule of what,Doves,General,"In which city would you find Tuff Gong International Studios, built by the late Bob Marley",Kingston,General,Which literary traveller was accompanied by the dog Toto,Dorothy -General,What year did 'Papa Doc' president of Haiti die,1967,General,Who is swee'pea's adopted father,Popeye,Science & Nature,Which Newspaper Had It's Own Office On The 2nd Floor Of The Eiffel Tower ,Le Figaro  -Geography,In what city are the famous Tivoli Gardens,Copenhagen,General,Who composed the Air for the G string (init and name),JS Bach,General,Frontenac what university dismissed timothy leary for involvement with drugs,Harvard -Science & Nature,What Is The Only Even Prime Number ,2 ,General,What day of the week did Solomon Grundy die,Saturday,Food & Drink,From Which Birds Nest Is Birds Nest Soup Made ,The Swift  -General,"In 1984, a canadian farmer began renting advertising space on his what",Cow,General,Who was the title star of Meet the Veep,Alben w barkley,General,What is another name for a tightrope walker?,Funambulist -General,"A meander bend in a river, named from river meander - where",Turkey,Entertainment,"In 1981, who won song of the year with 'Sailing'?",Christopher Cross,General,What country is the largest per capita consumer of beer,Germany -General,Who was Prime Minister of France at the outbreak of World War I I,Edouard daladier,Music,What Is Johnny Rottens Real Name,John Lydon,Science & Nature, A carnivore is a meat_eating animal. A __________ is a fruit_eating animal.,Frugivore -General,What tanker caused a severe oil spill in 1989,Exxon Valdez (Alaska),Entertainment,Who was the original voice of Mickey Mouse?,Walt Disney,General,The first nuclear chain reaction in 1942 by Enrico Fermi & Arthur Compton was achieved in what U.S. city,Chicago -Music,In The Everly Brothers Song  “Wake Up Little Suzie” What time do they wake up (when the movie’s over)?,4 O Clock,General,The study of light and its relation to sight is called ______.,Optics,General,Who was the Confederate commander at Chickamauga,Braxton bragg -General,Nebulaphobia is the fear of,Fog,General,What does Monaco get most of its income from,Gambling Casinos etc,General,What is the study of prehistoric plants and animals,Paleontology -People & Places,"Whose Children Are Trixiebell, Little pixie, & Peaches ",Bob Geldof & Paula Yates ,General,What country did the operating system 'linux' come from,Finland,Music,In Which US City was the first US live Beatles Concert?,Washington D.C. -General,In what key is the dialtone of a telephone,F,Entertainment,Who directed the Movie 'Psycho' from Robert Bloch?,Alfred Hitchcock,Music,Monty Pythons Flying Circus Proved A One Hit Wonder Act With Which Song,Always Look On The Bright Side Of Life -Science & Nature,In What Year Were Tissue Cells First Grown Outside The Body By Us Biologist Ross Harrison ,1905 ,General,What city's name is derived from 'dubh linn',Dublin,General,Which Charity Began In 1934 And Started From A Lock Up Garage In Wallasey Cheshire,Guide Dogs For The Blind -General,A large cage or building for keeping birds,Aviary,General,What is the main ingredient of boxty bread,Potatoes,Food & Drink,What Is Calvados ,A French Apple Brandy  -General,How many spectators can cram into Strahov Stadium (world's largest),240000,General,DELAG was the worlds first what Oct 16 1909,Airline - by Zeppelin,General,Which poet described autumn as 'the season of mists and mellow fruitfulness',John keats -General,"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,General,The shape of plant collenchyma cells & the shape of the bubbles in beer foam are the same. What are they called,Orthotetrachidecahedrons,General,What is an ogee curve,S-curve - History & Holidays,In the harbour of which city was the Greenpeace flagship Rainbow Warrior sunk in 1985? ,Auckland ,General,"In the 1700s, european women achieved a pale complexion by eating 'complexion wafers' which were actually what poison",Arsenic,General,In what country did Bridge originate,Turkey -Science & Nature,What Is The Microwave Device In An Oven Called ,The Magnetron , Geography,In which country was natural gas first discovered ?,Greece,General,What does Thermos mean in greek?,Hot -Music,"By What Collective Name Were Steve Cropper, Donald Duck Dunn, & Al Jackson Known",The Mg's,General,On ER what is the character name of Mark Greens daughter,Rachel,General,What is the largest constellation in the sky,Hydra -General,What is the Capital of: Netherlands,Amsterdam,Food & Drink,Who invented the Egg McMuffin ,Ed Peterson ,General,Name the main horse in Animal Farm,Boxer -General,How many years did the Hundred Years War last?,115 Years (1337-1453),General,Advertising slogan - No one ever got fired for buying what,IBM,General,In which country are the transylvanian alps,Rumania -General,What was the Latin word for wheel - now a common transport,Truck,General,What kind of water well is under natural pressure,Artesian,General,Whose day long funeral in february 1989 was attended by 55 heads of state,Emperor hirohito -General,What was Richard Wagner's second Opera - idea during sea trip,The Flying Dutchman,General,What metal forms one twelfth of the earth's crust,Aluminium,General,Badminton star Liem Swie King represented which country,Indonesia -General,Muisical Duo Chas & Dave Wrote & Performed The Theme Tune To Which Classic Tv Game Show,Crackerjack,General,Who sang the 1975 remake of the Flamingos' I Only Have Eyes For You?,Art Garfunkel,General,The Lebanese flag bears which tree?,Cedar -Food & Drink,Which Are More Nutritious Brown Or White Eggs ,They Are Both The Same ,Food & Drink,What Is Amontillado ,Sherry ,General,What does BMW stand for,Bavarian Motor Works -Music,Which Band Does Jim Kerr Front,Simple Minds,General,Old Testament two non humans can speak the serpent and who,Balsam's Ass Numbers 22,General,In which country could you spend a Kwanza,Angola -General,What are followers of the unification church,Moonies,General,Who famously owned a yacht called Lady Ghislaine?,Robert Maxwell,General, What is a castrated rooster called,A capon -General,What is the name on fake credit cards,J L Webb,General,Lotta and Vassar were the first two brands of what,Wrigley's Gum,Food & Drink,What bottles of Chianti are traditionally covered with,Straw -Sports & Leisure,On Tv's A Question Of Sport Who were the first two team Captains? ,Henry Cooper Cliff Morgan ,General,What is the Capital of: Bosnia and Herzegovina,Sarajevo,General,"""NUUK"" Is The Capital Of Which Country",Greenland -General,From which fruit is the liqueur Kirsh made,Cherries,Sports & Leisure,Which Football Club Are The Only Team To Go Through A Premiership Season Unbeaten ,Arsenal ,General,Which actress co-starred with Michael Douglas in the film War of the Roses,Kathleen turner -General,Which golfer has won the British Open most times since its inception,Harry vardon,Geography,What is the capital of Bhutan,Thimphu,Science & Nature,"He invented ""bifocal"" lenses for eyeglasses.",Benjamin franklin -General,Axl Rose was an anagram for what phrase?,Oral Sex,General,Harry Rosoll created which famous bear,Smokey the Bear,Science & Nature,"Which Company Started As The Pacific Aero Products Company In 1916 , Was Given Its Present Name In 1917 & Is Today The Largest Aviation Compnay In The World ",Boeing  -General,Jacob German in 1899 got the worlds first what in New York,Speeding Ticket – 12 mph,Music,Who replaced Syd Barrett of Pink Floyd?,David Gilmour,Music,Who Formed The Million Dollar Quartet,"Elvis Presley, Jerry Lee Lewis, Carl Perkins & Johnny Cash" -Science & Nature,What type of paper is used to test for acidity and alkalinity?,Litmus,General,Which very fast ball game is also known as Jai Alai,Pelota, History & Holidays,Why do we decorate with holly at Christmas? ,Represents the crown of thorns worn by jesus  -General,Which profession drinks the most coffee,Health care,General,Where in the world are the most roses grown,Texas,General,Carvel and Clinker are methods of making what,Boats -Sports & Leisure,Who in 2003 aged 33 became the oldest male tennis player to be number one in the ATP's entry rankings? ,Andre Agassi ,General,Polio is also known as _____,Infantile paralysis,Music,What Type Of Band Was Freda Payne Associated With In 1970,A Band Of Gold -General,"Who was ""the face that launched a thousand ships""",Helen of troy,General,A Jocko is what type of animal,Chimpanzee or ape,General,As tough as _______,Nails -Science & Nature," Young birds such as ducks, geese, and shore birds are born with their eyes __________",Open,Music,What Fictional Band From The Film Of The Same Name Did Dan Aykroyd & John Belushi Make Up,The Blues Brothers,General,Who wrote Servants of the Wankh in 1969,Jack Vance SF - History & Holidays,What fell into the pool in Caddyshack which caused a major exodus? ,A Baby Ruth candy bar ,Geography,To what country does the Gaza Strip belong,Egypt, History & Holidays,In The Tv Show Til Death Us Do Part First Aired In 1965 What Football Team Did Alf Support ,West Ham  -People & Places,Which Manager Clipped A Couple Of Hooligans Ears Round The Ear ,Brian Clough ,General,"In the Arthurian legend, who was the son of a demon and a nun?",Merlin,General,Who sang about desmond and molly jones,Beatles -General,Quinsy is the inflammation of which body organ due to abscess,Tonsils,General,What is the characteristic of an aphyllus plant,No leaves,General,"In music, which major scale contains just one flat",F major -General,What was known as the Ox Box,Xerox Photocopier, History & Holidays,Who Released The 70's Album Entitled 2112 ,Rush ,General,Who was the second man to win the Formula One motor racing championship,Ascari -Geography,What state borders Alabama to the north,Tennessee,General,What is the flower that stands for: appointed meeting,Everlasting pea,General,Hydrated Magnesium Silicate is better known as what,Meerschaum or Sepiolite -General,What biblical towns name means House of Bread in Hebrew,Bethlehem,General,How many legs does a crab have?,Ten,General,Bill gates was the founder of which company,Microsoft -Music,Over 4 Decades Which Drummer Led A Band Called The Jazz Messengers,Art Blakey,General,Name the Hotel in Arthur Haley's novel / film of same name,St Gregory, History & Holidays,Who Released The 70's Album Entitled Sticky Fingers ,Rolling Stones  -General,Fatima is a Christian shrine pilgrimage place in which country,Portugal,General,What does a compass needle point to,North,General,What is the fear of kissing known as,Philemaphobia -General,What is a group of this animal called: Leopard,Leap, History & Holidays,Southern Rhodesia became what country in 1980? ,Zimbabwe (Independent Nation of Zimbabwe) ,General,If you were drinking castle beer in what country would you be,South Africa -General,Victor Emmanuel III was the last king of what country,Italy,General,This large bean_shaped lymph gland can expand and contract as needed.,Spleen,General,What languages appear on the Rosetta stone,Egyptian Greek -General,Who invented the first electric razor,Jacob schick, History & Holidays,In What Year Was The United Nations Organisation Formed ,1945 ,Science & Nature," The giraffe's __________ is huge; it weighs 25 pounds, is 2 feet long, and has walls up to 3 inches thick.",Heart -Science & Nature,Which Sex Is Prone To Suicide ,The Male Sex ,General,What symbol on the Bacardi symbol is there because the soil where the sugar cane grows is fertile from the excessive guano,The bat,General,What single colour is the Libyan flag,Green -Science & Nature,What Was The Largest Of All The Carnivorous Dinosaurs ,Tyrannosaurus Rex ,General,Football is the favourite sport of which family,Kennedy,General,What is the decimal equivalent of the binary number 10011,Seventeen -General,The song Honolulu Baby appears in which Laurel and Hardy film,Sons of the desert,General,A kindle is the name for a group of what young animals,Kittens,General,On what date is U.S Independence day?,July 4th -General,What is the birthstone for November,Topaz, History & Holidays,"Born on Christmas Day 1899, which actor starred in 'Casablanca'' and 'The Big Sleep'' ",Humphrey Bogart ,General,What was JFK's nickname for his daughter Caroline,Buttons -General,"Which word is used to mean a serious meditative poem, especially a lament for the dead",Elegy,Science & Nature,A Jacaranda is a type of what? ,Tree , History & Holidays,By who was Gerald Ford almost assassinated?,Squeaky Fromme - Geography,Where are the two steepest streets in the USA?,San Francisco, Geography,Name the city at the west end of Lake Superior.,Duluth, History & Holidays,Which Building In Berlin Was Burned Down In 1933? ,The Reichstag  -Geography,Meridians converge at the What. ,Pole s ,General,What boxer was nicknamed The Ambling Alp,Primo Carnera,General,What was the name of the pub in The Dukes of Hazard,Boars Nest -General,Who was the head of the National Unity party in Norway in 1942,Quisling,General,Charles Russell Is The Founder Of Which Worldwide Religious Organisation?,Jehovas Witnesses,General,What made the crew sick in the movie Airplane?,The fish - History & Holidays,"Which U. S. President insisted on putting lit candles on the White House Christmas tree, even though it was a fire hazard? Calvin Collidge, Herbert Hoover, Franklin Delano Roosevelt, Theodore Roosevelt, ",Franklin Delano Roosevelt ,Music,"According To The Police ""Every Little Thing She Did"" Was What",Magic,General, What is the study of heredity called,Genetics -General,In a recent survey women disliked what part of male body most,Feet,General,Terry Knight was the original producer of what group,Grand funk railroad,Science & Nature,Name The Kitchen Development Patented By American Radar Engineer Percy Spencer In 1945 ,Microwave Oven  -General,What method of transportation did Webster use to get from the upper level of the house to the lower level?,The dumbwaiter,General,What is the commonest item traded internationally,Petroleum and its by products,Art & Literature,In What Science Fiction Novel Do Duke Leto Atreidea & The Harkonnens Feature ,Dune  -Geography,"Who Established A Colony At Roanoke Island & Christened It (Virginia) In Honour Of Elizabeth I, The Virgin Queen ",Sir Walter Raleigh ,General,Where was the home of the flintstones,Bedrock, History & Holidays,In the song the 12 days Of Christmas what did my true love give on the 5th day ,5 Gold Rings  -General,The Italian Chianina is recognises as being the oldest what,Breed of Cattle,General,What is 'hoi polloi' in english,The masses,General,"He played ""grizzly adams""",Dan haggerty -General,How tall was thumbelina,One inch, Geography,What is the capital of Ecuador ?,Quito,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 -General,The Atomium is a famous tourist attraction in which city,Brussells,General,What is Indiana Jones first name,Henry,Music,What Did The Chairmen Of The Board Ask For In Their 1970 Smash,Give Me Just A Little More Time -General,"Ideally, what should be the total of your cards in Baccarat",Nine, History & Holidays,December 26th is known as Boxing Day but it is also which Saints Holy Day ,St. Stephen ,Music,What is Paul's Mccartney's real birth name?,James Paul McCartney -General,What is grandpa Simpsons first name,Abraham,General,How was Boris Karloff listed in the credits 1931 Frankenstein,As ?,General,John Palmer is buried in York what better known name,Dick Turpin -General,What nation invented the toilet seat,Egyptian,General,A fellmonger deals in what items,Animal skins,General,What type of food is Otak Otak in Malaysia,Grilled Fish Pate -General,What is the eardrum,Tympanic membrane,General,The Guarani is the unit of currency in which South American country,Paraguay,General,Which is the second largest city in Sweden,Gothenburg -General,Dr Seuss created the first animated TV ad for which company,Ford,Music,"Who Recorded The Albums ""In The Army Now"" And ""Whatever You Want""",Status Quo,Food & Drink,What Is The Best Selling Flavour Of Haagen Dazs Ice Cream ,Vanilla  -Sports & Leisure,What Piece Of Sporting Equipment Is 5 Meters Long And 10 Centimetres Wide? ,Gymnastics Beam ,General,What us national park contains gumbo limbo trail,Everglades,General,In which ruins was the first known written advertisement found,Thebes -General,On which island is the Sir Garfield Sober Sports Stadium,Barbados,General,Which country's national symbol is the harp,Ireland,General,Who presided over the trial of jesus,Pontius pilate -General,What is the heraldic term for a diamond shape,Lozenge,General,Which 19th century battle UK / USA fought after peace signed,Battle of New Orleans,Music,"Whose 1996 Debut Album Was Entitled ""1997""",Ash -Toys & Games,How many squares are there on a chessboard?,64,General,Daisy Hawkins original name of which Beatles hit song,Eleanor Rigby,General,Who Narrated The Childrens Tv Show The Magic Roundabout Whn It Resumed Broadcast In The 1990's,Nigel Planner -General,Which Sport Was Invented By Doctor James Naismith In 1891?,Basketball,General,Brownie Wise first cover woman on Business week developed?,Tupperware Party,General,What aerosmith song was written about vince neil of motley crue,Dude looks -Science & Nature,What is a young swan called,Cygnet,General,What ingredient is always found in a carciofo sauce,Artichokes,General,"Which film actress, in 1991, appeared nude and in a state of late pregnancy on the cover of 'Vanity Fair' magazine",Demi moore - History & Holidays,What did the Romans call Wales? ,Cambria ,General,Records show four Popes died doing what,Having Sex,General,What do you give for a one year wedding anniversary,Paper -General,Who walked the Via Dolorosa - literally Dolorous Way,Jesus from court to Crucifixion,General,Who Sang With Elton John On His Only Top Ten Hit Of 1996,Luciano Pavarotti,General,Who is the only director to win 3 Oscars within five years in 30s,Frank Capra 1934 1936 1938 -General,What do the auricularis muscles move,Ears,General,"Of what are Karakul, Texel, Romney Marsh types",Sheep,General,When was the first Mad Max film released,1979 -General,"What is the song title of neil diamond's 'vanilla soup, a double scoopie'",Porcupine pie,General,Which hereditary form of anaemia largely affects people of sub-Saharan African descent,Sickle cell anaemia,Music,Who Wrote The Song Coat Of Many Colours About A Girl Ridiculed About Her Coat Made From Fabric Scraps,Dolly Parton -Music,Name Fats Domino's Home Town,New Orleans, Geography,What US state has the most tornadoes on average?,Texas,Geography,What is the capital of The Netherlands,Amsterdam -General,What is the common name for the Aurora Borealis?,Northern lights,Science & Nature,Which Colour Is At Top Of A Rainbow? ,Red ,Entertainment,This term means to play smoothly.,Legato -Science & Nature,Name the mammal living at the highest altitude.,Yak,General,"Who invented the idea of ""infantile sexuality"" or the Oedipus complex",Sigmund freud,General,Panthophobia is the fear of,Suffering and disease -Entertainment,Who sang 'Bad Case Of Loving You'?,Robert Palmer,Sports & Leisure,"Which snooker player was fined 20,000 for assaulting an official in 1996? ",Ronnie O'Sullivan ,Science & Nature,What does URL stand for in computing? ,Uniform Resource Locater  -General,What does a pilot drop to slow an airplane?,Flaps,General,What doctor discovered the source of malaria in 1880,Charles laveran,General,Which charismatic but controversial European never won Wimbledon but was the first ATP number one ranked male tennis player in 1973,Ilie nastase -People & Places,Which MP & Former Leader Of The GLC Keeps Salamanders ,Ken Livingstone ,General,Who was corsica's most famous son,Napoleon,General,What is the combination of fine clay and sand for making pottery,Terracotta -General,C T Russell founded what organisation,Jehovah's Witnesses,Entertainment,What are the names of Donald Duck's nephews?,Huey Dewey and Louey,Music,According To The Beatles Who is Dr. Winston O'Boogie?,John Lennon -General,What was the first recorded message,Mary had a little lamb,General,Actor ______ Savalas,Telly,General,Name bald head character that peers over walls saying wot no,Chad -General,What does a pteridologist study,Ferns,Geography,What is the capital of Guinea,Conakry,General,Who composed the opera Ill Travatore,Guiseppe Verdi -General,Progressive opacity of eye lens,Cataract,Music,"Whose 1973 Album Was Titled ""Jonathan Livingston Seagull""",Neil Diamond,General,"In Terms Of Population Which Is The Largest City In The EU, Not To Be It's Country's Capital City ?",Hamburg -General,1978 a 100 yard long queue outside Peeking bookstore selling?,Works of Shakespeare 25 cents,Science & Nature,The Carloline Institute of Stockholm won the nobel prize for what?,Physiology and Medicine,General,"What TV comedian with no ID card was asked to give a Tarzan yell to verify her identity, at Bergdorf Goodman",Carol Burnett -Music,"Which Famous Pop Star Guess Starred Along Side Mr.T In An Episode Of ""The A Team""",Boy George,General,What was the former name of the Czech town of Kalovy Vary,Carlsbad,General,Hawaii lies on the Tropic of,Cancer -General,"""Do unto others as you would have others do unto you"" is also called what",Golden rule,General,Complete the proverb: 'What you lose on the swings..',You gain on the roundabouts,Geography,"Which country uses the ""yen"" for currency",Japan -General,What is a sphygmomanometer used to measure,Blood pressure,General,Who spells his name T I double grr,Tigger,General,"Which Fashion Label Has It's Headquarters In ""Treviso"" In Italy",Benetton -General,Name the one person who has won a Nobel and an Oscar,G B Shaw Lit 1925 Pygmalion 1938,General,What TV show takes place in Sunnydale,Buffy the Vampire Slayer,General,"Triplets: love, honor, and",Obey -General,"The Great Lakes are: Lake Superior, Lake Erie, Lake Huron, Lake Michigan & Lake",Ontario,General,Who commanded the English fleet which defeated the Spanish Armada,Admiral howard,General,Who was the father of Icarus,Daedalus -Entertainment,Where do Rocky and Bullwinkle play football?,What'samatta University,General,Elmo Lincoln was the screens first what 1918,Tarzan,General,"Which ancient town, capital of the legendary King Minos, was excavated and reconstructed by Sir Arthur Evans between 1899 and 1935",Knossos -General,"Who wrote the Opera ""Love of Three Oranges""",Prokofiev, History & Holidays,What was Marilyn Monroe's last film? ,The Misfits ,General,"Belushi What branch of science studies heat, electricity and magnetism",Physics -General,What can you find on California's Mount Cook,Hollywood sign,General,In which country would you find the 'Angel Fall's,Venezuela,Art & Literature,"From the french word 'fauve', meaning 'wild beast'. A style adopted by artists associated with Matisse, c. 1905-1908. They painted in a spontaneous manner, using bold colors.",Fauvism -Tech & Video Games,Who programmed Roller Coaster Tycoon? ,Chris Sawyer,General,In which country would you find the Ida mountains,Turkey,General,What toy was in short supply for the 1983 Chirstmas season?,Cabbage Patch Kid -General,How Is Barbara Millicent Roberts Better Known?,Barbie (Barbie Doll),General,Which nut is used to make Marzipan,Almond,General,What Apollo lunar landing was canceled after a tank explosion,Apollo 13 -Religion & Mythology,What animal's meat can a Muslim not eat?,Pig,General,What direction is the sahara expanding in by a half a mile a year,South,General,Who created 'The Muppet Show',Jim henson -General,In mythology what is the offspring of a God and mortal called,Hero,General,"Down, husk, trace, trip all collective nouns what creature",Hares,General,Entomophobia is a fear of ______,Insects -General,Where was george a custer defeated,Battle of little bighorn,General,"What is the name of the strong, heavy grating lowered to block the entrance to a castle",Portcullis,Science & Nature,What Solid Has The Biggest Volume For A Given Surface Area ,A Sphere  -Food & Drink,Which contribution to western tea culture was introduced at the St. Louis world fair in 1904 ,Iced Tea ,General,Overhead metal bar strengthening the frame of a vehicle and protecting the occupants if it overturns,Roll bar,General,Who is fond of saying 'i will gladly pay you tuesday for a hamburger today',Wimpey -General,Who Designed The Original Blue Peter Badge That Has Been The Shows Logo For Over 25 Years,Tony Hart, History & Holidays,Who Released The 70's Album Entitled Parallel Lines ,Blondie ,General,Which singer died a happy man on a Spanish golf course in 1977,Bing crosby -General,"Isaac Newton dropped out of school when he was a teenager, at his mother's request. She hoped he would become a successful?",Farmer,General,"Which Sportsman Got His Nickname From A Character From The Movie ""Cat On A Hot Tin Roof""",Big Daddy, History & Holidays,"""What Did My True Love Give To Me On The """"Sixth"""" Day Of Christmas"" ",6 Geese A Laying  -General,In which book did four ghosts visit scrooge,A christmas carol, History & Holidays,Which song was a Christmas No 1 in both 1975 and 1991 ,Queen's 'Bohemian Rhapsody ,Geography,What country formed the union of Tanganyika and Zanzibar,Tanzania -Music,Manhattan Transfer Sang A Song About A Boy From Chicago Or New York City,New York City,Sports & Leisure,"In baseball, how many outs are there in an inning?",Six,General,"What role does mickey mouse play in ""fantasia""",Sorcerer's apprentice -General,Who wrote and starred in the 1922 version of Robin Hood,Douglas Fairbanks,General,Which pop singer was Glad to be Gay,Tom Robinson, History & Holidays,Who Directed The Original Halloween Movie ,John Carpenter  - History & Holidays,When was Julius Caesar murdered?,Ides of March,General,Which bird is sometimes nicknamed 'Mother Carey's Chicken' especially by sailors?,Storm Petrel,General,What scandinavian country owned iceland from 1262 to 1944,Denmark -General,Nat King Cole died in which year,1965,General,"Who wrote the book ""Couples""",John updike,General,Gerald Gardner in the 50s founded which pagan organisation,Wicker -General,Ireland has the highest per capita consumption of ______,Tea,General,"If an animal has feathers, what is it",Bird,General,"Who starred in 'billy madison', 'happy gilmore', 'the wedding singer' and 'the water boy'",Adam sandler -General,"In the movie 'Aliens', what was Newt's real name?",Rebecca Jorden,Food & Drink,From which country does the dish paella originate? ,Spain ,General,Who wrote the thriller Jurassic Park,Michael crichton -General,"What kind of garment is a 'Sloppy Joe""",Sweater,General,He was 'dancing on the ceiling',Lionel richie,General,"Of which island group is Viti Levu, the largest",Fiji -General,What's white sugar mixed with to make brown sugar,Molasses, History & Holidays,Who started the second Punic war?,Carthage,Entertainment,"With which period in music do we associate composers such as Tchaikovsky, Mendelssohn, and Chopin?",Romantic period -General,Clinophobia is the fear of what,Beds,General,What is the marseillaise,French national anthem,General,What is the covering on the tip of a shoelace called?,Aglet -General,What is a group of this animal called: Duck,Brace paddling team,General,Hansenosis is more commonly known as___.,Leprosy,General,Lobster Newberg was invented at what famous restaurant,Delmonicos -General,Seawise University burned 9 Jan 1972 used to be called what,Queen Elizabeth,General,The bagpipe was originally made from the whole skin of a ______,Dead sheep,Science & Nature," A good milking cow will give nearly 6,000 quarts of __________ every year.",Milk -Music,Lou Gramm Was A Member Of Which Band,Foreigner,General,Rene Raymond is better known as which author,Raymond Chandler,General,"Of which island do Ireland, Britain, Iceland and Norway dispute ownership?",Rockall -Science & Nature," Every hour, nearly 12,500 puppies are born in the __________",United states,General,Which American clarinettist and bandleader created the jazz idiom known as swing,Benny goodman,Music,Who Sang The Theme To The Bond Movie A View To A Kill,Duran Duran -General,In what Australian state would you find Wodonga,Victoria,Music,What is the very first track on Spice?,Wannabe,General,How many birthday candles were Michael Jackson & Madonna each obliged to blow out in 1998,40 -General,"Who lived at 704 hauser street, queen's, new york",Bunkers,Science & Nature,What does the computer language For-Tran stand for? ,Formula Translation ,General,Which city was built in the design of a union flag,Khartoum -Science & Nature,What Do The Initials S.A.D Stand For ,Seasonal Adjustment Disorder , Geography,Name the large mountain chain in the eastern U.S.A.,The Appalachians,Science & Nature,What animal has the longest lifespan in captivity ,The giant tortoise  -General,The dogon are an _____,African tribe,General,In WW2 what linked members of the Caterpillar club,Life saved parachute,Music,The Beatles first major recording audition was at what label?,Decca -General,If music was played leggiero how should it be done,Lightly,Sports & Leisure,Who Beat Muhammad Ali In 1978 To Assume His World Heavyweight Title ,Leon Spinks ,General,Collective nouns - A train of what,Camels -Geography,"The border between _________ and the U.S. is the world's longest frontier. It stretches 3,987 miles (6,416 km).",Canada, Geography,Which island was born near Iceland in 1963 ?,Surtsey,People & Places,"In September 2003, Fathers 4 Justice campaigner Jason Hatch caused an embarrassing security breach at Buckingham Palace dressed as who? ",Batman  -General,"In the film 'pretty woman', for who was goldie hawn the body double",Julia, History & Holidays,"What was the instrument of execution during the ""Reign of Terror""",Guillotine,General,"In Greek mythology, who did oedipus marry",Jocasta -General,What is a necklace of flowers called in hawaii,Lei,General,Which is the geological period before the Ordovician,Cambrian,Music,Which Singer Is The Younger Sister Of Loretta Lynn?,Crystal Gayle -People & Places,Where would you find the Sea of Tranquility ,On The Moon ,General,What Was The Character Sonny Crocketts Actual First Name In The TV Series Miami Vice,James,Science & Nature,How man legs does a crab have?,Ten -General,"In the 1990 film 'The Krays', who played Violet Kray, the mother of the Kray brothers",Billie whitelaw,General,What is the capital city of Botswana,Gaberone,General,Which author wrote the belgariad series,David eddings - Geography,What is the basic unit of currency for Japan ?,Yen,General,Where on the body is the jugular vein,Neck,General,Who invented the telescope,Galileo galilei -General,Omolagnia is sexual arousal from what,Nudity,General,"Where would you find Fetcher, Mac, Babs, Ginger, Bunty And Fowler",Chicken Run (Movie), History & Holidays,"A German tradition is to hide a certain food in a Christmas tree, and the first one to find it gets a special gift. What is the certain food they hide? ",A Pickle  -Geography,What body of water borders Saudi Arabia to the east,Persian gulf,General,In Bexley Ohio its illegal to put what in an outhouse,Slot Machines,Science & Nature," __________, 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 -Sports & Leisure,Where were the 1936 Olympics held ?,"Berlin, Germany",General,What city became the U.S. federal capital in 1789,New york,General,Substance that neutralizes alkalis and turns litmus paper red,Acid -General,Bangkok is which country's capital,Thailand,General,"What is made up of England, Scotland, Wales & Ireland",United kingdom,General,In June 1906 where was the worlds first grand prix held,Le Mans in France -General,What east european country's people spend stotinki,Bulgaria,General,Who composed the opera Billy Budd in 1951 (both names),Benjamin Britain,General,When performing pop artist Marshall Mathers uses which name,Eminen -General,"In Which Capital City Was The Crime Fighting Organisation ""Interpol"" Actually Founded",Vienna,Science & Nature,What Is Anaemia ,A Deficiency Of Red Blood Cells ,Music,Who Had A White Riot In 1977,The Clash -General,Scotophobia is the fear of,Darkness,General,Ransom Eli Olds started this company in 1897.,Oldsmobile,Music,Cathy McGowan Was The Presenter Of Which Popular Show,Ready Steady Go -Science & Nature,How Many Bits In A Byte ,8 ,Science & Nature,What is activated for freckles to appear?,Melanocytes,Music,What Was The Jams Town Called,Malice -Science & Nature,He is the Most Durable TV Astronomer,Patrick Moore,Music,Which Was The First Beatles Album To Consist Entirely Of Original Material,A Hard Days Night,Food & Drink,Name the only fruit named for its color ,Orange  -General,"What is the name of jefferson's home, pictured on the back of a us nickel",Monticello,Music,Which Beach Boy accompanied the Beatles to visit the Maharishi?,Mike Love,General,"If you flew due east from new york city, what would be the first country you would reach",Portugal -General,"Who ghost-wrote Xaviera Hollander's ""The Happy Hooker""",Yvonne dunleavy,General,On the Munsters what was Lillie's maiden name,Lilly Dracula,General,What was the profession of Lancelot 'Capability' Brown,Landscape gardener - Geography,What is the capital of Texas?,Austin,General,Who was shot only hours after Annie Leibovitz took a nude photo of him for Rolling Stone,John lennon,General,What was the name of the beatles' corporation after it was known as 'the beatles and company',Apple -General,Rosetta Jacobs became famous under what name,Piper Laurie,General,Who played the switchboard operator in cutter to houston,John nicholson,General, The treatment of disease by chemical substances which are toxic to the causative micro_organisms is called ________.,Chemotherapy -General,Where was the septuagint written,Alexandria,General,Photophobia is the fear of,Light,General,What are train drivers called in the U.S.A.,Engineers -General,"Which children's character famously lived at 52, Festive Road?",Mr. Benn,General,What type of bears are the best swimmers,Polar bears,General,What groups demo rejected by EMI in 1965 cos not own songs,The Who -General,What is the Capital of: Albania,Tirana,General,By feeding hens certain ____ they can be made to lay eggs with varicolored yolks,Dyes,General,What's the more common name of the Crux Gammata,Swastika -General,"This cereal's commercials feature a ""Cookie Crook"" and a ""Cookie Cop""",Cookie crisp,Science & Nature,Name the second_largest planet in the solar system.,Saturn,General,What mistake did Coca-Cola make in 1985?,New Coke -General,"Germany's allies in wwi were austria-hungary, bulgaria and ______",Turkey, History & Holidays,Good King Wenceslas Was The Duke & Later King Of Where? ,Bohemia ,General,Ghost who calls munich the 'monaco of bavaria',Italians -General,Who was it that 'the untouchables' were formed to stop,Al capone, History & Holidays,Which Series Of Horror Movies Were Greatly Influenced By A Painting By Norwegian Artist Edvard Munch ,Scream ,General,Bangalore and Jaipur are in which country,India -General,What musical was produced on London stage 30 years after film,Singing in the Rain Tommy Steel 1983,People & Places,Which cosmetic magnate died in 2004 at the age of 97? ,Estee Lauder ,General,What did Tommie Smith wear at his victory ceremony in the 1968 Olympics,Black glove -Music,What Was The Name Given To Duels Between Soloists Where They Would Improvise Head To Head Until One Took A Clear Advantage,Cutting Contests, History & Holidays,Of What Tribe Was Boadicea The Head? ,The Iceni ,Religion & Mythology,"In Greek mythology, what did Daedalus construct for Minos?",Labyrinth -General,In what sport did the word 'crestfallen' originate,Cockfighting,General,"American money with serial's beginning in ""b"" are printed in _____",New york,General,What is the name of a quarter of jerusalem that can be translated as 'hundred gates',Mea shearim -Music,What was REO Speedwagon's 1983 chartbusting LP?,High Infidelity,General,On what number is the sexagesimal system based,Sixty,General,Name the singer who won the 1998 Eurovision Song Contest with the song Diva,Dana international -General,What are woolly and spider types of,Monkey,Science & Nature," The __________ can travel up to 45 miles per hour, whereas the rabbit can achieve an average speed of just 35 miles per hour.",Hare,General,"What film starred helen hunt, gary elwes and bill paxton",Twister -General,What was lech walesa's job before he founded solidarity,Electrician,General,What is the southernmost country in continental europe,Spain,General,It is against the law in Albania to play what on Sundays,Dominos -General,"Who, in 1865, was the first U.S. president to be assassinated",Abraham lincoln,General,What is the name for the cutting and training of shrubs into decorative shapes,Topiary,General,What's unusual about the moons of Uranus,Named Shakespeare characters -General,With what are crocodiles often confused,Alligators,General,What planet has a magnetic field 50 times stronger than that of Earth,Uranus,General,The WWSU governs what sport,World Water Skiing Union -General,What is the capital of Dominica?,Roseau,General,Spelling counts - what is the singular of scampi,Scampo,General,The Irish Province of Connaught contains five counties. Sligo and Galway are two. Name one of the others. leitrim,Mayo roscommon -General,Which vegetable is used to make Moussaka,Aubergine,General,What is the last letter of the Greek alphabet (written out in english),Omega,General,What do you get when you add fresh fruit to red wine,Sangria -Science & Nature, Marie Antoinette's dog was a spaniel named __________,Thisbe,Sports & Leisure,"In Water Polo, Which Player Wears A Red Cap ",The Goalkeeper ,General,"Open in the early 20th century, what was used to treat epilepsy",Rattlesnake venom -General,Where in Italy is the wine Marsala made,Sicily,General,What's a ginkgo,Tree,Science & Nature," Hummingbirds are the smallest birds _ so tiny that one of their enemies is an insect, the __________",Praying mantis -General,Any of a group of composite organisms made up of a fungus and an alga living in symbiotic association (symbiosis)?,Lichen,General,The longest bike weighed how much,More than a ton,General,In the Bible name Isaacs wife,Rebekah -General,Women 375 - 1 Men 1400 - 1 chance of doing what,Living to 100,General,The Millennial Dawnists changed their name to what,Jehovah's Witnesses,Art & Literature,What Was Author George Elliots Real Name ,Mary Ann Cross (Nee Evans)  -General,"Which dramatist, who died in 1950, said ""'I'm only a beer teetotaller - not a champagne teetotaller""",G b shaw, History & Holidays,Where did the battle of Waterloo take place?,Belgium,Science & Nature,What name is given to a male bee ?,Drone - History & Holidays,Which duo had a 1987 Christmas hit with a cover of the Elvis song 'Always On My Mind'' ,The Pet Shop Boys ,General,Where will the 2002 Winter Olympics be held,Salt Lake - USA,Religion & Mythology,Neptune was the Roman god of the ______?,Sea -General,What duo lost their Grammy for Best New Artist from the eighties?,Milli Vanilli,General,What language does 'danke' mean 'thank you' in,German, History & Holidays,How Many Ships Came Sailing In On Christmas Day ,Three  -General,How many runs are scored in cricket if the ball is hit over the boundary without bouncing,Six,Science & Nature,How many bones are there in the human body?,206,Geography,"The countries of Belgium, Netherlands, and Luxembourg are together called ________.",Benelux -General,What cartoon characters are at 6 flags theme park,Looney tunes,General,"What product first produced in germany had a formula that combined alcohol, lemon spirits, orange bitters and mint oil",Cologne,General,What is the fear of thinking known as,Phronemophobia -General,Which TV detective series is set in the town of Denton,Frost,General,A lido is open air swimming pool where was the original lido,Venice,General,Which actor started his film career as a giggling psychotic killer in the gangster movie Kiss of Death,Richard widmark -General,What is the bass Xylophone called,Marimba,General,What is the name of the bacterium that causes food poisoning in contaminated food,Salmonella, History & Holidays,In 1954 the Salk vaccine was introduced - a vaccine which effectively wiped out which devastating disease ,Polio  -Entertainment,What was the name of the two space shuttles in 'Armegeddon'?,Freedom and Independence,General,The Jeffersons was a spinoff from what show?,All in the Family, History & Holidays,Name the first black nation to gain freedom from European colonial rule.,Haiti -General,Hebrew comes from a Babylonian word meaning what,Vagrant, Geography,What small island is in the bay of Naples?,Isle of Capri,General,Who was irma's first roommate in my friend irma,Jane stacy -General,Kangaroos and Emus can't do what,Walk backwards,Music,"Who was lead singer with Van Halen, but went solo in 1985?",David Lee Roth,General,In mythology Odysseus blinded which Cyclops,Polyphemus -Art & Literature,How Many Tales Are There In Chaucers Canterbury Tales ,23 ,General,Which Football club were the first in modern times to set a trend of building a purpose-built stadium away from the town centre?,Scunthorpe United,General,Odynephobia is the fear of,Pain -General,Which gland is enlarged in the condition known as 'goitre',Thyroid gland,General,Who posted the highest score on 'celebrity jeopardy' in november 1994,Norman,General,"Translate ""simba"" from swahili into english",Lion -Geography,What Are The Northern Lights Otherwise Known As ,Aurora Borealis ,General,"Who had top ten hits in the 1960s with 'Together, Somewhere' and 'Hold Me'",P.j. proby,Science & Nature, A male baboon can kill a __________,Leopard -General,What is the part of the sole between the heel & the ball of the foot,Shank,General,What area in NY is named after a barrier built to keep out Indians,Wall Street,General,This re opened in 1975 after being closed for 8 years,Suez canal -General,Who's Eric Cartman's father?,His mother,General,What is the official language of somalia,Somali,Geography,In which city is the Coliseum located,Rome -General,Which American Box Office Smash Movie Is The Most Profitable Comedy Of All Time,Beverly Hills Cop,General,What Was Mother Teresa's Real First Name,Agnus,Art & Literature,Who Wrote The Novel Emma ,Jane Austen  -General,What is the young of this animal called: Cat,Kitten,General,"In 1943, a Swiss chemist accidentally discovered which drug",Lsd,General,"According to folklore, the Giant's Causeway was originally built to link to which Scottish island?",Staffa -General,Bugs Bunny was a caricature of what actor,Clark Gable,General,What is a group of this animal called: Oyster,Bed,Music,"Who Was The Lead Singer Of ""Go West""",Peter Cox -General,Which microbe produces alcohol,Yeast - alcohol is yeast piss,General,"In Entertainment ""Julia Smith & Tony Holland Are Both Famous For Creating What",Eastenders,General,In Shakespeare King Lear was king of where,Britain -Music,Who Had The First British No.1 Single Of The 1970's,Rolf Harris,General,What is added to brandy to make a sidecar,Cointreau or Triple Sec, History & Holidays,In Which Year Did Abba Win The Eurovision Song Contest ,1974  -General,"What were the names of the host and his sidekick on ""Fantasy Island""?",Mr.Rourke and Tattoo, Geography,What is the capital of Mali ?,Bamako,General,"What kind of flower is called bog torch and frog spear""",Orchid -General,British playwright wrote the screenplay for The French Lt Woman,Harold Pinter,General,Species what country are yoU.S.tuck in if you're doing hard time at boniato prison,Cuba,General,What is a Tibetan priest,Lama -General,Who wrote the Opera Madam Butterfly,Puccini,General,What is a group of this animal called: Snake,Nest,General,Plane figure with 7 sides and angles,Heptagon -General,What cartoon featured a boy with a community of tiny people living in his wall?,The Littles,General,In dating agency adverts what does the 'S' represent in the abbreviation 'NSP',Smoker,General,This South African surgeon led the team that performed the first human heart transplant in 1968,Dr. christiaan n. barnard -General,The correct name for the voice box is the _________.,Larynx,Entertainment,Secret Identities: Lyta Trevor,Fury,Science & Nature,Which substance has the chemical formula HNO3?,Nitric Acid -Music,"Along With A Raunchy Video Who Had A Hit With ""Physical"" In 1981",Olivia Newton John,General,In 1814 1st abdication of Napoleon; he is exiled to,Elba,Geography,______________ is the fourth_largest island in the world. It is approximately the same size as the state of Texas.,Madagascar -General,What is the flower that stands for: rustic oracle,Dandelion,General,What country does French toast come from,Italy - Rome,Music,Who recorded 'Long Tall Sally' in 1956?,Little Richard -General,How did Billie Holiday get the nickname Lady,Refused to pickup tips with vagina,General,What town did Billy Joel call home,Long island,Science & Nature,Which Insect Is Popular With Gardeners Because It Feeds On Aphids ,The Ladybird  -General,Where did Little Miss Muffet sit?,On her tuffet,General,"What vegetable varieties include snowball, white horse, & igloo",Cauliflower,General,In what famous US building would you find Broadway,Alcatraz - main prison block -General,Who shared the 1978 Nobel Peace Prize with Menachem Begin,Anwar sadat,General,"What is the process whereby one metal is coated with a thin layer of another, more reactive metal",Galvanizing,General,"Turks head, Granny and Bowline are types of what",Knot -General,"Also known as the Chile Pine, what is the common name of the tree Araucaria araucana",Monkey puzzle,General,Which spirit is the base of a White Lady Cocktail,Gin,General,Who was the first american born child of english settlers,Virginia dare -General,What are chanterelles and morels,Mushrooms,General,If someone said they were from Hellas - which country,Greece,General,In Florida women can be fined for falling asleep under what,Hair Drier -General,Who owned the sword Joyeuse,Charlemagne, Geography,In which city is the C.N. Tower?,Toronto,General,What group of people founded Liberia in 1847,Freed american slaves -Art & Literature,"Who wrote ""Animal Farm""?",George Orwell,Music,Name The Composer Of Red Red Wine,Neil Diamond,General,What month was the Frankenstein monster created,November -General,What is the Capital of: Belize,Belmopan,General,Which groups third album was 'sports' and featured 'heart and soul' and 'i want a new drug',Huey lewis and the news,General,A broom made of twigs,Besom -Science & Nature,The name for the Russian equivalent of Skylab is ________.,Salyut,General,"These come in types like breakfast, pork, lamb, spiced, beef and thick",Sausage,General,What is the name for a chicken less than one year old,A Pullet - History & Holidays,How Long Was The American Civil War ,Four Years ,Sports & Leisure,Which Is Longer A Baseball Bat Or A Tennis Racket? ,A Baseball Bat ,Music,Killing Me Softly Went Straight To No.1 In 1996 Who Sang It,Fugees -General,"Complete this title a novel by George Eliot ""Daniel",Deronda,General,"French bread filled with meat, cheese and salad is called a what",Hero sandwich, History & Holidays,"The following is a line from which 1970's film 'You Came In That Thing, You're braver than I Thought' ? ",Star Wars  -General,What are pug marks,Tiger paw prints,Music,"Who played the electric piano on ""Get Back""?",Billy Preston, History & Holidays,Who invented the aerosol?,Erik Rotheim -General,If You Follow The FINA Rules Which Spoert Do You Practice,Swimming,General,What is the worlds longest mountain range,The Andes,General,Whats the largest lake in Africa,Lake victoria -General,The closest relative to the spiny anteater is what,Platypus,Sports & Leisure,Who Did France Beat To Win The Euro 2000 Football Final? ,Italy ,General,What sport takes place over a distance of 440 yards,Drag Racing - History & Holidays,Which singers Christmas favourite is having his `nuts roasting on an open fire___'? ,Nat King Cole ,General,2.47105 acres is equal to what SI unit,Hectare, History & Holidays,"What Was Julie Christie's Home Town A=Bradford, B= Birmingham, C=Bath ",B= Birmingham  - History & Holidays,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 ,Music,How Many Grammys Did Christopher Cross Win In 1980,Five,General,What is 'pollo' on a menu in rome,Chicken -General,What is the fear of solitude or being alone known as,Monophobia,General,What is the young of this animal called: Eel,Elver,General,"On What Type Of Object (Be Specific) Will You Find The Phrase ""Annuit Coeptis""",A Dollar Bill (Back) -General,What printer did seiko develop for the 1964 tokyo olympics,Dot matrix,General,Which grand prix circuit is only 1.95 miles long,Monaco,General,Which dinosaur ahd a huge sharp claw on its foot,Veloceraptor -General,Who sang 'mr sandman',Andrews sisters,General,What artistic term was named after a French finance minister,Silhouette,General,What is Indiana Jones main weapon?,His whip - Geography,What country is directly west of Spain?,Portugal, Geography,What is the capital of Kazakhstan ?,Astana,General,The Greek Goddess Ephesus is the Goddess of what,Chastity -Science & Nature,What is the meaning of the name of the constellation Coma Berenices ?,Berenice's Hair,General,Who was Andromedas mother,Cassiopeia,General,"This country's flag has a large ""r"" on it",Rwanda -General,What Famous congressman was on an episode of the Golden Girls?,Sonny Bono,Geography,What is the capital of Burkina Faso,Ouagadougou,General,"Two 1.5 volt batteries, when connected in series, produces _ volts",Three -Food & Drink,What Are You Doing If You Are Shucking An Oyster? ,Opening It ,General,Where did the philosopher Plato teach,Academia,Sports & Leisure,On Tv's A Question Of Sport Who has replaced John Parrot as one of the team captains? ,Frankie Dettorie  -General,If you sailed due West from Japan what country would you hit,Korea,General,What job involves walking an average 60 miles in a 5 day week,Waiter,Mathematics,What is the only digit that has the same number of letters as its value?,Four -Entertainment,Who was the frontman of Nirvana?,Kurt Cobain,General,Who wrote and directed the 1977 film 'Annie Hall',Woody allen,General,In which Irish county is Bantry Bay,Cork -General,Jodie Foster directed the film 'Little Man Tate' in what year,1991,Music,Whose Real Name Is Robert Zimmerman,Bob Dylan, Geography,What continent is the home to the greatest number of countries?,Africa -Art & Literature,Who writes the discworld novels?,Terry Pratchett,General,What is a runcible spoon,A broad Pickle fork,General,What is the Capital of: Marshall Islands,Majuro -Sports & Leisure,Which former Olympian lit the Olympic flame at the 1996 Atlanta Games? ,Muhammad Ali ,General,Shane Fenton became famous as who,Alvin Stardust,General,What is Europe's largest port,Rotterdam -General,What was u2's first album released in the u.s,Boy,General,What name is given to the division between the nostrils,Septum,General,Which famous poem features a hamlet called Auburn,Goldsmith's the deserted village -General,Who is Woodie Woodpeckers girlfriend,Winnie Woodpecker,General,What is the medical term given to the study of the brain and nervous system,Neurology,General,Name the actor who played Ben Casey (both Names),Vince Edwards -Geography,The world's largest lake has a very misleading name. What is it? ,Caspian Sea ,Technology & Video Games,What was the first cartridge that had a battery backed save feature? ,The Legend of Zelda,General,Basketball: the boston ___________,Celtics -General,Varietal name applied to two different minerals,Alabaster,Music,What is the longest Beatles song on record?,I Want You (She's So Heavy),General,Medieval wine measurement there are two buts to a what,Tun - Geography,What is the basic unit of currency for Ukraine ?,Hryvnia,General,Hugh Hefner and Katherine Hepburn both had degrees in what,Psychology,Music,"Whose Debut Hit ""No No No"" Featured Ex Fugee Wyclef Jean",Destiny's Child -General,Which Queen Of England Actually Never Set Foot Here,Berengaria (Wife Of Richard I),General,What is Kabuki in Japan,Common peoples theatre,General,What historical event was referred to as Black 47,Irish Potato Famine -Music,Today Was An Album Released In 1961 By Which British Rock N Roll Star,Cliff Richard,General,Who said the quickest way of ending a war is to lose it,George Orwell, History & Holidays,"Who Had An 80's Hit With The Song 'Kiss On My List', ",Hall and Oates  -General,Which country has won the most nobel peace prizes?,USA,General,The word Calendar comes from Latin and means what,To Call Out,Science & Nature,In Which Country Did Charles Lindbergh Land After The First Solo Transatlantic Flight In 1927 ,France  -General,What is the oldest honor society in the U.S. founded in 1776,Phi beta kappa,General,"Which flying mouse, a cross between Superman and Mickey Mouse, appears in over seventy short cartoons in the Terrytoons series",Mighty mouse,Science & Nature,What Is Blader Wrack? ,Seaweed  -General,What bird uses its tongue to spear food,Woodpecker,Sports & Leisure,In Metres How Long Is An Olympic Size Swimming Pool ,50 Metres ,General,Yosemite Park is in which American state,California -General,20% of Japanese publications are what,Comic Books,General,Norse mythology Asgard was home of the Gods what's Midgard,Earth,General,"German scientist, who is generally regarded as the founder of the science of mineralogy",Agricola -General,Which bird is sometimes known as Peewit?,Lapwing,Science & Nature,Which is the only planet that rotates clockwise?,Venus,General,Who was the first Grand Prix driver to used a safety belt in 1967,Jackie Stuart -General,Where was a Soviet Republic formed in 1919 which lasted only 4 weeks,Bavaria,General,How many people were killed in the battle of lexington,Eight,General,The pop act '2 Unlimited' were from which country?,Netherlands -General,Blitz Boondock Bristol Scrunge Squop terms in what game,Tiddlywinks,General,What surrey town is famed for its salts,Epsom,General,Who wrote the words that are engraved on the Statue of Liberty,Emma lazarus -General,A vampires favourite place to sleep (and it's portable!),Coffin,General,What does the syrinx help a bird to do,Sing,General,Animal's body that the mythical griffin has,Lion -General,Where did the incas live,Peru,General,What is the chemical symbol for tungsten,W,General,The word rodent comes from the latin word 'rodere' meaning what,To gnaw -General,What Ceased To Be Legal At Midnight On December 31st 1960,The Farthing,General,"Pride, Avarice, Envy, Gluttony, Sloth, Lust what's missing",Wrath, History & Holidays,He is said to have fiddled while Rome burned.,Nero -Geography,What is the capital of Botswana,Gaborone,General,What colour was Mrs Bates dress in Psycho,Periwinkle Blue, History & Holidays,Which Series Of Films Features A Habitual Killer Called Michael Myers ,Halloween  -General,What's the location for newhart,Vermont,General,What fictional planet orbited the red star Negus 12,Superman's Krypton, History & Holidays,Elvis Presley Died On August 16th 1977 But Where EXACTLY Was He When He Died ,On The Toilet  -General,Whose head was given to Herod's wife on a plate,John the baptist,General,Who composed Peter and the Wolf in 1936 (both names),Sergai Prokofiev,General,"Who, or what, is Petrushka in Stravinsky's ballet of the same name",A puppet -General,Hang on Sloopy' was the official rock song of which band,Ohio,General,Which Australian was the only man to win the tennis Grand Slam twice,Rod laver,Geography,What Central American country's name means 'many fish'? ,Panama  -General,On which island is it a criminal offence to shout 'ship ahoy' when there is no ship in sight,Picarn island,General,What magazine was the first to be distributed widely through grocery stores,Family circle,General,Which Austrian president was engulfed in a storm over his Nazi past in 1988,Kurt waldheim -General,What domesticated pet is never mentioned in the Bible,Cats,Science & Nature,20% of what is in the metal part at the end of a pencil?,Sulphur,General,In Israel on Saturday its illegal to do what,Pick Your Nose - History & Holidays,"What country produced the world's first Christmas postage stamp, and when? ",Canada ,Science & Nature,What Type Of Triangle Has 2 Sides Of Equal Length ,An Isosceles Triangle ,General,Which ethnic group of people lived in the biblical city of Nineveh before it was sacked in 612 B.C.,Assyrians -General,What product changed its original name from the soundabout,The walkman,General,Lepcha people Tibet consider it proper to pay teachers in what,Alcohol is acceptable,General,What plant has been used to relieve migraines,Feverfew - Geography,"What city was the setting for ""Gone With the Wind""?",Atlanta,General,"Albert Einstein couldn't talk properly until he was nine, and was thought to be suffering from ______",Dyslexia,General,Paraskavedekatriaphobia is the fear of,Friday the 13th -General,Who was the U.S. president at the time of the 'Wall Street Crash',Hoover,General,What is Christmas Disease,Mild Haemophilia,General,Conifer with dark foliage,Cypress -General,What does a kymograph measure,Oscillations,General,"In mythology, which maiden was saved from a sea by Perseus",Andromeda,General,What is kaolin,Pure china clay -Food & Drink,What Percentage Of Total Production Does The Arabic Coffee Bean Represent ,70% ,General,"When angered, the ears of what animal turn a pinkish red",Tazmanian devil,General,"According to folklore, how does santa get into houses on christmas eve",Down the chimney -General,What is the fear of stooping known as,Kyphophobia,General,What two word term is considered the lowest possible temperature?,Absolute zero,General,How did Bobby Beach - broke all bones over Niagara in barrel die,Slipped Banana skin -General,Where was Oceanus Hopkins born in 1620,On the Mayflower, History & Holidays,How in the world of music is Richard Starkey more commonly known? ,Ringo Starr ,General,What was margaret thatcher's nickname,Iron lady -General,Shirley Bassey sang three Bond themes - which 3 films,"Goldfinger, Diamonds are Forever, Moonraker",General,What was the name of Russian bear mascot 1980 Olympics,Mischa,General,What is graphically illustrated in a karnaugh diagram,Logic -Sports & Leisure,How Many Players Are There In A Netball Team ,7 ,General,"The Cassegranian, Gregorian and Schmidt are types of what",Telescopes,General,What is the flower that stands for: reward of merit,Bay wreath -General,What desert covers most of southern Mongolia,The gobi desert gobi desert,General,What is the only breed of dog that gets gout,Dalmatian,Science & Nature,What Part Of Its Body Does A ButterFly Use To Taste ,It's Feet  -General,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,General,Chitlins are made from what part of the pig,Intestines,General,What is the Capital of: Kuwait,Kuwait -General,What are fawn or pale brown cows called,Jersey cows,General,What is the name for the outer part of a citrus fruit,Zest,Geography,"On which river is London, England",Thames -General,What originates from the dalmatian coast,Dalmatians,General,"What reggae great sang ""get up, stand up, burnin' and lootin'",Bob marley,General,"What are Muharram, Rajab and Safar",Months in the muslim calendar -General,Which year were the 'Jesse Owens' olympic games,1936,General,Whose hamburger patties weigh 1.6 oz,Mcdonald's, History & Holidays,"Nikolai Caucescau, was executed on Christmas Day 1989, in which former Communist country was he President ",Romania  -Sports & Leisure,Who Sobbed On The Duchess Of Kent's Shoulder When She Lost Her Wimbledon Final To Steffi Graf? ,Jana Novotna ,General,What system do the blind use for reading,Braille,General,Who was the first black entertainer to win an Emmy award,Harry Bellefonte -General,When was the tuberculosis bacterium discovered,1932,General,What german philosopher claimed morality required a belief in god and freedom,Immanuel kant,General,Who sang 'beat it',Michael jackson -General,Which country was invaded by Soviet troops in December 1979,Afghanistan,General,What is the speech at the beginning of a play called,Prologue,Art & Literature,In Which Novels Does Bilbo Baggins Appear ,The Hobbit/ Lord Of The Rings  -Sports & Leisure,In which city is the Cotton Bowl played,Dallas,General,Who was Dr Zhivago’s love,Lara,General,This instrument measures atmospheric pressure.,Barometer -General,Who was assassinated in Mexico in 1940,Trotsky,General,"What is the life span of a housefly two weeks, two months or two years",Two weeks,Music,"Which 1960's Band Was Formed By Eric Clapton, Ginger Baker And Jack Bruce?",Cream -Entertainment,In 1975 Jack Nicholson won the best actor Oscar for his role in this film.,One Flew Over the Cuckoo's Nest,Music,From What Country Did The Band Black Box Originate,Italy,General,Sherlock Holmes lived in Baker St - What other Detective did,Sexton Blake 1893 -General,What did dr david banner become when he got angry,Incredible hulk,General,What Is The One-Humped Type Of Camel Called,A Dromedary,Music,Name Nat King Coles Hit Making Daughter,Natalie Cole -Music,How Many No.1 Singles Did Stevie Wonder Have In The 60's,None,General,Who was the first head of an arab nation to make peace with israel?,Anwar sadat,General,"What links Willie Brant, Lech Walesa, Yasser Arafat",Nobel Peace Prize -General,What is the Roman numerals for 3000,MMM,General,There Are Now More Billionaires In This Capital City (As Of 2006) Can You Name It,Moscow,Music,"Who Had 2002 Hits With ""Compilcated"" And ""Skater Boy""?",Avril Lavigne -Geography,On Which Line Of Latitude Could You Sail Around The World Without Touching Land? ,60 Degrees South ,General,"At which Air Show in 1973 did Russia's supersonic ""Konkordski"" aircraft crash",Paris,General,US civil war which states buttons had a Palmetto tree on them,South Carolina -Music,"The Bonzo Dog Band's Only Hit Single ""Im The Urban Spaceman"" Was Produced By Apollo C Vermouth, Who Was Hiding Behind This Pseudonym",Paul McCartney,General,What animal does the adjective 'meline' refer to,Badger,General,Kate winslet in which film did leonardo dicaprio and kate winslet play 'jack' and 'rose',Titanic -General,"What are a Galliard, Sarabande, Morisca and Courente",Dance Types,Entertainment,What was the last movie of the late Brandon Lee?,The Crow,General,Which famous battle was fought this day In 490 BC,Marathon -Entertainment,"Name the band - songs include ""Get Down & Get With It, Mama We're All Crazy Now""?",Slade,General,Who was supposed to play Betelgeuse in the movie,Sammy Davis Junior,General,Who developed the first nuclear submarine,Soviet union -General,"Hares, cats, toads, newts, owls, ferrets all accused of what",Being witches familiars,General,What mammal moves so slowly that green algae can grow undisturbed on it's fur,Sloth,General,To pick the best from a group,Cherry-pick -General,Who had the part of Dirty Harry - hurt hand - dropped out,Frank Sinatra,People & Places,Who Was Maradona Playing For When He Was First Caught Taking Cocaine ,Napoli ,General,In What Country Will You Find The Largest Active Volcano In The World,USA (Hawaii) -Music,Which Former Punk Maestro Recorded An Album Of Pop Opera Songs With The Bootzilla Orchestra,Malcolm McLaren,General,Dhaka is the capital of ______,Bangladesh,General,The marimba is a African form of what musical instrument,Xylophone -General,"What is the narrow, inland sea, separating the Arabian peninsula, western Asia, from northeastern Africa?",Red sea,General,"Circular bands used to decorate ears, toes, noses, or, most often, fingers",Rings,General,What tourist attraction in rome has 138 steps,Spanish steps -Science & Nature,What Is The Lightest Solid Element ,Lithium , History & Holidays,Which 20th century American icons died on Halloween ,River Phoenix ,General,What is the call name for Soviet mission control,Zarya -General,"Who played the mermaid Madison in the film ""Splash""",Darryl hannah,General,"Who wrote ""The Learning Tree""",Gordon parks jr,General,Nevada and Canberra are varieties of which vegetable,Cauliflower -General,"Which Chemical Element Get's It's Name From The Greek For ""Violent""",Iodine,General,What is the name of the airline that operates the ill-fated flight from LA to Chicago in the movie Airplane!?,Trans American, Language,"What word contains the combination of letters: ""xop""?",SaXOPhone -General,Who played Flint in the spy movie Our Man Flint,James coburn,Technology & Video Games,Who was the founder of Lotus Cars Ltd.?,Colin Chapman, Geography,In which city is Saint Paul's Cathedral?,London - History & Holidays,Which Singer Starred In The Title Role Of The Film 'Merry Christmas Mr Lawrence'' ,David Bowie ,General,"In Homer's Iliad, who was the King of Troy",Priam,General,Whose family name is Zimprsquzzntwlfb,Mr Spock in Star Trek -Sports & Leisure,Sergey Bubka has set a world record in which field event over 30 times? ,Pole Vault ,General,Hudson how many points are awarded to the winning driver of a formula 1 grand prix race,Ten,General,What weapons did the indians use to defeat custer?,Winchester Specials - Geography,What is the basic unit of currency for Fiji ?,Dollar,General,Which is cape town's major choir,Philharmonic choir,General,Where are the most expensive seats at a bullfight,Shade - Sombra -General,What musical instrument did jack benny play,Violin,General,What's the circulation of winds around a low pressure system called,Cyclone,General,In church terms what are saucers,Domes -Science & Nature,What is the chemical symbol for iron?,Fe,Art & Literature,Who Wrote The Novels Slaughterhouse Five And Breakfast Of Champions ,Kurt Vonnegut ,General,Who rode 'Party Politics' to win the Grand National in 1992,Carl llewellyn -Geography,The Airline Danair Is Based Where? ,Denmark ,General,What american indian tribe drank 'tizwin',Apache,Food & Drink,What Is The Name Given To The Flat Unleavened Indian Bread Resembling A Pancake ,Chapati  -Science & Nature,A calm ocean region near the equator.,Doldrum, History & Holidays,Who was the first woman elected to lead a european democracy ,Margaret thatcher ,General,What is an 'islet',Small island -Music,What Was The Name Of The Television Show That Featured Mick Jagger As A Ringmaster,Rock N Roll Circus,General,From which kind of organism is the indicator litmus extracted,Lichens,General,What is the Capital of Costa Rica?,San Jose -Geography,Name the most north_easterly of the 48 contiguous states.,Maine,General,Who wrote the novel The Seventh Scroll,Wilber Smith,Music,Which Beatles song was inspired by a picture drawn by Julian Lennon?,Lucy In The Sky With Diamonds -General,Who were defeated by the Mets in the 1969 world series,The orioles, History & Holidays,What Did The Bank Of England Issue For The First Time In 1791? ,Banknotes ,General,Who was forced by indian troops into the black hole of calcutta,British -General,What colour is worn for funerals in Egypt,Yellow,General,"There are two perennial vegetables, asparagus & ______",Rhubarb,General,Ben Affleck played CT on what 80's science education television show?,Voyage of the Mimi -General,Outfit/costume first seen 1914 film Kid Auto Races at Venice,Chaplin's Tramp outfit,General,Which country has no national monetary unit of it's own,Andorra,Music,What Type Of Guitar Does Hank Marvin Use,A Fender Stratocaster -General,"A ""gyre"" is another term for what shape?",Coil,General,What kind of bird is a capercaillie,Grouse,General,"In 1998, Andrew Flintoff scored 34 runs from an over bowled by which Surrey bowler",Alex tudor -Science & Nature,This is the main food of the blue whale.,Plankton,General,"On a suit of armour, the poleyn would protect which part of the body?",Knee,General,The country name for which bird is the 'ruddock',Robin -Music,Which Singer Was Known As “The Walrus Of Love“,Barry White,General,Capable of being decomposed by the action of light,Photodegradable,General,What is the flower that stands for: age,Guelder rose -Religion & Mythology,What religion was founded by Guru Nanak ?,Sikhism,General,What vegetable is the essential ingredient in borsch,Beetroot,Sports & Leisure,At Which Scottish Golf Venue Are The Eden Course & The Jubilee Course ,St Andrews  -Music,"Who played the electric piano on the Beatles Track ""Get Back""?",Billy Preston,General,Boston Red Sox are The Pilgrims but what were they before,The Somerset's,Religion & Mythology,What is the name given to the supreme reality in Hinduism?,Brahman -General,What character was invented to respond to questions from Gold Medal Flour customers,Betty crocker,Music,"Who Went For ""All Or Nothing"" Reaching No.1 In 1966",The Small Faces,General,What Was The Top Grossing Comedy Film Of 1990,Home Alone -Science & Nature,"Found On Plants , What Is The Protective Bubbly Section Of The Nymphs Of The Spittle Bug Commonly Called ",Cuckoo Spit ,General,The Lipari islands are a group of seven volcanic islands to the northeast of which major island in the Mediterranean Sea,Sicily,General,What island did Balki from Perfect Strangers call home?,Mypos -Music,"Which DJ & Tv Presenter Co-Founded ""Time Out"" Magazine",Bob Harris, Geography,What is the basic unit of currency for South Africa ?,Rand,General,Who played the doctor in the rock opera Tommy,Jack Nicholson -General,Israel has the highest per capital consumption of ______?,Turkey,General,What kind of carpenter's tools come in jig & coping styles,Saws,Science & Nature,Which Bird Brought Back A Twig To Noah To Signal The End Of The Flood ,The Dove  -Music,Which Vocalist Used To Front The Q-Tips,Paul Young,General,Michael Bond created which children's character,Paddington Bear,General,"Who did Davy Crockett beat in a keelboat race, from Disney's perspective",Mike fink -General,Who was the first european to set foot on north america,Leif erikson, History & Holidays,"Which traditional song contains the lines 'He's making a list, He's checking it twice, Gonna find out whose naughty or nice'' ",Santa Claus Is Coming To Town , Geography,Of what are Quemoy and Matsu part?,Taiwan -General,Name the first self contained home computer -,A Commodore Pet,General,This racist organisation was formed in Tennessee in 1865,Ku klux klan,General,Where is the Devil's Tower,Wyoming usa -General,In What Country Did The Rather Prestigious Sport Of Polo Originate,Iran,General,What is the point to which rays of light converge,Focus,Entertainment,Hang On Sloopy' was the official rock song of which band?,Ohio -General,What links Colorado and Wyoming,Rectangles on USA map,Music,"In The World Of Music How Are Kelly, Michelle, Jessica, Tony & Kevin More Commonly Known",Liberty X,General,Who starred in the film The Outlaw Josey Wales,Clint eastwood -General,In which of Coleridge's poems does an albatross appear,Rime of the ancient,General,What are conifers,Cone-bearing trees,General,What colour is the number 10 on 10 Downing street,White -General,"What is the nickname for Boston, Massachusetts",Hub of the universe,General,What is the North American word for aluminium,Aluminum,General,What is unusual about the elements mercury & bromime,Liquid at room temperature -General,How many country's have a life expectancy of over 80 years?,"Four (Andorra, San Marino, Australia, Japan)",Art & Literature,What was Dante's last name?,Alighieri,Music,Juice Newton Was the Queen Of What,Hearts -General,"""The Death Car of Sarajevo"", killed 15 people over 12 years, including him.",Archduke ferdinand,Music,"Who Did Michael Jackson Team Up With For The Hit ""The Girl Is Mine""",Paul McCartney,General,"Of sin, cos or tan, which graph is not differentiable at all points",Tan -Music,Which James Bond Theme Was A Hit For Sheena Easton,For Your Eyes Only,General,"What in Queensland Australia , is the worlds longest at 3,450 miles",Fence,Science & Nature, A __________ consumes about 33 percent of its body weight in a single meal.,Pelican -Music,Seven Seas Of Rhye Was The First Hit For Which Rock Band,Queen,General,Which is the largest Scandinavian country,Sweden,General,What type of creature is a niffe?,Fish -General," An ""omniscient"" person has unlimited __________.",Knowledge,Music,"Which Singer / Songwriter, Appeared In The Movie, The Player, Where He Met His Wife To Be Julia Roberts",Lyle Lovett,General,What nationality was teiichi igarashi,Japanese -General,Eva Shain was the first woman to do what,Judge pro heavy boxing Match,General,Fragrant Harbour is the translation of which cities name,Hong Kong, History & Holidays,Which Was The Only Song To Spend 6 Weeks As a UK No.1 In 1979 It Also Featured In A 1978 Movie ,Bright Eyes  -General,What is the most common food allergen,Nuts,Entertainment,Randy Travis said his love was 'deeper than the ______'?,Holler,General,Fahrenheit as what is minus forty degrees fahrenheit the same,Minus forty degrees -General,Which Russian (1880-1942) choreographed the dying swan for,Pavlova kokine,General,"What is the range, in miles, of an Aim-7 Sparrow?",28,General,Pavarti or Uma is the wife of who in Hindu religion,Shiva -General,Scrutinise Swirl Sniff Sip - what are you doing,Wine Tasting,Music,"According to the 1984 Bananarama Song, who was waiting",Robert De Niro,General,What are white dwarfs and red giants,Stars - History & Holidays,What period is also known as the age of fish?,Devonian period,General,What was the name of the character played by Marilyn Monroe in the film Some Like It Hot,Sugar kane,General,The linden tree is also called what,Lime tree - History & Holidays,Which famous Giant Panda died at London Zoo in 1972? ,Chi Chi ,General,What was the name of Dr Doolittle's pet duck,Dab dab,General,The opera Peter Grimes was written by whom,Benjamin britten -General,"""Oliver's Story"" was the sequel to which best-seller by Erich Segal",Love story,General,William Joyce US born of Irish descent famous as who in WW2,Lord Haw-Haw – executed 1946,General,In what film - Charlie Chaplain have his first speaking part 1940,The Great Dictator – Adenoid Hinkel -General,Purina how often do chimpanzees build new sleeping nests,Nightly,General,Who built the worlds first film studio,Thomas Alva Edison,Science & Nature, Gophers are __________,Hermits - History & Holidays,How Many Times Was Queen Elizabeth I Married ,None , History & Holidays,The Inquisition forced him to recant his belief in the Copernican Theory.,Galileo,General,Rock groups: dion and the _____,Belmonts -Music,Who Gave Sid Vicious His Name,Johnny Rotten,General,Microbiophobia is a fear of ______,Microbes,Music,What Instruments Were Duelling On The Deliverance Film Soundtrack,Banjos -General,Coffee made under steam pressure,Espresso,General,In Kiplings poem Gunga Din what job had Gunga Din,Water Carrier,General,Which country is known as the roof of the world,Tibet -Entertainment,"Who recorded the 1969 hit ""Space Oddity""?",David Bowie,General,How many arondissements make up the city of Paris?,20, Geography,Raleigh is the capital of ______?,North Carolina -General,Sexophobia is the fear of,The opposite sex,General,The property of matter that causes it to resist any change of its motion in either direction or speed,Inertia,General,With what acid do nettles cause irritation?,Formic acid -General,What is the only head bone that a normal human can move,Jawbone, History & Holidays,What was the first game show on Mtv? ,Remote Control ,General,In Newport Rhode Island its illegal to do what after dark,Smoke a pipe -General,The horned dinosaur Torosaurus had the biggest what on land,Head - Skull nine feet long,General,From Memphis restaurants its illegal to take what away,Any Pie,General,Where was cornflakes invented,Battle creek sanitarium -General,Balsa wood gets its name from Spanish what's literal meaning,Raft,General,In a 1988 survey 12 million Americans don’t know what,Washington DC was capitol,General,What is an integer that is greater than 1 and divisible only by itself and 1,Prime number -General,To Those Of Us That Are Not Scientists How Is The Chemical Symbol “ H202 ” Better Known?,Hydrogen Peroxide,General,Brass instrument resembling a trumpet,Cornet,General,The United Nations in New York were originally where,San Francisco -General,BaseBall: The Chicago ____,Cubs, History & Holidays,Which is the oldest University in the USA? ,"Harvard (founded 1636, in Cambridge Massachusetts) ",Entertainment,Who was the alter ego of 'The Incredible Hulk'?,Dr. David Banner -General,Which building commemorates the great fire of london,Monument,General,A sun-dried grape is known as a(n) ______.,Raisin,Sports & Leisure,What year did Red Rum first win the Grand National ,1973  -General,"What is an illness caused, or made worse by mental factors",Psychosomatic,General,Who was the first person to win the Indianapolis 500 four times,Aj foyt,General,Who did Hercules persuade to go and get the Golden Apples for him,Atlas - History & Holidays,Who in 1893 defined vegtables as plants eaten in a meal and fruits as plants eaten as dessert ?,United States Supreme Court,General,What instrument does phil lynott of thin lizzy play,Guitar,General,What is Gluhwein,Mulled wine -Music,In Which Decade Did Rod Stewart Have His Last No.1,"The 80's, 1983 (Baby Jane)",General,Who wrote 'The Sun Also Rises',Ernest hemingway,General,Harold H Hilton only Englishman to do what in golf in 1911,Won UK and US open same year -General,Who was fred flintstone's best friend,Barney rubble,General,Wax like substance from the sperm whale used in perfumes,Ambergris,Sports & Leisure,In 1977 Which Horse was Guest Of Honour At The Opening Of The Steeplechase Ride At Blackpoll Pleasure Beach? ,Red Rum  -General,What Was The Name Of The UK's Best Selling Album Of 2005,Back To Bedlam (James Blunt),General,Novices are called tumblers experienced shiners what job,Window Cleaners,General,The old French Royal family - Boy Scouts share what symbol,Fleur-de-lis -General,"Twenty-five years after first playing James Bond, Sean Connery won an Oscar. For his part in which film",The untouchables,General,Which novelist died of typhoid after drinking water in Paris,Arnold bennett,General,"Fredcrick the First, 1657 to 1713, was the first king of which country",Prussia -General,"What do stock market vets call october 19, 1987",Black monday,Food & Drink,What berries give gin its flavour?,Juniper berries,General,James Bond flew Little Nellie in which film,You Only Live Twice -General,John Lilburne was a leader of which group,Levellers, History & Holidays,"Name the female comedy star who once had a show on Fox, that had a pop hit in the early eighties ",Tracy Ullman ,Music,"What Is The Connection Between Gina G, Bucks Fizz,",The Eurovision Song Contest -General,What is the moons astronomical name,Moon,General,"According to John Aubrey's Brief Lives , what card game did the English poet, Sir John Suckling, invent in 1630",Cribbage,General,An Aria from a Handel opera is Ombra mai fu - what other name,Largo -Sports & Leisure,What Do You Call A Boxer Who Leads With His Right ,A South Paw ,General,Who has won the most Oscars,Walt Disney,General,In what game would you use a squidger,Tiddlywinks – Big disc - History & Holidays,Which 1945 Ealing Film Is A Sequence Of Supernatural Stories Told By A Group Of People In A Country House ,Dead Of Night ,General,In Happy Days name Fonzies dog,Spunky,Music,Which Singer Kicked Of Their 3rd World Tour Entitled “Blonde Ambition” In 1989,Madonna -General,What is the square root of 144,12,General,This city is known as the 'Venice of the orient',Osaka,General,What is the number of the beast,666 -Food & Drink,What are the two main ingredients of cock-a-leekie soup? ,Boiling fowl and leeks. ,Music,What 80's band included members from Bad Company and Led Zeppelin?,The Firm,General,What is the chronicle of the nazi siege of leningrad,The 900 days -People & Places,Which Supermodel Is Nicknamed 'The Body'? ,Elle McPherson ,General,"In the famous scene from Ghost, where Patrick Swayze and Demi Moore are sculpting clay, what is the song playing in the background ",Unchained Melody ,General,Coca-cola was named for the extracts of which of its two 'medicinal' ingredients,Coca leaves and kola nuts -Music,"Did Sheena Easton Like Travelling By ""Fast Car"" Or ""Early Morning Train""",Early Morning Train,General,What is the term for a small umbrella used to protect a person from the sun,Parasol,Sports & Leisure,"Which sporting event starts at Putney, finishes at Mortlake and covers a distance of just 4 miles? ",The Boat Race  -Entertainment,Who directed the film 'Ordinary People'?,Robert Redford,General,What TV character lived in Waratah National Park,Skippy,Science & Nature,By what process is rock worn down by the weather?,Erosion -General,A punishment by caning on the soles of the feet,Bastinado,General,What is the world's leading importer of iron ore,Japan,Music,Who Had A Hit With Bright Eyes,"""Simon & Garfunkel""" -General,Lisbon lies on which river,Tagus,Art & Literature,Which is the only book written by Margaret Mitchell?,Gone With The Wind,General,What name is given to fish cooked in browned butter,Meuniere - History & Holidays,What was the contribution of actress Mercedes Mccambridge to Linda Blairs performance in The Exorcist ,She provided the devils voice ,General,"What is the nickname for Birmingham, Alabama",Pittsburg of the south,General,"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 -General,What's the name of Blur's frontman?,Damon Albarn, Geography,What is the basic unit of currency for Iraq ?,Dinar,Music,"In The 1980's Which Actor Became Motown Records ""Biggest Selling White Artist Ever""",Bruce Willis -General,"In the movie 'happy gilmore', who is happy's partner",Bob barker,General,What U.S. state boasts the world's largest mass of exposed granite,Georgia,General,Who played Jo's sailor boyfiend on the Facts of Life?,Robby Benson -General,In Yugoslavian Belgrade is called Beograd what does it mean,White City,Music,How Old Was The Dancing Queen According To The Lyrics Of The Abba Song Of The Same Name,17,General,"Annapolis & Minneapolis contain the suffix ""polis"", which in Greek means ____",City -General,Who or what was Rosanna Arquette seeking in 1985,Susan,Food & Drink,Vermicelli literally means ___________.,Little worms,General,What does a tailor do with his plonker,Press suits - History & Holidays,"Which city, famous for its 'Christmas Market', is also Known as 'The Gingerbread Capital of the World'? (Geneva, Bucharest,Nurumberg,Prague) ",Nuremburg ,People & Places,Where is Sir Herbert Baker buried?,Westminster Abbey,General,In the human body what is produced by the parotid glands,Saliva -Music,"Who Had A Hit With Costello's ""Girls Talk""",Dave Edmunds,General,From what did the ghan railway get its name,Camel drivers, Geography,The Volta is the largest river in which country?,Ghana -General,What was Al Capone's favorite bullet proof car,Cadillac,Art & Literature,"Principally , Of What Nationality Were The Impressionist Painters ",French ,General,What does the girls name Irene mean,Peace - Greek -General,From which large South American country do the beers 'Brahma Chopp' and 'Antarctica' come,Brazil,Geography,What is the state capital of Louisiana? ,Baton Rouge ,Geography,"The majestic ______________, popular honeymoon site for newlyweds located in both New York Ontario, was named after the Mohawk Indian word meaning ""thunder of waters"".",Niagara falls - History & Holidays,Which City Was Engulfed In Lava From Mount Vesuvius In AD79? ,Pompeii ,Science & Nature,Of What Is Ethylene Glycol The Main Ingredient ,Anti Freeze ,Music,"Who Had A Hit In 1982 With ""Hot In The City""",Billy Idol -General,Pat Sullivan created which cartoon character,Felix the cat,General,Name the Greek equivalent of the Roman god Saturn,Cronos,Food & Drink,"Unlike other oranges, what does a navel orange not have?",Seeds -General,"Buddy holly released a solo 'peggy sue' that, by the end of 1957 was challenging which song recorded with the crickets",Oh boy,General,I love lucy: what was ricky's profession,Band leader, History & Holidays,What year was the great drought in Britain? ,1976  -General,What type of creatures belong to the order Chelonia,Turtle terrapin tortoise,General,What name is given to a settlement which is clustered around a central point ?,Nucleated,Science & Nature,How Long Does The Average Hair On Your Head Grow In A Single Year ,12cm (4.75in)  -Entertainment,Who played the title role in the 1978 version of 'Superman'?,Christopher Reeve,General,Legendary Jamaican sprinter Merlenle Ottey started competing for which country in 2002?,Slovenia,General,In 'star trek' jean ______ picard,Luc -General,What does an abecedarian study,Alphabet,General,"Black, whooper and Berwick all varieties of what",Swan, History & Holidays,What was the challanging method of catching a fly in Karate Kid? ,Using chopsticks  -General,"A stream may disappear down a sink-hole, by what other name is this known",Swallow hole,General,Romans used a sharp pointed stick to drive cattle Modern word,Stimulus,Music,"A Taste of Honey's ""Boogie Oogie Oogie"" was a major hit in which year?",1978 - History & Holidays,What was the name of the scandal that resulted in the resignation of president Nixon?,Watergate, History & Holidays,Who was the first (and last) catholic president?,John Fitzerald Kennedy,Geography,What is the capital of New Zealand,Wellington -General,Who died on Saint Helena?,Napoleon,General,How many times did Fred Archer win the English Derby,Five, History & Holidays,What Was The Duchess Of Windsor's Name Before She Married The Duke? ,Wallace Simpson  -General,Name the most downloaded cyberpet over 14 million,MOPy fish screensaver,General,Who was the first computer millionaire,Herman Hollerith,Music,"Who Had A Hit With ""A Rose Has To Die"" In 1978",The Dooleys -General,"Who rerecorded the old classic ""Respect Yourself"" in 1987",Bruce willis,Science & Nature,What Is The Nearest Star To Earth? ,The Sun ,General,"When someone is a hanger on or serves no purpose, he is called this",Fifth wheel -General,If a chemical is 'anhydrous' what does it not contain,Water,Food & Drink,"Baked Alaska has meringue on the outside , what does the meringue cover? ",Ice cream ,General,Which two letter word is the most sacred in Hinduism,Om -Sports & Leisure,Where Might You Come Across A Chicane ,On A Motor Race Track ,General,What is the name for a person who you correspond with regularly,Penpal,General,In the 13th century European children were baptised with what,Beer -General,"Burt reynolds was a gunsmoke co-star for many years, playing the role of",Blacksmith quint asper quint blacksmith,General,Mimi is the first name of which Warner Bros cartoon character,Roadrunner,Entertainment,Which singer is a former school teacher?,Sheryl Crow -Sports & Leisure,What Does The Term (Kung Fu) Mean ,Leisure Time ,General,Women do it 4 times more often than men - do what,Shoplift,General,How did Mark Chapman shock the world,Shot john lennon -Music,During the 1990’s who recorded the Albums 'Out of Time' & 'New Adventures in Hi Fi'?,REM, History & Holidays,"Another plane crash, on February 3rd 1959, resulted in the deaths of which three rock stars of the day ","Buddy Holly, Big Bopper, Richie Valens ",General,"These bacteria spores that I love, commonly grown in feaces",Mushroom -Entertainment,What was Marilyn Monroe's given name at birth?,Norma Jean Mortenson,Music,What Was Connor Reeves First Single,My Fathers Son,General,"How was ""Abu Yusuf Ya'qub ibn Is-haq ubn as-Sabbah ibn 'omran ibn Ismail al-Kindi"" better known ?",The philosopher of the Arabs -Science & Nature,In Which Year Did The Volkswagen Beetle Make Its First Appearance ,1945 ,Music,With What Song Did Abba Win The Eurovision Song Contest In 1974,Waterloo,General,Who is Al Gores running mate in the 2000 Presidential election campaign,Joe liebermann -General,Why would a train spotter want to see number 4468,The Mallard – record steam train,General,Ann Ziegler was the singing partner of which film star,Webster Booth,General,Which organist who died in 1985 was traditionaly associated with Blackpool Tower?,Reg Dixon -General,Which famous mystery writer created a mystery by disappearing in 1926,Agatha christie,General,What is the Capital of: Saint Helena,Jamestown,Music,Which 1970 Album Cover Featured A Former Beatle And His New Born Child,McCartney / By Paul McCartney -General,Pok ta Pok started in Mexico - what modern game/sport is it,Basketball,Geography,Which City Is The Capital Of Canada ,Ottawa ,General,What direction do many northern birds fly when autumn arrives,South -General,"Which Famous Duo Lived At ""Hawthorn Hill, Dayton, Ohio""",The Wright Bros,General,In 1000 bc Israelites paid their taxes in what,Raisins,General,What is the paint remover that is made from pine resin,Turpentine -Language,Which two fruits are an anagram of each other?,Lemon and melon,General,What menacing character was best friends with Tommy Anderson,Dennis the,General,What is the official national sport of Bulgaria,Weigthlifting -General,The stress in Hungarian words always falls on what syllable,First,General,Can you name all of the Bradford's on Eight is Enough?,"Tom,Abbey,David,Mary,Joni,Susan,Nancy,Tommy,Elizabeth,Nicholas", History & Holidays,He was defeated at the Battle of Little Bighorn.,General custer -Science & Nature," There are close to 4,000 known species of frogs, including __________",Toads,General,Where was the first police force established in 1667,Paris,General,If you have otophobia what are you afraid of,Opening ones eyes -General,Who was the little gentleman in velvet - death William III,A Mole,General,The penny red was the first postage stamp to have what,Perforations,Music,"""If I Could Turn Back Time"" Was A Hit for Which One Named Artist",Cher -General,What kind of creature was Sam on the Muppet Show,Eagle,General,"Which British statesman, Minister of Labour in the National Government (1940-1945) became Foreign Secretary in Attlee's Cabinet (1945-1951)",Ernest bevin,General,Who directed the film Rain Man,Barry levinson -General,Which stretch of water seperates Tierra del Fuego from the rest of South America,Strait of magellan,General,"In Greek mythology, who visited leda in the form of a swan",Zeus,General,What is the name of the cranial bone just above your ear,Temporal - History & Holidays,1954 again - in which English city did Roger Bannister become the first man to run a mile in under 4 minutes ,Oxford (Iffley Rd) ,General,When did the new york mets win their first world series,1969,General,What is the meaning of the Sioux word Tonka - used for toys,Great - History & Holidays,What Do 99% Of Pumpkins End Up As ,Lanterns ,General,A dog is canine - what animal is ovine,Sheep,General,Where is Dronning Maud land to be found,Antarctica -General,What is tattooed on the Marlboro mans hand,An Eagle,Music,What Do Boyzone & Bewitched Have In Common,Both Irish,General,Name the first teddy bear in space,Mishka 1980 Olympic mascot -General,"What entertainer's nickname is ""the thief of bad gags""",Milton berle,General,The Merryman and his Maid alt title what G&S operetta,The Yeomen of the Guard,General,Which Was The First Ever Bond Movie?,Dr No -General,What is the largest volcano,Cotopaxi,Music,Which Boyband Released An Album Entitled “Walthamstow” In 1992,East 17,Music,"Whose 1982 Debut Album Included The Classic Song ""Sex Dwarf""",Soft Cell -General,What two body organs benefit from cardiovascular exercise?,Heart & lungs,Science & Nature,"This alkaloid extracted from chincona bark, ______ is commonly used in malaria therapy.",Quinine,Music,Name Two Of The 3 Top 10 Hits For ABC In 1982,"Poison Arrow, Look Of Love, All Of My Heart" -General,To a golfer what's a frosty,Score of 8 on a hole,General,What occupation would use a dibber,Gardener - to make planting holes,Entertainment,Who was Carl in Five Easy Pieces before going to Walton's Mountain?,Waite -General,Snakes are reptiles. what are frogs,Amphibians,Science & Nature,What Type Of Hook & Eye Fastening Was Invented By Swiss Engineer Georges De Mestral In 1948 & Introduced Commercially In 1958 ,Velcro ,Music,"In The 1960's who Released The Albums ""Twist"", ""Twistin Round The World"", ""Your Twist Party""",Chubby Checker -General,Which book of the Bible tells of Goliath's slaying by David,Samuel,General,Who were the two commanders who directed the forces in the battle of el alamein,Montgomery and rommel,General,Which Olympics did the U.S. boycott?,980 -General,Who invented the game of Bingo?,Edwin Lowe,General,What was Vincent Price's first horror film,House of Wax,General,"The Single ""Respect Yourself"" Was Released In 1987 By Which Die Hard Music Lover",Bruce Willis -General,Who directed the 1946 'It's A Wonderful Life',Frank capra,General,Who first appeared in the film A Tale of two Kitties in 1942,Tweety Pie,Sports & Leisure,He holds the NHL record for the most goals scored during the regular season.,Wayne Gretzky -General,What Was The First TV Show To Feature A Lesbian Kiss,LA Law,General,Who wrote '1984',George orwell,General,Who was the youngest of the anderson children in father knows best,Kathy -General,Who was Secretary General of the UN from 1962 - 1971,U thant,General,Theophilus Van Kannal invented what in 1888 in Philadelphia,Revolving Door,General,Rio's Maracarria stadium has what unusual feature,A Moat -General,William Kemmlar in 1890 was the worlds first what,Executed by electric chair,General,What was the name of the shepherd that got Tremponina Pallidium,Syphilus,Music,To Which City Did Dione Warwick Ask The Way In 1968,San Jose -General,What colour is the 'Cookie Monster' from the programme Sesame Street,Blue,General,"The Egyptian hieroglyph for 100,000 is what",Tadpole,General,What makes plants green,Chlorophyll -General,"Billycock, Wideawake, Gibus and Mitre all types of what",Hat,General,This county has the lowest point in South America,Argentina,General,Isms: a severe or unfavorable judgment,Criticism -General,What state fought more battles in the revoltionary war than any other,South,General,What is the most common fear people have,Public Speaking,General," Throat, foxing, and platform are parts of a(n) ________.",Shoe -Music,Who Composed The Enigma Variations,Sir Edgar Elgar,General,Which theatre styles name translates as skills or talents,Noh,General,"Who always ended her PBS cooking shows with ""Bon Appetit""",Julia Childs -General,Who Was President Of The USA When The Decision Was Made To Declare War On Germany In The First World War,Woodrow Wilson,General,Manner of walking,Gait,General,Zymurgy is a branch of chemistry concerning what process,Brewing fermentation - Geography,Lilongwe is the capital of ______?,Malawi,General,"Fleshy fruit of trailing cucumber like plant, often dried",Gourd,Science & Nature,What is the chihuahua named after?,A Mexican state -General,"Which Us State Capital Is Served By ""Logan"" International Airport",Boston,Science & Nature,What is the meaning of the name of the constellation Corona Borealis ?,Northern Crown,General,What was the name of the ship on which Dracula reputedly arrived in England in 1897?,Demeter -General,What is a group of this animal called: Turtle,Bale,General,"A typhoon struck which island in Japan in 1934, killing 4,000 people",Honshu,General,Which animals meatphorically constitute a heavy rainstorm,Cats and dogs -General,What's the favorite food of dragonflies,Mosquitoes,Science & Nature,What element is lacking in a diet when goitre occurs?,Iodine,General,If You Suffered From Selaphobia What Would You Be Afraid Of,Flashing Lights -General,What was the SR-NI which made its first English Channel crossing on 25th July 1959,Hovercraft, Geography,What is the basic unit of currency for Lesotho ?,Loti,General,"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 -Science & Nature,Which Hi-Tech Innovation Is Celebrating Its 25 th Anniversary In 2007 ,The Compact Disk / Player ,Religion & Mythology,"What is the name of the most famous of the rivers in the Underworld, the river of 'Hate' which dead souls must cross over?",Styx,Music,"Which Group Spent Five Weeks At No.1 With ""Chirpy Chirpy Cheep Cheep""",Middle Of The Road -General,There are butterflies that smell like what,Chocolate,General,In 1984 BA stewardess called police she'd left what in cupboard,Husband in Bondage,General,"The Bible: ""The Prodigal Son"". What does ""prodigal"" mean",Wasteful lavish -Music,"Who Sung The Original Version Of ""It's In His Kiss""",Betty everett,General,"In which European city is Shakespeare's play, 'Measure for Measure' set?",Vienna,General,"Who's Autobiography Is Entitled "" Memoirs Of An Unfit Mother""?",Anne Robinson -General,What is a loss of memory,Amnesia,General,An elephant is called a pachyderm what does it literally mean,Thick Skinned,People & Places,Who Is Actress Betty Joan Perske Better Known As ,Lauren Bacall  -General,Nebkheperura was his first name what do we call him today,Tutankamen,General,Anna Mary Robinson - famous American painter - what name,Grandma Moses,General,The film 10 Rillington Place is based on which British serial killer,Reginald Christie -General,What is the tallest island,New guinea, Geography,Which island country lies to the West of Australia?,Mauritius,General,What USA city is also a slang name for a pineapple,Chicago -General,What is a Major Mitchell,Australian Cockatoo,General,Who ordered the building of the Tower of London,William the Conqueror,General,In 1813 Rubber is,Patented -General,Who is the dog on the crackerjack box,Bingo,General,"Who were the fabled twins, raised by a wolf that supposedly founded Rome",Romulus & remus,Sports & Leisure,Who died in 1995 and was the last Brit to win the Wimbledon Mens Singles Title ,Fred Perry  -General,How many rooms are there in buckingham palace,602,Art & Literature,What Was Sherlock Holmes' 7% solution in 'The Sign of Four'?,Cocaine,General,Which animals can live longest without water,Rats -Music,Who Found His Thrill On A Hill In 1956,Fats Domino / Blueberry Hill,General,What is a water taxi known as in Venice?,Gondola,General,What two materials were the first aeroplance wings made of,Cloth & wood -General,"After the Second World War, in what year did clothes rationing end",1949,General,Through what were dead egyptian pharaohs' brains extracted,Nasal passages,General,Sacred carvings is the literal translation of what word,Hieroglyphics -General,Which is the worlds tallest grass,Bamboo,General,How many hours are there in a week,168,Science & Nature,Which element has the chemical symbol U? ,Uranium  -General,"What's the composition of ""dry ice""",Carbon dioxide,Geography,What country produces the orginal edam cheese ,The netherlands ,General,Tocophobia is the fear of what?,Childbirth -General,"The study of how nerve cells, or neurons, receive & transmit information",Neurophysiology,General,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",General,What is the pupa of a moth or butterfly in a cocoon called,Chrysalis -General,FINA is the governing body of what amateur sport,Swimming,General,Which science studies weather?,Meteorology,General,"What follows beta, gamma and delta",Epsilon -Art & Literature,"An abstract movement in Europe and the United States, begun in the mid-1950s, based on the effect of optical patterns.",Op art,General,What river had 40 million fish killed by insecticide in 1969,Rhine,General,What is the name given to a group of doves,Flight - History & Holidays,Where did the real St. Nicholas live? ,Turkey ,General,"What is the fourth dimension (apart from length, depth & width",Time,General,Microbiophobia is the fear of,Microbes -General,Where would you find racettes,Lines on wrist in palmistry,General,What did the person chained to wall in Goonies want?,A Baby Ruth candy bar,General,What is the equivalent Spanish acronym for ufo,Ovni -Entertainment,Who began his professional career with Black Sabbath?,Ozzy Osbourne,General,What is viewed during a a pyrotechnic display?,Fireworks,General,Who is the Roman Goddess of sorcery hounds and crossroads,Trivia - Geography,What is the capital of Nicaragua ?,Managua,General,Who makes Miller Lite beer,Philip Morris,General,Androphobia is the fear of _____.,Males - Geography,As what was the Taj Mahal originally built?,Tomb,General,Peter Lorre was born in what year,1904,Science & Nature,What Is The Home Of A Badger Called? ,Sett  -General,"In Physics, what type of length is represented by the small Greek letter ""lambda""",Wavelength,General,"In The 1997 Movie ""George Of The Jungle"" What Was The Name Of The Ape Voiced By John Cleese",Ape (Believe It Or Not),General,Who was the first civilian astronaut to fly,Neil armstrong - Geography,As what is the South Pole also known?,Amundsen Scott Station,General,Large 3 sided S.American nut,Brazil,General,What is the fastest creature raced for sport,Pigeon -General,Who first appeared in The Mysterious Affair at Styles,Hercule Poirot,General,Lewis Wilson was the first actor to play which character,Batman,General,In California more what are raised than in any other state,Turkeys -General,What part of the body is a busby worn on,Head,General,Which 'first lady of jazz' died in June 1996,Ella fitzgerald,General,What's the oldest university in rhode island,Brown university -General,In the novel Goldfinger name the boss of The Cement Mixers,Pussy Galore,General,The name of which dog breed is also the name for an animals footprint,Pug,General,Erica is the Latin name for what shrub,Heather -General,In Animal Farm what was the name of the farm,Manor Farm,General,Rene Laennec invented which aid to medicine in 1819,Stethoscope,Music,"Which Bands Abbrevated Name WAs ""Carter TUSM""",Carter The Unstoppable Sex Machine -Sports & Leisure,What Do The Initials TT Stand For In Connection With The Isle Of Man Motorcycle Race? ,Tourist Trophy ,General,What does 'majuba' mean,Place of rock pigeons,Entertainment,Who did Patrick Duffy portray in the TV series 'Dallas'?,Bobby Ewing -General,"What is the missing word in english with the letter combination 'uu' continuum, duumvirate, residuum, vacuum, duumvir",Muumuu,General,What is the coldest capital city in the world,Ulan Bator Mongolia,Geography,What Is The Capital Of Hawaii? ,Honolulu  -General,Which Conservative MP wrote the recent novel 'The Clematis Tree,Ann widdecombe,Music,Matt & Luke Goss Were 2 Of The 3 Members Of The Boyband Bros Craig Was The 3rd Member But What Was His Surname,Logan,General,"Opening in 1972, the action in which musical takes place at Rydell High School",Grease -Geography,Kingston is the capital of which country ,Jamaica ,General,What was the name of Thor Heyerdahl's bamboo and balsa wood boat,Kon-tiki,General,What are emblazoned on the jolly roger,Skull & crossbones -General,Who wrote 'a clockwork orange',Anthony burgess,General,Name of which household object comes from Latin to wonder at,Mirror, Geography,What prison island was off the coast of French Guiana?,Devil's Island -General,A boat or raft with two parallel hulls,Catamaran, History & Holidays,What do the five rings on the Olympic flag represent ,5 Continents ,General,"If you go blind in one eye, you'll only lose about twenty percent of your vision, but all of your ______",Depth perception -Toys & Games,Leading manufacturer of toy cars.,Hot wheels,Geography,"In ______________, Domino's Pizza has a reindeer sausage pie on its menu.",Iceland, History & Holidays,Who Released The 70's Album Entitled 461 Ocean Boulevard ,Eric Clapton  -Science & Nature,When Was The First Transcontinental Railroad In North America Completed ,1869 ,General,What is the name of the ocean southeast of Australia,Tasman sea,General,What is the Capital of: Somalia,Mogadishu - History & Holidays,What Was Jackie Kennedy's Name Before She Married John F Kennedy ,Jackie Onnasis ,General,"Doubly-ionised helium atoms, when emitted by some radioactive nuclei, are known as what",Alpha particles,General,What is the common name of scrivener's palsy,Writer's cramp -Science & Nature," Hedgehog quills are not barbed or poisonous. Hedgehogs do apply a foamy, foul_tasting saliva to their quills, which protects the animals from __________",Predators,General,What hybrid do an ass & horse produce,Mule,Religion & Mythology,Who killed Goliath?,David -General,Hockey the calgary _______,Flames,General,Seven million of these are thrown away each day - what,Pennies,General,When was Big Ben completed,1858 -General,Name the son / daughter of Eliot / Ruth Handler,Barbie / Ken yes those dolls,General,Natasha Gurdin became famous as who,Natilie Wood,General,What was crocketts first name on Miami Vice?,Sonny -General,How did Stonewall Jackson die,Shot by own troops – by mistake,General,Which is the best Poker hand,Royal flush,General,Rocky and Bullwinkle enemies are Boris Badenov and who,Natasha Fatale -Science & Nature,Which Creatures Name Has Passed Out Of Usage After It Was Discovered That Its Fossils Proved To Be Identical To The Previously Name3d Apatosaurus ,Brontosaurus ,General,The chupacabra is a legendary Mexican animal what in English,Goat Sucker,Music,Name Two Of The 3 Members Of The Rolling Stones Who Were Fined In 1965 For Urinating Against A Garage Wall,"Mick Jagger, Brian Jones, Bill Wyman" -General,What is the capital of togo,Lome,Entertainment,What is the mother's name in Family Circus,Thelma,General,What did the Celts consider sacred because it communicated moisture from the ground into the air,Trees -Sports & Leisure,In which year was Ascot built? ,1711 ,People & Places,Who Wrote A Diary About Her Attempts To Avoid The Nazi's ,Anne Frank ,Music,"Which Stevie Wonder Song Featured In The Film ""The Woman In Red""",I Just Called To Say I Love You -Art & Literature,Name The Philadelphian Artist Who Introduced The World To (Pop Art) ,Andy Warhol ,General,In which Australian state or territory is the Flinders Range and Lake Eyre,South australia,Music,Which 1979 ACDC Album Cover Features A Band Member With Horns And A Tail,Highway To Hell -General,Southern Comfort is made from a base of Bourbon whiskey and flavouring from which fruit,Peach,General,What are the youngest letters in the English language alphabetically,"J, v, w",General,Who directed Four Weddings and a Funeral,Mike Newell - History & Holidays,"What is the all-time best-selling Christmas recording? (White Xmas, Jingle Bells, Frosty The Snowman, Rudolph the Red Nose Reindeer) ",White Christmas ,Music,"Ian Dury Asked To Be Hit With What ""Your Best Shot"" Or ""Your Rhythm Stick""",Your Rhythm Stick,General,In which country is the volcano Popocatepetl,Mexico -General,In Hood river Oregon what do you need a licence to do,Juggle,General,On which river does Amsterdam stand,Amstel,Music,"Who Checked Into A ""Blue Hotel"" In 1991",Chris Isaak -General,What Do You Fear If You Have Medorthophobia,Erect Penis,Music,Which Star Is Don Mc-Leans Song American Pie Dedicated To,Buddy Holly, History & Holidays,Who was the instigator of the breakaway World Series Cricket in 1977? ,Kerry Packer  -General,Leprophobia is the fear of,Leprosy,General,When was the first leap year,46 bc,Sports & Leisure,Football: The Buffalo _______.,Bills -General,Who is edson arantes do nascimento,Pele,Sports & Leisure,Over What Distance Does Drag Racing Occur ,1/4 Mile ,General,Where in France is the summer residence of thle French President,Fontainebleau -General,The yellow food colouring tartrazine comes from what,Petrol - Gas in USA, Geography,What is the river capital of the world?,Akron,Science & Nature," The hippopotamus has skin an inch_and_a_half thick, so solid that most __________ cannot penetrate it.",Bullets -Geography,What is the capital of North Korea,Pyongyang,General,S.American cowboy,Gaucho,People & Places,Who Founded His Own Production Company Called Ginger Productions? ,Chris Evans  -General,What colour thread is used for filigree?,Silver or gold,General,What film starred barbara streisand and walter matthau,Hello dolly,General,In which U.S. state do the most bald eagles live,Alaska -Entertainment,Who was the sexy star of Barberella?,Jane Fonda,General,The famous 'To be or not to be' speech is in which Shakespeare play,Hamlet,General,Synonymous with obituary; a list of recently deceased.,Necrology -General,OD international aircraft registration letters of what country,Lebanon,Music,Which Glam Rocker Had A Hit With The Quirky Laughing Gnome In 1973,David Bowie,General,What flavour is framboise liqueur,Raspberry -General,English writer - Died Typhoid - Drank Paris water - Prove safe,Arnold Bennett 1931,Music,On The Beautiful South's 1996 album what is the colour?,Blue,General,"The rebuilding of the Globe Theatre in London was the 'brainchild' of which American actor, who died before the project was completed",Sam wanamaker -Music,Who Is Simply Reds Lead Vocalist,Mick Hucknall,General,Manutius's Virgil printed 1501 was the first time what was used,Italic letters,General,Japan's equivalant to the dollar is ______,Yen -General,The modern African republic of Tanzania was formed when Tanganyika and which other nation were combined,Zanzibar,General,"What do bullet proof vests, fire escapes, windshield wipers & laser printers all have in common",All invented by women,Music,Where Was The Concert For Life Held In 1992,Wembley -General,What is the name of the board at a race track showing odds and results,Tote,General,What is the fear of tornadoes and hurricanes known as,Lilapsophobia,General,International dialling codes - where is 672,Antarctica -Music,Which Label Turned Down The Beatles But Signed The Rolling Stones,Decca,General,What is the height travelled by the world's longest escalator,60 minutes, Geography,What color does the bride wear in China?,Red -General,Hours how many times do your ribs move every year during breathing,Five million,General,"What one word makes sense when it precedes age, class and east",Middle,Food & Drink,How many pieces of bun are in a Mcdonald's Big Mac?,Three -General,Who was the first British Royal to become a motorist,Prince of Wales Edward VII,Entertainment,"Who had, next to Samuel Jackson, a leading roll in 'Unbreakable'?",Bruce Willis,Music,"From Guyana, Which 80's Reggae Icon Recorded His Three Greatest Hits On The Ice Label",Eddy Grant - History & Holidays,Which 50's Movie features the Line 'Hey Stella!' ,A Streetcar Named Desire ,General,Who is Mother Goose's son?,Jack,Religion & Mythology,Where did Robin Hood supposedly live,Sherwood forest -General,"Apart from eggs, what is the other essential ingredient in 'Eggs Florentine'",Spinach,General,If you had crabites what have you got,Collection of fossil crabs,General,John Flynn invented what service in Australia,Flying Doctors -General,What is a loosely woven fabric generally used for clothing called,Flannel,General,How old was the world's oldest man?,141,General,Name a mainland South American country where cars are normally driven on the left hand side of the road.,Guyana surinam -General,"Whats ""Americas favorite fun car""",Mustang,General,"In the children's tv series 'sesame street', what two characters were roomates",Bert and ernie,General,Kong Zi is better known as who,Confucius -Music,The Song “You Make Me Feel Mighty Real” Filled The Dancefloors For Which Act In 1978,Sylvester,General,"This Irish republic political movement founded in 1905 to promote Ireland's independence, is translated as ""Ourselves Alone."" What is it commonly called?",Sinn Fein,General,What is the most popular sport in england,Darts -General,What is a group of this animal called: Clam,Bed,Entertainment,"What was ""Rocky's"" last name?",Balboa,General,"What were Tricity Triumph, Kelvinator, Lec De Lux",Refrigerators - Geography,Five US states border which ocean?,Pacific Ocean,Food & Drink,"What, on a bottle of wine, is the punt? ",The dent on the base ,General,How did Miss Piggy tell the difference between love and lust,By spelling -General,What radioactive element is used to power modern heart pacemakers,Polonium,Music,"The Single ""Heart & Soul"" Was A Hit For Which Band A) T'Pau, B) Mr Mister, C) Neil Diamond",T'Pau,General,In food what does UHT mean on the carton,Ultra Heat Treatment -General,What Shakespeare character is it considered bad luck to mention in a theater,Macbeth,Religion & Mythology,Which Saint killed the dragon?,George,Art & Literature,"In painting, a work made of several panels or scenes joined together. A diptych has two panels; a triptych, three. ",Polyptych - Geography,What is the capital of Syria ?,Damascus,Science & Nature," Out of the 650 known species of leeches, Hirudo medicinalis is the most common used by __________",Doctors,General,What bird is sometimes called the Yaffle,Woodpecker -General,Which Oxford College's Chapel is also Oxford's Cathedral,Christ church,General,In which country would you find the Pripyet Marshes,Belarus,General,In Shakespeare Hamlet who is Ophelia's brother,Laertes -General,"In 1980, who recorded ""Another One Bites the Dust""",Queen,General,Which Pop Group Were Signed By Decca Records On The Very Same Day In 1962 That The Beatles Were Turned Down,Brian Poole & The tremeloes,General,What Would You Be Suffering From If You Had Halitosis,Bad Breath -Music,Which American Malke Singer Reached No.2 With The Song Hey Baby 1962,Bruce Channel,General,How long does it take the average person to fall asleep,Seven minutes,General,What is the most populous borough of New York?,Brooklyn -Music,Who Is The Only Female Singer To Have Recorded Under 9 Different Record Labels,Lulu,General,In 1752 Mr Blake and Callahan raced and began which sport,Steeplechase,General,Slow Ride' was Foghat's biggest hit from which album released in 1975,Fool -General,What is the meaning of the mercedes benz motto 'das beste oder nichts',The,General,Humphrey Bogart won his only oscar for his part in which film,The african queen,General,Display abbreviations-short forms: fbi stands for _____,Federal bureau of -Music,Fabrice Morvan & Rob Pilatus Formed Which Pop Duo,Milli Vanilli,General,The band Steely Dan are named after what,Slang for Penis,General,Large shop selling many different types of goods,Megastore -General,Controversial diet guru nathan pritikin dies in a new york hospital at age,69,General,"What did Watson, Crick and Wilkins discover",Dna,General,Products What was the only nation to register zero births in 1983,Vatican City -General,Hamlet was the prince of ______,Denmark,General,In the UK they are butter beans what in the USA,Lima Beans,General,Where is the Guggenheim Museum?,New York - History & Holidays,What did 18 British Museums & Art Galleries Start To Do In 1974 ,Charge Admission ,General,Eye for Eye - Tooth For Tooth what comes next,Hand 4 Hand - Foot 4 Foot Ex 21 24,Music,"What country did the Beatles flee after ""snubbing"" their first lady?",The Phillipines -Entertainment,Actor: __________ Savalas.,Telly,People & Places,Who Was The Joan Collins Fan Club ,Julian Clarey ,Sports & Leisure,Which Country Does Chelsea Striker Didier Drogba Represent At International Level? ,Ivory Coast  -General,What is the oldest city in North America,Quebec city,General,What is the young of the beaver called,Kitt,General,What is the only fish that can blink at you with both eyes?,Shark -General,Of which country is Amharic an official language,Ethiopia,General,What kind of clock has no moving parts,Sundial,Art & Literature,In Which Novel Was It The Job Of The (Fireman) To Burn Books ,Fahrenheit 451  -Science & Nature,"Often hunted for its fur, this South American rodent bathes in dust and is often sold in the pet trade.",Chinchilla,General,"In Greek mythology, who were achilles' parents",Peleus and thetis,Sports & Leisure,With which sport would you most associate the commentator Ted Lowe? ,Snooker  -General,What is the largest city south of the equator,Buenos aires,General,What is the highest-pitched woodwind musical instrument,Piccolo,General,Socrates was trained into what profession,Stonecutter -General,What river acts as a natural boundary between the counties of Norfolk and Suffolk?,River Waveney,General,Who is the author of Dune,Frank herbert,General,Various methods used to prevent pregnancy from occurring,Birth control -General,Bert Berns produced what song for Van Morrison,Brown eyed girl,General,What is the flower that stands for: surprise,Truffle,General,Astrakhan comes from which animal,Sheep -General,What word describes one tenth of a nautical mile,Cable,General,What two biblical cities did God destroy with fire & brimstone,Sodom & gemorrah,Mathematics,What geometric shape has 4 equal sides,Square -General,Who secretly married Sara Lowndes in November 1965,Bob Dylan,General,"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,Music,Who was asked in 1874 by Henrik Ibsen to write incidental music to Peer Gynf?,Edvard Grieg -General,"What is the largest bay in the world, (larger than England) bordering only one country Canada, & only two provinces & a territory",Hudson bay,General,What is the fear of eyes known as,Ommetaphobia,Music,"From the 1960's from which song and which artist “When at last my dreams come true, Darling this I'll know, Happiness will follow you, Everywhere you go”?",Elvis / Love Me Tender -General,Which film star's biography was called Neither Shaken Nor Stirred,Sean connery,General,"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,General,What was Disney's first non animated live action film,Treasure Island -General,What is the Capital of: Norway,Oslo,General,What famous priest ministered to the molokai lepers from 1873 until his death,Father damien,General, _____ of Love' by Frankie Lymon,ABC's -Geography,Name the largest lake in Australia,Eyre,General,Who was the Norse god of poetry,Bragi,Music,Which singer went solo after performing with the Commodores?,Lionel Richie -General,What country would you have to visit to see the ruins of Troy,Turkey,General,What is the spiral galaxy nearest ours,Andromeda,General,What is a group of this called: Bacteria,Culture -General,What is the flower that stands for: audacity,Larch,General,If you shout Tsuki what sport are you practicing,Kendo,General,This teen was sentenced to a public caning in singapore in 1994,Michael fay -Science & Nature," A ""winkle"" is an edible __________",Sea snail,General,Which battle was fought at Senlac hill,Battle of Hastings,General,Lygophobia is the fear of what,Darkness -General,Hussey a hippo can open its mouth wide enough to fit a 4 foot tall ______,Child,General,What name is given to an isolated mountain peak protruding through an ice sheet,Nunatuk,General,What was the loneliest part of the Cross Canada run for Terry Fox,Nova -General,If a dog is canine what is cirvine,Deer,General,Richard I was the son of which English monarch,Henry ii,Music,"Which ""Pop Idol"" contestant was the first to reach number one in the UK singles charts?",Will Young -General,"In ""the hobbit"", what is the name of the wizard",Gandalf,Science & Nature,"Ulna, radius, and clavicle are types of __________.",Bone,General,What company was founded by Sir Allan Lane in 1935,Penguin books -General,"The word ""Hellas"" appears on the stamps of which country",Greece,General,What's the most common color of Topaz,Yellow,General,"Which Famous Tv Couple Lived At ""46 Peacock Crescent, Hampton Wick""",George & Mildred -General,98% of Japanese citizens are what,Cremated,General,Old Eng law - you can't beat wife with anything wider than what,Your thumb – Thus rule of Thumb,General,To which team did marlboro switch its backing from brm in the 1974 season,Mclaren -General,If you had 2 eight enders in one bonspiel what are you playing,Curling,General,Who was Israel's only woman prime minister,Golda meir,Geography,Which Country Has The Most Countries Bordering It ,China (16)  -General,"In the 1988 film Twins, what were the character names of Arnold Schwarzenneger and Danny De Vito?",Julius and Vincent,General,"What is the Roman numeral for 400, which is also the most popular way to purchase music",Cd,Entertainment,This term means to play moderately slow and gracefully?,Adagio -General,Defecolagnia is sexual arousal from what act,Crapping,Geography,The old Roman province of Lusitania is now called ____________. Some parts of Lusitania are also found in Spain.,Portugal,General,What book did Christians often place on their foreheads to cure insomnia in medieval times,The bible bible -General,What book was given to all officers in the Confederate army,Les Miserables,General,What was the name of Milla Jovovich's character in the Fifth Element?,Lelu, Geography,What is the capital of Brunei ?,Bandar Seri Begawan -General,Which region of Spain has Barcelona as its capital,Catalonia,General,From what language is the term 'finito',Italian,Science & Nature,Lateral Epicondylitus Is The Medical Name For Which Common Medical Condition ,Tennis Elbow  -General,What ancient Roman buildings name means Place for a Giant,Coliseum,General,Who was the roman god of the sea,Neptune,Science & Nature,What is the chemical symbol for einsteinium?,Es -General,What's the US equivalent to the Department of Health in the UK,Surgeon General,General,"Book of the Old Testament, third of the five biblical books called the Pentateuch",Leviticus,General,What creatures call an apiary home,Bees -General,"In egyptian mythology, who is the god of the underworld",Cherti,General,"Hattie McDaniel was the first black actress to win an Oscar, for which film",Gone with the wind,General,What nationality was pablo picasso,Spanish -Music,"Which British Politician Sued ""The Move"" In 1967 And Won The Royalties To ""Flowers In The Rain""",Harold Wilson,General,What would you use you zygomaticus muscle for,Smiling,General,What was adolf hitler's religion,Roman catholic -Geography,Into what bay does the ganges river flow ,Bengal ,Entertainment,Who directed citizen kane?,Orson Welles,General,Where is tupelo,Mississippi -General,What is a male whale called,Bull,General,Who was Mussolini's favourite cartoon character,Donald Duck,General,What was the code name for USA landings Morocco in 1942,Operation Torch -General,Richard Adams wrote the novel Shardik what was Shardik,A Bear,General,"Who said ""Canada? I don't even know what street Canada is on""",Al Capone,General,What alternative scale (not Richter) measures earthquakes,Mercalli -General,A photic sneeze is caused by___.,Sunlight,General,"Which one of rc, rl and rlc circuits which one oscillates charge",Rlc,General,"In Independence Day, What does Will Smith yell as he blasts off in the space ship?",I gotta get me one of these -General,Basie Ronnie Bond drummed with what group,Troggs,Music,Number of slices sacrificed to film Ringo's Pizza Hut commercial,12,General,What is a group of this animal called: Cub,Litter -Music,What 1958 song was The Coaster's only #1 hit?,Yakkety Yak, History & Holidays,What was named after Amerigo Vespucci?,America,Sports & Leisure,What Diameter Is The Circle From Which You A Discus ,2.5m  -General,Which bone in the human body is at the front but sounds like it should be at the back,Sternum,General,"The Silver Phyllis, a Boeing 707, belonged to what financier",Robert vesco,Music,"Who Released An Album Entitled ""Bookends""",Simon & Garfunkel -General,What is the flower that stands for: early attachment,Thornless rose,General,Who wrote four consecutive number one songs in 1978,Barry Gibb,General,"5% of Canadians don't know the first seven words of the Canadian anthem, but know the first nine words of which anthem?",The American anthem -Religion & Mythology,Who founded the People's Temple Commune?,Jim Jones,Science & Nature, Native peoples of South America catch __________ and use their razor_sharp teeth to make tools and weapons.,Piranha,Art & Literature,"A movement in American painting and sculpture that originated in the late 1950s. It emphasized pure, reduced forms and strict, systematic compositions. ",Minimalism -General,Vitamin B2 has what other name ,Riboflavin, History & Holidays,Who Released The 70's Album Entitled All Mod Cons ,The Jam ,General,Mbabane is the capital of ______,Swaziland -General,Official taxis in London are usually what colour,Black,General,Another word for direct confrontation,Face-off,Science & Nature," The first __________ dragons to breed in the western world are at the National Zoo at the Smithsonian Institute in Washington, D.C.",Komodo -General,What is a group of elephants,Herd,General,In 1985 William Beckman paid no tax on £100000 profit why,William was a dog – cant pay tax,General,In Oklahoma it is illegal to wear what in bed,Your Boots -General,If you were given a sitooterie what would you do with it,Sit out in it gazebo/summerhouse,General,In Morrisville Penn a woman must have a permit to do what,Wear Cosmetics,General,In which city was Hugh Grant arrested with Divine Brown?,Los Angeles -General,What make and model of car was Christine in the book and film,Plymouth Fury,General,What's unusual about phone directory in Iceland,Alphabetical by forename,General,"What's the common name for leucocytes, found in the blood",White blood cells -General,Who wrote 'The Canterbury Tales',Geoffrey chaucer,General,Amerigo Vespucci airport is in which city,Florence,General,Who starred in the 1968 film Funny Girl,Barbra streisand -General,In Czarist Russia it was illegal to do what,Smoke,General,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,General,"In The 2000 Film ""Rugrats In Paris"" Who Supplied The Voice Of ""Coco La Bouche""",Susan Sarandon -Food & Drink,The two ingredients of a Black Velvet are stout and,Champagne,Music,"In Which Year Did Donna Summers Disco Anthem ""I Feel Love"" Get To No.1",1977,General,An isohel on a map joins place of equal what,Sunshine -General,Who sat on her tuffet,Little miss muffet,General,Apart from a caber by rule what is compulsory in caber tossing,Wearing a kilt,General,In the middle ages you could be fined four pence murdering who,Travelling Musician -General,What Polish composer established piano as a solo instrument free from choral or orchestral influence,Chopin,Sports & Leisure,How many players are there on a water polo team?,Seven,Sports & Leisure,"In Darts From What Number Under 100 , Is It Not Possible To Finish With 2 Darts ",99  -General,What planet is nearest in size to Earth,Venus - 5% smaller,General,What is Michael Jackson's middle name,Joseph,General,Where do arboreal animals live,Trees -Science & Nature,Which Is The Largest Land Living Carnivore ,Brown Or Grizzly Bear ,Music,Name 2 Of The 3 Stranglers Hits That Made The Top Ten In 1977,"Peaches, Go Buddy Go, Something Better",General,Who Became The Main Presenter Of Record Breakers After Roy Castle Retired,Kris Akabussi -General,What is the leading cause of death in Papua New Guinea,Falling out of Trees,Sports & Leisure,What Olympic Sport Prohibits The Wearing Of A Beard? ,Boxing ,General,Jim Backus was the voice of Mr. ______?,Magoo -General,Which American astronaut played golf on the moon,Alan shepard,Food & Drink,What is bottled in Jeroboams? ,Champagne ,General,Who is the one eyed giant of Greek mythology,Cyclops -General,What is the Capital of: Bahrain,Manama,General,James Cagney won an oscar for his part in which musical,Yankee doodle dandy, History & Holidays,Who Played The Title Role In The Abdomibale Dr Phibes ,Vincent Price  -General,Who was the Designer of the Vickers Wellington bomber aircraft,Barnes wallace,Music,"At What Age Did Michael Jackson Record ""Got To Be There""",13,General,Rams Horn Wandering Bladder Prickly Herald types of what,Freshwater Snails -Science & Nature,This moon is our solar system's most cratered satellite:,Callisto,Entertainment,"Who recorded the lengthy song: ""In-A-Gadda-Da-Vida"" in 1969?",Iron Butterfly,General,Who wrote the satire Candide published in 1759,Voltaire -General,"Who was said to be the final casualty of the U.S. Civil War, killed five days after it ended",Abraham lincoln,Music,In whose band is Madonna Wayne Gacy the keyboard player?,Marilyn Mason,General,"This cereal's box features an empty bowl and the phrase ""more, please.""",Cracklin oat bran -General,What East Coast city was Arthur Fiedler born in,Boston,General,What is the flower that stands for: crime,Tamarisk,General,What is finely ground powdered sugar called,Icing sugar -General,Mares' tails are examples of which type of cloud,Cirrus,Music,"Which Jimi Hendrix Classic Features The Line ""Scuse Me While I Kiss The Sky""",Purple Haze,General,Milk chocolate covered peanuts.,Goobers -General,What do table tennis players change after five points,Service,General,Giacomo Agostini - 122 Grand Prix 15 world titles what sport,Motorcycle Racing, History & Holidays,Who Formed The First Labour Goverment? ,Ramsey MacDonald 1924  -General,"Who wrote ""hedda gabler""",Henrik ibsen,General,"Who was the Russian-born French painter, one of the originators of abstract art, who died in 1944",Vasily kandinsky,Food & Drink,Where were the first European coffee houses opened? ,Vienna  -General,What was the original name for Meccano?,Mechanics Made Easy,Food & Drink,Poppin Fresh' Serves As The Mascot For Which International Food Brand? ,Pillsbury Dough Co ,Music,What was Kate Bush's first hit recording?,Wuthering Heights -General,"Which female vocalist had a number one U.K. hit in 1955 with Softly, Softly",Ruby murray,Art & Literature,Who wrote 'Alice In Wonderland'?,Lewis Carroll,Music,Name the film that featured a spaced-out George Harrison soundtrack?,Wonderwall -General,In what Australian state would you find shepparton,Victoria,General,Sesquipedalophobia is the fear of,Long words,General,"Countries of the world:chain of more than 3,000 islands, major cities include Yokohama & Osaka",Japan -General,In what sport was Eddie Rickenbacker a top contender before WW II,Auto,General,What is the special significance of the asteroid Ceres,Believed to be the largest one,General,What is the capitol of Ghana,Accra -Science & Nature, __________ eagles hunt over a range of 100 square miles to feed their young.,Golden,General,The are 16 of these on a dollar bill - 16 what,Number One,General,Which stringed instrument is blown to produce sound,Aeolian Harp -General,"In 1971, Intel released the world's first single chip Microprocessor, what number was it known by?",4004,Geography,"At over 3 million square kilometres, Sakha is the largest federal subject of which country? ",Russia ,Music,According To The Song What Were Dire Straits The Sultans Of,Swing -General,What do enzymes start while food is still in the mouth,Breakdown of food,General,Who was the first unseeded man to win Wimbledon,Boris becker,General,Marcellite Garner was the first voice for what Disney character,Minnie Mouse -Science & Nature,An animal is a bird if it has _______.,Feathers,Entertainment,Hanna-Barbera rose to fame by creating what duo for MGM?,Tom and Jerry,General,What does an armadillo taste like,Pork - History & Holidays,The American M4 tank is better known as what?,The Sherman tank,General,Matthew Perry plays which character in the television series Friends,Chandler,General,"Alcatraz: this inmates nickname was ""machine gun""",George kelly -Science & Nature,What Kind Of Animal Was Willy In Free Willy ,A Killer Whale ,General,Which U.S. baseball player was known as the 'Yankee Clipper',Joe di maggio,Technology & Video Games,Who is the CEO of Apple computers?,Steve Jobs -General,"Boothby blonde, China long, straight 8 varieties of what",Cucumber,Art & Literature,What Rank Was Biggles ,Major , Geography,What is the capital of Guatemala ?,Guatemala -General,"What was Babe Ruth, before he was a baseball player",Bartender,General,Of what species is the firefly a member,Beetle,General,Who has a tattoo saying Starland Vocal Band,Homer Simpson -General,"Which group did lou reed front, who, in the 60's recorded 'heroin' and 'sweet jane'",Velvet underground,General,On FRIENDS what was the name of Ross's monkey?,Marcel,General,What is the Capital of: British Virgin Islands,Road town -Sports & Leisure,Which Sportswear Company Is The Brand With The Three Stripes? ,Adidas , History & Holidays,Who played the younger scrooge in the Classic with Alistair Sim? ,George Cole ,Music,Name Two Of The Most Famous Members Of The Red Hot Chili Peppers,"Anthony Keidis, John Frusciante, Flea, Chad Smith" -General,"What was Tom Cruise's call sign in the movie ""Top Gun""?",Maverick,General,400 what per week permanently close in the USA,Churches,General,Who composed the ballets - The Firebird and The Rite of Spring,Igor Stravinsky -General,What colour is a giraffes tongue,Black,General,Coffee haematophobia is a fear of ______,Blood,General,In Matilda what was the name of Matilda's teacher?,Jennifer Honey -General,Not try this yourself who was the emcee for tvs let's make a deal,Monty hall,General,SF are the international car registration letters for which country,Finland, Geography,Abuja is the capital of ______?,Nigeria -General,What invaders from the north was the Great Wall built to repel,The mongols mongols,General,If a woman maritates what is she doing,Female Masturbating,General,"In Dickens' novel 'David Copperfield', what is the Christian name of his old nurse Peggotty",Clara -General,What gift is associated with the 60th Wedding Anniversary?,Diamonds,General,What year was Geronimo captured in,1886,General,An aneroid is a kind of___.,Barometer -General,The Golden Rain is the common name of what tree,Laburnum,General,Ponophobia is the fear of,Overworking of pain,Science & Nature,Which 2 Towns Were Linked By The Worlds First Commercial Railway ,Stockton & Darlington  -Entertainment,What is the official birthplace of country music?,Bristol,General,Oil can Henry is the enemy of which cartoon character,Mighty Mouse,General,Richard Gere was married to which model,Cindy crawford -General,A hippo can open its mouth wide enough to fit a 4 foot tall ______,Child,General,In which opera does the U.S. naval officer Lieutenant B.F. Pinkerton appear,Madam butterfly,Art & Literature,Which Novel Deals With The Events Of One Day In Dublin In June 1904 ,Ulysses By James Joyce  -General,What is Sir John De Mentieth famous for,Capturing sir william wallace,General,"The name of what style of painting was taken from, the title of a Claude Monet work",Impressionism,General,Who invented the phonograph,Thomas Edison -Entertainment,Who wrote the song 'Do They Know It's Christmas' with Midge Ure?,Bob Geldof,General,July 14th is a national day of celebration in what country,France - Bastille Day - from 1789,General,Punk Drummer Chris Miller what name when he Damned in 70s,Rat Scabies -General,Who was the father of english poetry,Geoffrey chaucer,General,"Who wrote ""The Emporers New Clothes""",Hans christian anderson,Science & Nature,What Creatures Were Frequently Used To Bleed Patients In The Nineteeth Century ,Leeches  -General,What is the symbol of the democratic party,Donkey,Music,Which pop group took their name from the Arabic word for black?,Aswad,General,What are the largest oceans in order of size,"Pacific, atlantic, indian" -General,What is the largest Island in The Greater Antilles,Cuba, History & Holidays,Who played Jack Nicholsons wife in The Shining ,Shelley Duvall ,Geography,Colorado's capital of __________ is the largest metro city in a 600_mile radius _ an area almost the size of Europe.,Denver -General,Whose autobiography was The long walk to Freedom,Nelson Mandela,General,"Where was the record for most snowfall in a day, on february 7 1916",Alaska,General,What is Daffy Ducks middle name,Dumas -Science & Nature,What is the only dog that doesn't have a pink tongue?,Chow,General,Les Gray was the lead singer of which group,Mud,People & Places,Who Said 'We Have Become A Grandmother' In 1989 ,Margaret Thatcher  -General,"Who wanted you to ""shake your groove thing""",Peaches & herb,People & Places,Which writer caused a massive stir in 1926 when she went missing for eleven days? ,Agatha Christie ,General,The Rambunctious and Clever Ones what films name in Taiwan,Wayne's World -General,What food item did Pythagoras advise his followers to avoid,Beans,General,Baseball: the texas ______,Rangers,Geography,Which country was previously called Abyssinia? ,Ethiopia  -General,What is the southernmost city in the u.s,"Brownsville, texas",General,Who wrote The Caine Mutiny,Herman Wouk,General,What is the Capital of: Tonga,Nuku'alofa -General,What is the Capital of: Jersey,Saint helier,General,If you have Dorophillia what turns you on,Animal Skins or furs,General,"What is the largest lake in South America, which is half freshwater, half saltwater",Maracaibo -General,What sport begins in front of the south stake,Croquet,General,The last day of public operation of the Liverpool Overhead Railway was December the 30th of which year,1956,General,Who was the founder of microsoft,Bill gates -Science & Nature,Which Nation First Invented The Wheelbarrow ,The Chinese C Ad 200 ,General,Which is the only sea below sea level,Dead sea,General,Which comic strip did sam keith draw,The maxx -General,In which field was Dame Ellen Terry famous,Acting,General,Where is it polite to stick your tongue out at your guests,Tibet,General,"In The 80's Which Soap Character Was Voted Britains Most Popular Person Ahead Of The Queen, Princess Diana, And The Queen Mother",Hilda Ogden -People & Places,Who was Born Farouk Bulsara? ,Freddie Mercury ,General,Who died at Gravesend in March 1617 when she was about to embark for her homeland in America,Pocahontas,General,What piece of music commemorates military action that took place on 16th May 1943,The dam busters -General,What commercial was Michael Jackson singing for when his hair caught on fire?,Pepsi,Food & Drink,What Are Escargots ,Snails ,General,How much longer is a day on mars than a day on earth,Thirty minutes -General,What drink is named after the queen of england who was famous for her 'sanguinary' persecution of the protestants,Bloody mary,Entertainment,What is the name of the Family Circus's dog?,Barf,Music,Louise Nurding Dropped Her Surname On Leaving Which Group,Eternal -General,What are squirrel hairs used to make,Camel hair brushes,General,What are followers of the Unification Church called,Moonies,Food & Drink,What is the flavour of the Greek drink 'ouzo'? ,Aniseed  -General,Viticulture is the growing of what plants,Vines,General,What made Michael Milken famous and rich?,Junk Bonds,Music,Who was barefoot on the cover of Abbey Road?,Paul -General,"What fabric are harris, lewis and donegal examples of",Tweed,General,Who wrote 'psycho',Alfred hitchcock,General,What is the most recent year that can be written upside-down and rightside-up and still look the same,1961 -General,What do scuba divers ditch first if they have to ascend in a hurry,Weight belts,General,"Who counted himself out on March 31, 1968",Lyndon johnson,Art & Literature,Spanish modernist and cubist Pablo _____,Picasso -Science & Nature,What type of creature is a sidewinder ,A snake ,General,What body of water rises in the Yukon & flows south to British Columbia,Lizard river,General,What does an anemologist study,Wind -General,Name the u.s. state with the smallest population,Alaska,General,"This word comes from a knight whose lance was free for hire, (i.e. Not pledged to one master).",Freelance, Mathematics,"The mathematical study of properties of lines, angels, etc., is ________.",Geometry -General,A soft toffee like sweet,Fudge,Music,In Which Decade Did Earth Wind And Fire Have Their Biggest Hit,The 80's Lets Groove In 1981, History & Holidays,This U.S. Secretary of State won the Nobel Peace Prize in 1973,Kissinger -General,The town of Pisa lies in which Italian region,Tuscany,General,What is the collective noun for a group of bears,Sloth,General,"Valentine in an average lifetime, the average american gives flowers 136 times on __",Mother's day -General,The international date line is in the,Atlantic ocean,General,What is the common name for white soft limestone,Chalk,General,In which organ is a pulmonary disease located,Lung - Geography,What is the official language of Egypt?,Arabic,General,"Who, with the First Edition, had a number two hit in 1969 with 'Ruby, Don't Take Your Love To Town'",Kenny rogers,General,Who was lauren bacall's first husband,Humphrey bogart -General,Shower what is a tokinese,Cat,Music,With Which Mod Revival Band Did The Style Councils Mick Talbot Play Keyboards,The Stranglers,General,Port louis is the capital of ______,Mauritius -General,What is the flower that stands for: belief,Passion-flower,General,"Who is the persian goddess of water, fertility and war",Anahita,Food & Drink,What does the abbreviation A.B.V. Stand for in alcoholic drinks? ,Alcohol By Volume  -General,The Rikkesmuseum is in what European city,Amsterdam,General,How many bulls are slaughtered in a normal bullfight,Six,Music,Which 60's Band Had A Hit With Waterloo Sunset,The Kinks - Geography,"What is the largest city in Australia, in terms of population?",Sydney,Geography,What state was the home to Mayberry,North carolina,General,Thanatos in Greek Mors in Roman Gods of what,Death -Food & Drink,What crop is attacked by the Colorado beatle? ,Potato ,Art & Literature,"This early American statesman and inventor wrote the book, ""Fart proudly""?",Benjamin Franklin,General,"What is further from the equator Tasmania, Tanzania or Transylvania",Transylvania -General,"Chimpanzees, gorillas and orang-utans what is missing",Gibbons,General,The word 'poltergeist' comes from what language,German,Science & Nature,This condition characterized by the swelling of the thyroid gland is caused by an iodine deficiency.,Goitre -General,Garland who was the unnamed executive producer of the 1980 film 'elephant man',Mel,General,Which job was so dangerous staff adverts wanted orphans only,Pony Express,Music,Which Canadian folk singer wrote the classic 70’s hit “big yellow taxi”,Joni Mitchell -General,The longest tunnel connects new york and ______,Delaware,General,Who wrote the Man in the Iron Mask,Alexander Dumas,General,The Amazon river rises in which country,Peru -General,In Australia what is the no 1 topping for pizzas,Eggs,General,"Which Medical Complaint Was The ""Jacuzzi"" Originally Developed To Help",Arthritis,General,Which Irish political parties name translates as we ourselves,Sein Fein -Art & Literature,Which Algerian Born French Authors Works Included L'Etranger & La Peste ,Albert Camus ,General,Potophobia is the fear of,Alcohol,General,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 -General,Which sitcom was set in Dunns River Connecticut,Soap,General,What was the favorite expression of captain marvel,Holy moley,General,In US what sporting good outsells Base Basket and Footballs,Frisbees sales beat all combined -General,Which artist painted Venus of Urbino,Titian,General,What is a myocardial infarct,Heart attack,General,What is the word (derived from Malay) for unhusked rice,Paddy -Science & Nature, The average cow produces __________ glasses of milk each day.,40,General,What is the food tofu made from,Soya Bean Curd – via Soya milk, History & Holidays,In What Year Did World War I Begin ,1914  -General,"In bowling, what is it if you knock down all the pins with two balls",Spare,General,From which type of rock is marble formed,Limestone,General,In Japan what is Raku,Biscuit fired Pottery - History & Holidays,What name did the indians give the black soldiers that were fighting against them in the late 1800's ,Buffalo soldiers ,Sports & Leisure,What sport did James Naismith invent ?,Basketball,General,Who was the president of France 1947 54,Vincent auriol -General,"In ballet, the ability of a dancer to remain suspended in air during a jump; elasticity in jumping.",Ballon,Music,"What Kind Of Cats Did ""The Cure"" Have",Love Cats,General,Dwight Eisenhower was the first president to hold what,Pilots Licence -General,Which city has a ram as its emblem,Derby,Sports & Leisure,What Height Is The Crossbar Of A Goal In Professional Football ,8 Feet ,General,What is apache indian corn beer,Tizwin -General,Who did Peeping Tom peep at?,Lady Godiva,General,"A mind-boggingly stupid, but very very ravenous, animal",Ravenous bugblatter beast of traal,General,"Lawn game with hoops, wooden balls and mallets",Croquet -General,What is the young of this animal called: Lion,Cub,General,"Whose catchphrase was ""Stop messing About""",Kenneth Williams,General,Who composed a symphony nicknamed The Hen,Joseph Hayden -General,Saint Stephens day is better known as what,Boxing day,General,After which war did cigarette smoking become fashionable,Crimean war,General,The singer Brandon Flowers is assoociated with which band?,The Killers -Sports & Leisure,Football: The Miami __________.,Dolphins,General,What is the correct name for food permitted under Moslem laws,Hal-al,General,Who had a no 1 Album 60s 70s 80s 90s,Barbara Strisand -General,How many seconds comprise a day,86400,General,In Scandinavian mythology what bridge linked heaven and Earth,Bifrost,General,What is the old name of the city Istanbul,Constantinople -Entertainment,What instrument does Woody Allen play?,Clarinet,General,What nationality was the first person who walked in space,Russian,Music,The Pretenders Were Back On What Kind Of Gang,Chain -General,What document is needed for one to enter a foreign country,Passport,General,What Was Invented By Adolf Flick In 1887,The Contact Lens,General,What does the musical term 'pesante' mean,Heavy -General,Where are Gene Roddenberrys ashes,Sent into Space,General,"What does the latin ""luna"" mean ?",Moon, History & Holidays,Where were the ancient script of Linear A and Linear B found ?,Crete -General,"In ballet, a jump from one to both feet, usually landing in fifth position.",Assemblé, Geography,What is the capital of Yugoslavia ?,Belgrade,General,"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 -Food & Drink,What Are Petit Fours ,Small Iced Cakes & Sweets ,Science & Nature,In Computing And Hi_Tech Gadetry What Doe The Initials WAP Stand For ,Wireless Access Point ,Science & Nature,Who Had Anaesthesia During ChildBirth Thereby Making It Acceptable ,Queen Victoria  -General,By Law Portland Oregon a minister cannot marry a couple where,Ice Rink, History & Holidays,He was stabbed by Cassius.,Julius caesar,General,What medicine hastens the emptying of the bowels,Laxative -General,Bill gates invented which os,Windows,General,Which group of animals are called a cete,Badgers,General,"Any of a large group of chemicals almost exclusively organic in nature, used for the coloring of textiles, inks, food products, & other substances",Dyes -General,What is the Capital of: Qatar,Doha,General,Stygiophobia is a fear of ______,Hell,Science & Nature,From What Metals Is Brass Made ,Copper & Tin  -General,Santa Cruz airport serves which city,Bombay,General,Small shell fish clinging to rocks,Barnacle,General,Of which ship was miles standish captain,Mayflower -General,Which prime minister established canada's own flag,Lester pearson,Music,Susanna Hoofs & Vick & Debbi Peterson Were Members Of Which All Girl Band,The Bangles,General,Who invented the food processor in 1947,Kenneth wood -General,What bumbling andy griffith show character has the middle initial b?,Barney fife,Sports & Leisure,How many referees work a soccer game,One,General,What singer was nicknamed by his fans The Lizard King `,Jim Morrison -General,Who wrote The History of Mr Polly,H G Wells,General,Urophobia is the fear of ______,Urinating,General,Larry Page is a co-founder of which Internet giant?,Google -General,Short legged long bodied dog,Dachshund,General,What is meant in computing terminology by the acronym WYSIWYG,What yoU.S.ee is what you get,General,"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 -General,In Louisiana by law who can't be charged more than 25c haircut,Bald Men,General,"In law, the criminal offense of marrying while one is still a partner in a valid earlier marriage.",Bigamy, History & Holidays,Which of Santa's reindeers shares its name with a mythological God of Love ,Cupid  -General,What is the outermost planet of the solar system,Pluto,General,What does Scotland export to Saudi Arabia,Sand,General,Which Charles Dickens novel features a case of 'spontaneous combustion'?,Bleak House -Music,Which 1980's boy band was “Donnie Wahlberg” a member of?,New Kids On The Block, Geography,Port Louis is the capital of ______?,Mauritius,Entertainment,Jerry Lee Lewis had Great _____ Of Fire.,Balls! -General,What is a wood pussy,Slang for skunk,Toys & Games,You meld groups of three cards or more of the same rank or suit in this game.,Rummy,General,What type of animal was Nana the nursemaid in 'Peter Pan',Dog -General,If an Australian had trouble with his donk who would he call on,Mechanic - Donks an engine,General,Walloons speak what language,French in Belgium,Science & Nature,The practice of joining the parts of two plants to make them grow as one is called ________.,Grafting -General,What was the American Pie in Don Macleans song?,Buddy Holly's Crashed Airplane, History & Holidays,In the year 2000 which companies CEO was the worlds second richest man ?,Oracle,Food & Drink,The founder of Weight Watchers.,Jean nidetch -General,Orthoepy is the study of what,Word pronunciation,General,What is the ability to move objects with mind power called,Telekinesis,Sports & Leisure,What Do The Letters PB Next To An Athlete's Name Indicate ,Personal Best  -General,"The first international cricket match ever, was held between Canada & _____",U.S.A.,General,An entertainment with an educational aspect,Edutainment, Geography,Which state has the most hospitals?,California -General,Who built the first steam engine to run on rails,Richard trevithick,General,Which British Military leader had a horse called Copenhagen,Duke of wellington,General, The symbols used on a map are explained by the ________.,Legend -Music,"Was George Clintons Nickname ""Dr Funkenstein"" Or ""The Godfather Of Funk""",Dr Funkenstein,General,What popular american writer coined the word nerd,Doctor seuss,Music,"According To The Song 'The House of the Rising Sun' By The Animals, In Which Us City Is The House Of The Rising Sun?",New Orleans -General,Carl and the Passions changed band name to what,Beach Boys,Geography,In which city is the Canale Grande,Venice,Entertainment,"Who played Brad Pitt's cop partner in the movie ""Seven""?",Morgan Freeman -General,The human body contains enough sulphur to kill ______,All the fleas on a dog,General,What part of a bathroom tap most often needs to be replaced,Washer,General,Which singer had top ten hits in the 1980s with Sledgehammer and Games Without Frontiers,Peter gabriel -General,Orange who wrote 'a clockwork orange',Anthony burgess,General,Who was the first commoner to appear Royal Mail pack 1964,William Shakespeare,General,Which city lies at the eastern terminus of the Trans-Siberian railway,Vladivostock -Sports & Leisure,What Is The White Ball In Bowls Called ,The Jack ,Science & Nature,Who first transmitted radio signals across the Atlantic?,Enrico Marconi,General,What is the fear of bulls known as,Taurophobia -General,Who Released An Autobiography Called Making Waves?,David Hasselhoff,General,Captain Macmorris only ever Irishman in what Shakespeare play,Henry V,General,In what Australian state would you find Surfers Paradise,Queensland -General,In the next 7 days 800 Americans will be injured by what,Their Jewellery,Science & Nature,What large herbivore sleeps only one hour a night?,Antelope,General,If you had Tritonopia what would you not see,Colour Blue -Entertainment,"In the film 'Home Alone', who played the baddies?",Joe Pesci and Daniel Stern,General,"In football, what are the white marks intersecting each five-yard line",Hashmarks,General,Who is the roman counterpart of zeus,Jupiter -General,Which country uses the international vehicle registration letters MA,Morocco,Entertainment,Who wrote the Nutcracker Suite ?,Tchaikovsky,Geography,What Was The Name Of Sir Francis Drakes Most Famous Ship ,The Golden Hind  -Food & Drink,What Type Of Vegetable Is A Marrow Fat ,A Pea ,General,"What childhood disease did 312 Americans have in 11993, a record low",Measles,General,"What are the Sirocco, Mistral and Chinook",Winds -General,The town of Whitby in North Yorkshire stands on what river?,River Esk,Sports & Leisure,Who Inflicted Amir Khan's First Ever Professional Defeat On The 6th September 2008 ,Breidis Prescott ,General,VH international airline registration letters what country,Australia -Music,"The Title Of Brian Eno's Song ""Kings Lead Hat"" Is An Anagram Of Which Group's Name",Talking Heads,General,What is a young lion called,Cub,General,"What links Brazil, Uruguay, Mozambique and Angola",Colonies of Portugal -Tech & Video Games,What is the signature move of the Bombs in the Final Fantasyseries? ,Exploder,General,What two body organs benefit from cardiovascular exercise,Heart and lungs,General,Annie Mae Bullock became famous under which name (both),Tina Turner -General,U.S. Captials - Mississippi,Jackson,Entertainment,"Who released 'Time, Love and Tenderness' in 1981?",Michael Bolton,Geography,"The U.S. state of __________ has 3,500 miles of coastline.",Maine -General,"Which singer is known by the nickname of ""Fat Lucy""",Luciano pavarotti,General,What food was invented in a sanatorium in 1890,Kellogg corn flakes,General,As clear as a _______,Bell -Food & Drink,In which Dickens novel would one find this service 'United Metropolitan Improved Hot Muffin and Crumpet Baking and Punctual Delivery Company ' ,Nicholas Nickelby ,Music,The Pop Trio Dee Lite Are From Which 3 Countries (PFE),"USA, USSR, Japan", History & Holidays,What actor was killed in a car crash on the way to participate in a sports car race? ,James Dean  -Entertainment,Name Dennis the Menace's next door neighbors.,Mr and Mrs Wilson,General,What catholic bishop was killed in rome on february 14 in 270 ad,St,General,What was/is the giant Musashi built in Japan in 1974,A Crane -Science & Nature,This organ of the excretory system is composed of small tubules called nephridia?,Kidney,Food & Drink,What Is Tabasco ,A Hot Soup From Mexico ,General,What pigment is missing from the skin of human albinos,Melanin -General,What 3 inventions do Americans say they cant live without,Car - Lightbulb – Telephone,General,Light silvery metallic element,Aluminium,General,"In Greek mythology, actaeon was torn apart by artemis' ______",Dogs -General,Nova scotia is the new name for which canadian province,Acadia,General,What british comedian was the first man to appear on the cover of 'playboy',Peter sellers, History & Holidays,"Which notorious murderer, hanged in July 1953, had his story told in the film _Ten Rillington Place_ ",John Reginald Christie  -Music,Who Had Hits With The Songs “Right Said Fred” & “Hole In The Ground”,Bernard Cribbins,Entertainment,What was the first James Bond Film?,Dr. No,Music,"Who In The World Of Music Is Known As ""The Boss""",Bruce Springsteen -General,The term 'lupine' refers to which animal,Wolf,General,What mountain was Reinhold Messner the first to climb solo in 1980,Mount everest,Art & Literature,"Which Famous Book Begins With The Line 'The mole had been working very hard all the morning, spring-cleaning his little home' ",The Wind In The Willows  -General,On whose 1989 'trash' release were aerosmith and bon jovi guest performers,Alice cooper,Food & Drink,In which South American country is the city of fray Bentos? ,Uruguay ,Geography,Which is the Earth's fourth largest continent,South america -General,In 1979 what did President Carter apologise to Australia about,Skylab falling on their country,General,What magazine started in America March 1923,Time,Art & Literature,"A single print made from a metal or glass plate on which an image has been represented in paint, ink, etc. ",Monotype -General,In which country is the drink Pulque made?,Mexico,General,Which stars name means chained maiden,Andromeda,General,The feeling of having experienced something before is known as _______.,Deja vu -General,Who invented the Spinning Frame,Richard arkwright,General,"Translate: latin ""opus magnum""",Masterpiece,Music,What Relation Is Eagle Eye Cherry To Neneh Cherry,Half Brother -General,What does an aronophobe fear,Internet,General,The young of which animals are called 'brockets',Deer,Entertainment,Name the fastest mouse in all of Mexico,Speedy gonzalez -Art & Literature,What were the dolls in the novel 'Valley Of The Dolls'?,Pills,General,"Which ""daring young man on the flying trapeze"" gave his name to a garment",Jules leotard,Technology & Video Games,"In the Soul Edge series, who is known as ""The Dandy of the South Seas?"" ",Cervantes - Geography,Riyadh is the capital of ______?,Saudi Arabia,General,This science deals with the motion of projectiles,Ballistics,General,Which society founded in 1884 still provides much of the intellect and political stimulus of the Labour Party?,Fabian Society -General,"In Greek mythology, who was jason's wife",Medea,General,Here comes the judge is from what TV show,Rowan and Martins Laugh In,Music,Which Song Was Michael Jackson Performing When Jarvis Cocker Invaded the Stage In 1996?,Earth Song -General,What is a group of tigers,Streak,General,Which herb is used to flavour the tomato based sauce on a Pizza,Oregano,General,What nationality was the person who ordered the killing of the last incan king of peru,Spanish -General,In what sport is the cy young trophy awarded,Baseball,General,On the Omen series Damien was the devil - what second name,Thorne,General,In Greek mythology Clio was the muse of what,History -General,If a Turkish judge breaks a pencil what does it mean,Your death sentence,General,Where was the first Miss World contest held in 1951,London,People & Places,Who Did Cynthia Powell Marry In 1962? ,John Lennon  -Science & Nature,This ancient attempt to transmute base metals into gold was called _______.,Alchemy,Art & Literature,In Which Gilbert & Sullivan Operetta Does Nakipoo Appear ,The Mikado ,General,What is the flower that stands for: attachment,Indian jasmine -Food & Drink,A Chablis wine comes from which French wine region ,Burgundy ,General,What was the nickname of William I of England,The conqueror,General,What does the name Tabitha mean,Gazelle -General,A native of the east end of London,Cockney, Geography,What is the largest of the pyramids in Egypt?,Cheops,Music,Guess The Band From These Initials FM / RT / BM / JD,Queen -General,Who declined a Pulitzer Prize for his book Arrowsmith,Sinclair Lewis,Sports & Leisure,What Was Officially Recognised As A Summer Olympic Sport At The 1992 Barcelona Olympics ,Badminton ,General,Swiss manufacturer of the Crunch bar.,Nestle -Food & Drink,Which brand of beer does Homer Simpson drink regularly? ,Duff ,General,Which artists work entitled '' My Bed'' shocked the art world when exhibited at the Tate Gallery in 1999,Tracey emin,General,Name one of the countries to join the Commonwealth in 1995.cameroon,Mozambique -Science & Nature," In ancient Rome, auburn_haired puppies were sacrificed to ensure a plentiful __________",Corn crop,Sports & Leisure,In Boxing What Name Is Given To An Illegal Punch To The Back Of The Head ,A Rabbit Punch ,General,What was Goebbels' role when he served under Hitler during WWll,Minister for propaganda -General,In America's Wild West Who Rode A Horse Called Target,Annie Oakley,Sports & Leisure,Over what distance is the Melbourne Cup horse race ran (in metres)?,3200,Science & Nature,Why Was The Jaguar Xj220 So Named ,Top Speed Was 220  -General,Which desert is in south-east california,Mojave desert,General,In what TV series did we meet Perry Masonry,Flintstones lawyer never lost case,Music,Who admitted in a radio interview during The Noughties that she had smoked cannabis in the 1960s?,Cilla Black -Science & Nature,What Is The Number Ten In Binary Notation? ,1010 ,Food & Drink," Iceberg, Boston, and Bibb are types of _________.",Lettuce,General,Caipirina means someone's drink - whose drink,Peasants -General,What make and model of car is closely associated with Nurse Gladys Emmanuel,Morris minor,General,"The last line of which TV show was ""Good bye Margaret""",MASH,General,Vince Lombardi & Brian Picollo both died in _____,1970 -General,What metal impurity makes rubies red and emeralds green,Chromium,General,Who patented the sewing machine,Isaac singer,General,What is the flower that stands for: divine beauty,American cowslip -Sports & Leisure,Whose nickname is Beefy? ,Ian Botham ,General,A flat V shaped missile that returns,Boomerang,General,Who invented the word pandemonium,John Milton – capitol of hell -General,The earliest paper written in Latin is a woman's writing what is it,Invitation to a party,General,What colour is a sunburned turnip,Green,Music,"Which Country Singer Is Known As ""The Coal Miners Daughter""",Loretta Lynn -General,What's unusual about a bobhouse,Its on skis,Music,"Who was the recording engineer on The Beatles Album ""Sgt. Pepper's Lonely Hearts Club Band""?",Geoff Emerick,Food & Drink,What are the two main ingredients to Kedgeree ,Smoked Fish & Rice  -General,What is the ruling planet of the astrological sign Taurus,Venus,General,What day commemorates the Gallipoli Campaign,Anzac day,Sports & Leisure,Who Is The Only English Cricketer To Have Taken All 10 Wickets In 1 Innings At A Test Match ,Jim Laker  -General,What type of animal is a vmi-vmi,Very small pig,Entertainment,What came out of Milton's head?,Steam,General,The cecum is part of the,Large intestine -General,Paraphobia is the fear of,Sexual perversion,General,What is a group of dotterel,Trip,General,Which American state produces the most potatoes,Idaho -General,Lycopersicum esculentum is what common food,Tomato,General,"In 'star wars, james earl jones was darth vader's ______",Voice,General,What is kermit d frog's girlfriend's name,Miss piggy -Geography,Where did the most powerful explosion ever witnessed on Earth occur,Krakatoa,General,Which two fighting ships other than the 'oklahoma' were sunk at pearl harbor,Arizona and utah,General,"What, in general terms, accelerates a chemical reaction without itself being changed",Catalyst -General,"Who cremated on the banks of the ganges river on january 31, 1948",Mahatma,Music,Who Had A No.5 Hit With Da Doo Ron Ron Ron In 1963,The Crystals,Music,"Who Composed The Song ""Happy Birthday Tou You""",Mildred & Patty Hill -Music,Name The Country Music Instrument That Looks Like A Guitar Has A Resonator & Was Invented By The Dopera Brothers Of California,Dobro,General,In what country are Fuji Film rolls made,Germany,Science & Nature,What Is An Analgesic ,A Pain Killer  -General,Which English scientist invented the electric light bulb,Joseph swan,Art & Literature,Who Wrote Gullivers Travels ,Jonathan Swift ,General,"In 'star wars', who was darth vader's body",David prowse -General,Which country is due south of Serbia,Albania,General,How did Rose Nilin's husband Charlie die on The Golden Girls?,He died of a heart Attack while making love to Rose.,General,What creature called reem in Hebrew mentioned in Deuteronomy,Unicorn - but reem has 2 horns - History & Holidays,Who Released The 70's Album Entitled Muswell Hillbillies ,Kinks ,General,Catholic calendar what is the 50 days following Easter called,Pentecost, History & Holidays,From what country did the U.S. buy the Virgin Islands,Denmark - History & Holidays,When Did Napoleon Bonaparte Begin His Reign As Emperor Of France ,1804 ,Entertainment,"When Tweety exclaimed, ""I thought I saw a putty tat!"", who did he see",Sylvester,General,What does a philographist collect?,Autographs -General,What author was born in Petrovichi USSR in 1920,Isaac Asimov,General,Which actor and comedian once appeared as a spoon salesman guest of the hotel in an episode of Fawlty Towers?,Bernard Cribbins,Music,"In 2006 The Group Lordi Won The Eurovision Song Contest, Which Country Did They Represent",Finland -Music,Who Topped the Album Charts in 1990 With “But Seriously”,Phil Collins,General,If a prescription said b.i.d. what would it mean,Twice Daily,Technology & Video Games,How much money do you start with in the game 'Wall Street Kid'? ,500000 -Sports & Leisure,Where are the U.S. Tennis Open Championships held?,"Flushing Meadows, NY", Geography,In which country is the Dalai Lama's palace?,Tibet,General,Shrine margaret thatcher becomes the first woman elected prime minister of,Great -General,Who was the Chancellor of the Exchequer during the 1956 Suez Crisis,Harold macmillan,General,Psychophobia is the fear of,Mind,Music,"Which 1996 Single Sold A Then Record 420,000 Copies In Its First Week Of Release",Babylon Zoo / Spaceman -Music,"Name the group that had a hit with ""Inside"" the musical backdrop to a Levi's TV Ad?",Stiltskin,General,What was the first computer software company to go public on the New York Stock Exchange,Cullinet,General,Heston the american flag first flew over a foreign fort in what country,Libya -General,Where are queen mary's gardens,Regents park,General,When was the first daytime bank robbery,"February 14, 1866",General,What was the first UK TV series filmed in colour 1964/5,Stingray - a puppet series -General,Who became the first father-and-son team to win oscars for the film 'treasure of sierra madre',Walter and john huston,General,A mistress among polygamous people,Concubine,General,Who knows what evil lurks in the hearts of men,The Shadow -General,Which country suffered bomb attacks by ETA,Spain,General,"At any given time, there are 1,800 ______ going on around the world",Rainstorms, History & Holidays,Which U.S. President _banned _ Christmas trees from the White House because he believed cutting them harmed the environment? ,Theodore Roosevelt  -General,"Visual representation of individual people, distinguished by references to the subject's character, social position, wealth, or profession.",Portraiture,Music,Which Group Was The Labels Biggest Selling Act Of The 1990's,Boys 2 Men,General,Greek Myth Clotho spun Lachesis measured Atropos cut what,Thread of a mans life -General,In Greek mythology Atlas was a member of what group,The Titans,General,The country name for which bird is 'merle',Blackbird,General,For what genre of book is isaac asimov famous,Science fiction -General,What does a chromophobic fear,Certain colors,General,Anthobia is the fear of What?,Fear Of Flowers,General,Skimbleshanks was a T S Elliot cat what was his area,The Railway Cat -Entertainment,To gradually decrease in volume?,Decrescendo,General,L'Equipe is French daily newspaper covering mainly what,Sport, Geography,What is the capital of Austria ?,Vienna -General,"Completed in 1966, which is the world's largest opera house",Metropolitan in new york,General,There are 72 scenes on what famous article,Bayeaux Tapestry,General,Name the two main families on Soap?,The Tates and The Campbells -General,Who wrote the play Heartbreak House,George bernard shaw,General,What is the name of the present king of Saudi Arabia,Fahd,General,"In Greek mythology, who was the goddess of the moon",Phoebe -General,What Wimbledon finalist (loser 1879) murdered his wife,St Leger Gould,Science & Nature,"What disease is also known as ""rubella""?",German measles,General,Who used the pseudonym Ellis Bell,Emily Bronte -General,Who is the most filmed author,Shakespeare over 300,General,What was the royal surname 'windsor' originally,Saxe-coburg, Geography,What is the basic unit of currency for Jamaica ?,Dollar -General,The second Beale code was encoded using what ?,The American Declaration of Independence,General,What better name is Mary Westmacott better known,Agatha Christie,Science & Nature,The filament of a regular light bulb is usually made of ________.,Tungsten -General,What British art gallery features an area known as the Turbine Hall?,Tata Modern,General,Which country has the highest % of women in their legislature,Cuba,General,"What did a ship called the Ancon travel through first, on August 15, 1914",The panama canal panama canal - Geography,What country has the oldest constitution that still exists?,America,General,What is the flower that stands for: childishness,Buttercup,General,If you suffered from ozostomia what have you got,Bad Breath - Halitosis -General,Who was a knight of the order of the inverted dragon in Hungary,Count Dracula following his father,General,What channel seperates Denmark from Norway,Skagerrak,General,What food item literally translates as little donkey,Burrito -Art & Literature,Who wrote the 'Dragonriders Of Pern' series?,Anne McCaffrey,General,What's the common term for a cubic decimetre,Litre,General,Who was given the only nobel peace prize award during wwi,International red -Geography,In which state is Walla Walla,Washington,Music,Which 1930's Folk Singer Is Attributed As Having The Biggest Influence On Bob Dylan,Woody Guthrie,General,In which film did jennifer lopez play selena,Selena -General,Name the Marx brothers in alphabetical order,Chico harpo & zeppo,General,"Who played Ming of Mongo in ""Flash Gordon""?",Max Von Sydow,General,Whose equations first suggested that mass and energy are interchangeable,Einstein's -Science & Nature,What does a normal Human Being have 206 of? ,Bones ,General,Lili Hayden played a character (not seen) in a spin off from what,Colombo (Mrs), History & Holidays,What did Harry Potter get for Christmas in his first semester at Hogwarts School? ,An Invisibility Cloak  - Geography,What is the smallest independent state in the world?,Vatican City,General,What name is given to the day after Christmas Day,Boxing day, History & Holidays,Which American Gangster was shot dead outside a Chicago cinema in July 1934? ,John Dillenger  -General,What is the Greek version of the old testament called,The septuagent,Geography,In which state is Hoover Dam,Arizona,Food & Drink,"Mind your p's and q's' was a phrase meant to watch how much you had to drink, but what did the letters 'p' and 'q' stand for? ",Pints And Quarts  -Geography,What is the capital of Dominican Republic,Santo domingo,General,What space craft mapping Venus named 15/16 century explorer,Magellan,General,From what platform does the 'chattanooga choo choo leave pennsylvania station,29 -General,What was ben stiller's character called in 'mystery men',Mr furious,General,"Which opera, based on Bizet's Carmen, is set in a parachute factory",Carmen jones, History & Holidays,"In Which 1984 Film, Did A Young Man Called Zach, Receive A Mogwai For Christmas ",Gremlins  -General,Who flew above sleeping beauty castle from 1961 to 1977,Tinker bell,General,"In Disney's Jungle Book, what kind of animal was 'King Louis'",Orang-utan,General,"In 'startrek', who did william shatner play",Captain james t kirk -General,Which part of the human eye controls the size of the pupil,Iris,Music,"Who Had A Hit In 1989 With ""Fergus Sings The Blues""",Deaccon Blue,Science & Nature,What is a group of whales called?,Pod -General,What are the two hottest months at the equator,March and september,General,What Is Austin Powers Job When He Is Not Being An International Man Of Mystery?,A Fashion Photographer,General,In what city did 8 year old Mozart compose his first symphony,London - Language,What two words make the word 'meld'?,Melt and weld,General,What is the first name of the inventor of braille,Louis,General,What percentage of the earths weight is taken up by the oceans?,Less than 1 percent -General,Old Honiton Genoese and Mechlin all types of what,Lace, History & Holidays,Who Was Henry VIII's Third Wife? ,Jane Seymour ,General,What is the Capital of: Malawi,Lilongwe -General,In WW1 what were Lucifer's,Matches,General,Who is the C E O of Apple Computers,Steve jobs,General,Which animal lays eggs,Duck billed platypus -General,The origin of the word penis is Latin meaning what,Tail,General,Utah the states name comes from Navaho meaning what,Upper,General,Which Rubber Based Product Was Patented In The United States In 1869,Chewing Gum -Food & Drink,Which popular beverage's name is German for 'to store' ? ,Lager , History & Holidays,"In which 1971 Oscar winning film is the main character a tough, no nonsense, pork pie hat wearing New York City detective ? ",The French Connection ,General,What is an angle less than 90 degrees,Acute -Science & Nature, A hippopotamus can run faster than a __________,Man,Science & Nature,"The four stages in the life_cycle of an insect are: egg, adult, pupa, and ________.",Larva, History & Holidays,What did Napoleon have built to commemorate his victories?,Arc de Triomphe -General,What show has the character mike stivic,All in the family,General,What classic rock band sang the song 'Paint it Black',Rolling Stones,General,Which was the first 'indiana jones' film,Raiders of the lost ark -General,"What nation moved its borders eastward and named an island ""Millennium Island"" in order to be the first nation to welcome the new millennium",Kiribati,Music,How Many Faces Are There On The Cover Of The Album “Sgt. Pepper's Lonely Hearts Club Band”,75,General,Techniques & equipment used to extinguish fires & limit the damage caused by them,Fire fighting -Music,What Is the Stage Name Of Harry Webb?,Cliff Richard,General,What Is A Beauty Of Bath?,Apple,Science & Nature,Whats the technical name for the skull ?,Cranium -General,"Where The Devil Are My Slippers"" Are The Final Words Spoken In Which Movie",My Fair Lady,General,Which star is the nearest to Earth?,The Sun,General,A computer does a POST what is a post,Power on self test -Science & Nature,What is the boiling point of water in Fahernheit? ,212 Degrees ,General,"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,General,"As Of 2010 Just 3 Countries Have Managed To Win The Eurovision Song Contest Back To Back, Ireland Is One Can You Name Any Of The Other Two","Luxembourg, Israel" -General,On night Court what was Bull's IQ?,181,General,What is a group of magpies,Tiding,General,Biological community of interacting organisms and their physical environment,Ecosystem -Music,Who Made A Special Brew In 1980,Bad Manners,General,The author Jules Verne was born in which city,Nantes,General,Who introduced racial segregation in south africa,National party -Mathematics,If you cut through a solid sphere what shape will the flat area be,Circle,Science & Nature,Developed In The Us In 1930 By What Name Is PolyVinyl Chloride Better Known ,PVC , Language,"How do you say ""I Love You"" in German?",Ich liebe Dich - History & Holidays,Israel occupied the Golan Heights. Whose territory was it,Syria,General,Margin Guaging Angle Corner Flooring types of what tool,Trowel,General,Pupik means belly button in what language,Yiddish -General,We know what a veto is but what does it literally mean,I forbid,Art & Literature,Who Is Responsible For Painting The Mona Lisa ,Leonardo Da Vinci ,General,Who wrote _Dido_ and _Pa,Joan aiken -Sports & Leisure,In Formula One what does it mean when they are waving a black flag? ,A Driver Has Been Disqualified ,General,Impressionism comes from painting Impression Sunrise - Artist,Claude Monet,Science & Nature, The hippopotamus has the world's shortest __________,Sperm -General,What was the name of the first man made object to orbit the Earth,Sputnik i,General,What country has the worlds oldest National Anthem,Netherlands,General,What is the collective term for a body of goods and monies from which future income can be derived,Capital - History & Holidays,What Is The Name Of The Serial Killer In The Film Halloween ,Michael Myers ,General,"Carolyn Weston's novel Poor, Poor Ophelia was the basis for what show",Streets of san francisco,General,Which chemical element is named after the Greek for 'rose'?,Rhodium -Art & Literature,Which novel by Michael Crichton was (best selling paperback) in 1993 ,Jurassic Park ,General,Reconnaissance squadron into where does the 53rd weather reconnaissance squadron fly,Tropical storms, Geography,Which is the Earth's fifth largest continent ?,Antarctica -General,Who released 'tuesday night music club' in 1993,Sheryl crow,General,A fleet of small ships,Flotilla,Music,Name The 3 Members Of Genesis Who All Went On to Have Successful Solo Careers,"Phil Collins, Peter Gabriel, Mike Rutherford" -General,What did Moses receive on Mount Sinai,Ten commandments ,General,Proportionately which creature has the largest brain,The Ant,General,In Indonesian cookery what name is given to meat kebabs served with a peanut sauce,Satay -General,Oedipus married his mother - who was she,Jocasta, Geography,What is the capital of Mexico?,Mexico City,Music,Which Musical Won The Best Picture Oscar In 1968,Oliver! -General,A dark brown infesting insect,Cockroach,General,Who wrote the novel the Cyborg - Basis of the $6 million man,Martin Caidin,General,What term is applied to ethyl alcohol that has been treated with poison to make it unfit for human consumption,Denatured -General,In which British city would you find Murrayfield stadium,Edinburgh,General,Who did madeline kahn play in the film 'paper moon',Trixie delight,General,Who would use an orange stick,Manicurist -General,Where would you find a Fumerole or Solfatara,Hole side Volcano,General,Jacks what's an egg that floats on water,Very old,General,Apollo was the greek god of ______ and _______,Prophecy and Archery Archery and Prophecy Archery Prophecy Prophecy Archery -General,"In military terms, what is the opposite of ""advance""",Retreat,People & Places,Which Comedian Wore A Huge Banana Shaped Shoes On Stage In The 1970's ,Billy Connolly ,General,Ananas is French for what food,Pineapple -Science & Nature,What is another name for tuberculosis?,Consumption,General,Where would you see CDEFLOPDZ,US Eye test chart,General,Where was coinage invented,Lydia -General,Which leader was renowned for his 'Blood and Iron' speech?,Bismarck,General,What protein makes blood red,Haemoglobin,General,"Creamy sauce of butter,egg yolks and vinegar",Hollandaise -General,What is the flower that stands for: activity,Thyme,General,Novel gave Hemmingway nick speaker of the lost generation,The Sun Also Rises,General,Where are the hausa and ibo tribes,Nigeria - History & Holidays,What age preceded the Iron Age,The bronze age,General,What did NASA launch a$100 million search for in 1992,Aliens,Art & Literature,"The play ""Our Town"" is set where?",Grover's Corners -General,What is the name for the creamy liver of lobster eaten as a delicacy,Tomalley,General,Where is sir herbert baker buried,Westminster abbey,General,What is the provincial bird of Yukon,Raven -General,Swansons introduced them in 1953 - what,TV Dinners,General,From what is velvet made ?,Silk,General,In which book of the Bible did Moses die,Deuteronomy -General,Which former Archbishop of Canterbury was burned alive in 1556,Thomas cranmer,General,What does ICBM stand for,Intercontinental ballistic missle,General,Roosevelt had a landslide victory over Hoover in which year,1932 - Geography,What is the capital of Honduras?,Tegucigalpa,General,Country singer Hank Wangford had what profession,Gynaecologist,General,An _____ clock usually wakes you in the morning,Alarm -General,What does 3 d mean,Three dimensional,General,What is the SI unit of illumination,Lux,Music,Who Composed La Boheme,Puccini -General,In London when was the first cricket match held at Lords,1814,General,Peach pear and plum all members of which family of plants,Roses,Entertainment,"Which comedy duo did the famous, ""Who's on first?"" routine?",Abbott and Costello -General,"What film starred rosie o'donnell, rita wilson and meg ryan",Sleepless in,General,What film studio produced most of the 'godzilla' films,Toho,General,Tour de France what colour jersey best Hill Climber wear,Red Polka dot -General,Irene was the greek goddess of ______,Peace,Music,Who Founded Reprise Records,Frank Sinatra,General,Which Cartooon characters name did Orville Burrel adopt as his stage name,Shaggy -Sports & Leisure,"In Judo, What Colour Belt Follows Yellow ? ",Orange ,General,What is sushi,Raw fish,General,Which soccer team in the 1994 world cup had all 11 players' surnames ending with the letters 'ov',Bulgaria -Food & Drink, What kind of nuts are used in marzipan,Almonds,General,"Which company promises ""The Best to you each Morning""",Kellogg's,People & Places,Whose Ear Did Mike Tyson Bite Off ,Evander Holyfield  -General,"Who had a 1999 hit single with ""I Try""",Macy gray,General,What state was founded by Mohammed Ali Jinnah,Pakistan,General,"In 'my favourite martian', who did ray walston play",Uncle tim -General,By law in Denmark before driving you must check car for what,Children Underneath,General,Where was the worlds first air raid in 1849 from hot air balloons,Venice,General,Harold Sakata was badly burned playing what character,Odd Job in Goldfinger -General,Whose first wife was actress Jayne Wyman,Ronald Regan,General,The Diary of Anne Frank' was first published in English under what title,Diary of a Young Girl,General,What is the young of this animal called: Shark,Cub -General,Who is the Patron Saint of desperation,St Jude,General,Whose novels include 'Restoration' and 'The Way I Found Her',Rose tremain,General,What does cyprus have on its flag,Map -General,"In The World Of Television What Was Created By ""Julia Smith & Tony Holland""",Eastenders,General,All of the clocks in what movie are stuck on 4:20?,Pulp Fiction,General,"Which Classic Tv Character Was Played By ""Sorrell Brooke"" Between (1979-1985) & On Film By Burt Reynolds",Boss Hog - Geography,What U.S. city is known as Insurance City?,Hartford,General,Xmas UK children hang stockings what do Dutch children use,Shoes,Food & Drink,In which countries would you find the following city 'Gin Gin '? ,Australia  -General,Which famous U.S. crooner died on a golf course in Spain,Bing crosby,Music,How Many Siblings Does Dolly Parton Have,11,Entertainment,Name Hagar the Horrible's dog.,Snert -Science & Nature, Frogs never drink. They absorb water from their surroundings by __________,Osmosis,General,What 6th century Greek poet is the father of drama,Thespis,General,Who was Ben Hurs rival in the great chariot race,Messala -Science & Nature," 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,Art & Literature,"Reducing or distorting in order to represent three-dimensional space as perceived by the eye, according to the rules of perspective. ",Foreshortening,Music,Who Recorded The Albums Our Favourite Shop & Home And Abroad,The Style Council -General,The energy which a body possesses by virtue of its motion is called ________,Kinetic energy,General,"What is the world's largest desert, as determined by the least amount of precipitation",The antarctic antarctic,Music,Which Group Had Hits With Pray & Babe In 1993,Take That -General,Theatre at the stairway is the translation of which place,La Scala Milan,Entertainment,"In the opera 'Don Giovanni', what was Leporello?",Servant,Religion & Mythology,"In Greek mythology, who solved the riddle of the Sphinx?",Oedipus -General,The Rausing brothers of Sweden became rich from manufacturing which packaging product,Tetra pack containers milk cartons,General,When was the first play staged at Londons Globe Theatre,1599, Geography,What is the basic unit of currency for Zambia ?,Kwacha -General,Which peculiar bird had a shoe-polish named after it,Kiwi,General,Who founded the 'Habitat' company in 1971,Sir terence conran,General,Japanophobia is the fear of,Japanese -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,General,"Who wrote ""To err is human to forgive divine""",Alexander Pope essay on criticism,General,What's is the correct name for a female Badger,Sow - History & Holidays,After which famous person in history was the teddy bear named? ,Theodore Roosevelt ,Science & Nature,"In a car, what might be disc or drum? ",Brakes ,General,This instrument measures the velocity of the wind,Anemometer -General,Mnemophobia is the fear of,Memories,General,What does a Pangram contain,All letters in alphabet,Music,"Is This Desire In 1998 Was PJ Harveys Fourth Album, Name One Of The Previous Three","Dry, Rid Of Me, To Bring You My Love" -General,Who were the 'star crossed lovers',Romeo & juliet,Music,What was the Beach Boys first UK No1?,Good Vibrations,Sports & Leisure,In Which Game Might You Come Across A (Dummy) ,Bridge  -General,In 1789 Mutiny on HMS,Bounty,General,What are the identification letters for Chicago's O'hare airport,Ord,General,What is the bookmakers term for betting chances,Odds -Geography,What is the capital of Malaysia,Kuala lumpur,General,The process of splitting atoms is called,Fission,General,"The first ""technology"" corporation to move into California's Silicon Valley was Hewlett_Packard, in 1938. Stanford University engineers Bill Hewlett and Dave Packard started their company in a Palo Alto garage with $1,538. Their first product was an audio oscillator bought by Walt Disney Studios for use in the making of ____________ ",Fantasia -General,The first puck used in an ice hockey game was made of what,Frozen cow shit,General,Which crime novelist has a hero called 'Mike Hammer',Mickey spillane,General,What is the flower that stands for: unfading beauty,Gillyflower -General,Who has a statue in leicester square,Charlie chaplin,General,What lollies are well known for rolling down the aisles at the movies,Jaffas,Science & Nature,"He is known for his theory of ""Evolution"".",Charles darwin -General,Which country borders Russia Sweden and Norway,Finland,Science & Nature,As what is Polaris also known?,North Star,General,What is 65% of sixty,39 -General,"In ""Hamlet"", how does Ophelia die",She drowns,General,In cricket how many times does a full toss bounce,None,Science & Nature,Name the wild dogs of Australia.,Dingo -General,The lack of calcium in the diet causes what condition,Rickets,Entertainment,"In the children's tv series 'Sesame Street', what two characters were roomates?",Bert and Ernie,General,What is a group of this animal called: Mare,Stud -General,Which modern musical instrument evolved from the Sackbut?,Trombone,General,Which country has a map on it's flag,Cyprus,General,What is a group of this animal called: Ape,Shrewdness -General,International Phonetic Alphabet: C,Charlie,General,What would an antipyrhettic drug be used for,Reduce temperature,General,Bognor Java gets is on average 322 days annually what,Lightning strikes -General,Berlin stands on which river,Spree,Music,Ray Parker Junior Used To Perform With A Band Called Raydio Or The Juniors,Raydio, History & Holidays,How many gloves did Michael Jackson wear? ,One  -General,In which country was Ferdinand Porsche born,Austria,General,"In ballet, a pose in which one leg is raised in back or in front with knee bent, usually with one arm raised.",Attitude,General,Who spent years in nashville shopping demos recorded on a cassette recorder,Judds -General,Who had a number one hit with the song 'Two Little Boys',Rolf harris,General,Who shot abraham lincoln,John wilkes booth,Music,Open Road Was The Debut Solo Album Of Which Former Take That Member,Gary Barlow -General,What southern U.S. state capital is said to have been named for the Western & Atlantic Railroad,Atlanta,General,Walter raleigh 1992 - What Democratic hopeful's birth date received a draft lottery #311,Bill clinton,General,"A ""double sheet bend"" is a type of what",Knot -General,What game of chance is physically the most demanding for the loser?,Russian roulette,General,Who played the title role in the 1978 version of 'superman',Christopher, Geography,"What country is surrounded by Brazil, Argentina and Bolivia?",Paraguay -General,What is an Entr'acte in France,Interval in Theatre,General,Who are the Diascuri,Castor and Pollux,General,What magazine says We are Number one in a field of One,Mad -Geography,In Which City Is Marco Polo Airport? ,Venice ,Science & Nature, A newborn Chinese water __________ is so small it can almost be held in the palm of the hand.,Deer,General,Juliette binoch won an academy award for best supporting role in which film,English patient -General,Which King had Daniel thrown into the Lion's den,Darius,General,Oaks of dodona what did the white house have before it had an indoor bathroom,Telephone,General,"In July 1992, Tim Taylor married which member of the royal family",Lady helen windsor -Science & Nature,Which Car Was First Patented In 1909 ,Model T Ford ,General,Spheksophobia is the fear of,Wasps,General,"What type of creatures are the mythical Gelert, Argos, Luath and Covall?",Dogs -General,What's the only bird that can fly upside down,The hummingbird hummingbird,General,Which river flows through Munich,Isar,General,What genre of fiction is honored by the Nebula awards,Science fiction sci fi sci fi -Music,For Which Group Is Charlie Watts The Drummer,The Rolling Stones,General,"Which town in Brazil, 1,000 miles up the Amazon, was at one time the major port for the rubber trade",Manaus,General,Toxiphobia is a fear of _________,Poisons - History & Holidays,Which group had a Christmas No 1 with 'Lilly The Pink'' ,The Scaffold ,General,Which screenwriter has received the most Oscar nominations,Woody Allen,General,The Statue of Liberty stands on which island,Liberty island -General,Name Pluto's moon,Charon,General,British call this bird species tits - what do Americans call them,Chickadees,Geography,Name the sea west of Alaska.,Bering -Entertainment,"Who are the lead singers of the band ""Full Metal Racquets""?",John Mcenroe and Pat Cash,General,"Cocaine purified by heating with ether, and inhaled or smoked",Freebase,General,Alanis Morrisette appeared on what 80's cable children's show?,You Can't Do that On Television -General,Collective nouns a rag of what,Colts,General,Whose name translates as Emperor of all,Genghis Khan,Science & Nature,A group of kangaroos is known as a _______.,Troop -Music,In Which Country Was Bryan Adams Born,Canada,General,Persia became Iran in 1935 what was it before it was Persia,Iran,General,In what country is Legoland,Denmark -General,What is a fear of germs,Spermophobia,General,Who played queen amidala in the latest 'star wars' film,Natalie portman,General,Goldaming in Surrey was the first English town to have what,Electric street lighting -Science & Nature, The albatross drinks sea water. It has a special desalinization apparatus that strains out and excretes all excess __________,Salt,General,Photoaugliaphobia is the fear of,Glaring lights,General,"Who recorded the album ""free for all"" in 1976",Ted nugent -General,A fylfot is a heraldic name for what symbol,Swastika,General,What was unique about Pope Adrian IV,Englishman Nicholas Breakspear,General,What's krypton's state at standard temperature and pressure,Gaseous -General,The word coyote comes from which language,Aztec, History & Holidays,Who Released The 70's Album Entitled Rumours ,Fleetwood Mac ,General,Which company produced the first nylon,Dupont -General,Who created WinnieThe Pooh,A a milne,General,Ageusia is the loss of which sense,Taste,General,Moons of the faithful is the Chinese translation of what fruit,Apricot -General,"In england, what is the speaker of the house not allowed to do",Speak,General,What Is Collected By A Deltiologist,Postcards,Food & Drink,What is the world's best selling wine? ,Lambrusco  - Geography,What is the second largest ocean?,Atlantic Ocean, Geography,What is the basic unit of currency for Nigeria ?,Naira,Music,"Who thought up the name ""Beatles""?",Stu Sutcliffe -General,Which singer/actor was born with the christian names Harry Lillis,Bing crosby,General,What is the flower that stands for: alas! for my poro heart,Deep red carnation,General,Who became the first Prime Minister of Tanganyika in 1961,Julius nyerere -Music,Name The Brothers In Sparks,Ron & Russell Mael, History & Holidays,"In England Children Traditionally Put Out A Christmas Stocking For Santa, But In Holland What Do Dutch Children Traditionally Put Out For Santa To Fill ",A Clogs Or Sabots ,Sports & Leisure,How Many Consecutive Wimbledon Titles Did Bjorn Borg Win ,Five  -General, One who tells fortunes by the stars is a(n)________.,Astrologer, Geography,Which country has Ankara as its capital?,Turkey,General,What has 32 panels and 642 stitches,A football (soccer) -General,Fifty nine what is calcium oxide,Lime,General,The word planet comes from Greek what's it literally mean,Wanderers,Geography,Name the second largest country in South America.,Argentina -General,What is a pregnant goldfish,Twit,Music,"Which Song Recorded By Johnny Cash Starts With The Line ""I close my eyes and picture the emerald of the sea""",Forty Shades Of Green,Music,Jimmy Sommerville Of Bronski Beat Went On To Form What Band,The Communards -Science & Nature, There are about 130 species of __________,Owl,General,What is the nocturnal firefly,Beetle,General,Who once vowed to erect a statue to adolf hitler in kampala,Idi amin - History & Holidays,Which British prime minister died in 1965 ?,Winston Churchill,General,Where did Hendrik the Dutch boy stick his finger,Dyke,General,Which band reached number two in the charts in 1988 with the album The First of a Million Kisses,Fairground attraction -General,Hartford is the capital of which American state,Connecticut, History & Holidays,Who Sang El Condor Pasa (If I Could) ,Simon & Garfunkel ,Science & Nature, Hummingbirds cannot glide or soar as other bird do. They are the only bird that can __________,Hover continuously -General,What do you call a French Canadian pork pie,Tortierre,General,San Francisco by law you can't clean your car with what,Used Underware,General,Beaver What is Barbi's full name,Barbara Millicent Roberts -General,Evil Lynn Was The Girlfriend Of Which Very Popular 80's Cartoon Character,Skeletor,General,What is the common name for a Japanese dwarf tree?,Bonsai, Geography,In which country is Loch Ness?,Scotland -General,On which Far eastern island did Mick Jagger marry Jerry Hall,Bali,General,In what country did red onions originate,Italy,General,Sixty six mhz italy's equivalant to the dollar is ______,Lira -General,What does the hummingbird weigh less than,A penny, History & Holidays,On what day of the week did Solomon Grundy die?,Saturday,General,San Francisco lies on which dangerous geological feature,San andreas fault -General,In which country were modern banknotes first used,Sweden,General,"Who warned: ""there's a cancer growing on the presidency""",John dean iii,General,"If You Suffered From “ Peladophobia ” There Is Something About Certain People That You Really Really Do Not Like, What Is It?",Bald People -General,What name is given to the broad gap between the outermost and the brightest of Saturn's rings,Cassini division,Food & Drink,Which ingredient gives Earl Grey tea its distinctive flavour? ,Oil of Bergamot ,General,In heraldry an animal reguardant is doing what,Looking backwards -General,Of what are walrus tusks made,Ivory,Music,Which Song Ends With The Line God Speed Your Love To Me,Unchained Melody,General,Celcius what is an osteopath,Bone specialist -General,How many sheep are used to produce one angora sweater,None Angora comes from rabbits,Science & Nature,Where Is The Carotid Artery ,In The Neck ,General,In Maryland it is illegal to maltreat which creature,Oyster -General,What type of food is 'Limburger',Cheese,General,"Who composed ""The Fountains of Rome"" and ""The Pines of Rome""",Respighi,General,What part of your body contains vertebrae,Your spine -General,"Which mythical creature has a lion's head, a goat's body, and a dragon's tail",Chimaera,Art & Literature,"In the Dr Seuss books, which elephant hatched an egg?",Horton,Science & Nature,What Is Bronze An Alloy Of ,Copper & Zinc  -General,Little Eva introduced which dance in 1962,The Locomotion,General,What kind of wood is used on Rolls Royce dashboards,Walnut,General,The liquor Curacao is flavoured with what,Orange -Music,What Connects UK Number One Singles For Ozzy Osbourne And Frank Sinatra In 2003 And 1967 Respectively?,Dueted With Their Daughters,General,Which word links a type of bread and a cut of precious stone,Baguette, History & Holidays,Who was the most famous leader of the Carthagenians?,Hannibal -General,James Edgar in 1890 was the worlds first store what,Santa Clause,Science & Nature, 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,Music,"What Was The Highest UK Chart Position Reached By U2 In 1981 With The Single ""Gloria""?",55 -General,What is the fear of smells known as,Olfactophobia,General,"Which car company, originally called Horch after its founder, changed its name to its Latin equivalent",Audi,General,Nossa Senhora da Aparecida is the Patron Saint which country,Brazil -General,What is a Bodhran used in Ireland,Irish Drum over a frame,General,The giant Kvasir in Norse mythology has what power,Wisdom,General,In California it is illegal to do what in a hotel room,Peel an Onion -General,Heroin is derived from which plant?,Opium poppy,Geography,In what country is lahore ,Pakistan ,General,What sport introduced the term southpaw,Baseball -General,The Caucasus lie between which two stretches of water,Black and caspian sea's,General,What was abolished in the british empire in 1807,Slave trading,Music,Who Walked Off Stage On A 1995 USA Tour After Having A Pair Of Glasses Thrown At Him,Liam Gallagher -Science & Nature,From What Nut Would You Get Copra? ,Coconut ,Music,"""Peasants, Pigs & Astonauts"", Released In 1999 Was The Second Album By Which Band",Kula Shaker,General,Which Dickensian character had a nurse called Clara Peggotty,David copperfield -Science & Nature,Which month has a diamond as a birthstone,April,Entertainment,"What band recorded the 1978 hit album: ""Briefcase Full of Blues""?",The Blues Brothers,General,Who died whilst attempting to discover the source of the Nile,Stanley livingstone -Food & Drink,Which Country Is The Source Of Stilton Cheese ,England ,General,U.S. Captials - Ohio,Columbus,Entertainment,"In 'Star Wars', who was C3P0's sidekick?",R2D2 -General,"Who was the first lady to have made the ""old blue dress"" she wore to an inauguration",Rosalynn carter, History & Holidays,Frankish ruler Charles the Great is better known as _________.,Charlemagne,Sports & Leisure,Who did Boris Becker Beat to Win his first Wimbledon title ,Kevin Curren  -General,What is the widest river,Amazon,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,General,As Of 2008 Which Country Has Had More Winners Of The Eurovision Song Contest Than Any Other,India -General,Egypt Masbout - Armenia Sourg - Japan Koohii what is it,Coffee,Food & Drink,From Which Country Does Edam Cheese Originate ,Holland / The Netherlands ,Science & Nature,Which American Architect/Engineer Invented Geodesic Dome Construction ,Buckminster Fuller  -General,"""The Althing"" Is The Parliament Of Which Country",Iceland,General,Which hereditary genetic disorder is sometimes called Christmas Disease?,Heamophilia,Food & Drink,"Once upon a time, the consumption of foods made with what, often caused ergot poisoning (Holy fire or St. Anthony's fire), resulting in progressive gangrene and/or mental derangement ? Three letters ",Rye  -General,"Four legs good, two legs bad' is a quotation from which novel",Animal farm,General,Philophobia is the fear of,Falling in love,General,"In Greek mythology, whose companions were the argonauts",Jason -General,Tenzin Gyatso became what in 1937,Dali Lama,General,Who killed chicago,Al capone,General,"Which Shakespeare play features the characters Demetrius, Lysander, Helena and Hermia",A midsummer night's dream -Sports & Leisure,Who are the only 3 countries to have taken part in all of the summer & winter Olympic Games (PFE) ,"Great Britain , France and Switzerland ",General,Rennet' is an extract from the stomachs of which animal,Calves,General,"In the nursery rhyme, who were the three men in a tub","Butcher, baker," -General,Which Hollywood smoothie was born Dino Crocetti in 1917,Dean martin,Science & Nature,This term means 'cone-bearing trees'.,Conifers, History & Holidays,Which Founder Of The Organisation For Afro American Unity Was Murdered In Harlem On 21 February 1965 ,Malcolm X  - Geography,In which city is the Arch of Hadrian?,Athens,General,Where was the agen plum first planted,California,People & Places,Which Hollywood Actor Was Taken Into Custody At Sydney Airport In 2006 For Carrying Banned Products Into The Country In his Suitcase? ,Sylvester Stallone  -General,Sicily is the traditional source of which element,Sulphur,General,Scottish Hebrides island is defined a big enough sustain what,One Sheep,General,Duffel bags were made in Duffel - what country,Belgium -General,What is the fear of metal known as,Metallophobia,General,What is the young of this animal called: Pig,Piglet shoat farrow suckling,General,By US Congress law 1832 citizens should do what annually,Fasting and prayer -General,What Norse explorer introduced Christianity to Greenland around 1000 A.D.,Leif ericsson,General,What can last longer without water than a camel can,Rat,General,How many stars are there on the new zealand flag,Four -Food & Drink,What Animal Do You Obtain Venison From ,Deer ,Technology & Video Games,"What does the acronym ""NES"" stand for? ",Nintendo Entertainment System,General,Leonid Kravchuk became president of where in 1991,Ukraine -Food & Drink,Rickets is caused by a lack of which vitamin?,Vitamin D,Geography,Which South American Capital City Is Also The Name For A Variety Of Bean? ,Lima ,Food & Drink,What is the salted roe of a sturgeon called? ,Caviar  -General,A mouse's is bigger than an elephants - what,Sperm,General,In 1959 First astronauts - selection announced by,Nasa,General,What is a halberd a type of,Spear -Art & Literature,"Who is the author of ""Brave New World"" ?",Aldous Huxley,General,"According to the saying , what causes shepherd's delight",Red sky at night,General,Which houses fought the war of the roses,Lancaster and york - History & Holidays,What show featured Nell Carter as a larger than life housekeeper? ,Gimme a Break ,General,How many cylinders does a V-8 engine have,Eight,General,Archimedes lived in which city,Syracuse -General,Herman Zapf designed what,Dingbats font,Music,What is Paul McCartney's real first name?,James,General,"Football Team, buffalo _______",Bills - History & Holidays,*'Afternoon Delight'' was the only major hit for which one-hit-wonder group?* ,Starland Vocal Band ,General,Francis Octavia Smith rode Buttercup in 1950s TV who was she,Dale Evans Mrs Roy Rogers,General,The Academie Francaise ensures the purity of what,The French language -General,What us navy rank is indicated by three stripes,Commander, Geography,Guatemala is the capital of ______?,Guatemala,General,The Process Of Lachrymation Produces What,Tears -General,What rock group uses roman numerals on all of its album covers,Chicago,General,Who made the first practical microscope,Anton van leenwenhoek,General,The French call it L' Herbe Royal what do we call it,Basil -General,What New England peninsula did Bartholomew Gosnold mistakenly name a cape in 1602,Cape cod,Food & Drink,"Often Used In The Production Of Spirits, What Is The Fruit Of The Blackthorn Tree Called? ",A Sloe , History & Holidays,Who ordered the persecution of the Christians in which Peter and Paul died?,Nero -Science & Nature,What Is Dipsomania Another Name For ,Alcholism ,Music,"Which Steve ""Silk"" Hurley Single Was The First House Record To Top The Uk Charts In 1987",Jack Your Body, History & Holidays,At which hospital was the first British Heart Transplant operation performed in 1979? ,"Papworth, Cambridge " -General,In Baltimore it is illegal to take what to the movies,A Lion,Art & Literature,Who wrote 'Gone With The Wind'?,Margaret Mitchell,Music,"What Were The Band ""Yes "" Owners Of",A Lonely Heart -General,What is the fear of smells or odors known as,Osmophobia, History & Holidays,In What Year Was Queen Elizabeth The I Born ,1533 ,Music,What Instrument Does Sheila E Play,Drums / Percussion -General,What shakespearean play features iago,Othello,General,Which European city spends the most on the arts each year,Frankfurt,Music,Who Wrote The Lyrics To Starlight Express,Richard Stillgoe -General,Which fresh water fish has the Latin name 'Esox Lucius,Pike,Music,"Barry Manilow's ""Mandy"" Was The First Major Hit For Which Label",Arista,General,Who succeeded charles de gaulle as president of france,Georges pompidour -Sports & Leisure,What Are The Periods Of Play Called In A Game Of Polo? ,Chukkas ,General,"Which 1946 Louis Reard creation, was nicknamed ""four triangles of nothing""?",The Bikini,General,The Chronic Argonauts was the original title of what SF book,The Time Machine -Tech & Video Games,What does 'IBM' stand for?,International Business Machines,General,"What is defined as 'a dramatic but unstaged musical composition for soloists, chorus and orchestra, based on a religious theme'",Oratorio, History & Holidays,Is an icicle a Stalagmite or a Stalagtite ,Stalagtite  -Art & Literature,What was Lestat's last name?,De Lioncourt,General,What's the largest continent in the world,Asia,General,What country is the world's largest exporter of frog's legs,Japan -Entertainment,"He wrote the operas ""The Magic Flute"" and ""The Marriage of Figaro""",Wolfgang Amadeus Mozart,General,What is the longest running prime time cartoon show,The simpsons,Food & Drink,"Triple sec, tequila, and lemon or lime juice make up which type of cocktail ",Margarita  - Language,"Multiple Meanings: Slamming your hands together quickly, or a venereal disease.",Clap,General,Hugh Lofting created which fictional character,Dr Dolittle,Music,Weird Al Yankovic Had A Hit With A Parady Of A Michael Jackson Song What Was It,Beat It / Eat It -Geography,The Entrance To Which Bay Is Spanned By (The Golden Gate Bridge) ,San Francisco Bay ,General,What is the state bird of Nebraska,Western meadowlark,General,Whose flag has the national arms on one side and the treasury seal on the other,Paraguay -General,What planet did Gustav Holst omit from the planets suite,Earth,General,Whose books describe the career of 'Horatio Hornblower',C s forester,General,"Which area of Dorset which is not an island, is home to Corfe Castle and the town of Swanage?",Isle of Purbeck -General,The Bazuki is a traditional musical instrument of what country,Greece,General,In the film Bambi what is Bambi's first word,Bird,General,Where would you find the Forte and the Foible strong - weak,Sword blade – near hilt and tip -Food & Drink,This meat is used to make scaloppine.,Veal,General,"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,General,What does the latin 'carpe diem' mean ?,Seize the day -Music,Chain Reaction Was A Hit For Tina Turner Or Diana Ross,Diana Ross,Science & Nature, The __________ eagle of Africa hunts over a territory of 250 square miles a day.,Bateleur,General,A screwdriver becomes a fuzzy screw when you add what,Peach Schnapps -General,Bob Dylan said you should never trust anyone what?,Over 30,General,In which 1970's U.S. soap did actor John Forsythe star as 'Blake Carrington',Dynasty,General,What Nationality Is Lou Bega Of Mambo No.5 Fame,German -General,Who was the writer of the novel' Anna of the Five Towns',Arnold bennett,General,"In which 1949 film do Spencer Tracy and Katherine Hepbum play, married opposing lawyers in an attempted murder trial",Adam's rib,General,What is the major german airline (member of star alliance)?,Lufthansa -General,When was the Eiffel Tower completed,1859,General,In what country does Disney's Beauty and the Beast take place,France,General,What was the philosophy of Jean Paul Sartre called,Existentialism - History & Holidays,Which Spanish King Sent An Armada Against England In 1588? ,Philip II ,Sports & Leisure,How many players are there on a soccer team?,Eleven,General,Famous fictional character first appeared in Meet the Tiger 1928,Simon Templar Saint -Science & Nature," Guinea pigs were first domesticated by the __________, who used them for food, in sacrifices, and as household pets.",Incas,Science & Nature, There is no mention of cats or rats in the __________,Bible,General,What is the only land mammal native to New Zealand,Bat -General,What does 'n.f.l' mean,National football league,Science & Nature,What travels in gaggles?,Geese,Art & Literature,"What story features flopsy, mopsy and cottontail?",Peter Rabbit -General,Place where weapons are made or stored,Arsenal, History & Holidays,Where was Napoleon defeated?,Waterloo, History & Holidays,Which Singer Was 'Driving Home For Christmas'' In 1988 ,Chris Rea  -General,What was the only team to win two world series in the 1980s,Los angeles,General,In what Australian state would you find Ipswich,Queensland,General,The application of science to law?,Forensic science -General,Where would you find the Spanish steps,Rome,General,"Which flag is similar in design to the Union Jack but is made up of red, white and green?",Basque Flag,General,In what TV series did we meet Admiral Nelson,Voyage to the bottom of the sea -General,What country officially limits women to one child,China,Music,Who made his debut in the singles chart 26 years ago with ‘Watching the Detectives’?,Elvis Costello,General,"Which Saint was canonised in 1920, 489 years after she was burned at the stake",Joan of arc -General,"What are or were Tester, Royal, Mark and Noble",Old English coins,General,What do you call substances that will not let thermal heat pass through them,Insulators,General,"Extensive cultivation of plants to yield food, feed, or fiber; to provide medicinal or industrial ingredients; or to grow ornamental products",Crop farming -Science & Nature,What type of animal is a wallaby?,Marsupial,General,What Form Of Transport Still In Use Today Was Invented Back In 1760 By Joseph Merlin?,Roller Skate,General,Who became president of south africa in 1989,F.w de klerk -General,In the Flintstones what was Betty Rubbles maiden name,Betty Jean McBricker,General,Neptune was the roman god of the ______,Sea,General,"What does thumper call ice in ""bambi""",Stiff water -General,Kyphophobia is the fear of,Stooping,General,Clearly the best player on this channel is?,Mingtea,General,Who invented the smallpox vaccine,Edward jenner -General,What is the Capital of: Venezuela,Caracas,General,Which Country's Flag (Bizarrely) Has A Garden Hoe And A Kalashnikov Rifle Inside A Star,Mozambique,General,In Morse code what letter is represented by .- Dot Dash,Letter A -General,Air under pressure greater than that of the atmosphere,Compressed air,General,Who was the first person to present an Oscar (Academy Award) to himself?,Walt Disney,General,A pearmain is what type of fruit,Apple -General,"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,General,Which is the only liquid metal element at room temperature,Mercury,General,"After spending hours working at a computer display, what colour will a blank piece of white paper probably appear to be",Pink -General,What first crossed the English Channel in 1959,Prototype hovercraft,General,How loud can a human snore be,69 decibels,General,What is Winnie The Pooh's real name,Edward bear - Geography,Where is area 51 generally said to be?,Groom Lake,General,Who was the star of The Sixth Sense,Bruce Willis,General,For what did the knights of the round table search,The holy grail -Entertainment,"In 'La Traviata', who sings 'Sempre Libera'?",Violetta,General,What tv show was hosted by wine nipping culinary artist graham kerr,Galloping gourmet,General,The Aga Khan is the leader of the largest branch of which religious sect?,Ismali Muslims -General,Which dance in treble time originated as a peasant dance in France and was adopted by the French court in the 18th century,Minuet,General,"Countries of the world:central Europe, the capital is Bratislava",Slovakia,General,What is the name given to the switching of letters in an expression (e.g. saying Jag of Flapan instead of Flag of Japan)?,Spoonerism -Food & Drink,What Was The Original Name For The Sweets Now Known As Starbursts? ,Opal Fruits ,Science & Nature,Coal is composed of which element? ,Carbon ,General,Who invented the geodesic dome,Buckminster fuller -General,Which American state is known as the Lone Star State ?,Texas,Sports & Leisure,Which Austrian Won Four World Downhill Championships In The 1970's ,Franz Klammer ,Science & Nature,The Komodo Dragon is native to which country? ,Indonesia  -General,"The ""o"" when used as a prefix in irish surnames means what",Descendant of,General,Who wrote the Brandenburg Concertos,J s bach,Music,With Which Particular Instrument Would You Associate Gerry Mulligan,Baritone Sax -General,Name the science fiction writer who lives in Sri Lanka,Arthur C Clark,General,Name the eating disorder that suppresses the urge to eat causing the sufferer to lose huge ammounts of weight,Anorexia,General,"Which British king said 'I don't like abroad, I've been there'",George v -General,Nosemaphobia is the fear of,Illness,Sports & Leisure,The Pen Hold Grip Is Often Used In Which Sport? ,Table Tennis ,Science & Nature,What sort of creature is a fluke? ,Worm  -General,The city of Rouen stands on which river,Seine,Sports & Leisure,What does TKO stand for?,Technical Knock Out,General,"On The London Underground What Is The Only Line To Connect To Every Other Line On The System, At Some Point",Jubilee Line -General,The nationalist Chinese occupy this island,Taiwan formosa,General,What make of car is an espace,Renault,Science & Nature,What are the pouched animals called?,Marsupials -General,What is the Capital of: Iceland,Reykjavik,General,"Which character did Lewis Carroll's Alice meet, sitting on a mushroom smoking a 'long hookah'",The caterpillar,General,Which balding actor donned a pigtail for his role in the film Medicine Man,Sean connery -General,"Which film, directed by Sydney Pollack, won the 1985 Academy Award for Best Picture",Out of africa,General,In Which US City Were The Band REM Formed,Anthens (Georgia),General,"What TV actress co-starred in 1986's ""Howard The Duck""?",Lea Thompson -General,"In cooking, what are Brochettes",Pieces of meat cooked on a skewer,General,"On a dartboard, what number is on top",20,General,What is the second longest word in the English language,"Antidisestablishmenterianism""" -General,"The leaces of the tomato plant are poisonous, they contain ___.?",Strychnine,Sports & Leisure,Which cricket player holds the world record for the highest individual score in first-class cricket?,Brian Lara,General,How many letters are used for roman numerals,Seven - Geography,What is the basic unit of currency for Tonga ?,Pa'anga, History & Holidays,Which band had a 1977 summer No 1 hit with `So You Win Again'? ,Hot Chocolate ,General,What's the only element capable of tarnishing and damaging gold,Mercury -General,In a Horney Monkey there is banana crème de menthe and what,Baileys,General,What's the official language of st lucia,English,Music,"Which Singer Was Born In Brixton London, On The 8 th January 1947?",David Bowie -Entertainment,What do the initials B.B. stand for in B.B. King's name?,Blues Boy,General,Mr Cat Poop was the Chinese translation what Nicholson film,As Good as it Gets,General,What nationality was tennis star vitas gerulaitis,American -General,Which album is on the Billboard top 200 the longest since 1973,Pink Floyd Dark side of the Moon,Religion & Mythology,Who was the Greek god of wine?,Dionysus,Geography,What city was filmore west in ,San francisco  -General,An elephants penis is shaped like what,Letter S,General,In what game might you use a flat stick called a kip,Two Up,Entertainment,Which TV horse could talk?,Mr. Ed -Entertainment,Name the musical film named after a state.,Oklahoma,General,"In 1940, Walt Disney's _________ was the first film in history to use stereophonic sound. ",Fantasia,Geography,Which Is The Largest Of The Greek Islands ,Crete  -General,Whose victories in the 1936 Olympics upset Hitler,Jesse owens,Music,What Was Carly Simons Biggest UK Hit Allegedly Written About Warren Beatty,You're So Vain,General,What is the fear of taking medicine known as,Pharmacophobia -General,The pharaoh hound is the only dog that does what,Blushes - Nose and ears redden,Geography,Which Italian City Is Famous For Its Leaning Tower ,Pisa ,Science & Nature," There are no wild deer of any kind in Australia, and the small red deer is the only one found in __________",Africa -General,The Prince of Demons in the new testament was called ___________,Beelzebub,General,Where is the fashion capital,"Milan, italy",General,Andy Green first broke the sound barrier on land in what car,Thrust SSC -General,"Why is so hard to start a fire in La Paz, Bolivia",Little oxygen, Language,What is the Old English word for 'sneeze'?,Fneasan, Geography,In which city is Wembley Stadium?,London -General,"Which is the nearest galaxy to our own, excluding the Magellanic Clouds",Andromeda,General,Which 19th Century novelist's writings included travel sketches called Pictures From Italy and American Notes,Charles dickens,General,What links - Goa - Kerula - Assam - Bihar,India -General,What is the essential ingredient in a Mornay sauce,Cheese,General,What is a group of oysters,Bed,General,In which film did Gregory Peck pretend to have his hand eaten by a rock,Roman holiday -General,Name the largest Mediterranean island,Sicily,Entertainment,In this 1968 film the husband of an unsuspecting young wife becomes involved with a witch's coven.,Rosemary's Baby,General,Thomas and Martha were the parents of which hero,Batman -Music,Which Famous Fashion Designer Was Co-Owner Of Malcolm McLarens Sex Cloths Shop In Londons Kings Road,Vivienne Westwood, Geography,What is the capital of Equatorial Guinea?,Malabo,General,Who ran the first marathon,Phidipedes -General,What currency consists of 100 Groschen,Austrian Schilling,General,Effect A complex alcohol constituent of all animal fats and oils,Cholesterol,General,What was the first event decided at the 1896 olympics,Triple jump -General,With which musical instrument do you associate Jacqueline Du Pre,Cello,General,When was insulin discovered,1922,General,What is a Caldera,Depression left by volcano -General,What are Ren and Stimpy's last names?,Ren Hoëk Stimpy Cadoogan,Music,Number of Beatles kids,10; grandkids: 1,Music,In Which Year Did Bucks Fizz Win The Eurovision Song Contest,1981 -General,The international vehicle registration letters RCH denotes which country,Chile,Toys & Games,Frank Lloyd Wright son John invented these after watching workers move timber.,Lincoln logs, Geography,What is the capital of Iran ?,Tehran -General,In Star Trek who rules the Ferengi,Grand Nagus,General,"In solo whist, how many tricks must a player take in order to win a call of ""Abundance",Nine,General,"What - advertised phrase ""Even your best friends wont tell you""",Listerine mouth wash -General,"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,General,What country consumes the most coffee per capita 25 Lb,Finland,General,"Creation of programs, databases etc.for computer applications",Authoring -General,Who wrote The World According to Garp,John irving,General,What would be the defining characteristic of a narcissistic person,Vanity, History & Holidays,Whose Death In 1965 Prompted President Johnson That All American Flags The World Over Be Flown At Half Mast A Mark Of Respect Never Before Accorded To A Foreigner ,Winston Churchill  -General,What language gave us the words kimono & futon,Japanese, History & Holidays,Who was the first u.s president born outside the orginal 13 states ,Abraham lincoln ,General,What is 'old faithful',Geyser -General,Who wrote the vampire series that featured lestat as the main character,Anne,General,In Verdi's opera Rigoletto what is the occupation of Rigoletto,Court jester,Art & Literature,Who Wrote The Adventures Of Huckleberry Finn ,Mark Twain  -General,Only humans and what primate can have blue eyes,Black Lemurs,General,In what city would you find the Spanish Riding School,Vienna,General,Which group's first release was 'i ain't gonna eat out my heart anymore',Rascals -Music,Which American Singer Came Out As A Lesbian At A 1993 Presidential Inauguration Ball For Bill Clinton,Melissa Etheridge,General,The Jelbukk is a Swedish Xmas decoration - what is it,Straw Goat,General,What kind of creature is a centaur,"Half man, half horse" -General,What 80s band had a hit with Tainted Love,Soft-Cell,Science & Nature,How many chromosomes do each body cell contain?,Forty six,General,"Using morse code, what is trasmitting using 3 dots, 3 dashes and 3 dots",Distress signal -General,"Buddy Holly Surprisngly Only Topped The Uk Singles With One Song ""Can You Name It""",Doesn't Really Matter Anymore,Entertainment,"Name the Disney cartoon in which the character ""Belle"" appears.",Beauty and the Beast,General,Vegetarians do what more than carnivore / omnivores,Fart -General,How did Scotland's Robert the Bruce die,From Leprosy,Music,"5 Members Of The Original Human league Line Up, Split To Form 2 Other Bands (PFE)","Heaven 17, ABC",General,In the acronym 'laser' what does the L stand for,Light -General,The Greek version of what is called the Septuagint,Old Testament,General,The average man or woman spends one year of their life - what,On the Telephone,Food & Drink,Which US state exports the most wine? ,California  -General,What animal tailhairs are traditionally used in making violin bows,Horse,General,A female pigeon cannot lay an egg unless she sees what,Another pigeon – or reflection,Food & Drink,What Traditionally Might You Eat On Shrove Tuesday ,Pancakes  -General,Who directed the film Gandhi,Richard attenborough,General,What character was played by phil silvers on the phil silvers show,Sgt ernie,Science & Nature,Which Bird Was Depicted On The Rear Of The Farthing Coin ,Wren  -General,"In 1793, _____ reaches the pacific",Alexander mackenzie,General,Name the wife who survived Henry VIII,Catherine parr,General,"Which Famous Singer Fronted A Band Called ""Grand Central"" With Prince On Guitar",Alexander O Neil -General,What is an eidograph used for?,Enlarging or Reducing Drawings,People & Places,Which President Of America Was A Peanut Farmer ,Jimmy Carter ,Sports & Leisure,Who was Ben Johnson running for when disqualified in Seoul? ,Canada  -General,In which USA state is Raleigh the capital,North carolina,Science & Nature,In 1888 What Did George Eastman Call His Hand Held Box Camera The First Of Its Kind ,The Kodak Camera ,Science & Nature,In What Environment Did Ichthysaurs Live ,Water  -General,What is the bundestag,German parliament,Music,What Was A Castrato,"A Male Singer, Castrated As A Boy To Maintain A Child's Pitch",General,What was Bogart's full characters name in Casablanca,Rick Blain - Geography,What river has the largest drainage basin?,Amazon,General,"In Which Movie Will You Find The Characters “Mikey Walsh, Lawrence Cohen, Clark Devereaux Stef Steinbrenner & Richard Wang”",The Goonies,General,Who sang for Lauren Bacall in To Have and Have Not,Andy Williams - History & Holidays,Who Released The 70's Album Entitled In Rock ,Deep Purple ,General,Where would you find the yoruba people,Nigeria, History & Holidays,What Country Is Dracula Said To Come From ,Transylvania  -General,"On Three's Company,what is the name ""Chrissy"" is short for?",Christmas,Food & Drink, Is a schnitzel a sweet or a savoury?,Savoury,General,What is the Capital of: Cocos Islands,West island -Geography,In Which US State Is The City Of New Orleans? ,Louisiana ,General,Who wrote the book 'Portrait of a Lady',Henry james,General,What is the fear of russians known as,Russophobia -General,Every citizen of Kentucky must do what by law annually,Take a bath,General,"Which Us State Goes By The Nickname ""The Sooner stae""",Oklahoma,General,Name the British painter who is the grandson of Sigmund Freud,Lucian freud -Music,Name The Scaffold First Chart Single,Lily The Pink,Sports & Leisure,The Americas Cup Is In Which Sport ,Sailing ,General,Parathesia is a medical condition with what common term,Pins and Needles -Geography,Which of the U.S. states borders only one other state,Maine,General,Which comic character was dynamited to death in issue 428,Robin,General,Montezuma's nephew Cuitlahac name means what,Plenty of Excrement -Music,"Instrumentally , What's The Connection Between Jimmy Smith, Booker T, & Billy Preston",Organ,Music,Who Founded The Motown Label,Berry Gordy Jnr,General,Berry Gordy Was The Founder Of What Famous Corporation,Motown -Music,What Does The M Stand For In The Band M People?,Manchester,General,Which Swedish naturalist developed the system of plant and animal classification which is still used today,Carolus linnaeus,General,How did Lavan in Utah get its name,Its Naval backwards middle of Utah -General,A lion and a sword appear on what countries flag,Sri Lanka,Music,Cash & Carry First Recorded The Birdie Song But Who Had The Hit,"""The Tweets""",People & Places,What Is Elton Johns Middle Name ,Hercules  -General,"What famous brothers lived at hawthorn hill in dayton, ohio",Wright brothers,General,Tokyo is the capital of ______,Japan,Music,When Sandie Shaw Won The Eurovision Song Contest in 1967 There Was Something Unusual About Her Performance Which Has Never Been Repeated What Was It,She Performed Barefoot -General,In Dyersberg Tennessee its illegal for a woman to what to a man,Call for a date,General,"""Myosotis"" Is The Latin Name For Which Type Of Flower",Forget Me Not,General,Theatrophobia is a fear of ______,Theatres -General,"Who Provided The Backing Vocals On Lionel Richies Song ""All Night Long""",Richard Marx,General,Who failed his entrance exams to school aged 16,Einstein – Zurich poly,General,Temporary encampment without tents,Bivouac -General,In which ocean would you find the islands of Sao Tome and Principe,Atlantic,General,The Jewish prayer for the dead Kaddish is in what language,Written Hebrew but in Aramaic,Science & Nature,What name is given to a chemical reaction which gives out heat ?,Exothermic -Music,"Who Endorsed ""Love In An Elevator""",Aerosmith,Science & Nature,What Is Charles E 'Chuck' Yeagers Claim To Fame ,First Man To Fly Faster Than Sound ,General,What literary character was born on September 22 1290,Hobbit Bilbo Baggins -General,Dephlogisticated air' was the name given by Joseph Priestley to which gas,Oxygen,General,At Waterloo who commanded the Prussian troops,Marshal Blucher,General,Sperrylite is the ore what is extracted,Platinum -General,What country invented cheesecake,Greece,Sports & Leisure,How Many Diciplines Are There In Mens Gymnastics ,"6 (Vault, Rings, Floor, High Bar, Para Bars, Horse) ",General,Wool sorters disease is actually what,Anthrax -General,What term was coined July 17th 1942 issue of Yank magazine,G I Joe,General,As what is the Devonian period also known,Age of fish,General,In Texas it is illegal to have oral sex with what,A Chicken -General,What name is given to small or immature cucumbers usually grown to be pickled,Gherkins,Music,"""Love And Understanding"" Was A Hit In 1991 For Which Singer",Cher,General,"Who wrote the opera ""the trojans""",Hector berlioz -Religion & Mythology,"Who, in Egyptian mythology, is the god of the dead?",Anubis,Science & Nature,"Epidermal cells, palisade cells, and veins are parts of a(n) ________.",Leaf,General,What was the name of the Jester in As You Like It,Touchstone -General,Charcoal Sulphur Saltpetre make what,Gunpowder,General,What product was advertised by the first commercial to portray nudity on us televison (1987),Viola brassieres,Music,Which Fiddle Playing Singer Is Backed By His Band Union Station,Alison Krauss -Science & Nature, A skunk will not __________ and throw its scent at the same time.,Bite,General,The letter B comes from Egyptian hieroglyphics meaning what,House,Science & Nature,Name the largest living bird.,Ostrich - History & Holidays,"Which Coronation street character, played by Jean Alexander, made her last appearance on Christmas Day 1987 ",Hilda Ogden ,General,"Admiral', 'soda', & 'zero' ultimately derive from which language",Arabic,General,"Who was known as ""The Father of the H Bomb""",Edward teller -Science & Nature, An ostrich's eye is bigger than its __________,Brain,General,If you were drinking Cobra beer in what country would you be,India,Geography,Which City Is The Capital Of The Phillipines ,Manilla  -General,In Topeka Kansas its illegal to install what in your house,Bathtubs,General,Which Company Published The Harry Potter Novels,Bloomsbury,General,What is the young of this animal called: Beasts of prey,Whelp -General,Who is the only real person to ever have been the head on a pez dispenser,Betsy ross,Food & Drink,Cumberland Sauce Is Tradiotionally Served Cold With What ,Venison ,Music,"Which Guitarist Joined RCA In 1947 & Was Put In Charge Of The Label's Nashville Studio In 1955, Where He Helped Further The Careers Of Among Others, Jim Reeve's , Don Gibson, Elvis Presley",Chet Atkins -General,Newkirk c3p0 is the first character to speak in which film,Star wars,General,How much does a cubic meter of water weigh?,One Ton,General,What english county has the smallest perimeter,Isle of wight -General,Guy Blaine is the latest boyfriend of which famous lady,Barbie,General,What is the name of the cat in the smurfs?,Azriel, History & Holidays,What 'SN' Do You Call An American Holy Man Who's Strapped For Cash ,Saint Nickle-Less  -General,What album cover (by the Rolling Stones) had a zip on the side,Sticky Fingers,General,The English city of Salisbury stands on which river,Avon,General,Kaka means parrot in which language,Maori -Art & Literature,Who was the human companion of Willow?,Mad Mardigan,General,What was the name of Rip Van Winkles dog,Wolf,General,Who built the 'Cherokee' and 'Comanche' aircraft?,Piper -General,In Which Country Will Yound Find The Worlds Largest Whiskey Distillery,Japan (Suntori),General,What is the fear of bald people known as,Peladophobia,General,How many strings on a seven string guitar?,Seven -General,What sport uses a map & a compass,Orienteering,General,The word Sahara is Arabic for what,Desert,General,In Hebrew what does Am rotze min mean (ah-knee ro-tsay),I want sex -General,Kerkira is the Greek name for what Island,Corfu,General,What famous Wham! frontman went on to record a multiplatinum record in 1987?,George Michael,General,What is the smallest frog,Gold frog -General,What is the capital of california,Sacramento,Music,"Who Had A Hit With ""Heaven Is A Place On Earth"" In 1987",Belinda Carlisle,General,Which quiz program never had contestants only contenders,Mastermind -General,"Who, in egyptian mythology, is the god of the dead",Aker, History & Holidays,In Which Tv Show Might You Encounter 'The Mystery Machine' ,Scooby Doo ,Geography,Which Is The Largest Island In The Caribbean? ,Cuba  -People & Places,Who Is Gazza ,Paul Gascoigne , Geography,What is the capital of The Bahamas ?,Nassau,General,What country do Great Danes come from,Germany -General,What vegetable comes last in the dictionary,Zucchini,General,"What is the ""bubonic plaque"" is know as the_________",Black death,Art & Literature,"In 'Romeo and Juliet', who said 'I have a faint cold, fear thrills through my veins'?",Juliet -General,Branch of biology dealing with the development of the animal embryo,Embryology,General,What has albumen and a yolk,Egg,General,What U.S. state borders the most Canadian provinces,Montana -General,On which river does the U.S. capital Washington D.C. stand,Potomac, History & Holidays,Which Famous Horror Actor Provided The Narration to Michael Jacksons Song & Short Mobie 'Thriller' ,Vincent Price ,General,What wwi carrier pigeon helped save the lost battalion,Cher ami -General,What is the sum of 2a + 5a,7a,General,Who was the greek god of the sea,Poseidon,Music,Who Had A Hit With Long Haired Lover From Liverpool,Jimmy Osmond -General,The name Jesse means what in Hebrew,Wealth,General,Spain's equivalant to the dollar is ______,Peseta,General,"What is the English nickname of Beethoven's opus 91, written to commemorate Wellington's victory at Vitoria",Battle symphony -Music,The Appleby Sisters From The Stock Aitken And Waterman Stable Were Better Known As Who,Mel & Kim,Science & Nature, __________ need about 2 tablespoonfuls of blood each day. The creature is able to extract its dinner in approximately 20 minutes.,Vampire bats,General,The Uffizi is a museum and art gallery in which European city,Florence -General,"What is the Capital of: Bahamas, The",Nassau, History & Holidays,Where Was Napoleon Bonaparte Born? ,Corsica ,General,Where did little miss muffet sit,On her tuffet -General,What is the singular of gladioli,Gladiolus,General,What is the Zodiac,A series of twelve fixed stars 12 fixed stars,General,Which order of monks are known as 'Blackfriars'?,Dominicans -General,"With A Border Of 233,000 Miles What Is The Largest Country In Europe","Ukraine (603,000) Sq Km",General,All the pictures of which king are always shown in profile,King of Diamonds,Music,"""You Might Think"" Was A Hit for The Cars Or Billy Joel",The Cars -General,Which new-wave band rocked the Casbah,The Clash,General,What was the canadian literacy rate in 1987,99%,General,Cape Comorin is the most southerly point of where,India -General,What is commited if a person murders his father,Patricide,General,June 1611 what English navigator was cast adrift by mutineers,Henry Hudson,General,"What links Sissinnius, Zosimus, Liberius, Sergius V1,Victor II",Popes -Music,Whose Debut Album Was Entitled Leisure In 1991,Blur,General,Which author whose name means flowering tree got OBE,Ngaio Marsh – mystery writer,General,"In The World Of Science ""Ceres"" Is The Largest Known What",Asteroid -Music,"Who Had A Hit With The Song ""The Greatest Love Of All""",Whitney Houston, History & Holidays,Where did the bayonet originate?,"Bayonne, France",General,Diving sea bird with black plumage,Cormorant -General,"Which us state is named from the spanish for ""snow clad""",Nevada, Geography,Helena is the capital of ______?,Montana,General,American comes from USA what someone from Monaco called,Monagasque -Science & Nature,What Type Of Fish Is The Dog Fish? ,A Shark ,General,And again in 1995 what was the one given to boys in USA,Michael,Food & Drink,What Is Usually Served With A Fruit Fondue ,Chocolate  -General,What Does An Ungulate Animal Have?,Hooves,Geography,In which continent would you find the mekong river ,Asia ,General,With which country did Britain break off diplomatic relations in February 1991,Iraq -General,"Football Team, seattle ________",Seahawks,General,What shook San Francisco in 1906,Earthquake,General,In Germany what are the Neubaustrecke,High Speed Railways -General,What is the study of the composition of substances and the changes they undergo,Chemistry,General,"In one of donald horne's novels, who was 'the lucky country",Australia,Entertainment,"Who played the lead in the movie ""Castaway""?",Tom Hanks -Music,What Was Elton Johns Chart Topping Album Of 1990,Sleeping In The Past,Music,According To the Lyrics Of One Of His Songs Where Did Paul Young Call Gome,Wherever He Laid His Hat,Music,"Who Released An Album In The Guise Of A Fictitious Singer Entitled ""In The Life Of Chris Gaines"" In 1999",Garth Brooks -Science & Nature," The black bear is not always black. It can be brown, cinnamon, __________, and sometimes a bluish color.",Yellow,General,This french actor appeared in 'The Big Blue' and 'The Professional'.,Jean Reno,General,This is required to make all electric things work,Electricity -General,"Vietnam, laos, cambodia, thailand and malaysia is known by what name",Indochina,Geography,What two countries do tyroleans come from ,Austria and italy ,General,This date is the date in the middle of the year.?,2nd July -General,The Dome of the Rock is a shrine in which Middle Eastern city,Jerusalem,Science & Nature,"What Mammal Of Northern Europe, Asia & North America Is Sometimes Called A Glutton ",Wolverine ,General,Jacqueline Du Prey is a master on what instrument,Cello -General,What were the old hecklers in the Muppet show named after,New York Hotels Waldorf Stadler,General,Who's first film (THX1138) flopped in 1971,George Lucas,Science & Nature,Water freezes at __ degrees Fahrenheit.,32 -General,USA has most cars what country has second most,Japan,General,Who is the Patron Saint of bricklayers,St Steven,Science & Nature, There are more than 450 species of __________ throughout the world.,Finches -General,What is an insect called while it is changing its form inside a cocoon,Pupa,Geography,"What continent contains queen maud land, wilkes land and bird land ",Antarctica ,General,A cantaloupe is a small what,Melon -General,Which country in the world produces the most mangos,India,General,Year that Viking I landed on Mars,1976,Science & Nature,At 3 Feet In Diameter The Rafflesia Has The Largest Single Flower Of Any Plant In The World But Where In The World Does It Grow ,Borneo & Sumatra  -Music,"Chuck Berry, Bo Diddley, Howlin' Wolf Name The Label That Linked Them",Chess,Science & Nature,What is the astronomical name for a group of stars?,Constellation, Geography,What is the capital of Hawaii?,Honolulu -Sports & Leisure,How many hoops are used in a game of croquet? ,6 ,General,Between 15 and 20% of what disappear from shops each year,Supermarket Trolleys,General,Who proposed the theory of natural selection,Charles darwin -Science & Nature,What is a group of whales called,A pod,General,What short-lived tv series starred ice-cube,The watcher,General,What greeting did lionel richie take to the top in 1984,Hello -General,In Star Trek Generation what does Captain Picard drink,Earl Grey Hot,General,What nationality is the keyboards wizard Vangelis,Greek,Technology & Video Games,Which Writer established the three laws of robotics?,Isaac Asimov -Science & Nature,How Far Could You Draw Out One Gram Of Gold ,"2,400 Metres ",Science & Nature,The teeth used for biting or cutting are known as _______.,Incisors,Sports & Leisure,Who Was The First Professional Footballer To Score 100 Goals In Both Scotland And England? ,Kenny Dalglish  -General,What is the Capital of: Trinidad and Tobago,Port-of-spain,General,"Who recorded the 1997 album ""Flaming Pie""",Paul mccartney, Geography,"What river is called ""Old Man River""?",Mississippi -Art & Literature,Who Penned the Novel 'The Pelican Brief'' That Was Made Into A Film Starring Julia Roberts And Denzil Washington? ,John Grisham ,General,Who owns: almond joy candy,Hershey,General,Who was napoleon's first wife,Josephine -General,"Who said about criticism "" I cry all the way to the bank """,Liberace,General,"Who sang the Song ""American Pie""?",Don Mclean,Science & Nature,This is the heaviest naturally occurring element.,Uranium -General,Yellow gold contains 10% of,Copper,Music,Who released an album titled Forever Changes?,Love, History & Holidays,Which city is believed to be the birthplace of Jesus of Nazareth? ,Bethlehem  -General,What is abyssinia known as today,Ethiopia,Art & Literature,Who Painted The Last Supper ,Leonardo Da Vinci ,People & Places,Which Actor Was Charged With Lewd Behavoir In 1995 ,Hugh Grant  -Music,Who was Glad All Over in their No1 hit from 1963?,Dave Clark Five,Entertainment,"Who produced, directed and starred in ""Citizen Kane""?",Orson Welles,Music,"Who Dished Up ""Summer In The City""",The Lovin Spoonful -General,"Whose grandson got the first phone call from a commercial cellular system, in 1983",Alexander graham bell's alexander graham bells alexander graham bell,General,Where in the world can you see the sun rise Pacific set Atlantic,Panama on Isthmus,General,An Intente is a players manager in what sport,Jai Alai -Science & Nature," A hippopotamus has a stomach 10 feet long, capable of holding 6 bushels of __________",Grass,Science & Nature,Where Do Birds Of Paradise Come From? ,New Guinea ,General,In an orchestra which instrument has the greatest number,Violins -Art & Literature,What Type Of Animal Is Rupert The Bears Best Friend Bill? ,Badger ,General,Grolsch lager comes from what country,Holland,General,What is a Rocky mountain canary,A Donkey -General,What is measured on the Torro scale,Tornados,Sports & Leisure,Who was the first black athelete to captain Great Britain's men's team? ,Kris Akabusi ,General,"What ""W"" word describes the money people earn for their work",Wages - History & Holidays,Which British coin ceased to be legal tender in 1960? ,Farthing ,Science & Nature,A flat_bottomed conical laboratory flask with a narrow neck is called a(n) __________.,Erlenmeyer,Music,What Was The Stranglers Biggest Hit,Golden Brown -General,Opaque 2 is a modern variety of which cereal crop,Maize,Sports & Leisure,Which Darts World Champion Of The 80's Had the First Names Of John Thomas? ,Jocky Wilson ,General,In 1952 PM Winston Churchill announced that Britain had its own,Atomic bomb -General,Which film actor's real name was Reginald Truscott-Jones,Ray milland,General,Complete this saying 'All ship shape and',Bristol fashion,General,What french word describes the painting technique which uses separate dots of pure colour instead of mixed pigments,Pontillism -Entertainment,Which magician did Lothar assist?,Mandrake,General,What Pulitzer prize winning novelist ran for mayor of New York City,Norman mailer,General,Jack Ketch 1663 1686 had what job,Hangman - Geography,The Little Mermaid is found in the harbour of which city?,Copenhagen,Music,What Was The Title Of John Lennons 2nd Book,A Spaniard In The Works,General,What is the fear of rectum known as,Proctophobia -General,On Earth what would you find in an orbit,Eyeball - orbits eye socket skull,Science & Nature,The tides on the earth's oceans are actually created by gravitational pull from the ____.,Moon,Food & Drink,What Type Of Star Is Awarded To Restaurants Where The food Is Of Exceptional Quality ,Michelin Star  -Sports & Leisure,How Long Does A Game Of Field Hockey Last? ,70 Minutes ,General,Married men do it twice as often as single men – what,Change Underwear,General,"Which Cartoon Character Is Knon As ""Oui Oui"" In France",Noddy -General,What became the biggest use for aluminum starting in 1960,Tin cans,Science & Nature, Ostriches live about 75 years and can reproduce for __________,50 Years, History & Holidays,Who Was The First Us President To Take Up Residence In The Whitehouse ,John Adams  -General,Who wrote the novel 'Les Miserables',Victor hugo,General,What chemical element's discovery in 1774 made bleached paper possible,Chlorine,General,In the 70s who played The Bionic Woman,Lindsey Wagner -General,What is a group of starlings,Murmuration,Science & Nature,What Is The Main Difference Between A Monkey And An Ape? ,Monkeys Have Tails ,General,Instrument for measuring radio activity,Geiger counter -General,What links Mozart's Don Giovanni and Bizet's Carmen location,Set in Seville in Spain,General,With which of his novels did Michael Odantje jointly win the Booker Prize,The english patient,Music,Who Wrote & Performed My Sweet Lord In 1971,George Harrison -General,What was the first nationally released film with a PG 13 rating,Red Dawn,General,What is the scientific study of the body of man and lower animals called,Anatomy,General,Where is Shangri-La supposed to be,Himalayas -General,What is the world's largest water fowl,Trumpeter swan,Music,"Whose First Record Was A Rocker Called ""Ooby Dooby""",Roy Orbison,Food & Drink,What drink did Dom Perignon invent? ,Champagne  - History & Holidays,Which two European leaders signed a non-aggression pact on 23 August 1939? ,Hitler & Stalin ,General,"In Greek mythology, themes was the mother of ______",Moirae, History & Holidays,The ______ Tea Party?,Boston -General,Which artist painted the picture Tahitian Women,Paul gaugin,General,In what tv series is sideshow bob,The simpsons,General,What is another name for the coyote,Prairie wolf -General,What li'l abner animal gave milk & laid eggs,Schmoo,General,"Whose Reading Of Roald Dahl's ""George's Marvellous Medicine"" In 1998 Caused A Storm Of Protest To The Jackanory Office",Rik Mayall,General,What parts of a building does a glazier instal,Windows -Music,Which Singer From Yes Performed With Vangelis,Jon Anderson,Geography,Where was the 1939 world's fair ,New york city ,General,Which 3 olympic events restrain throwers in a circle,"Shot, hammer & discus" -General,For what did the marquis de sade serve 27 years in prison,Sexual offenses,General,Which English King was crowned on Christmas day,William the Conqueror in 1066,General,What has 121 holes,Chinese Checkerboard -General,"About which Prime Minister was it said ""A modest little man with much to be modest about""",Clement attlee, Geography,What is the capital of Lebanon ?,Beirut,General,Who or what might be given an Apgar rating,Baby -General,Which letters denote Jesus Nazareth King of the Jews,INRI,Music,What instrument does Ravi Shankar play?,The Sitar,General,What is the state song of California,I love you California -General,Who was the only horse ever to beat the legendary Man O War,Upset 12 August 1919,Sports & Leisure,Hockey: The Detroit ________.,Red Wings,General,Enid Blyton character name changed to white beard for PC USA,Big Ears -General,What was the royal residence after st james court,Buckingham palace,Music,"Whose Biggest Hit Was A 1982 Single ""Party Fears Two""",The Associates,Science & Nature,Which German Chemist Won The Nobel Prize For Chemistry In 1944 For Discovering Nuclear Fission ,Otto Hahn  -General,Liquid Sunshine was the original slogan of which product,Doctor Peppers,General,Myrastica fragrens is what common spice,Nutmeg,General,The temple at Ephesus was sacred to who,Diana -General,Corson and Stoughton are the inventors of what,CS Gas,Geography,In what country is the highest point in south america ,Argentina , History & Holidays,In which 1970's films does Dustin Hoffman play the following characters ' Carl Bernstein '? ,All the Presidents Men  -General,What is the ninth month of the year,September,General,What is the most famous mausoleum in India,Taj mahal,General,What is the only country that has never imposed censorship for adult films?,Belgium -General,What is the collective noun for a group of crows,Murder,General,Springfield is the capital of ______,Illinois,General,Who Was The 1st Ever Male Centrefold To Appear In Cosmo?,Burt Reynolds - History & Holidays,Biko was involved in what protest movement? ,Apartheid ,General,"What do butterflies eat grubs, nectar or nothing",Nectar,General,What is a dried plum,Prune - History & Holidays,Germany was split into two zones by which agreement?,Yalta agreement,General,What country celebrated its National Day on 15th March?,Hungary,General,What country invented castanets,Egypt -General,What two airlines fly the concorde,British airways and air france british,General,What is the study of animals known as,Zoology,General,What was Bruce Lees first Hollywood produced film,Enter the Dragon -General,A muster is a group of which birds,Peacocks,General,What does one square inch of human skin contain 625 of,Sweat glands,General,"Christie what are mother mary's ""whispered words of wisdom""",Let it be -General,Who was the Chancellor of West Germany in 1989 when the wall came down,Helmut kohl,General,Which Mozart opera is subtitled School for Lovers,Cosi fan Tuti,Music,What Was The First Song To Be Performed In Outer Space,Happy Birthday (During An Apollo Mission) - Geography,What is the capital of Australia ?,Canberra,Science & Nature,What Does BCG Stand For ,Bacillus Of Calmette And Guerin ,General,What is the flavour of a piri-piri sauce,Curry -General,Who wrote the children's novel Swallows and Amazons,Arthur Ransom,General,What do you call the process of stamping a blank coin with a design,Minting,Religion & Mythology,Where did Robin Hood supposedly live?,Sherwood Forest -Music,Who Had A Hit in 1982 With Friends,Shalamar,General,What is a group of woodpeckers,Descent,General,A yamashita would be performed on which piece of gymnastic equipment?,Vaulting Horse -Sports & Leisure,Which Team Have Lost the Most Fa Cup Semi finals ,Leicester City ,General,Who was Ben Casey's boss,Dr Zorba,General,In what kind of restaurant might you be offered 'kulfi' as a dessert,Indian -Geography,Which Gulf Lies Between Iran And Saudi Arabia ? ,Persian Gulf ,General,What was keanu reeves' computer world alias in 'the matrix',Neo,General,What did jack the ripper sign on his first note,Yours truly -General,In which country was guitarist Django Reinhardt born,Belgium,General,The highest USA rank killed WW2 Lt General who killed him,US Army Air Corps,Food & Drink,What Is The Most Popular Purchase At The Grocers ,Coca-Cola  -Art & Literature,"Which poet, in his ""Elegy Written in a Country Churchyard"" told us that ""Full many a flower is born to blush unseen / And waste its sweetnes on the desert air.""?",Thomas Gray,General,How many of the islands of hawaii are inhabited,Eight,General,Victoria is the capital of ______,Hong kong -General,"What colour are the properties kentucky, illinois, and indiana in monopoly",Red,General,Hominophobia is the fear of,Men,Music,"According To Tina Turner ""We Don't Need Another"" What",Hero -Science & Nature,What Part Of The Body Does Thoracic Medicine Deal With ,The Chest ,General,What symbol did 87 year old Arthur Eisenmenger design,The Euro note graphic,Food & Drink,What is the main flavour in the following alcohols 'Sambuca' ? ,Elderberry / aniseed  - History & Holidays,Which Scottish actor famously sang in the film Darby O Gill & the little people? ,Sean Connery ,General,Jack and Jill went up a ____ to fetch a pail of water,Hill,General,This is a type of carpet or a breed of cat,Persian -Sports & Leisure,Football: The Cleveland ________.,Browns,General,Monastic order that established the California wine industry,Franciscan,General,Who was the first American in space,Alan shepard -General,What playwright wrote The Three Sisters and The Cherry Orchard,Anton Chekov,Music,"Who did Chris De Burgh Write His Hit Song ""Lady In Red"" For",His Wife Diane,General,"In the nursery rhyme, who visited the person with a little nut tree",The king of spain's daughter -General,NAOH is the chemical formula for what,Sodium Hydroxide,General,What did erik rotheim invent in 1926,Aerosol,General,Daniel Arap Moi is the leader in which country,Kenya -General,Material world who played the male lead in the 1965 film entitled the war lord,Charlton,General,What Group Of Animals Are Collectively Known As A Rafter,Turkeys,Art & Literature,Who wrote 'Weird Harold and Fat Albert'?,Bill Cosby -General,From what animal is venison,Deer,General,A renaissance doctor - what treatment excluding bleeding,Enemas,Science & Nature,Peanuts are one of the ingredients of?,Dynamite -General,Which film covers the life of George Cohan,Yankee doodle dandy, History & Holidays,"Who, in 1909, became the first man to fly across the English Channel ",Louis Bleriot ,Food & Drink,Which Restaurant Was Jamie Oliver Working In Before He Found Fame As The Naked Chef ,River Cafe  -Geography,"Linz, austria is a leading port on which river ",Danube ,Science & Nature," 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,General,Joan Peters became famous as who,Carol Lombard -Science & Nature,What Is The Main Poisonous Gas In Car's Exhausts ,Carbon Monoxide ,General,"What group said they had ""no time"" for ""no sugar tonight""",Guess who,Entertainment,Who played commander Riker in 'Star Trek'?,Jonathan Frakes -General,"A folded tortilla filled with meat, cheese, beans etc. is called what",Taco,General,"What's the international radio code word for the letter ""G""",Golf,General,Which racing circuit is nicknamed the brickyard,Indianapolis -General,"Wallace in greek and roman mythology, what food of the gods was said to make immortal anyone who ate it",Ambrosia,Geography,Which County Is Maidstone In? ,Kent ,General,Grammy Awards: What album by various artists won the grammy in 1972,Concert -General,The island of Formosa is now known by which name,Taiwan,General,"Which Well Known Singer And Actress Was Once The Lead Singer Of The Band ""Eighth Wonder""",Patsy Kensit,Art & Literature,In Which City Will You Find The Largest Opera House In The World ,"New York , The Metropolitan Opera " -General,African French Bur Fig Marsh Pot types of what plant,Marigold,General,How many pairs of jaws does a crab have,Six,General,"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 - Geography,Bangkok is the capital of ______?,Thailand,General,What were the first false teeth made from,Ivory,General,What is the correct name for the flower the Michaelmass Daisy,Aster -General,Donald Baxter McMillan compiled the first what dictionary,Eskimo - English,General,What is the fear of theology known as,Theologicophobia,General,What is the decimal equivalent of the binary number 11011,27 -General,The 1982 football strike lasted how many days,57,General,If you were eating a Malus Pumila what would it be,Apple,General,Which pop singer was nicknamed The Groover from Vancouver,Brian Adams -General,"David, Adam, Paul And Larry Are The First Names Of Which Long Running Band",U2,General,"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,General,What did Farters collect,Pigs - its an old English word -General,What is the most easy thing to recycle,1 Aluminium 2 Glass 3 Paper,General,William Sydney Porter is better known as who (literature),O'Henry,General,Simpsons: what does nelson say when something bad happens,Ha ha -General,In the 1951 movie the desert fox who played rommel,James mason,General,What is the common name for a birds Ventriculus,Gizzard,Food & Drink,Which Type Of Beans Are Used To Make Baked Beans? ,Harocot Beans  -General,"In Edward Lear's poem, upon which fruit did the Owl and the Pussycat dine",Quince,General,Who was the first U.S. president to attend monday night football,Jimmy carter,General,Quercus is the generic name for which tree,Oak -General,What was st. paul's trade before he converted,Tent-maker,General,Name one of the birds which Noah released from the Ark,Raven or dove,General,Which singer was known as Little Miss Dynamite,Brenda Lee -Science & Nature,Who Make Macintosh Computers ,Apple ,General,"Where, on a horse are its withers",Shoulder,Sports & Leisure,How Old are the horses in the Epsom Derby? ,Three Years Old  -Science & Nature,What Name Was Given To The Boeing B-52 Heavy Bomber That First Flew In 1952 ,Stratofortress ,General,Who Was described By The Radio Times As The “ Scummiest To rag In The Laundry Basket Of English History ”,Blackadder,General,David Suchet gives a brilliant TV portrayal of this mustachioed detective,Hercule poirot -General,First Byzantine emperor,Justinian, History & Holidays,"Oklahoma comes from two choctaw words, okla and humma, and literally means what ",Red people ,General,This animal is the symbol of the U.S. Republican party,Elephant -General,Betty Joan Perske is better known as who,Lauren Bacall,General,What city does Orly airport serve?,Paris,General,What is 'shogun' in english,Military governer -General,Which Italian City Is The Home Of The Car Manufacturer Fiat,Turin,General,What period is the age of fish,Devonian,General,Robert Fitzroy captained which famous ship,The Beagle -General,Fill in the blank: knock me for a ___,Loop,Sports & Leisure,Who was the first boxer to defeat Lennox Lewis in a professional bout? ,Oliver McCall ,General,What American spoiled Hitler's Aryan dream at the 1936 Olympics,Jesse owens -General,Vestiophobia is the fear of what,Clothing,General,In which city was Mozart born,Salzburg,General,"Who recorded the album ""Freedom of Choice"" in 1980",Devo -Music,The Osmonds Enjoyed Their Only UK Number One Hit Single In 1974. Name It?,Love Me For A Reason, Geography,Kuwait City is the capital of ______?,Kuwait,General,What is the capitol of Morocco,Rabat -General,In which opera does leporello entertain a vengeful jilted lover,Don,General,"Three of Shakespeare's plays contain a ghost - Hamlet is one, name either of the others",Macbeth julius caesar,General,What Is As Of (2008) The Largest Landlocked Country In The World,Kazakhstan -Music,Which Wrestler Had A Hit With Im The Leader Of The Gang In 1993,Hulk Hogan,General,"What game usually starts with 'is it animal, vegetable or mineral'?",Twenty questions,Food & Drink,What Are Pontefract Cakes Made From ,Licorice  -General,What is the Capital of: Japan,Tokyo, Geography,Where is most of America's gold located ?,Fort Knox,Geography,What Is The Westernmost Point Of England ,Land's End  -General,The star Antares is in which constellation,Scorpius,General,What is a spermologer interested in,Trivia,General,What ingredient is contained in beer but not ale,Hops -General,Which port on the River Douro is the second largest city in Portugal,Oporto,General,What is the name of Paul McCartney's official fan club,Club Sandwich,General,"Woodpusher, fish and patzer derogatory words for a bad what",Chess player -General,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,Science & Nature,What is the lightest known gas ,Hydrogen ,Food & Drink,From What Kind Of Animal Is Rennet Obtained ,A Calf  -General,To whom was the Eroica dedicated,Napoleon Bonaparte, Geography,Dhaka is the capital of ______?,Bangladesh,Science & Nature,What Is The Principal Crop Of The United Arab Emirates ,Dates  -General,Twos company threes a crowd what do four and five make,Four and five make nine,General,An Albert chain is usually attached to what,Watch,General,Which town in the U.S. had Clint Eastwood as its mayor,Carmel - Geography,Name the largest city in Canada.,Toronto, History & Holidays,What liqueur goes into making a 'snowball' cocktail? ,Advocaat ,General,"A slow and graceful dance, the most popular dance of the eighteenth century, characterized by symmetrical figures and elaborate curtsys and bows.",Minuet -General,Who's album 'Pearl' was released posthumously,Janis joplin,General,What is a mayonnaise flavoured with garlic called,Aioli,Sports & Leisure,So Far (2008) There Have Been 6 Players To Achieve A 147 Break At The Crucible Ronnie O Sullivan & Ali Carter Both Managed It in 2008 Can You Name The Other Four (PFE) ,"Cliff Thorburn, Jimmy White, Mark Williams, Steven Hendry " -General,What's the primary function of two thirds of a shark's brain,Detecting aromas,General,Collective nouns - A leap of what,Leopards,General,What does the george washington bridge span,Hudson river -General,What current cast member of ER was on an 80's show of the same name?,George Clooney,Music,Springing Into The Charts At No.4 In 1963 What Was Dusty Springfields First Single,I Only Want To Be With You,Music,Adam Clayton Plays Bass Guitar For Which Band,U2 -General,Pott's Disease is a form of tuberculosis which affects which part of the body?,Spine,General,Name the knot used to shorten a rope without cutting it,Sheepshank, History & Holidays,"Which English Silver Coin, Worth Four Pennies, Was Taken Out Of Circulation In The 17th Century? ",The Groat  -Geography,The aurora borealis is most commonly observed in which country,Canada,General,The famous train 'The Clansman' ran from London to which city?,Inverness,General,The front of a building,Facade -General,Whats the name of El Ninos lesser known little sister,La nina,Science & Nature,Where Is The Natural Habitat Of The Cheese Plant ,Central America Rainforest ,General,What was John Lennon's middle name before he changed it to Ono,Winston -General,What is the longest river in the world,Nile,General,Which man has the most monuments erected in his honour?,Buddha,General,"Which Scary Movie Takes Place In The Town Of ""Burkittsville"" Maryland",The Blair Witch Project -General,Hoplophobia is the fear of,Firearms,Geography,"Of the 3,000 islands of the Bahama chain in the ____________, only 20 are inhabited.",Caribbean,General,What is the flower that stands for: restoration,Persicaria -General,International direct dialling codes what country has 353,Republic of Ireland,General,"How many cooks spoil the broth, according to a well known saying",Too many,General,Name Buck Rodgers' pal,TWIKI -Art & Literature,What Are The Christian Names Of JK Rowling Author Of The Harry Potter Books? ,Joanne Kathleen ,Music,"Before Forming Sigue Sigue Sputnik, Tony James Was In Which Band With Billy Idol",Generation X,General,With what did david kill goliath,Slingshot -General,Which country was the first to abolish capitol punishment 1826,Russia/Siberia,General,When was the descent of the holy spirit on the apostles,Pentecost,General,The Southern Alps are found in which country,New zealand -Food & Drink,Which Order Of Friars Is Coffee Topped With Steam Milk Named After ,Capuchin , Geography,What is the capital of Jamaica?,Kingston, Geography,Cheyenne is the capital of ______?,Wyoming -Sports & Leisure,What Colour Is The 8 Ball In A Game Of Pool ,Black ,General,In the 1920s cars built in Bennington had what safety device,A Saint Christopher medal,Science & Nature,These flowerless plants grow on bare rocks and tree stumps.,Lichen -General,What is the name of the policeman who appears in the TV series 'Postman Pat'?,PC Selby,General,Who transmitted radio signals across the atlantic,Marconi,General,What was the first manufactured item to be sold on Hire Purchase,Singer sewing machine in 1850s -General,What is haggis,Sheep stomach,General,Name the dagger which lends its name to a type of women's shoes with slender pointed heels?,Stiletto,General,Strong spirit distilled from wine or fermented fruit juice,Brandy -Art & Literature,"In The Book The Secret Diary Of Adrian Mole, What Was The Name Of Adrian's Girllfriend ",Pandora ,General,"What trade did Bonito, Calico Jack, and Dick Hatteraick follow",Pirates,General,What was Napoleon Bonaparte's official emblem,Bumblebee -General,What country are the ships Sun Viking & Nordic Prince registered in,Norway,Science & Nature,"With age, what organ shrinks faster in males than in females?",Brain,General,In the Hindu religion what is a Mandir,Temple -Music,Which legendary Beach boys album was never completed?,Smile,General,Roe made the first flight in to Britain in a British plane in which year,1909,Entertainment,How many strings are there on a violin?,Four -General,What was the name of David Hasselhoff's talking car in Knight Ridder?,Kitt,Music,"If You Were To Take A Walk Down Lonely Street, Where Would You Find Yourself",Heartbreak Hotel,General,What Football Team Plays At The Ibrox Stadium,Glasgow Rangers (Rangers)     -General,Who plays Data in Star Trek the Next Generation,Brent Spiner,General,Analogy: goose - geese as passerby - ___________,Passersby,Entertainment,"What is the name of the skunk in the film, ""Bambi""?",Flower -General,Give either of poet W.H.Auden's Christian names,Wystan hugh,General,What are Hamilton House and Petronella,Scottish country dances,General,"The young are called widgets, females fifinellas what are they",Gremlins -General,Who ran unsuccesfully against Regan in 1984?,Walter Mondale,General,Ruth Eisemann-Schier was the first woman to get on what,FBI ten most wanted list,Entertainment,This film starring Julie Andrews and Christopher Plummer wont he best picture Oscar for 1965.,Sound of Music -People & Places,Who Was Married To Robin Givens until 1989 ,Mike Tyson ,General,Who Released An Album In 1992 Entitled “ Diva ”,Annie Lennox,General,What profession did Handel originally study,The Law -Science & Nature, A young male fur __________ that is kept from the breeding grounds by the older males is called a bachelor.,Seal,General,"How many karats is pure, unalloyed gold",24,General,What was the name of buffy's doll in the 1970's show 'family affair',Mrs -General,Changing of an employees job or working conditions to force resignation,Constructive dismissal,Sports & Leisure,What is the score of a forfeited baseball game?,Sep-00,General,Bonanza: what was the name of eric's horse,Chub -General,Who discovered blood circulation,William Harvey,General,"In the Gregorian calendar after 10,000 years by how many days will the calendar be wrong by ?",Three,General,For who did eric clapton write 'layla',Linda mccartney - History & Holidays,The Charge Of The Light Brigade Occured During Which War ,Crimean ,General,British king was known to family friends as David his last name,King Edward the 8th,General,Where is Las Palmas,Canary islands - History & Holidays,"From which era does the custom of carol singing originate? (Edwardian, Victorian, Middle Ages) ",The Middle Ages ,General,What does a stoat wear in winter,Ermine,Entertainment,"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 -General,"Give one of the forenames of baseball player, Babe Ruth",George herman,General,Who was defeated at the Battle of Zama by Scipio Africanus,Hannibal,General,"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 -General,"In The World Of Comedy How Is The Comedian ""Chris Collins"" More Commonly Known",Frank Skinner,General,"Name the church, believed to be the site of Christ's crucifixion",The church of the holy sepulchre,General,"In the 1987 film Roxanne, who played the role of Roxanne",Darryl hannah -General,Which Canadian won the 1957 Nobel Peace Prize for Suez,Lester Pearson,Science & Nature,What is the meaning of the name of the constellation Vulpecula ?,Fox, History & Holidays,"In 1962, for what did Britain and France sign an agreement to build together?",Concorde -General,In which Bond novel did he first want Martinis shaken not stirred,Diamonds are Forever,Food & Drink,Which vegetable is also a Welsh emblem? ,A Leek ,General,When was the first jet aircraft flown,1941 -Geography,What Does Copenhagen Mean In English ,Merchants Haven , Geography,How many countries have a population over 130 million ?,"Seven (Pakistan, Russia, Brazil, Indonesia, United States, India and China)",General,What are studied by hymenopterists,Bees - History & Holidays,Who was the mother of Elizabeth I?,Anne Boleyn,General,On Donavan's Mellow Yellow who did the whispering vocal,(Quite right slick) Paul McCartney,General,Whose music was on the soundtrack of When Harry met Sally,Harry Connick Jr -People & Places,Which City Is Home To The Little Mermaid Statue ,Copenhagen ,Geography,Which Is The Smallest Continent ,Europe ,General,In which war did the battle of Sedan take place,Franco-prussian -Food & Drink,A.K.A juniper juice?,Gin,General,Who was the first leader of the canadian federal ndp,Tommy douglas,General,Otalgia is what condition,Earache -General,From what did alexander the great suffer,Epilepsy,General,The group Simply Red were named after what,Man Utd football club,General,What is the link between the actresses Mia Farrow & Maureen O'Sullivan,Mother and daughter -General,What is the largest man made lake in the world,Lake mead,General,"In which island group would you find Rarotonga, Palmerston and Aitutaki?",Cook Islands,Music,What was the title of the first album released by The Rolling Stones?,The Rolling Stones -General,What type of candy is banned in Washington state,Lollypops,Science & Nature,The chemical compound sodium chloride is often sprinkled on food before ingestion. What is it's common name?,Salt,General,"Stage role, written for a man, took 80 years to be played by one",Peter Pan RSC 1982 -General,What James Bond film used the space shuttle,Moonraker,Music,Who Was The Original Lead Singer Of AC/DC,Bon Scott,General,Herodotus the Greek is known as the father of what,History -Food & Drink,Mexican dish with minced and seasoned meat packed in cornmeal and corn husks.,Tamale,Geography,Name the only Central American country without an Atlantic coastline.,El salvador,General,What does an ombrometer measure?,Rainfall -General,What is an elver,Baby eel,General,Who crashed out of the 1995 Tour de France after just 92 seconds,Chris boardman,General,Who took dictation from perry mason,Della street - History & Holidays,What Was The Colonial Name Of Ghana ,Gold Coast ,General,In which English county is Castle Drogo?,Devon,Geography,Name the desrt located in south_east California.,Mojave -General,Which famous person lived at Brantwood from 1872 until his death in 1900?,John Ruskin,General,Which london street is famous for its hotels,Park lane,General,"In the film '101 dalmatians', what animal is sergeant tibbs",Cat -Music,"Who Scored A Hit With ""Head Over Heels In Love"" In 1979",Kevin Keegan,General,What is a resident of liverpool,Liverpudlian,General,What fictional detective was created by Lesley Charteris,Simon templar the saint -Food & Drink,Which Australian Opera Singer had a dessert and a kind of bread named after her? ,"Nellie Melba ( Peach Melba, Melba Toast ) ",General,What game Johnny Archer Chang Feng-Pang been world champs,Nine Ball Pool,General,Michael Jackson caught fire while filming a commercial for which carbonated beverage?,Pepsi -General,Where will you find twenty moons on the human body,The base of the nails,General,What does the VO on a bottle of Seagrams stand for,Very Old,General,"Which poet wrote the poem, ""The Soldier""",Rupert brooke -Geography,Which state is the Wolverine State,Michigan,General,St Snithney is the patron saint of what,Mad Dogs,General,In which Italian city is the original of Leonardo da Vinci's Last Supper to be seen,Milan -General,In the Chinese calendar what year follows Monkey,Chicken,General,How is Venom put into the body?,Bites or stings,General,The Undiscovered Country a Star Trek title taken from where,Shakespeare's Hamlet -General,What is the mode of transport in Venice,Gondola,General,What word from the Persian means perfumed,Attar,General,In which city is Napier University,Edinburgh -Science & Nature,What insect has a type of hair on it's eyes?,Honeybees,General,What is a one-party system of government in which control is maintained by force and regimentation?,Fascism,Science & Nature,Where Does Bracket Fungus Grow ,On The Trunk Of A Tree  -Science & Nature,How many chambers does the human heart have?,Four,Music,What Song Did David Bowie And Mick Jagger Sing Together At Live Aid,Dancing In The Street,General,"What's the most effective insulator brick, fibreglass or wood",Fibreglass -General,Two weeks after hatching what is 3000 times its birth weight,Monarch Butterfly,General,What elton john record label did kiki dee join in 1973,Rocket records,Food & Drink,Which two fruits are crossed to make an ugly fruit? ,Grapefruit & Tangerine  -General," The study of natural phenomena: motion, forces, light, sound, etc. is called ______.",Physics, History & Holidays,In What Year Was The Old Age Pension Introduced In The UK ,1908 ,General,Sotheby's sold a 200 year old bit of Tibetan what $1500 in 1993,Cheese -General,"What's the international radio code word for the letter ""W""",Whiskey,Music,What Did Billy Idol Think It Was A Nice Day For In 1985,White Wedding,General,What was shown over parliament on a Canadian 2 dollar bill,An American Flag -General,What colour is the Black Box carried in aircraft,Orange,Music,How In The World Of Music Are Julia Volkova & Lena Katina More Commonly Known,Tatu,General,What does a petrologist study,Rocks - History & Holidays,What country started the tradition of exchanging gifts? ,Italy (Romans) ,General,The Colossus of Rhodes was a statue of who,Helios the sun god,General,In Wyoming its illegal for women to stand within 5 feet of what,Bar when drinking -Music,Which 1980's Band Took Their Name From A Vulvan In Star Trek,T'Pau,General,Who appeared on the British WWl recruitment poster,Lord kitchener,Sports & Leisure,How many minutes is a major penalty in hockey?,Five -General,What Type Of Creature Is A Shaded Cameo,A Cat,General,What was the name of the last silent movie made 1929,The Four Feathers,Food & Drink,Bruschetta is what? ,Fried or toasted bread  -General,Astronauts cannot do what in space,Cry - no gravity for tears to flow,Art & Literature,"He wrote Ulysses, Giacomo Joyce, Dubliners and Finnegans Wake, among others.",James Joyce, History & Holidays,1957 and the first artificial satellite to be launched into space (by the Soviet Union) had what name ,Sputnik 1  -General,"Lord Harry, Old Billy, Queed, Skipper, Toast nicknames for who",The Devil or Satan,General,What's the region immediately below the earth's crust,Mantle,General,What size of paper measures 297 x 420mm,A3 -General,Who had the gift of prophecy and the curse of not being believed,Cassandra Daughter of Priam of Troy,Science & Nature,What type of creature is a Whydah? ,A Bird , Geography,What is the capital of Cyprus ?,Nicosia -General,What is the echidna's favorite food,Ants,General,What did people use before the hearing aid was invented?,Ear trumpet,Geography,On which river is the Aswan High Dam,Nile -General,Who was Howard Carter's sponsor during his discovery of the tomb of Tutankhamen,Lord carnarvon,General,58% of people like what during sex,Dirty Talk,General,If you are in your birthday suit what are you wearing,Nothing -General,What is the main ingredient of a booyah,Chicken,General,What are spraints,Otter droppings (shit),General,In which 1973 film did Yul Brynner play an indestructible robot gunslinger,Westworld -Music,In 1997 who became the first family group to reach number one with their debut single?,Hanson,Music,Who Was Born In New York In 1981 And Had Great First Time Success With The Album “Songs In A Minor”?,Alicia Keyes,Sports & Leisure,Which 2004 darts champion is known as The Viking because of his appearance? ,Andy Fordham  -General,What is the shape of the U.S. President's office,Oval,General,What would you find a sally on the end of,Bell rope,General,Name the chief port of Iraq,Basra - History & Holidays,"What is the common name for cercis canadensis, the state tree of oklahoma ",Redbud ,General,On which Athens hill top would you find the Parthenon,The acropolis, Geography,What is the basic unit of currency for Algeria ?,Dinar -Science & Nature,Mercury's period of orbit takes how many earth days?,Eighty eight,General,"What us president was born july 11, 1767",John quincy adams,General,Geographic on what river is blackpool,River fylde -General,Which island left the E.E.C. in 1985,Greenland,General,"In 1918, what illness caused 20 million deaths",Influenza,General,"Who is the author of the science fiction book I, Robot",Isaac asimov -Science & Nature,"What Can Be Ball, Forked Or Sheet? ",Lightning ,General,Maria Magdelana Von Losch Beyyer know as who,Marlene Dietrich, History & Holidays,His ship was the H.M.S. Beagle.,Charles Darwin -General,Public Speaking is the most common fear what's the second,Heights,Geography,What is the capital of Iraq,Baghdad,General,What is the fear of fatigue known as,Kopophobia -Music,Which Record Was The First Chart Success For A Young David Essex In 1973,Rock On,General,Irian Jaya is the name for the western part of which island,New guinea,Geography,In Which Country Is The Schilling The Unit Of Currency ,Austria  -General,A branched hanging support for lights,Chandelier,General,"Greenmantle, Three Hostages, Island of Sheep which character",Richard Hannay,Entertainment,"Which character sang ""Come Out, Come Out, Wherever You Are"" in ""The Wizard of Oz""?",Glinda -General,The Boomtown Rats were averse to which day of the week,Monday,General,1200 in Roman numerals gives what sporting body,MCC, History & Holidays,What pope died 33 days after his election ,John paul i  -Science & Nature,What Is The Home Of A Hare Called? ,A Form ,General,"Who sang the song ""I Want You""?",Savage Darden,General,What type of charge do electrons carry,Negative -General,How long was the love affair between dashiel hammett and lillian hellman,30 years,General,Who invented the electric shaver,Jacob schick,General,"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 - Geography,What is the capital city of New Zealand?,Wellington,General,"Who was the author of ""Journal of the Plague Year""",Daniel defoe,Music,Who Funked For Jamaica,Tom Browne -General,What is the smallest dinosaur so far discovered?,Compsognathus,General,"By What Name Is ""No.30 St Mary's Axe"" London More Commonly Known",The Gherkin,General,In 1980 the Yellow Pages listed a Funeral Home under what,Frozen Food -General,"What type of storm has a central calm area, called the eye, which has winds spiraling inwardly",Hurricane,Music,What Principle Did Janet Jackson Sing About,The Pleasure Principle,General,Collective nouns - A Fall of what,Woodcocks -General,Who sang a song inspired by 'alice in wonderland',Jefferson airplane,General,"What is the name of the Android in ""Star Trek - The Next Generation""",Data,General,"Which 'brothers' had a hit with, 'This old heart of mine'",Isley brothers -General,Europhobia is the fear of what,Female Genitals,General,What are the Amish also known as,Pennsylvania dutch,General,Where would you find Giacomo Marconi airport,Bologna -General,A poltroon is a(n)___.,Coward,General,North Andover Massachusetts its illegal to have what weapon,Space Gun,General,Which Fruit That Starts Contains The Most Calories When Eaten RAW,Avocado -General,In Which US State Is Mount Rushmore ?,South Dakota,General,JRR Tolkein wrote The Lord of the Rings what the JRR stand for,John Robert Reuel,General,Williamine' is a liqueur made from what,Pears -Mathematics,Approximately how many inches are there in one meter?,Thirty nine,General,What is the Capital of: Paraguay,Asuncion,General,Who played the female lead in the Alien films,Sigourney weaver -General,Sinophobia is a fear of ______,Anything chinese,General,In Greece who were the Hetaerae,High class Prostitutes,General,What is a Maine Coon once thought to be extinct,A 20 lb cat -General,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,Science & Nature,Who Invented The First Self Lighting Match ,John Walker In 1827 ,General,Who shot Mr. Burns?,Maggie Simpson -General,"Which 60's folk artist sang the lyrics ""god told abraham kill me your son. abe said man you must be puttin me on""",Bob dylan,Geography,What is the capital of Equatorial Guinea,Malabo,General,Terry Bollea became famous under what name,Hulk Hogan -General,"Sage mountain on Tortola, is the highest point at 1,781 feet, of which British Caribbean dependency",British virgin islands,General,What is the name for a match of 3 games in bridge,Rubber,Music,"According to the Beatles song ""Glass Onion"", who was the Walrus?",Paul -General,Ten 1000 virgins bought insurance against what in 2000,Immaculate conception,Food & Drink,What does 'V.S.O.P' Stand For On A Bottle Of Wine Or Sherry ,Very Special Old Pale ,General,What is the flower that stands for: dangerous pleasures,Tuberose -General,What Type Of Food Stuff Do Humans Eat The Most Of,Rice,General,What is the fear of waves known as,Kymophobia,General,Who was the original Hollywood 'it' girl,Clara bow -General,What color is the lion on the side of the Detroit Lions football helmet,Blue,General,What does sputnik literally mean,Fellow Traveller,Music,"Who was Pink Floyd's ""Crazy Diamond""?",Syd Barrett -People & Places,Who Nickname is Beefy ? ,Ian Botham ,General,Candy bar named for a celestial object.,Milky way,Music,Who Had a Hit In 1986 With Absolute Beginners,David Bowie -General,Which Handheld Everyday Object Was Invented In Oslo In 1926 By Erik Rotheim,Aerosol Can,General,Im Westen Nicht Neues what famous novel 20s later film,All Quiet on the Western Front,General, The science of preparing and dispensing drugs is ________.,Pharmacy -General,"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,Art & Literature,Which School Did Billy Bunter Attend ,Greyfriars ,General,What sign is the water carrier the zodiacal symbol for,Aquarius -General,What is the collarbone,Clavicle,General,Lalo Schifrin composed which famous TV series theme,Mission Impossible – plus others,General,With what team did hank aaron finish his major league career,Milwaukee -General,What is the state bird of New Jersey,Eastern goldfinch, History & Holidays,What is an assembly of witches called ,A Coven ,Technology & Video Games,"If you're killing a goomba, what game are you playing? ",Super Mario Bros. -Music,Jason Orange Is A Member Of Which British Boy Band,Take That,General,Which fashion designer said - A woman is as old as her knee,Mary Quant,General,The song There is nothing like a dame appears in which musical,South Pacific -General,Panchaguni is the Indian God of what art,Palmistry,General,Ismene and Antigone are whose daughters,Oedipus, History & Holidays,What year was Margaret Thatcher elected British Prime Minister? ,1979  -General,What is the first letter of the Russian alphabet,A,General,What is another name for the prairie wolf,Coyote,General,Acrophobia is a fear of _______.,Heights -General,In what George Bizet opera do Zugra and Nbadir appear,The Pearl Fishers,Geography,"What city was the setting for ""Gone With the Wind""",Atlanta,General,Which Mammal has the highest blood pressure,Giraffe -General,What World First Took Place On Saturday The 19th November 1994,First Uk National Lottery,General,On a UK ordinance survey map what is shown by a blue star,Major shopping centre,Music,Who Was Down On The Streets In 1984,Shakatak -General,"In the equation E=MC2, what does the C stand for",Speed of light,General,What is the capital city of the Middle East state of Qatar,Doha,General,What Hollywood starlet's pinup graced the most GI barracks in World War II,Betty Grable -General,What shape is something that is reniform,Kidney shaped,General,Python film Your mother was a hamster father smelt of what,Elderberries,General,What were the lone three fighter planes which defended Malta in World War II nicknamed,"Faith, hope & charity" - History & Holidays,In what year was the first English translation of the Bible completed? ,1388 ,General,What is the main food of the Oyster catcher bird,Mussels,General,Where was napoleon defeated,Waterloo -General,In what tv series did ron howard play richie,Happy days,General,Mork and Mindy was a spinoff of what TV show?,Happy Days,General,In Tennessee age of consent is at 16 unless the girl is what,A Virgin then its 12? -General,The average Britain in their lifetime eats 4907 what,Loafs of Bread,Geography,Which Irish city is famous for its crystal,Waterford,General,"Wide muscular partition separating the thoracic, or chest cavity, from the abdominal cavity",Diaphragm -General,"What word spelled the same French, English, German, Swedish",Taxi,General,"The name ""yo yo"" comes from what language",Tagalog,General,"The world's costliest coffee, at $130 a pound , is called what",Kopi luwak -General,What sexually arouses a Jactitator,Bragging about sex,General,What is the only sport that has a rule against left handed players,Polo,General,Hypermetropic people are what,Long Sighted -General,Which actor won an Oscar for his portrayal of Gauguin in the film Lust For Life,Anthony quinn,General,Where was paper money first used,China,Geography,What Is A Sextant Used To Measure ,The Angle Of The Sun Or Stars Above A Horizon  -General,"Which UK city, other than London, has a station called Charing Cross",Glasgow,General,Which are the twin cities,Minneapolis and saint paul,Art & Literature,What's Penthouse's sister publication for women?,Viva -General,"When going on stage, actors consider it bad luck to be wished what",Good luck,General,A group of rhinos are called a(n) __________.,Crash,General,What war was rudely interrupted by the bubonic plague,The hundred years war hundred years war hundred years -General,Who starred in the film version of 'hamlet' that grossed the most,Mel gibson,General,What term describes the study of the behaviour of materials and substances at very low temperatures,Cryogenics,General,"On november 26, 1941, what did president roosevelt declare will always be celebrated on the fourth thursday in november",Thanksgiving -General,What is the most popular Saints name,Felix - 67 John 65,Music,Who Composed The Pastoral Symphony,Beethoven,Science & Nature,This is like an airplane but has its propeller on top instead.,Helicopter -General,Where was jesus born,Bethlehem,General,Capers are pickled flower seeds of what plant,Nasturtium,General,The leach has 32 what - humans only got one,Brains -General,"What is the fear of lockjaw, tetanus known as",Tetanophobia,General,In Greek what does Eunuch literally translate as,Bed Watcher,General,What is a two-bit moon,First quarter - History & Holidays,"She was called ""The Maid of Orleans"".",Joan of arc,General,Name the character played by David Cassidy in television's Partridge Family series of the 1970s,Keith partridge,General,"The ""Maxima"" was a model of which car",Nissan -Sports & Leisure,Which Scottish Golfer Was Captain Of Europes 2002 Ryder Cup Team ,Sam Torrance ,General,Whose cases were Empty House Copper Beeches Black Peter,Sherlock Holmes,General,What time do Spanish bullfights start,5:00 PM -General,Where in Europe it is illegal to flush the toilet after 10 P.M. if you live in an apartment?,Switzerland,General,"In units of measurement, how many rods are there in a chain",Four,General,Which European country is a Grand Duchy,Luxembourg -General,What held up a Cricket test Match between England Pakistan,Mouse on pitch,General,Intelligents Report a quarterly magazine in US which subject,UFO organisation,General,What links Jack Loving Girls and Nurse,Carry on Films -Music,By what 4-letter name is U2’s front man Paul Hewson better known?,Bono,General,What part of the body is affected by rhinitis,Nose,General,This island country is south of Malaysia.,Singapore -General,"Who wrote the book ""wouldn't take nothing for my journey now""?",Maya angelou,General,What is the Hebrew word for adversary,Satan,Geography,Which is the Earth's third largest continent,North america -Food & Drink,Is wholemeal bread brown or white?,Brown,General,Where did judy garland's family have their vaudeville act,New grand theater,General,What on average is two inches wide but 2 miles long,A lightning bolt -General,What does epcot stand for,Experimental prototype community of tomorrow,Toys & Games,This cube puzzle was invented by a Hungarian mathematician in 1974.,Rubik, History & Holidays,Who Preceded Harold Wilson As Prime Minister? ,Sir Alec Douglas Home  -General,What was the first American state to enter the union 7 Dec 1787,Delaware Pennsylvania second,General,What is the name given originally by Greek rhetoricians to a literary illustration,Parable,Science & Nature,What is acute nasopharyngitis?,A cold - History & Holidays,"Who sang Its a Heartache, nothing but a heartache? ",Bonnie Tyler ,General,The fish eating bulldog is what type of creature,A Bat,General,What colour Tuesday did the Rolling Stones sing about 1977,Ruby -General,"Who sang the theme song to the James Bond movie, ""A View to A Kill""?",Duran Duran,General,What's the only 5 point letter in scrabble,K,General,After who is the 'Ramses' brand condom named,Pharaoh Ramses II -Science & Nature,Which British Car Companys First Car Was The 2 Seater Oxford In 1913 ,Morris ,General,What does a galactophagist drink,Milk,Music,"Which Bespectacled Scots Were ""King Of The Road""",The Proclaimers -General,What is the name of the four holy books of the Hindus,The Vedas,General,What is a group of this animal called: Fox,Skulk leash,General,What process does animal hide have to undergo to become leather,Tanning -General,"In 'star wars', who was darth vader's voice",James earl jones,General,If an Australian had a Bingle what would it be,Car Accident,General,Relating to or using signals over a range of frequencies,Broadband -General,Which of Charles Dickens' novels in set partly in America,Martin chuzzlewit, History & Holidays,Which gangster died on the 25th January 1947 ?,Al Capone,General,Who leaked the pentagon papers to the new york times,Daniel ellsberg -General,What was elvis presley's twin brother's first name,Garon,Music,Which Single From Pras Michel Featuring ODB And Mya Made The Top Ten In 1998,Ghetto Superstar (That Is What You Are),General,What is known as 'the father of waters',Mississippi river -General,Cheyenne is the capital of ______,Wyoming,General,What was johanna spyri's story about a little alpine lass,Heidi,General,"In what sport would you find the terms hack, tee and hog line",Curling -General,Elizabethan England what was Lift leg Dragons Milk Angel food,Names for Beer,Music,"Icicle Works Had A Hit With ""Love Is A Wonderful Colour"" Or ""It's A Wonderful Life""",Love Is A Wonderful Colour,General,What is the leading cause of death in China,Respiratory Disease -General,What is the only flavour Jell-o containing any real fruit,Cranberry,General,In what Australian state would you find Ballarat,Victoria,General,Polyphobia is the fear of,Many things -Geography,Which element makes up 2.83% of the Earth's crust,Sodium,General,Does elizabeth ii face to the left or right on a british coin,Right,General,The Falketing is the parliament of which country,Denmark -General,Who was swallowed by a whale,Jonah,General,Where did the mutineers of the Bounty settle,Pitcairn Islands,General,Saint Lydwina is the Patron Saint of what sport,Ice Skating -General,Who is the current monarch of Belgium,Albert ii,Food & Drink,Polish cake filled with candied fruits and nuts.,Babka,General,What is the term for a person who reads a usenet newsgroup but never contributes to it,Lurker -General,What comprises than 54% of humpback whale's milk,Fat, Geography,What is the basic unit of currency for Peru ?,Sol,General,Mary magdalene is the patron saint of ______,Prostitutes -Science & Nature, 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,Food & Drink,What is another name for the carambula ,Star Fruit ,General,What country is the world's biggest coffee exporter,Brazil -General,Who portrayed Mrs Cleaver,Barbara billingsly,Food & Drink,By Value What Is The Most Popular Food Or Drink Consumed ,Beer ,General,"What is Japanese ""sake"" made from",Rice -General,In St Croix Wisconsin its illegal for women to wear what publicly,Anything Red,General,In Beaconsfield Quebec it is illegal to own what,Log Cabin,Art & Literature,"A movement, c. 1915-23, that rejected accepted aesthetic standards. It aimed to create antiart and nonart, often employing a sense of the absurd.",Dadaism -General,What was Beaver Cleaver's first name,Theodore,General,Who was the youngest elected president of the U.S.,John f. kennedy,General,"The Movie Company ""Icon Productions"" Was Founded In 1989 By Which Hollywood Actor / Director",Mel Gibson -General,Which element is alloyed with steel to make control rods for Nuclear reactors?,Boron (Boron Carbide also used),Religion & Mythology,A catholic minister is known as a?,Priest,General,What is the flower that stands for: delicacy,Cornflower -General,"Which species of animal has sub-species that include Burchell's, Grant ""s and Chapman's",Zebra,Music,How Many M's Were There In The Title Of The Crash Test Dummies 90's No.2 Hit,12,General,Who says 'you'd be surprised how much it costs to look this cheap',Dolly -General,In the Bible what was an adamant,Diamond,Technology & Video Games,Mega Man's traditional nemesis in the Mega Man series is whom? ,Dr. Wily,General,What is the first letter of the Greek alphabet,Alpha -Music,Chris Difford & Glen Tilbrook Write Songs For Which Group,Squeeze,General,What is the largest city on the South island of New Zealand,Christchurch,General,Ancel Keys developed which US soldiers item,K rations -General,How many tunnels under the mersey link liverpool to the wirral,Two,General,Only two elements liquid room temperature - mercury and what,Bromine,General,"In 'alice in wonderland', with what were the words 'eat me' written on the cake",Currants -General,Who wrote the poem The Lady of Shallot,Alfred lord tennyson,General,Who was the first English Poet Laureate in 1616,Benjamin Jonson,Science & Nature,To Which Family Does The Jay Belong ,Crow  -General,What nationality is Henry Kissinger by birth,German,General,Who wrote the autobiography 'Managing My Life',Sir alex ferguson,Science & Nature,This two ton animal can gallop at over 50 miles an hour.,Rhinoceros -General,What gift is associated with the 30th Wedding Anniversary?,Pearls,General,Five named Beatles on Abbey Road cover J P G R and who,Volkswagen,General,What does a cartographer do,Makes maps -General,In what language was Bambi originally published,German,General,Pit Straight - Lesmo Bend - Roggia Bend - which Grand Prix,Monza Italy,Music,What Nationality Are Bjorn Again A Very Successful Abba Tribute Band,Australian -Music,"Which Singer Got His Break When His Band The Shadows, Deputized For Buddy Holly After He Died In A Plane Crash",Bobby Vee,Music,"In 1998 Who Wrote A Forward To An Edition Of ""The Gospel According To St Mark""",Nick Cave,General,In what city is the bridge of sighs,Venice -General,In military slang which word means to carry heavy equipment on foot over difficult terrain,Yomp,General,Who wrote the hit musical West Side Story,Leonard bernstein,General,"In which city will you find the epitaph ""Rest in peace, the mistake shall not be repeated""",Hiroshima -General,When was the Watergate break in,1972,General,What's the largest bay in the world,Hudson bay,Entertainment,An alien creature in a funny hat has opposed both Bugs Bunny and Daffy Duck. Where is he from,Mars -General,When was the first Australian cricket tour to England,1868,General,What scientist developed the modern theory of evolution,Charles darwin,General,"What was the first name of the Reverebd Varah, the founder of the Samaritans",Chad -General,The thistle is the national flower of ______,Scotland,General,Evening Star no 92220 was the last what,Steam Loco built by British Railways,Technology & Video Games,Konami's classic shooter Salamander is better known in the U.S. as what? ,Life Force -General,Which car manufacturer was the first to introduce front wheel drive in 1934,Citroen,General,What creatures do the Galapagos islands take their name from,Tortoises,Food & Drink,What Traditionally Should Accompany Haggis ,"Tatties, Neeps & And A Dram " -General,What kind of creature is a redback,A spider,General,Who invented the cotton gin,Eli whitney,General,Frank and Jesse James father had what job,Minister -Science & Nature,What is the most commonly eaten insect by humans in the world? ,Grasshoppers ,General,What's the point scored immediately after deuce in tennis,Advantage,General,"Who lamented about ""No chocolate-covered candy hearts to give away and no wedding Saturday within the month of June""?",Stevie Wonder -General,What is the second most common international crime,Art theft,General,Queen Victoria in 1837 was the first English monarch to do what,Live in Buckingham,Sports & Leisure,Who Is The Billionaire Owner Of Formula One ,Bernie Ecclestone  - History & Holidays,Who did dita beard work for ,Itt ,General,Alexander Hamilton was shot by Aaron Burr where,In the groin,General,According To Insurance Companies What Occupation Do They Regard As The Highest Risk,Astronaut -Music,"""Up On The Roof"" Was The B-Side Of Which Robson & Jerome Single",I Believe,Music,"The Beatles Song ""Till There Was You"" was originally from which Broadway musical?",The Music Man,General,Harrison Ford played CIA agent Jack Ryan - who else has,Alec Baldwin -General,"In which type of rock would you find features called ""Clints"" and ""Grikes""",Limestone,Science & Nature,In 1665 the first _____ ___________ was performed by Dr Richard Lower.?,Blood Transfusion,Food & Drink,In which country was ice cream invented? ,China  -General,What is the name of the wrought iron tower in Paris?,Eiffel Tower,General,What is the flower that stands for: rivalry,Rocket,Music,Which Rat Pack Music Legend Died In 1998,Frank Sinatra -General,Pigs can become what - like humans,Alcoholics,Science & Nature,At which time of year do children grow fastest?,Springtime,General,What is a shubunkin,A goldfish -General,In the acronym MASER what does the 'M' represent,Microwave,General,"In the monty python parody 'search for the holy grail', what was the name of the enchanter",Tim,General,Who Was The President Of The USA Prior To Richard Nixon,Lyndon Bains Johnson -Sports & Leisure,Who made 11 appearances for Scunthorpe United between 1979 & 1984 but is far better known outside of football? ,Ian Botham ,Sports & Leisure,How Many Points Is The Yellow Ball Worth In Snooker ,Two ,Religion & Mythology,Followers of the Unification Church are called ________.,Moonies -General,Volney was in hundreds of films where can you see him,MGM films he was the lion,Science & Nature, Genuine ivory does not only come from elephants. It can come from the tusks of a boar or a __________,Walrus,Geography,What Is The Longest River In The Western Hemisphere ,The Amazon  -General,The musical word scherzo comes from Italian meaning what,Joke,General,Which UK Chain Of Stores Shares It's Name With A Greek City,Argos,Food & Drink,From which country does the 'lassi' originate?,India -General,Lachanophobia is the fear of,Vegetables,Entertainment,"What kind of eyes did the girl in ""Lucy In The Sky With Diamonds"" have?",Kaleidoscope,Music,"A Re-Issue In 1986, Which Grace Jones Track Reached No.12 In That Year",Pull Up To The Bumper -General,What do we call in English the type of painting known to the French as 'nature morte',Still life,General,What did the three little kittens lose,Their mittens,Science & Nature,"Which Dogs, If Any,Have Colour Vision? ",None  -General,"What Montreal brewer built Canada's first steamboat, in 1809",John molson, History & Holidays,What did Louis Cartier invent?,Wristwatch,General,Who played the telephone operator on laugh-in,Lily tomlin -General,What word in English has the most synonyms,Drunk,General,Greek mythology women of Lemnos did what to their husbands,Murder,General,A small pickled cucumber,Gherkin - Geography,What is the basic unit of currency for Guinea-Bissau ?,Franc,General,"Of what has alberta, canada been completely free since 1905",Rats,General,The longest side in a right-angled triangle is called the ______.,Hypotenuse -Food & Drink,"Mustard, ketchup and onions on a hotdog are all types of what ",Condiments ,General,Who wrote the Science Fiction novel Slaughterhouse Five,Kurt Vonnegut,General,Carolina what alice cooper album simulated an execution during a song,Killer -General,In the USA where would you see a crossbuck,X on railroad crossing,General,If you were caught pandiculating what were you doing,Yawning,Music,"Which Album Opened With ""Start Me Up""",Tattoo You -General,In which sport is the Wingate trophy awarded,Lacrosse,Geography,What's the opposite of the orient ,The occident ,General,In music what is a pentatonic scale,A scale of five notes only -General,In which African country is the city of Bulawayo,Zimbabwe,General,What are pulex irritans,Human fleas,General,What name is given to the smallest type of liquor glass,Cordial -General,Ferdinand and Isabella were joint rulers in which country,Spain, History & Holidays,In What Year Was The Tomb Of Tutankhamen Discovered ,1922 ,General,What is the Capital of: Azerbaijan,Baku baki -General,The Paramours changed their name to what gaining fame,Righteous Brothers,Geography,What is the capital of Georgia,Tbilisi, History & Holidays,With Which Ship Did Francis Drake Circumnavigate The World? ,"The Pelican, Renamed The Golden Hind After Clearing Cape Horn " -Sports & Leisure,With which sport is Babe Ruth associated ?,Baseball,Entertainment,He directed the movie E.T.,Stephen Spielberg,General,From which date does the legal term ' Time Immemorial' apply,1189 the death of henry ii -General,In what musical note do most toilets flush,E Flat,General,What company makes Pampers disposable diapers,Proctor & gamble,General,"Who In The World Of Music Has The Real Name ""Artis Ivey Jnr""",Coolio -General,What was Jane Wyman Reagan's birth name?,Sarah Jane Fulks,Technology & Video Games,Who is Mega Man's sister? ,Roll,General,Where in the body is the labrynth,Ear -Music,How Many Of The Top Ten Singles Of The 60's Were By The Beatles,5,General,Who starred as Jimmy Porter in the film version of John Osborne's play Look Back in Anger,Richard burton,General,Where would you find lagan,In sea overboard attached to float -General,Phagophobia is the fear of,Swallowing,General,What Device Is Edwin T Holmes Credited With Inventing in 1958,The Burglar Alarm,General,What is the fear of everything known as,Panophobia -General,"For a Non-Muslimans , the tour to Mecca is",Prohibited,General,What was the traditional ancient Persian new years day gift,Eggs,General,What is celebrated on April 1st?,April Fools Day -General,"On three's company,what was Chrissy's father's ocupation?",A Reverend,General,In which sport would you compete for the Grand Challenge Cup,Rowing,General,"In the show ""The Equalizer"",what did the hero (McCall) call his former superior from the ""agency""?",Control -General,How old was shirley temple when she made her last film,21,General,"In 1864, where were over 300 indians massacred colorado",Sand creek,General,"Where was 'g.i joe' introduced on february 9, 1964",Annual american -General,"What were the first names of T E Lawrence, known as Lawrence of Arabia",Thomas edward,General,What artificial waterway links the black sea to the baltic via leningrad,Volga-baltic canal,General,What was the first day of the year in the Roman calendar,25th March -General,When did Castro take power in Cuba,1959,General,"Who was the author of ""Shirley Valentine""",Willy russell,General,What swings in a grandfather clock,Pendulum -General,Who does the Beatles song The fool on the Hill refer too,Galileo,Geography,Which Central American country extends furthest north,Belize,Geography,What major city is on an island in the st lawrence river ,Montreal  -General,What were more than 99.9% of all the animal species that have ever lived on earth before the coming of man,Extinct,General,What city stands on the Maas River,Rotterdam,Science & Nature,Which Is The Coldest Planet In The Solar System? ,Pluto  -People & Places,Who Did John Mcenroe Play 3 Times In Wimbledon Finals ,Bjorn Borg ,Entertainment,In which film did Henry Fonda play a fallen priest?,The Fugitive,General,For what new england woman's college was the first brand of wrigley's gum named,Vassar -General,Who wrote the books on which the television series The Darling lands of May was based,H e bates,General,What name is given to a full length mirror on a swivel,Cheval, History & Holidays,Which doctor offered good advice in When Youre In Love With A Beautiful Woman? ,Dr Hook  -General,What is Chartres Cathedral in France famous for having 160 of,Stained glass windows,General,"On Three's Company,what was Jack's retaurant that he opened and was head chef ?",Jack's Bistro,General,"Who appears on the 10,000 dollar (US) note?",Salmon Chase -General,Who built the concorde,Britain and france,General,"What's the international radio code word for the letter ""X""",Xray,General,What Nationality Was Henry The VIII's Fourth Wife Anne Of Cleeves,German -General,The Beatles film Help was dedicated to the inventor of what,Sewing Machine – Elias Howe,General,In which city is the Blue Mosque,Istanbul, History & Holidays,Marvin Lee Aaday Is The Real Name Of Which Rock Star Who Also Appeared As Eddie The Ex Delievery Boy In The Movie The Rocky Horror Picture Show ,Meatloaf  -General,What flower is the symbol of culture,The Lotus, Entertainment,What Magician walked through the great wall of china?,David Copperfield,General,Which garment gets it's name from the Latin to cover,Toga -Science & Nature,Which Is The Most Common Plant In The World? ,Grass ,Music,Name The Musical Major Whose Plane Dissapeared Somewhere Over The English Channel In December 1944,Glen Miller,People & Places,After Which Famous Person In History Was The Teddy Bear Named ,Theodore Roosevelt  -General,What was Robert Browning's pet name for his wife Elizabeth,Portuguese, History & Holidays,Who was captain of 'The Mayflower'?,Miles Standish,General,In what prison did Nelson Mandela spend 19 of 27 years in jail,Robben Island -General,Where were Archie and Edith Bunker's chairs enshrined?,The Smithsonian Institute, Geography,Bogota is the capital of ______?,Colombia,Entertainment,In the cartoons who was Hokie Wolf's sidekick?,Ding -General,Someone with initials DD after their name has what qualification,Doctor of Divinity,Music,"Who Had A Hit With With ""Ebeneezer Goode""",The Shamen,Geography,What is the capital of Jordan,Amman -General,Who courageously proved that lightning was electricity,Benjamin franklin,General,"Brahma, Vishnu & Shiva are gods in which religion",Hindu,General,In which language does God Jul mean happy Xmas,Swedish -General,Mumbai is the modern name of which city,Bombay,Music,"""Noddy Holder, Dave Hill, Jimmy Lea, Don Powell) Were All Members Of Which Popular Band",Slade, Geography,What is the basic unit of currency for Cuba ?,Peso -General,"What's the sky king's home, near the town of grover, called",Flying crown,General,In WW2 in what French city did the Germans surrender,Reims,General,A monetary inflation at a very high rate,Hyperinflation -General,What is a baby eel,Elver,General,What puppet was based on the creators former wife Sylvia,Lady Penelope,Music,"Who Were Dane, Wayne, Mark And Bobak",Another Level -Entertainment,On what T.V. show could Tom Terrific be found?,Captain Kangaroo,General,In Hawaii what is the annual Kona festival,Coffee picking contest,General,What author criticised evangelism in his novel Elmer Gantry,Sinclair Lewis -General,"In Greek mythology, who helped theseus escape the labyrinth",Ariadne,General,Which Norwegian politicians name became a word for traitor,Vidkun Quisling,Science & Nature,The process of removing salt from sea water is known as ________.,Desalination -Food & Drink,"Add this to milk, eggs, and sugar to make a Tom and Jerry.",Rum,General,The Davis Strait lies between Canada and where,Greenland,General,"Who Provided The Voice Of ""Bruce"" In The Disney Animated Movie ""Finding Nemo""",Barry Humphries -General,Approximately how many times a minute does lightning strike the earth?,Six thousand,General,Who wrote 'the time machine',H.g wells,General,"John Paul Getty, world's richest man had what in his house",A Payphone -Science & Nature,Which Is The Disease Tetanus Also Known As ,Lockjaw ,General,What is PLO an abbreviation for ?,Palestine Liberation Organization,General,In the food industry what is TVP - i.e. what's it stand for,Textured Vegetable Protein -General,"In the year 1000, leif erikson was the first european to set foot on ______",North america, Geography,What is the capital of Montana?,Helena,General,A charge of dwai is for what,Driving while ability impaired -General,How did Alice get into the land of the living chess pieces,Through the looking glass,General,Phobia What is the fear of being evaluated negatively known as,Social, Geography,What is the capital of Colombia?,Bogota -Geography,In what country is the mekong river delta ,Vietnam ,General,What was gary puckett's backup band,Union gap,General,What is another word for a female sheep?,Ewe -Science & Nature,Who Was Inspired By An Apple Falliing ,Sir Isaac Newton ,General,What symbols name derives from Greek for star,Asterisk,General,Who was nicknamed The Admiral of the Mosquitoes,Christopher Columbus -Science & Nature,What Is The Male Sex Hormone Called ,Testosterone ,Sports & Leisure,Who was the first footballer to be knighted in this country? ,Sir Stanley Matthews ,General,The bander macaque has which commoner name,Rhesus Monkey -General,What is the fear of pellagra known as,Pellagrophobia, History & Holidays,Where were numerous French nuclear tests conducted?,Muraroa Atoll,Art & Literature,In Which City Is Leonardo Da Vinnci's (Last Supper) Displayed ,Milan  -General,What was willie mosconi famed for shooting,Pool,General,In the famous song my true love sent me nine what,Drummers drumming,General,What is the capital of Romania?,Bucharest - Geography,Who is regarded as the most influential monarch of Russian Romanov Dynasty?,Peter I,Geography,What Is The Capital Of The Philippines? ,Manila ,General,Kathisophobia is the fear of,Sitting down -General,Which organic compound is the psychoactive ingredient in Budweiser?,Ethanol,Sports & Leisure,Who was the first american to win the Formula 1 championship?,Phil Hill,General,What two states are not connected to the main part of U.S.,Hawaii & alsaka alaska & hawaii -General,Scottish sailor Alexander Selkirk became inspiration for what novel,Robinson,General,Who is the Patron Saint of Accountants,Saint Matthew,Geography,Name the smallest of the Great Lakes.,Ontario -Food & Drink,Who invented the Egg Mcmuffin?,Ed Peterson,General,Who wrote The Ipcress File,Len deighton,General,What should you give after 15 years of marriage,Crystal -Sports & Leisure,How many points are awarded for a safety touch in football,Two,General,Who is the roman goddess of childbirth,Carmenta,General,In which US state is its highest mountain,Alaska - Mount McKinley -General,In Baseball slang who would use The tools of Ignorance,Catchers Equipment,Music,Who Had A Really Good Saturday Night In 1994,Whigfield,Sports & Leisure,"Which Footballer Played For The La Aztecs, Fort Lauderdale Strikers & San Jose Earthquakes? ",George Best  -General,In the suburbs of which modern Egyptian city would you find the pyramids,Cairo,General,What is the more popular narne of the plants belonging to the genus galanthus,Snowdrop,General,In the Simpsons who is the godfather of the Springfield mafia,Don Vittorio -General,What is an 'aceituna' in english,Olive,Music,"When Did Pop Innovators Kraftwerk Drive Autobahn To No 11 (1973, 1975, 1977, 1979)",1975,Music,"George Michaels ""Father Figure"" Was Released In 1986 Or 1988",1988 -Music,Name Paula Abduls First Ever Album,Forever Your Girl,General,A can of orange crush appears on every episode what TV series,ER,General,What alloy do copper and tin form,Bronze - History & Holidays,Who did the los angeles times endorse in the 1964 preisential election ,Barry goldwater ,General,"She was a reletive of Sir Philip Sydney and the Countess of Pembroke, authored the famous sonnet sequence Pamphilia to Amphilanthus?",Lady Mary Wroth,General,What's the second most spoken language on earth,English -General,What is the longest river in western Europe,The Volga,General,Which car won the 1953 italian grand prix,Maserati,General,What is the study of heredity called,Genetics -Music,Name Disco Tex's group?,The Sex-O-Lettes,General,What soviet republic was devastated by an earthquake in 1988,Armenia,Science & Nature,What Is A Micron ,One Millionth Of A Meter  -General, An animal stuffer is a(n) ________.,Taxidermist,General,What organisation recently banned in Russia as paramilitary,Salvation Army,Music,In Which Year Did Janis Joplin Die,1970 -General,What has a type of hair on their eyes,Honeybees,General,On MTV's Blame Game what is the name of the Judge?,Judge Reed,General,Which was the first 'spaghetti western' starring Clint Eastwood,A fistful of dollars -Music,Who Was The Lead Singer Of Bad Manners,Buster Bloodvessel,General,Aegis belonged to Zeus what was Aegis,A Shield, History & Holidays,Who is Prince Vladimir Tepes better known as?,Dracula -General,Desert antelope that originally ranged from the western Sahara and Mauritania to Egypt and the Sudan,Addax,General,Who replaced moses as the prophet of the israelites,Joshua,Food & Drink,Which European nation were the first to drink tea? ,The Dutch  -General,A tornado at sea is called a ___,Waterspout, History & Holidays,He received the Nobel Peace Prize in 1964 for his civil rights leadership.,Martin luther king jr,General,The u.s has never lost a war where they used ______,Mules -General,Only one world team horseracing event at Ascot what trophy,Shergar Cup,General,"Ornament of ribs, bars, etc. in panels or screens, as in the upper part of a Gothic window.",Tracery,General,What is the Capital of: Indonesia,Jakarta -Mathematics,Benoit Mandelbrot discovered what mathematical structures?,Fractals,Science & Nature," 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,General,In Japan what colour car is reserved for the royal family only,Maroon -General,How many days where there in 1976,366,General,What crime did Sid Vicious commit in 1978,Murder,General,Where were numerous french nuclear tests conducted,Muraroa atoll -General,Pocrescophobia is the fear of,Gaining weight,General,In what series of books did The Empress of Blandings appear,Jeeves and Wooster a pig,General,Who was nominated for a BAFTA Award in 1997 as a result of an interview with the Duchess of York,Ruby wax -General,Which French athlete won both the 200m and the 400m on the track at the 1996 Atlanta Olympic Games,Maria-jose perec, History & Holidays,Composer George Gershwin died in1937 at the age of 38. How did he die? ,Brain Tumour , History & Holidays,What time of day is known as the 'Devils Dancing Hour' ,Midnight  -General,Which Yorkshire river is formed by the confluence of the Swale and Ure,Ouse,General,"Acute, infectious, contagious disease of the respiratory tract, especially the trachea",Influenza,General,X only letter in alphabet that there is no name for who using,The Devil -General,Ed Moses won the 400 metre hurdle title in which year,1984,General,What falls out with phalacrosis,Hair,General,Who wrote the music for the 1948 film 'Scott of the Antarctic' and made a symphony out of it,Vaughan williams -General,"What part of the body has a crown, a neck & a root",Tooth,General,Smith most common USA name what's second,Johnson,General,Which Greek island is said to be the birthplace of Apollo,Delos -General,The majority of small toothed whales are called_______,Dolphins,Music,What Beatles song won a Grammy as the Best Song of 1966?,Michelle,Music,"She Was Backed By The New Bohemians And Had A Hit With ""What I Am"". Name Her?",Edie Brickell -General,A group of ducks is called,Brace,General,Followers of which religion use prayer wheels,Buddhism,General,Of what is 98% of the weight of water made,Oxygen -General,What was built by the inmates of Changi Prison Camp,Burma Railroad,General,What were the names of Amanda's boys on Scarecrow and Mrs. King?,Phillip and Jamie,General,Who is Christina Claire Ciminella otherwise known as?,Wynonna Judd -General,What sport features the fastest moving ball,Jai alai,General,Louis Pasteur developed a vaccine for what,Rabies,General,Fall Down' was a hit for which Santa Barbara band,Toad the Wet Sprocket -General,PG Woodhouse books Bertie Wooster used what London Club,Drones,General,ABC Is One Of The National Newspapers In Which City?,Madrid,General,"What Dodger struck out 2,396 batters in 2,324 innings",Sandy koufax -Science & Nature,Who devised the periodic table of elements?,Mendelev,General,In India what is a khidmutgar,A Waiter,General,What is the english equivalent of the name ian,John -General,Wakame Tengusa and Mozuku are Japanese what,Edible seaweed,General,What is the fear of relatives known as,Syngenesophobia, History & Holidays,What Left Lisbon On May 28 th 1588 & Did Not Return Intact ,The Spanish Armada  -General,Giovidi is what day in Italian,Thursday,General,Which country makes the most films per year,India,Geography,Where is Beacon Street,Boston -Sports & Leisure,As We All Know David Beckham Now Plays For US Team LA Galaxy But Who Is The Coach For La Galaxy ,Ruud Gullit ,General,What does the name Barbara mean - from Greek,Strange or Foreign,General,"Who's the ""me"" in the book elvis and me",Priscilla presley -General,"On IRC, how do you ask age, sex, location?",Asl,General,What was the former German name of the Czech town of Ceske Budejovice,Budweis,Sports & Leisure,What is the heaviest class of weight-lifting?,Super heavyweight -Music,Name The Only Act To Have Had 3 Christmas No.1's In The 90's?,The Spice Girls,General,What common British river name come from Celtic for river,Avon,General,"On The Day Of Elizabeth II's Coronation, Another Major Historical Event Took Place What Was It?",Mount Everest Conquered -Food & Drink,From which fruit is the liqueur Kirsh made?,Cherry,Geography,What American city is known as Little Havana,Miami,Food & Drink,"From Where Does Sherry, The Fortified Wine Originate ",Jerez In Spain  -General,Who starrs in the show 'moesha',Brady,General,Animal or plant without the normal pigmentation of its species,Albino,Sports & Leisure,Who Was The First Football Player To Score A Hat -Trick In The World Cup finals? ,Geoff Hurst  - History & Holidays,Which Wild West legend was born Henry McCarty? ,"Billy the Kid, alias William H Bonney ", History & Holidays,What American city was called New Amsterdam in the early 17th century?,New York, History & Holidays,"Who Had An 80's Hit With The Song 'Two of Us,' ",Grover Washington with Bill Withers  -General,"In denmark, who takes the place of santa claus",Nisse,Art & Literature,Who created 'Horton' the elephant?,Dr. Seuss,General,Why was Boris Pasternak's Nobel Prize for literature in 1958 excetional,He refused -General,Which World Famous news agency began life in 1850 using carrier pigeons,Reuters,General,"Which US state was known as ""The mother of Presidents""",Virginia 4 out of 1st 5,General,Name given to the religious of Iran,Ayatollah -General,"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,General,What Did Dick Whittington Achieve That Jeffrey Archer Didn't,Lord Mayor Of London,Science & Nature,The smallest portion of a substance capable of existing independently and retaining its original properties is a(n) __________.,Molecule -General,What Was The first TV Show To Give Away One Million Pounds,TFI Friday,General,What book starts with the words - Call me Ishmael,Moby Dick,General,In what city is the Uffizi art gallery,Florence -General,Sports: what do the letters al stand for,American league,General,What colour lenses are required to view a 3-d film,Red and green,Science & Nature,Which Is The Only Mucsle Not Atteched At Both Ends ,The Tongue  -General,"Who portrayed Jeannie in ""I Dream Of Jeannie""",Barbara eden,Geography,"What is the largest country in Africa, by area",Sudan,Geography,What city is associated with Alcatraz,San francisco - Geography,Which state is the Evergreen State?,Washington,General,"Black, cementlike material varying in consistency at room temperature from solid to semisolid",Asphalt, Geography,What is the basic unit of currency for Mexico ?,Peso -General,To who did boris spassky lose in the world chess championship,Bobby fischer,General,What was the name of the high school in the movie Grease,Rydell,Entertainment,What was Garth's last name in 'Wayne's World'?,Algar -General,What is the capital of connecticut,Hartford,General,What Italian building material translates as baked earth,Terracotta,General,Which artist painted the 'Arnolfini Wedding'?,Jan Van Eyck -General,"In arabian mythology, what is the spirit of a murdered man seeking to avenge his death",Afrit,General,Who occupies taiwan,Nationalist chinese,General,In Wisconsin its illegal to do what during your wife's orgasm,Fire a Gun -General,Which TV gangster owns the nightclub called The Ba Da Bing,Tony Soprano,Music,Now That Weve Found Love Was A Hit For Which Jamaican Group,Third World,Music,"Elvis Costello's First Single ""Less Than Zero"" Was About Which Fascist Leader",Oswald Moseley -General,What colour is the cross on the Greek Flag,White, History & Holidays,Which re-released Queen anthem topped the Christmas charts in 1991 ,Bohemian Rhapsody , Geography,What is the world's largest desert?,Sahara Desert -General,Development of agricultural ecosystems intended to be complete and self sustaining,Permaculture,General,What 1970 movie hit was banned on military bases,MASH,Music,"Father gets up late for work, Mother has to iron his shirt, Then she sends the kids to school, Sees them off with a small kiss, She's the one they're going to miss",Madness / Our House -Art & Literature,Who wrote The Canterbury Tales?,Geoffrey Chaucer,General,Cleveland four u.s presidents have served entire terms without having a ______,Vice,General,"In Greek mythology, where did perseus kill his grandfather",Larrisan games -General,A disease of the brain,Encephalopathy,Science & Nature,What is an organism called that lives on or in a host animal?,Parasite,General,Actor “John Altman” Is Best Known For Playing Which TV Soap Character ?,Nasty Nick Cotton (Eastenders) -General,What is embolia,Hesitations in speech, History & Holidays,What Space Rocket Was Destroyed During Ground Tests At Cape Canaveral In 1967 ,Apollo 1 ,General,"Famous for blues and jazz, in which city is Basin Street",New orleans -General,And what the least - two tablespoons per person,Egypt,General,Which gas forms bubbles in the bloodstream when a diver gets the bends,Nitrogen,General,Name the dogs in Magnum PI,Zeus Apollo -Religion & Mythology,What 'S' was a king of israel who was famous for his wisdom?,Solomon, History & Holidays,Who first conceived the idea of a Christmas tree ,Prince Albert ,General,The character Charley Allnut appeared in which film,The african queen -People & Places,Which individual bought one of Leonardo Da Vinci's notebooks for over 19 million pounds in 1994? ,Bill Gates ,Sports & Leisure,In Football Who Was Liverpool's Captain When They Won The European Cup Final In 1977? ,Emlyn Hughes ,Geography,"The smallest U.S. state in area, west of the Mississippi River, is _____________",Hawaii -General,What is the Capital of: Papua New Guinea,Port moresby,General,What does 4wd on a car indicate,Four wheel drive,General,What's the locale for the farmer's daughter,Washington dc -Art & Literature,Who did Macduff kill?,Macbeth,General,What is the flower that stands for: always lovely,Indian double pink,General,"In 1981, who won best actress emmy for the tv sitcom 'the jeffersons'",Isabel -Science & Nature,What Temperatutre Is Absolute Zero ,-273 Degrees C Or Kelvin - 459 Degrees F ,General,International Airline Registrations SX is what country,Greece,General,"A robin's egg is blue, but if you put it in vinegar for thirty days, what color does it turn",Yellow - History & Holidays,Who sailed to the new world in 'The mayflower'?,Pilgrims,General,What is a group of this animal called: Bird,Flock flight congregation volery,General,What was the capitol of Russia before Moscow,Saint Petersburg -General,What is myrmecology the study of,Ants,General,"Which city is a 'player with railroads, and the nation's freight handler'?",Chicago,Music,Name The First Big UK Hit For The Chiffons In 1963,He's So Fine - History & Holidays,"Who said: ""Let them eat cake""?",Marie Antoinette, History & Holidays,Who Released The 70's Album Entitled Layla & other assorted love songs ,Derek and the Dominos ,General,Credits on all Bond films finish with 4 words James Bond what,James Bond will return -General,Trunk lid name the only president to be married for the first time while in office,Grover cleveland,General,Of what is pedology the study,Soil,Music,What song got to number 1 in 1993 by the 'Bluebells'?,Young At Heart -General,The US uses up 7000 tons of what annually,Currency - it is shredded,Music,Who did Michael Jackson Marry In 1994,Lisa Marie Presley,Sports & Leisure,Which American Football Team Are Known As The Chargers? ,San Diego Chargers  -Science & Nature, It takes about 50 hours for a snake to digest one __________,Frog,General,In Disney's Bedknobs and Broomsticks what magic words used,Bibbity Bobbity Boo,General,Jack and Jill went up a ____ to fetch a pail of water?,Hill -General,Which country did boxer Lennox Lewis represent in the 1988 Olympics,Canada,General,Name the only actress with 4 Best Drama Actress awards,Tyne Daly,General,What is the square root of 4096,64 -General,How many records does an album have to sell in the UK to go Platinum?,"300,000",General,Whose capture by the russians brings the bulging warrior back to rambo iii,Colonel trautman's col trautman's,General,Who was the last Emperor of France,Napoleon III -General,What's the fastest sea dwelling mammal,The dolphin,General,"What are Blur Crow, Brimstone, Owl and Ringlet types of",Butterflies,General,The force that brings moving bodies to a halt is _________,Friction -Entertainment,What was Ben Stiller's character called in 'Mystery Men'?,Mr. Furious,General,Who is credited with inventing the transistor,Dr william shockley,General,Which group had the hit album 'White on Blonde',Texas -General,At which olympics did Zola Budd accidentally trip Mary Decker,1984,Science & Nature,What Is Another Name For The Large Intestines ,The Colon ,General,What did victorian women try to enlarge by bathing in strawberries,Breasts -General,In Penny Lane what is the nurse selling from a tray,Poppies,General,What's spain's biggest source of income,Tourism, History & Holidays,This Nazi leader had his six children poisoned prior to his own death.,Joseph Goebbels -General,What religion does a 'rabbi' practise,Judaism,General,"Eight thousand in the middle ages, where did people believe the seat of intelligence was",Heart,Science & Nature,What Do Koala Bears Live On? ,Eucalyptus Leaves  -General,What is the common name for hydrogen oxide,Water,General,Collective nouns - A Descent of what creatures,Woodpeckers,Music,Peter Sellers Recorded A Spoof Of Which Beatles Song In The Style Of Laurence Oliviers Richard 3rd,A Hard Days Night -General,What is the ninth letter of the Greek alphabet,Iota,General,In New Zealand what is morepork,A Bird - call sounds like morepork,Toys & Games,A bridge hand with no cards in one suit is said to have a _______.,Void -General,"What caused a separation of Baja, California and the rest of Mexico",The San,General,In the bible who slew a quarter of the worlds population,Cain killing Abel,Music,Which Song Did Dennis Waterman Sing As The Theme Tune To Minder,I Could Be So Good For You -Music,By What Name Is Pianist Ferdinand Joseph Lemott Remembered,Jelly Roll Morton,Geography,On which River does the City of New York stand ,The Hudson ,General,What country makes Sukhindol wine,Bulgaria -General,What european language is most closely related to mongolian,Finnish,General,What kind of pendulum twists instead of swings,Torsional,General,Accra is the capital of ______,Ghana -Science & Nature,For what is the chemical formula H2O2?,Hydrogen peroxide,General,Which animal secretes the pigment sepia,Cuttlefish,General,If the doctor gave you salversan he would be treating your what,Syphilis -General,What state is 'the hoosier state',Indiana,General,What us state includes the telephone area code 615,Tennessee,General,In Which Sport Would You Perform A Fliffus?,Trampolening -General,Who wrote the children's story The Old man of Lochnagar,Prince Charles,Music,Which British band was led by Tim Booth?,James,General,Name of the Major General who invented the exploding shell,Henry Shrapnel -Music,"Which Was The First Group Beginning With The Letter ""V"" To Have A UK No.1 Hit",Village People,General,What is the first name of the French painter Matisse,Henri,General,Chinese cooking what's special about Wolfs hearts Dogs lungs,Only things not used -General,What is e.g. an abbreviation of ?,Exempli gratia,Art & Literature,Who dubbed Australia 'the lucky country'?,Donald Horne, History & Holidays,What was Elvis Presley's first motion picture? ,Love Me Tender  -General,Which Animated Movie Became The First To Receive An Oscar Nomination For Best Picture,Beauty And The Beast,General,Which Brand Had To Make An Apology When They Unveiled Their Logo As It Looked Very Similar To The Arabic Symbol For Allah?,Nike,General,Thread made from intestines of sheep used for strings of musical instruments,Catgut -Music,What Was The Name Of Elvis Presley's Backing Group,The Jordinaires,Sports & Leisure,"What sport has four different color codes for the balls, ranging from yellow for hot conditions to blue for cold ",Squash ,General,Name both of the cities to represent a letter in the phonetic alphabet,Lima & quebec -General,Fear of dryness is called,Xerophobia,General,Whats the highest mountain in the Alps,Mont blanc,General,What is a braquette,Fake Dick extension 14th century -General,"If body temperature was 86 degrees, how many years would a man man live?",200,General,In Texas its illegal to swear in front of what,A Corpse,General,Legal Terms: The people chosen to render a verdict in a court.,Jury -General,Whose yacht was called Honey Fitz,John Fitzgerald Kennedy,General,The wwii air attack on the Ploesti oil field in Romania was known as,Operation soapsuds, History & Holidays,What purged the Great Plague of London ?,Great Fire of London -General,What Does The Initial 'T' Stand For In Cat Scan,Tomography,General,Bengal Dimension 6 Falcon 3 possible names what was chosen,Nike - but others were considered options,General,What is the name of the spaceship in the film 'Alien',Nostromo - Geography,What is the capital of Croatia?,Zagreb,General,Which country controlled Angola prior to its independence,Portugal,General,Col Meriweather Lewis Clark Jr developed rules for what in US,Horseracing -General,Who are the two most translated English writers,Shakespeare – Agatha Christie,General,Fill in the blank: when in ____ do as the Romans do,Rome, History & Holidays,Who Released The 70's Album Entitled My Aim is True ,Elvis Costello  -General,Captain Flint buried his treasure where ( Ben Gunn dug it up ),Skeleton Island,Entertainment,"Who played ""Robin"" to Val Kilmer's ""Batman""?",Christopher O'Donnell,General,"According to tradition, which animals desert a sinking ship",Rats -General,What is the full name of lake tonka,Lake minnetonka,General,Ganesha is the hindu god of ______,Good fortune,General,A container for carrying a corpse from the scene of an accident etc.,Body bag -General,What Type Of Acid Is Contained Within A Bee Sting,Formic,General,U.S. captials Arizona,Phoenix,General,Earth's outer layer of surface soil or crust is called the,Lithosphere -General,1777 George Macintosh created a red dye cudbear what is it,Litmus – Ammonia and lichens,Food & Drink,Traditionally what type of meat is used to make a mousakka? ,Lamb ,General,Which long motor race is held in France every June,Le mans 24 hour -Music,David Sylvian Was The Former Frontman Of Which Group,Japan,General,What does a notaphile collect,Bank notes, History & Holidays,What does LL Cool J.'s name stand for? ,Ladies Love Cool James  -General,What is the national religious folk cult of haiti,Voodoo,General,Where will you find the greater & lesser trochanters,The femur femur,General,What averted an arab boycott of the 1948 summer olympics,Israel's exclusion -General,Lobster like freshwater crustacean,Crayfish,General,Lentigines is the medical term for what,Freckles,Sports & Leisure,In 1996 Who Lit The Olympic Flame In Atlanta Georgia ,Muhammad Ali  -Music,What was Buddy Holly’s real first name?,Charles Hardin Holly,General,An octopus has how many hearts,Three, Geography,In what Province Is Dublin?,Leinster -General,What did Sir Arnold Lunn begin in Switzerland,Slalom skiing,General,During what was alcohol was made illegal,Prohibition,General,The first battle in the War of American Independence took place where,Lexington -General,What is a group of horses,Herd,General,What Chinese zodiac sign is this year?,Snake,General,Jean-Claude Killy was a famous name in which sport?,Skiing -General,What is a hypocaust,Roman Heating System,General,Which vegetable is also a flower,Broccoli,General,Kinetophobia is a fear of ______,Movement -General,"Who said - ""A woman only a woman - good cigar is a smoke""",Rudyard Kipling,Sports & Leisure,Which piece of sports equipment is a Louisville slugger? ,A Baseball Bat ,General,"In cookery, what term is used for the sprinkling of food lightly and evenly with flour, sugar, etc",Dredging -General,What is the Latin word for to roll,Volvo,General,What number is at 6 oclock on a dartboard,Three,General,What is the worlds largest sea (in area),South China -General,What was found by the River Deben in East Anglia in 1939?,Sutton Hoo Burial Ship,Science & Nature,Hydrogen Hydroxide is more commonly known as what,Water,General,In Which Sport Would You Stand At Silly Point,Cricket -General,What colour is angelica,Green,General,Who directed the film M,A s h robert altman,General,Who was the last Roman Catholic King of England,James II -General,"Name of George Clinton's corporation which put out ""One NAtion Under A Groove""",Parliafunkadelicament thang,General,In which film were the entire cast nominated for oscars,Who's afraid of,General,Name was Richard Kimble's favourite alias in the TV series,Jim -Music,"In Which Year Was YMCA First Released 1975, 1977 Or 1979",1979,Science & Nature,Who wrote 'A Brief History of Time'?,Stephen Hawking,General,Maieusiophobia is the fear of,Childbirth -General,Which European country suffered one of the world's highest ever rates of hyper-inflation in 1946?,Hungary,General,What flowers name derives from the Greek word for testicle,Orchid,General,What is a group of this animal called: Gorilla,Band -General,Who wrote the book - Call of the Wild,Jack London,General,What mammal has hair - on the soles of its feet,Polar Bear,General,What is the only country that is also a continent,Australia -Science & Nature,What animal can hop as fast as 40 mph?,Kangaroo,General,Who founded Methodism in 1738,John Wesley,Art & Literature,Which publishing company was founded in London in 1935 by Allen Lane? ,Penguin  -General,Ingemar Stenmark won record 85 world cup races in what sport,Skiing,General,Cockroaches will eat anything except what,Cucumbers,General,What is a group of cranes,Termites -General,In what sport do you need brooms and brushes,Curling,Music,Which Singer Fronted Bronski Beat And The Communards,Jimmy Sommerville,General,Your nares are your _____,Nostrils -General,Traditional English dance in which dancers form two facing lines.,Country dance,General,Kinetophobia is the fear of,Movement motion,Entertainment,"With which period in music do we associate composers such as Beethoven, Mozart and Haydn?",Classical period -Music,Which Instrument Connects Glen Miller & Tommy Dorsey,Trombone,General,What killed half the US soldiers in WW1,1918 Flu Epidemic,General, The distance around the outside of a circle is its ________.,Circumference -General,Jockey / Author Dick Francis what injury on his wedding day,Broken collar bone,Science & Nature, Dead sponges can resist bacterial decay for more than five years when submerged in __________,Fresh water,General,What is a group of leopards called,Leap -General,Which major car manufacturer will take over the Benetton Formula 1 team next years,Renault,General,"Who played the respectable hooker in ""From here to Eternity""",Donna Reed,General,Where is appomattox,Virginia -General,What are the two primary ingredients in cracker jack,Popcorn and,Sports & Leisure,Which 2 steves were record breaking middle distance runners in the 70's 80's ,Steve Cram & Steve Ovett , History & Holidays,Which Famous Female Solo Artist Was Born On Christmas Day 1971 ,Dido  -General,Bob Clampett created which character in 1938,Bugs Bunny, History & Holidays,In which country was Adolf Hitler born,Austria, History & Holidays,Which Lancashire Town Has A Name That Means A Small Brass Wind Instrument Used For Summoning Witches & Warlocks ,Oswaldtwistle  -General,"What Japanese word ironically means "" May you live forever """,Banzai,General,Tom sawyer was the first novel written on a ______,Typewriter,General,1987 A Philadelphia Councillor bill banned carrying what in public,Snakes -General,"In his play The Birds, what name did Aristophanes give to the birds' kingdom in the sky",Cloud cuckoo land,General,What causes baker's itch,Yeast,General,John Books was the final role of which actor,John Wayne in The Shootist -General,A sun-dried grape is known as a(n) ___________,Raisin,General,"Moussaka"" is a traditional dish from which country",Greece,People & Places,Who Was Known As The Forces Sweetheart ,Dame Vera Lynn  -Music,How Many Uk No 1’s Did The Beatles Have In Total,18,General,"In international car registrations, which country has the letters RA",Argentina,General,Which building commemorates the Great Fire of London?,Monument -General,What does an ecclesiophobic fear,Churches,Science & Nature,How Does A Giraffe Clean Its Ears? ,With Its Tongue ,General,What does the boys name Neil mean,Champion - Irish - History & Holidays,Which emperor made his horse a senator?,Caligula,General,"Bear, Bird, Goat, Eagle, Swan and Rabbit what links in Ireland",All Islands,General,"According to the Gospel of Saint John, what 'lay on the other side of the Brook of Cedron'",Garden of gethsemane -General,On which great lake are buffalo and cleveland,Lake erie,Geography,What continent is sierre leone in ,Africa ,General,What vegetable gets its name from old French / Latin for milk,Lettuce -General,What is the first ingredient in most soda pops,Carbonated water,General,What is the criminal number of jean valjean in 'les miserables',24601,Sports & Leisure,In Which Sport Do The Participants Wear Sheep Skin Nose Bands ,Horse Racing  -General,"In Ferris Bueller's Day Off, what is the Principal's name?",Mr. Ed Rooney,General,Who devised the idea of a flat rate postal charge,Charles Babbage,General,What is the nickname for New Orleans,Crescent city -General,In the song My Darling Clemantine how did Clemantine die,Drowning,General,What are 35% of people using personal ads for dating,Married,General,Pnigophobia is the fear of,Choking being smothered -General,Who or what was introduced to the USA in 1964,G I Joe,General,What crime causes the second most number arrests in USA,Drink Driving,General,Anita Lonsborough Became The First Female To Win What In 1962 (She Won Medals At The Olympics But Wasnt The First),BBC Sports Personality Of The Year -Sports & Leisure,Which Increasingly Popular Winter Sport Was Introduced As An Official Event At The 1998 Games ,Snow Boarding ,Science & Nature,What Disorder Results In Compulsive Eating And Induced Vomiting ,Bulimia ,General,"What large fish earned the nickname ""cheetah of the sea"" for its speed in the water",Tuna the tuna -General,What is a group of this animal called: Colt,Rag,General,What is vodka made from,Grain or potatoes,General,"In America during Prohibition, what name was given to an illegal drinking bar",Speakeasy -Music,"Who ""Beat The Clock"" To Number 10 In 1979",Sparks,General,1949 Popular Mechanics said that future ones less 1.5 tons?,Computers,General,April 20 1896 was the first time people paid to do what,See a movie in NY -General,Quinine is obtained from what part of an evergreen tree,Dried Bark Bark,General,What animal has no natural predators,Tiger,General,Robin Williams dressed in drag for which 1993 film,Mrs Doubtfire -General,"What is a flat, round hat sometimes worn by soldiers",Beret,Science & Nature," __________, 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,Science & Nature,In Internet Chatroom Speak If You Wrote The Letters 'YGLT'' What Would It Mean ,You're Gonna Love This  -General,What company developed the dot matrix printer for 64 Olympics,Seiko,General,Where did georgo and laszlo biro invented the ball point pen,Hungary,Geography,Of Which Country Is Lusaka The Capital ,Zambia  -Music,"What was the real name of Kool,of Kool and the Gang fame?",Robert Bell,Art & Literature,Name The Tibetan Mountain Retreat Featured In (The Lost Horizon) ,Shangri-La ,General,"What former riverboat pilot & author called the Mississippi ""the crookedest river in the world""",Mark twain -General,What song was The Pittsburgh Pirates anthem,We are Family – Sister Sledge, History & Holidays,Who was the British Prime Minister at the outbreak of the Second World War? ,Neville Chamberlain ,General,Have you ever danced with the devil in the pale moonlight?,Batman -General,"What links Fitzroy, Essenden, Collingswood and Carlton",Aussie rules football teams,Music,On Which Label Did Elvis Launch His Career,Sun,General,A thin Indin cake of unleavened bread,Chapatti -General,Between what ages is a brandy or port described as VSO,12 to 17 years,General,"Queequeg, Daggoo, Tashteego had what job on the Peaquod",Harpooners,General,What do people in cold climates add to the water in a car's radiator in winter,Anti freeze -General,Who did mozart marry,Constance weyburn,Music,"With Which Spice Girl Did Missy ""Misdemeanor"" Elliot Sing On ""I Want You Back""",Mel B / Scary Spice,General,"Who wrote ""everyone lives by selling something""",Robert louis stevenson -Tech & Video Games,"What is a ""koopa?"" ",A turtle,General,Name the chauffeur of the car in which the Princess of Wales died,Henri paul,General,"What, in the second line of Longfellow's poem, stands ""Under a spreading chestnut tree""",The village smithy -General,In Italy what is Provolone,Smoked hard cheese, Geography,What is the capital of Ghana?,Accra, History & Holidays,In which 1947 Christmas film do a lovestruck couple pretend that the snowman is Parson Brow ,Winter Wonderland  -General,Sir Wilfred is the real name of which eponymous character,Ivanhoe,General,How did Pope Hadrian IV die,Choked on a fly,General,"Who has been known as the ""mother of country music""",Maybelle carter -General,The roadrunner belongs to what family of birds,Cuckoo,Food & Drink,Tequila is made from an extract of which species of cactus?,Agave,General,The Parthenon is named after Athena Parthenon what's it mean,Virgin or Maiden -Food & Drink,What Was Sweet Stout Known As Until Banned Under The Trade Description Act ,Milk Stout , Geography,Ouagadougou is the capital of ______?,Burkina Faso,General,Which Record Was The Last UK No.1 Of The 1970's And Obviously The First No.1 Of The 80's,Another Brick In The Wall -General,In Schulter Okalahoma illegal for towel wearing women do what,Gamble,General,The study of plants is ______.,Botany,General,"What comes in varieties called Duncan, Burgundy and Marsh",Grapefruit -General,Aquatic mollusc with hinged double shell,Bivalve,General,What is the name of the princess in Sleeping Beauty,Aurora,General,The Ionian islands are nearest what country,Greece -General,What would the ancient Greeks do with an Apodesm,Wear it type of bra,General,"In 'star trek', who was the captain of the 'enterprise c'",Rachel garret,Food & Drink,What Type Of Wheat Is Pasta Traditionally Made From ,Durum Wheat  -General,With what would you rock the baby or walk the dog,A Yoyo,General,"In Greek mythology, who did diemos personify",Dread,General,What does the girls name Amy mean,Fit to be loved – from French -General,"Who wrote the poem ""The Pied Piper of Hamlin""",Robert Browning,General,What did sheryl crow do before she became a singer,Teach,General,Where was the first skyscraper in the world built,Chicago -Sports & Leisure,On what type of surface are the tennis matches at Wimbledon played,Grass,General,Ancient Egyptians shaved their eyebrows to mourn the deaths of what,Their cats,General,"He said 'i have nothing to offer but blood, tears, toil and sweat'?",Winston churchill -General,What are the membranes enveloping the brain and spinal cord called,Meninges,General,What does 'dvd' mean,Digital video disc,Science & Nature, The male __________ sheds its antlers every winter and grows a new set the following year.,Moose -Food & Drink,From which fruit is the liqueur Kirsh made ,Cherry ,General,Which two colours appear on the Bangladesh flag,Green & red,General,"In the confederate army, who were given copies of 'les miserables'",Officers -Music,"Who Supported John Lennon On ""Whatever Gets You Through The Night""",Elton John,Food & Drink,When It Comes To Food & Drink What Does The Scorville Scale Measure? ,The Hotness Of Chillies , Geography,In which continent would you find the Yellow river ?,Asia -General,What country consumes the most coal each year,China,General,What is the study of bumps on the head called,Phrenology,Sports & Leisure,Which football player has played first team football for Liverpool 658 times and for Wales 67 times? ,Ian Rush  -Music,"Henry Rollins Was A member Of Which Punk Band ""Black Flag"" Or ""The Sex Pistols""",Black Flag,General,Which group were originally known as the Russellites,Jehovah's Witnesses,General,Chemical got from coal tar and used as a solvent,Benzene -Entertainment,What is the name of Yogi Bear's best freind,Boo Boo,General,The USA has the most railtrack - what country second,Canada,General,What is the oldest known infectious disease,Leprosy - History & Holidays,What Was The Function Of Press Gangs In The Early Nineteenth Century? ,To Press Or Recruit Men Into The Royal Navy , History & Holidays,"Three of the names of Santa's reindeer begin with the letter 'D'', name two of them ","Dancer, Dasher, Donner ",General,On what is an espadrille worn,Foot -General,Herb Caen is credited with inventing what word,Beatnik,General,What is the closest living relative to the T Rex,The Chicken,Science & Nature,First marketed in 1958 by the Kodak company as 'Eastman 910' by what name is their cyanoacrylate adhesive better known? ,Superglue  -General,He led the mormons to the great salt lake,Brigham young, History & Holidays,"""Who played the elf called Patch in the film 'Santa Claus: The Movie'? """"Danny De Vito"""" - """"Michael J Fox"""" - """"Bob Hoskins"""" - """"Dudley Moore"""" "" ",Dudley Moore ,General,A C-Curity was the original name of what common object,Zip Fastener -General,Who wrote the science fiction books Consider Her Ways and Chocky,John wyndham,General,What was the city of Istanbul called before 330 AD,Byzantium,General,"Who said ""He who opens a school door, closes a prison""?",Victor Hugo -General,What tennis ball company's logo is 'you've seen one you've seen them all',Penn,General,Which character has been played by the most actors,Sherlock Holmes,General,And what does she charge,Five cents -General,What is the active ingredient in Chinese birds nest soup,Bird Spit,General,Which firm manufactures 'Shreddies',Nestle,General,Who was dipped into the river styx,Achilles -General,"Who said ""If you want something said, ask a man. If you want something done, ask a woman."" ?",Margaret Thatcher,General,What has been called The most unnatural of all perversions,Celibacy,Technology & Video Games,On aircraft what does VTOL stand for?,Vertical Take off and landing -General,"Which author, famous for such novels as 'The Naked Lunch', died in 1997",William s burroughs,General,What are loose rocks on a mountainside called,Scree,General,With which musical instrument is Dizzy Gillespie chiefly associated,Trumpet -General,Ancient Roman brides wore a wedding dress - what colour,Yellow,Music,Which Chart Position Did Mirror Man Achieve For The Human League,No.2,Music,"Who Had A Hit With ""Holding Back The Years""",Simply Red -General,"Long jump, High Jump, Triple Jump what missing",Pole Vault Olympic jumping events,General,What is the Capital of: Rwanda,Kigali,General,Who was the main plotter in the Gunpowder Plot 1605,Robert Catesby -Science & Nature,What Do Silk Worms Feed On? ,Mulberry Leaves ,General,Which capital city is built on the site of ancient Tenochtitlan,Mexico city,General,An illegal 1920s saloon,Speakeasy -General,The Spear Leek was the original name of what food item,Garlic,Sports & Leisure,How many Olympic Gold medals did Carl Lewis win? ,9 ,General,What airline started 24th September 1946 single DC3 - Betsy,Cathay Pacific -General,With which hand do soldiers salute,Right hand,General,What is the English name for the constellation Mensa,Table,Art & Literature,Who's last words were 'Thus with a kiss I die'?,Romeo -General,Who was poisoned - shot - and drowned river Neva 1916,Rasputin,General,Holiday resort of Marmaris is in what country,Turkey,General,The city of Tours stands on which river,Loire - History & Holidays,What Is The Name Of The Bad Guy In The Friday The 13th Series ,Jason ,General,From What Country Does The Singer Sandi Thom Come From,Scotland,General,Where in France do claret wines come from,Bordeaux - History & Holidays,"""What Did My True Love Give To Me On The """"Third"""" Day Of Christmas"" ",3 French Hens ,General,"Who supposedly said ""Father I cannot tell a lie""",George washington,General,What TV family lived at 1124 Morning Glory Circle Westport Con,Stevens in Bewitched -General,In gardening what would you use a 'trug' for,Carrying things,General,What is the official language of Cambodia,Khmer,Entertainment,Charles Laughton played Quasimodo in this epic film.,Hunchback of Notre Dame -General,Officers in which army were given copies of 'les miserables',Confederate,General,Who founded the Greek theatre,Thespis,General,What is the fear of sinning known as,Peccatophobia -Food & Drink, Vermicelli literally means ___________.,Little worms,Science & Nature,What Causes A Jumping Bean To Jump? ,A Moth Grub Moving Inside The Bean ,Music,Which Single Gave Alessi Their One And Only Claim To Fame Reaching No 8 In June 1977,Oh Lori -General,"Germany's allies in wwii were japan, italy, hungary, bulgaria, finland, libya and ______",Rumania,General,What is the principal mountain chain in Romania,The carpatians,General,Who Wrote The Play 'Shirley Valentine' ,Willy Russell  -Entertainment,Who sang 'Rescue Me'?,Fontella Bass, History & Holidays,The Romans built these to convey water.,Aqueduct,People & Places,What Was The Nickname Of The Assassin Carlos Martinez ,The Jackal  -Art & Literature,How Old Was Adrian Mole When He Began Writing His Secret Diary ,13 & Three Quarters ,General,What is the Capital of: Mexico,Mexico,General,Demeter was the Greek god of what (Ceres Roman),Harvest -General,Name the original comic strip Bill The Cat appeared in.,Bloom County,Art & Literature,"Whose Life Was The Subject Of James Boswell's Biography, Published In 1791 ",Samuel Johnson ,General,Which group publishes the most monthly magazines,Hearst -General,"On The 19 th November 1994, Paul Merlon Became The First Person Ever To Do What",Win The Uk National Lottery,General,Who made wings for himself and his son to escape from the island of crete,Daedalus,General,This was (until the Alaska purchase) the largest real estate deal in U.S. history,The Louisiana Purchase - History & Holidays,"For how many years did the 30 Years War last? 27, 30 or 36? ",30 Years ,Music,Bill Idol Sang About Eyes Without A What,A Face,General,Business and Advertising: This brand boasts 57 varieties?,Heinz -General,What is a group of otters,Romp,General,The Swathling Cup is played for in what sport,Table Tennis,Music,"David Crosby, of Crosby, Stills and Nash, was previously with which other popular 60's group?",The Byrds -General,"What part of your body is elastic, waterproof, washable & fits you very well",Skin,Science & Nature,"What is the name used to describe the ""minor planets""",Asteroid,General,What athlete released the photo book rare air in 1993?,Michael jordan -Food & Drink,Legend says bats lived in the rum distillery and one of them is on the label.,Bacardi,General,What is the name of the official residence of the president of France,The elysee palace,General,Who did pocahontas entertain in the nude,Colonists -General,What was Erich Weiss better known as,Harry Houdini,Geography,In Which Town In London Will You Find The William Morris Gallery ,Walthamstow ,General,Who created the musical 'Paint Your Wagon'?,Loener and Lowe -General,"Madness released a hit single in 1979 titled ""the _____""",Prince,General,What is an informal term for the clothing industry,Rag trade,Food & Drink,What Is The Main Ingredient In Meringue ,Egg Whites  -General,What is the most frequently used word in the english language,The,General,In Los Angeles its illegal to do what on the witness stand,Cry,Art & Literature,"A printing process in which ink impressions are taken from a flat stone or metal plate prepared with a greasy substance, such as an oily crayon. ",Litography -General,The Travelmate was designed to allow women to do what,Pee Standing Up,General,Who was the first president of the Royal Academy,Sir joshua reynolds,Art & Literature,Who wrote the Discworld series ?,Terry Pratchett -General,What was Britain called - before it was Britain,Albion,General,Which Argentinian in 1967 became the oldest-ever winner of the Open Golf Championship at the age of 44,Roberto de vicenzo,General,"Which cocktail is made from creme de cacao, cream and brandy",Brandy -General,Vanilla is the extract of fermented & dried pods of several species of what,Orchids,General,A bind is a group of what type of fish,Salmon, Language,What does 'majuba' mean?,Place of rock pigeons -General,"Which newspaper owner's career inspired the film ""Citizen Kane""",William randolph hearst,Geography,In what country is the Waterloo battlefield,Belgium,General,Which country was invaded by Soviet troops in August 1968,Czechoslovakia -General,"In Greek mythology, who was the first woman on earth",Pandora,General,Which woman has the most monuments erected in her honour,Virgin mary,Sports & Leisure,Which sport uses stones and brooms?,Curling -General,What was unusual about the Gossamer Albatross aeroplane,Man (pedal) powered,General,What is a group of this animal called: Crane,Sedge siege,General,What state is mount mckinley in,Alaska -General,What is added to a Welsh Rarebit to make a Buck Rarebit,Poached egg,General,Which bomb used in the Dambuster raids was invented by Barnes Wallis,Bouncing bomb,General,"Who wrote ""The Glass Menagerie""",Tennessee williams -General,"What is the robots name in the movies ""Short Circuit 1 and 2?""",Johnny,General,Who is the 'invisible' star of the film ' Hollow Man',Kevin bacon,General,How Is The Fictional Character The “ Duchess of St Bridget ” Otherwise Known ?,Lara Croft -General,What city has the world's largest black population,New york,Science & Nature,Nitrous oxide is better known as __________.,Laughing gas,General,With which 19th century plot was Arthur Thistlewood associated,Cato street conspiracy -General,"In ballet, a jump off one foot that is 'broken' by a beating of the legs in the air.",Brisé,People & Places,Whose final film as director was Eyes Wide Shut? ,Stanley Kubrick ,Music,"Which Ex Model Featured On The Full Force Single ""Naughty Girls""",Samantha Fox -People & Places,What Is Andrew Lloyd Webbers Brothers Name ? ,Julian ,General,"Which Language Do The Words ""Kiosk, Tulip & Cavia"" Come From",Turkish,General,"Where, apart from the wild, would you find bulls bears and stags",Stock Exchanges - History & Holidays,Pop Star Marty Wilde Had A Baby Girl In 1960 What Did He And His Wife Call Her ,Kim (Kim Wilde) ,General,What is the fear of sexual perversion known as,Paraphobia,General,"Igneous, sedimentary and metamorphic are all types of what",Rock -General,What is a ziggurat,Mesopotainian Temple tower,Science & Nature,What Was Sellafields Former Name ,Windscale ,General,What is the world's oldest university ?,Fez University -Science & Nature," The owl parrot can't fly, and builds its nest under tree __________",Roots,General,The Greek for circle of animals gives it name to what,Zodiac,Science & Nature,Which Bird Is An Emblem Of The French Nation ,The Rooster  -Music,Which Beatles album was not produced by George Martin?,Let it Be,General,In Denmark what is a Svangerskabsforebyggendemiddel,A Condom,Sports & Leisure,In 1986 Which Boxer Became The Youngest Ever World Heavyweight Champion ,Mike Tyson  -Music,The First Family Group To Reach Number One With Their Debut Single Happened In 1997. Who Was That Act?,Hanson,Science & Nature," The __________ is the only bird that can swim, but not fly. It is also the only bird that walks upright.",Penguin,General,The willow ptarmigan is the state bird of ______,Alaska -Entertainment,What was Betty Grable's nickname?,The Legs,General,"National park what telephone company calls itself ""the right choice""",Atandt,Sports & Leisure,What Type Of Rock Is Used To Make Curling Stones ,Granite  -General,What is Interpol short for ?,International Criminal Police Commission,General,"Which American female vocalist had a hit in 1980 with ""Call Me""",Debbie harrie,General,Name Steve McQueen's Karate teacher - later an actor,Chuck Norris -General,Who would use a Snellen chart in his/her work,Optician,General,Where (Specifically) On The Human Body Will You Find The Columella,Skin The Seperates The Nostrils,General,Which was the last rascals hit in 1968,People got to be free - Geography,How many Great Lakes are there?,Five,Sports & Leisure,Basketball: The New York __________.,Knicks,General,On the TV show Frazier what was the dads dogs name,Eddie -General,What word for a cigar type is also Italian for a small loaf,Panatela, Geography,Which state is the Garden State?,New Jersey,Entertainment,What character did Tex Avery first create upon arriving at MGM,Screwball squirrel -Science & Nature,What Does A.M Stand For On Radios ,Amplitude Modulation ,General,What does url stand for,Uniform resource locator,Music,Name The Best Selling Single Of 1960,Elvis Presley / Its Now Or Never -Geography,What Forms The Natural Border Between Europe & Asia ,The Ural Mountains ,General,Brontophobia is a fear of ______,Thunder or thunderstorms,General,What record does the Khaki Campbell breed of duck hold,Egg laying -General,Iain Stewart - dropped - looked too normal - what pop group,The Rolling Stones,General,Lack of what is the cause of the deficiency disease 'kwashiorkor',Protein,Science & Nature,What Were Brunel's First Names ,Isambard Kingdom  -Music,Whats The Nickname Of Emma Bunton,Baby Spice,General,How big is the city of london,One square mile,General,What is a casaba,A Melon -General,Which aircraft was the first jet-powered bomber of the RAF?,English Electric Canberra,General,"Treasure Island, Angel Island and Alcatraz can all be seen from which bridge",Golden gate,General,What football team has won the most Rose Bowls,Southern california -Music,"Who helped them to get married in ""The Ballad of John and Yoko""?",Peter Brown,General,Who won the Booker Prize for the novel 'The Bone People',Keri hulme,Science & Nature," The woolly __________, extinct since the Ice Age, had tusks almost 16 feet high.",Mammoth -Music,"Who Had A Novelty Hit With ""The Laughing Gnome"" In 1973",David Bowie, Geography,What continent is part of both the East and Aest hemispheres?,Antarctica, History & Holidays,Which sitcom helped launch Michael J. Fox's career by portraying him as a money-grubbing teenager? ,Family Ties  -General,Near what falls did jimmy angel crash his plane in 1937,Angel falls,Music,What Kind Of Shack Did The B52's Sing About,A Love Shack,General,What colours was the ferrari formula 1 car in the 1964 u.s.a grand prix,Blue -Art & Literature,What other name does Stephen King write under?,Richard Bachman,General,Of what is 'FM' an abbreviation in FM Radio?,Frequency modulation,General,What English brand of sherry is considered the King desert wine,Harvey's Bristol Cream -General,The Blur Max medal was named after Max who,Max Immelmann,General,What reusable drawing pad notched its 50 millionth sale in 1985,Etch-a-sketch,Food & Drink,Which Country Drinks The Most Coca Cola ,Iceland  -General,Where did Mr Badger live in _The Wind in the Willows,The wild wood,General,Who was the first man to set foot on all five continents,Captain Cook,Sports & Leisure,Which Football Club's Badge Depicts A Golden Lion On A Claret And Blue Background? ,Aston Villa  -General,What 70s pop group was originally called The Engaged Couples,Abba,General,"Which fantasy writer's latest book is called ""The Fifth Elephant""",Terry pratchett,Science & Nature," A male __________ becomes fully feathered when he is three years old, but can mate earlier.",Peacock -General,When is 'trick or treat',Halloween, Geography,What famous geyser erupts regularly at the Yellowstone National Park?,Old Faithful, Geography,What is the largest city in Ecuador?,Guayaquil -Sports & Leisure,What famous race was established in 1903?,The Tour de France,General,"A leap from one leg to the other in which one leg is thrown to the side, front or back. ",Jeté,General,What does the rankine scale measure,Temperature -General,"What Famous Landmark Was Discovered By ""Garcia Lopez De Cardenas"" In 1540",The Grand Canyon,General,International car registration letters what country is RA,Argentina,General,Who was the human companion of willow,Mad mardigan -General,How many lines are there in a Clerihew?,Four,General,"In Beverly Hills Cop, how does Axel Foley escape the police car that is sent to follow him?",A banana in the tailpipe,Science & Nature,The vernal equinox is the beginning of ________.,Spring - Geography,What is the basic unit of currency for El Salvador ?,Colon,General,Siddhartha Gautama became better known as who,Buddha,General,Dr. Suess wrote _____________ after his editor dared him to write a book using fewer than fifty different words,Green eggs & ham -Music,Who Wrote The Flight Of The Bumblebee Which Later Turned Up As A Pop Hit Called Nutrocker,Nicolai Rimsky Korsakov,Science & Nature, A full_grown __________ may be 8 feet high at the shoulder and weigh almost a ton.,Moose,General,In the book Little Women what is the sisters surname,March -General,If you were crapulous what would you be,Drunk,People & Places,What Was The Name Of The Australian Outlaw Who Wore Metal Body Armour ,Ned Kelly ,General,Which wine has varieties called malmsey and sercial,Maderia -General,Teaching what subject banned Oxbridge Unis King George VI,Astrology,General,Who Was Sentenced To Life Imprisoment On The 14th June 1964,Nelson Mandella,General,C10 H16 Is The Actual Chemical Symbol For Which Everyday Item,Turpentine -General,What percentage of a peanut is fat,47,Food & Drink,Valpoliccella Is A Red Wine That Originated From Which Region Of Italy ,Veneto , History & Holidays,What TV show with married couples and family life appealed to those over the age of 29? ,Thirty something  -General,What is the metal part of a lamp surrounding the bulb and supporting the shade,Harp,General,The 'green mountain state' is___.,Vermont,General,Harry Weinstein Became A World Champion In 1985 But With What More Familiar Name Is He Known,Gary Kasparov -General,What is a group of this animal called: Partridge,Covey,Music,"In ""I Am The Walrus"", who were they kicking?",Edgar Allen Poe,General,"According to superstition, what are yoU.S.upposed to do when yoU.S.ee a lone magpie",Salute it -General,"Other than germany, whose official language is german",Austria, Geography,Where is the city of Brotherly Love?,Philadelphia,Geography,What is the capital of Vatican City,Vatican city -General,What is the stinky gas called hydrogen sulphide said to smell like,Rotten eggs,General,Harold H Lipman received a patent in 1858 for what invention,Gluing a rubber on a pencil, History & Holidays,George Washington Carver advocated planting what to replace cotton and tobacco?,Peanuts and sweet potatoes -Music,"Name The ""Fade To Grey"" Ban Fronted By Steve Strange",Visage,General,In Cockney rhyming slang what is a butchers (butchers hook),Look,General,What nationality was Oddjob,Korean -General,What is the imaginary line on the surface of the earth approximately parallel to the geographical equator,Aclinic Line,Sports & Leisure,What Sport Features In The Stella Artois Tournament? ,Tennis / Queens ,Sports & Leisure,The Latin Phrase 'Citius Altius Fortius'' Is The Motto For Which Sporting Event? ,The Olympic Games  - History & Holidays,Which pain relieving product was subjected to a public relations scare in the eighties? ,Tylenol ,General,What is the Japanese currency?,Yen,General,Thermophobia is a fear of ______,Heat -Food & Drink,How Are Tandoori Dishes Cooked ,In A Clay Oven (Tandoor) ,General,Jan Lodvik Hock changed his name to what,Robert Maxwell,General,Sqaure cap worn by RC priests,Biretta -Science & Nature,Where Would You Find The Trapezius Muscle ,Neck & Shoulder Area ,Music,"Which Famous Female Singer Did Don Joohnson Of ""Miami Vice"" Later Release A Duet With",Barbara Streisand,General,Who wrote the children's novel The Secret Garden,Francis hodgson burnett -General,What is the process which gives a high lustre to cotton called,Mercerising,General,To what Patron Saint would you pray if you had a headache,Saint Dennis,General,What is 'Irish Moss',Seaweed -General,Who sang the theme song for Rawhide,Frankie Lane,General,In music if F major is the key what is the relative minor,D minor, Geography,With which country is Prince Rainier III identified?,Monaco -General,"Who was defendant in the so called ""monkey trial""",John t scopes,General,In which country are you most likely to die from a scorpion sting,Mexico (1000 a year),General,What are the playing pieces of dominoes,Bones -Music,Who Sang Here Comes The Night Featuring Van Morrison In 1965,Them,General,Which million dollar building cost more than a million dollars,Sydney opera,Sports & Leisure,Since Steven Mclaren Took Over The Reigns As England Manager As Of The End Of 2006 Who Was The Teams Highest Goal Scorer ,Peter Crouch  -General,"Which poem begins ""If I should die, think only this of me""",The soldier,General,"ACII, Stockless, Mushroom and Plough types of what",Anchors,General,Who was john wayne's musical co-star in true grit,Glen campbell -Food & Drink,Which flavouring is added to brandy and egg yolks to make advocaat? ,Vanilla ,General,Who was the first American in sub-orbital space flight,Alan shepard, Geography,What is the highest mountain in Canada?,Mt. Logan -General,What is the fear of naked bodies,Gymnophobia,General,"When ocean tides are at their highest, they are called what",Spring tides,General,Whose last unfinished novel was The Last Tycoon,F Scott Fitzgerald -General,Strabismus is the medical term for which complaint,Crossed eyes,General,Jello Biafra is the principal singer-songwriter for what irreverent San Francisco punk band,The Dead Kennedys,Music,Who Played The Lead Role In The Screen Adaptation Of Dennis Potter's Pennies From Heaven,Steve Martin -General,Who was the wise cat in TS Eliot's book of cats,Old Deuteronomy,Entertainment,What was Elvis Presley's wife's name?,Priscilla,Geography,In which city is red square ,Moscow  -General,Lizard able to change colour for camouflage,Chameleon,General,What General Motors plastic bodied car was built in Tennessee,Saturn, Geography,What is the basic unit of currency for Laos ?,Kip -General,What is the colour of the maple leaf on the Canadian flag,Red,General,In Brockton Mass you must have a licence to enter where,Towns Sewers,Geography,Name the capital city of Rhode Island.,Providence -General,Seth Wheeler patented it in 1871 - what,Wrapping Paper,General,In Red Dwarf what did the H stand for on Rimmers head,Hologram,General,Which is the only Shakespeare play not to contain a song,The Comedy of Errors - Geography,Vaduz is the capital of ______?,Liechtenstein,General,What group had a 70s hit with Ride a White Swan,T Rex,General,Who succeeded Bonar Law as British Prime Minister in 1923,Stanley baldwin -General,What is the name of the scale measuring depth of coma (GCS),Glasgow Coma Scale,General,Wreath of flowers used as a decoration,Garland, History & Holidays,What Would You Traditionally 'Bob' For At A Halloween Party ,Apples  -Entertainment,"Name the band - songs include ""Psycho Killer, Road To Nowhere""?",Talkingheads,General,Selva is another name for what,Tropical rain forest,General,"Who was the first person to complete 'The Adventurer's Grand Slam', of climbing the highest peak on each continent",David hempleman-adams -General,Which department of the us government did eliot ness work for,Treasury,Sports & Leisure,At which sport did Magic Johnson excel? ,Basketball ,General,What was garth's last name in 'wayne's world',Algar -Entertainment,Name Alley Oop's girl friend.,Oola,General,What is a group of this animal called: Swallow,Flight,General,Where is bill gates' company based,"Redmond, washington" -General,What do the initials in j.r.r tolkien's name mean,John ronald reuel,General,Negatives what is the term for the union of two dissimilar sexual cells or gametes to form a new individual,Fertilisation,General,In what town was Leonardo Da Vinci born,Vinci -General,In The World Of Movies How Is 'Jack Napier' More Commonly Known,The Joker (Batman),General,Which is Edvard Munch's most famous painting,The scream,General,"In the board game Cluedo, which room is situated directly between the kitchen and the conservatory",The ballroom -Art & Literature,"Stephen King's: ""Salem's _________"".",Lot,General,"Which sport is featured in the film ""Raging Bull""",Boxing,General,Kool-aid was a deadly cocktail for the inhabitants of a temple in which Guyanese town,Jonestown -General,What are the names of the two famous disney chipmunks,Chip and dale, History & Holidays,Which president was responsible for the Louisiana Purchase?,Jefferson,General,Two out of every five American women do what,Dye their Hair -General,"Whose last novel was 'Portrait of an Artist, as an Old Man'?",Joseph Heller,General,What is the name of the tissue layer which covers a growing antler,Velvet,Science & Nature,What word describes part of your hand and a type of tree?,Palm -General,What is the young of this animal called: Birds,Fledgling nestling, History & Holidays,Which of the Wise Men was said to have brought the gift of gold for the baby Jesus? ,Melchior ,Science & Nature,What name is given to the single super-continent that existed 200 million years ago ?,Pangaea -General,Which former 'Neighbours' star had a hit with 'Any Dream Will Do',Jason donovan,Music,Tommy Lee Of Motley Crue Married Who In The 90's,Pamela Anderson,General,Who composed Symphonie Fantistique,Berlioz -Science & Nature,Which Glands Are Tears Produced By ,Lachrymal Glands ,Sports & Leisure,Which major sporting venue is located in Richmond Upon Thames? ,Twickenham ,General,"Name of a clothing line, or sport whose periods are called 'chuckers'.",Polo -Music,"Who Had A Hit With ""Someday I'm Coming back in 1992",Lisa Stansfield,General,What is the longest recorded flight of a chicken,13 seconds,General,Olof Sonderblom conceived and patented what technology,Token Ring Networking -Food & Drink, At which stage of a meal would you have an hors d'oeuvre?,Beginning,General,Where did bill and hilary clinton switch on christmas lights in 1995,"Belfast, ireland",Music,How Many Revolutions Per Minute Does An LP Play At?,33 & A Third -General,Alister Allan and Malcolm Cooper won Olympic medals in which sport,Shooting,General,Lewis Ernest Watts became famous under what name,John Mills, History & Holidays,Who Was Quoted As Saying 'Ask Not What Your Country Can Do For You But What You Can Do For Your Country'' ,John F Kennedy  -General,What is the third day of the week,Tuesday,General,Ornithophobia is the fear of,Birds,General,What queen banned mirrors as she got older,Elizabeth 1st -General,Where on your body would you find your Rasceta,Creases on inside of wrist,General,What type of creature was Pylorus Jack,A Dolphin – saved sailors,Music,"In Which Year Was Cilla Looking For ""Anyone Who Had A Heart"" 1961, 1964, 1967",1964 -General,Which musical term denotes that the pitch of a note is lowered by a semitone,Flat,General,In what country is the worlds largest pyramid,Mexico - Quetzalcoatl,General,Thalia is one of the muses - what's her subject,Comedy -Entertainment,French impressionist Claude _______,Debussy,General,What are the roads of Guam paved with?,Coral,General,Where do Eskimos wear mukluks,Feet -General,A can of Pepsi holds __ fluid ounces.,12,General,Which strait separates Russian and Alaska,Bering strait,General,Where was Bacardi originally made,Cuba -General,What European capitol stands on the river Aare,Berne Switzerland,General,Complete advertising phrase from 1935 My Goodness,My Guinness,General,Which Sport Was First Introduced Into The olympics In 1964 At The Request Of The Host Nation,Judo -General,Who shot and killed himself while painting 'wheatfield with crows',Vincent,General,What made up the Bouquet in the 70's TV series starring Susan Penhaligon,Barbed wire,General,"""City Lights"" was the name of a film by whom",Charlie Chaplin Chaplin -Music,Which American Soprano Became The First Singer To Give A Solo Proms Recital In August 2000,Jessye Norman,General,"""And the big wheel keep on turning neon burning up above and I'm just high on the world come on and take the low ride with me girl on the_____"" What's the Dire Straits song title",Tunnel of love,General,What is a negus - named after inventor,Port Lemon hot sweet spiced -Science & Nature,The planet closest to the sun is _______.,Mercury,General,Norman Maine is a character in what remade twice film,A Star is Born,General,This company uses the slogan AOL,America on line america online - History & Holidays,What 'HHH' Does Santa Do In His 3 Gardens ,"Ho, Ho, Ho ",Music,Which Father Daughter Duo Had A Hit With “Something Stupid” In 1967?,Frank & Nancy Sinatra,General,"In nautical terms, what name is given to the upper edge of a ship's side",Gunwhale -Religion & Mythology,On which day was the resurrection of Christ?,Easter Sunday,Music,What Was The Last Single Released By John Lennon In His Lifetime,(Just Like) Staring Over,General,"What instrument did jazz musician, Woody Herman, play",Clarinet -Music,Alan MceGee Signed Oasis To Which Label In 1993,Creation,General,"What was the first u.s state to seccede from the union on december 20, 1860",South carolina,General,What is the flower of September,Aster or Morning Glory -General,"Who recorded ""maybellene"" in 1955",Chuck berry,Art & Literature,Which Movement Spanned The Period From The 17th Century To The Early 18th ,Baroque ,General,What was the name of the bar/restaurant on THREE'S COMPANY?,Regal Beagle - History & Holidays,This Chinese dynasty lasted from 1368 to 1644.,Ming,Food & Drink,Who Was The Weather Man Who Famously Denied Reports Of A Possible Hurricane In 1987 ,Michael Fish ,General,How many children did adam and eve have,Three -General,What cocktail is made from vodka and kahlua,Black russian,General,How long passed from the making of minute rice & its marketing,18 years,General,In what book does 'Schahriah' appear,Thousand & one nights -Music,In What Country Was David Byrne Born,Scotland, Geography,What is the capital of Sweden ?,Stockholm,General,California illegal to shoot game from moving vehicle except what,Whale -Sports & Leisure,"Outcrop, Big Wall And Crag Are All Forms Of What ",Rock Climbing ,General,What is the smallest book in the Library of Congress,Old King Cole – thumbnail size,Sports & Leisure,What is the name of a golf stroke that is 2 under Parr for the hole? ,Eagle  -General,Who was the greek goddess of the hunt,Artemis,Sports & Leisure,In Which Sport Might You Start From Pole Position ,Motor Racing ,General,What is the name of the detective in john dickson carr novels,Gideon fell -General,What is a group of peacocks,Muster,General,Which country produces Dao wine,Portugal,General,How long is the memory span of a goldfish,3 seconds -General,Where are the Appalachians,North america,General,What does ALF stand for?,Alien Life Form,General,Ho was singer of the QUEEN?,Freddie mercury -General,"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,General,What was the nationality of sir winston churchill's mother,American, History & Holidays,"""What Did My True Love Give To Me On The """"Fifth"""" Day Of Christmas"" ",5 Gold Rings  -General,If an Australian called you a cadbury what would he mean,Cheap Drunk,General,What is the state bird of alaska,Willow ptarmigan,Science & Nature," Because its tongue is too short for its beak, the __________ must juggle its food before swallowing it.",Toucan -Food & Drink,"The 18th amendment to the Constitution was introduced in 1919, repealed in 1933 and is the only one to have been repealed, what did it relate to? ",Prohibition of alcohol , Geography,What is the capital of Azerbaijan ?,Baku,General,Timbucktoo is in which country,Mali -General,What hats were worn by British troops during the Napoleonic wars of the early 1800s?,Shakos,General,Who invented 'bifocal' lenses for eyeglasses,Benjamin franklin,General,What bred of dog is snoopy,Beagle -Geography,Who Was Head Of State Of Spain Before King Juan Carlos? ,General Franco ,General,Tsar Paul I decreed death by flogging to anyone mentioned what,His Baldness,General,Queen Victoria said it the saddest place in all Christendom where,Mearsyside - History & Holidays,Great Britain Was The First Country To Issue Postage Stamps But In What Year ,1840 ,General,What is brimstone,Sulphur,Art & Literature,Which Author Wrote The Spy That Came In From The Cold ,John Le Carre  -General,Who was the dragon in the film 'dragonheart',Draco,General,"If a pope has not been elected, what color smoke is seen",Black,General,Fax is short for what,Facsimile -Music,With Which Singer Does Bernie Taupin Co Write,Elton John,General,Philip Pirrip is the main character in which Charles Dickens novel,Great expectations,General,Breed of rock pigeon that is specially trained to return swiftly to its home,Homing pigeon -Science & Nature,In Computing Terms What Does The Abbreviation I.R.C Mean? ,Internet Relay Chat ,General,What is the first month of the year,January,Geography,What is the capital of Tunisia,Tunis -General,What is the fear of many things known as,Polyphobia,General,Who wrote the official biography of Lester Piggott,Dick Francis,General,Which pop song contains a similar melody to Tchaikovsky's Symphony in E minor,Annie's song -General,What country spends the most per capita in casinos,Australia,General,What is the name of the capital of Ontario (Canada),Toronto,Music,Who had her first UK top 10 hit with What Have You Done For Me Lately? in 1986 at the age of nineteen?,Janet Jackson -General,What nationality was the first man to die in a plane crash,French – Orville Wrights passenger,General,Cindy Crawford Elle Macpherson and Madonna all done what,Appeared in Playboy,General,Bartommelo Christofori invented what,Piano -General,"What Well Known Organisation Was Founded In 1844 By ""William Booth""",The Salvation Army, History & Holidays,What was the first newspaper produced in the United States ?,Publick Occurences,General,According 1890s doctors women eat mustard vinegar do what,Masturbate too much -Science & Nature,Name Three Of The Four Types Of Adult Teeth ,"Incisors, Canines, Premolars & Molars ",General,In Brookings South Dakota its illegal for a cat to live where,In a dogs house – if dogs there,General,What is the olympic motto,"Citius, altius, fortius" -General,Who wrote 'How to Win Friends and Influence People',Dale carnegie,General,What weapon was used by the Germans against Russia in 1915,Tear gas,Food & Drink,By What is the seasoned jellied loaf made from the head of a pig generally known? ,Brawn  -General,"Which group sang the song ""Go Let It Out""?",Oasis,General,Eighty one what is the minimum number of degrees in an acute angle,One degree,General,What does Zip stand for in the American Zip Code,Zone Improvement Plan -General,Cows clean their noses with their ______,Tongue,General,"Who wrote the novel Enigma in 1995, about the wartime German coding machines",Robert harris,General,What are born with fur and their eyes open,Jackrabbits -General,What is the unit of currency of Venezuela,The bolivar,Science & Nature,What Is The Japanese Art Of Growing Dwarf Trees Called? ,Bonsai ,General,In USA early last century what were Comet Star Sun Moon,Motor Car Manufacturers -General,In the language of flowers what does oak leaves mean,Bravery,General,What is the tallest dinosaur,Brachiosaurus,Science & Nature,Who developed the laws of electrolysis?,Michael Faraday -General,Which architect was responsible for many of Barcelona's famous buildings,Antonio gaudi,Music,"Which Album Was Dedicated To The Late Ian Stewart, The Pianist Who Played On So Many Stones Dates",Dirty Work,General,According to truck drivers which US state has the worst drivers,California -Sports & Leisure,Who was the only boxer to knock out Mohammed Ali?,Larry Holmes,General,"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,General,Who wrote The Joy of SexAlex,Comfort -General,Nicknamed The Tiger who lead France at the end of WW1,George Clemenceau,General,In what county did the Aryan race originate,India, History & Holidays,Which Architect Designed The Whitehouse ,James Hoban  -General,What country celebrates its National Day on 6th June?,Sweden,General,What does an Alexandra taste of,Chocolate,General,What are the siberian prison islands also known as,Gulag archipelego -General,Nick Nolte played the Poor Man who played the Rich Man,Peter Strauss, Geography,What is the capital of Dominica ?,Roseau,General,During which month is the shortest day in the Southern hemisphere?,June - History & Holidays,In What Year Did The Great Fire Of London Occur ,1666 ,General,What Is The Only Spin Off To Date From The TV Show Coronation Street,Pardon The Expression,Science & Nature,How many nipples does an echidna have?,None -General,Name the heaviest breed of domestic dog,St bernard,General,Who played dr kildare,Richard chamberlain,Sports & Leisure,"Which England Rugby Union international was fined 15,000 pounds for bringing the game into disrepute? ",Lawrence Dallaglio  -Food & Drink,What is the name given to the dish of fruit stewed or preserved in syrup? ,Compote ,Sports & Leisure,"On A Yacht, What Are Sheets ",Ropes ,General,"Which European Country Shares England's National Anthem ""God Save The Queen""",Lichtenstein -General,Who Is Sean Coombes Better Known As?,Puff Daddy / P Diddy,General,How many stars on the european union flag?,12,General,Who was king arthur's father,Uther pendragon -Food & Drink,The Vanilla Plant Is Native To Which Country ,Mexico ,General,What U.S. state includes the telephone area code 508,Massachusetts,General,What's the first sign of the zodiac,Aries -General,What pigment allows humans to see better at night,Rhodopsin,General,Who recorded 'hey jealousy',Gin blossoms,General,"In a computer, what is a CPU?",Central Processing Unit -Music,Who Had A Hit With Downtown,Petula Clark,Music,Which Family Heart Throb Told Us He Was The Author Of The Record In 1975,David Cassidy / I Write The Songs,Music,"Who Ran Up The Charts With ""Walking Back To Happiness"" In 1961",Helen Shapiro -General,What do the seven stripes on the American flag represent,The seven original states,General,What is a device to stem the flow of blood called?,Tourniquet,General,Crazy Horse and Sitting Bull were born in which US state,South Dakota -General,In which country do the Sinhala people live,Sri lanka,General,"Which singer got to number one over Christmas 1988 with ""Mistletoe and Wine""",Cliff richard,General,What is the name of the background screen on which windows is displayed,Desktop -Art & Literature,Which Famous Book Contains The Line 'Once Upon A Time There Was A Little Chimney Sweep And His Name Was Tom' ,The Water Babies ,Music,Which Song Provided The Glam Rock Band “The Sweet” With Their Only No1 Hit,Blockbuster,General,Ommetaphobia is the fear of,Eyes - History & Holidays,How many witches in a coven ,13 ,Sports & Leisure,"In which sport is the term ""wishbone"" used",Football,General,What president could write Latin with one hand & Greek with the other,James garfield -General,Name 1st Disney cartoon film based on the life of a real person,Pocahontas,People & Places,Which Engineer's Statue Watches Over The Trains At Paddington Station In London? ,Isambard Kingdom Brunel ,General,From the milk of which animal is ricotta made,Sheep -Music,Which 90'S Group Were Named After A Bernard Cribbins Hit Of The 60'S?,Right Said Fred,General,What could Victorian advertisements not show,Beds - hidden behind curtains, Geography,What is the capital of China ?,Beijing -General,"An ornamented canopy over an altar, tomb or throne. ",Baldachin, History & Holidays,"Which movie is the line 'Snakes, I hate snakes' from? ",Raiders Of The Lost Ark ,General,Edmund Dante is what eponymous hero,The Count of Monte Christo -General,Dom Perignon invented champagne - what else,Corks in bottles,General,Name Indiana Joneses dog,Indiana,General,"Does a wild rabbit live 10, 15 or 20 years",Ten -Geography,What is the capital of Lesotho,Maseru,General,"Who appeared in 'st. elmo's fire', 'the scarlett letter' and 'striptease'",Demi moore,General,"The railway executive, Sir William Cornelius (1843 - 1915), is associated with the construction of which railway",The canadian-pacific -General,Who was Led Zeppelins original lead singer,Robert Plant,General,What do Americans call the vegetable swede,Rutabaga,General,A flageolet is another name for what musical instrument,A penny whistle -Music,"The Title Of The Manic Street Preachers Album ""This Is My Truth, Tell Me Yours"" Came From A Slogan Coined By Which Old Labour Politician",Aneurin Bevan,Music,Susanna Hoffs Was A Member Of Which Band,The Bangles,Music,What guitar company created the 'Flying V' guitar in the late 1950's?,Gibson -General,The Gravindex Test Is Used To Detect What,Pregnancy,General,"Since 1600, 109 species and subspecies of what have become extinct",Birds,General,Who first played Flash Gordon on film,Buster Crabbe -Geography,Approximately 70 percent of the Earth is covered with water. Only 1 percent of the water is _______________,Drinkable,General,What's the most powerful card in Euchre,Right bower,General,What is 3 for a child 6 a woman 9 for a man,Funeral Bell Tolls -General,"What portable device did James Spengler invent in 1907, using a soap box, pillow case, a fan & tape",The vacuum cleaner vacuum cleaner a vacuum cleaner,Music,"Who Had Her Only Top 10 Hit With ""See The Day"" In 1985",Dee C Lee,Music,"Which Theme Tune Sang By Matt Monro & Composed By John Barry , Came To Us With Love",From Russia With Love -General,Where was the bloodiest one day battle fought in the u.s civil war,Antietam,General,Which team won five Stanley cups during the 60s,Montreal,Music,What was John's father's name?,"Alfred ""Freddie"" Lennon" -General,"What is a system of government in which states are united for certain purposes, but for others are independent",Federalism,General,"Where would you find a breast, fore, spring and after spring",4 of 6 mooring lines tying up ship,Geography,The highest temperature ever recorded on Earth was in which country,Libya -General,In musical notation there are five lines in a what,Stave,General,24% of American adults admitted to participating in what,Illegal Gambling, Geography,Name the most north-easterly of the 48 contiguous states.,Maine -General,The Soldiers Song is the National Anthem of what Country,Republic of Ireland,Entertainment,Film Title: ______ (a number) Leagues Under the Sea.,"20,000",General,To which animal is the adjective caprine refer,Goat -General,In which country do the Khmer people live,Cambodia kampuchea,Technology & Video Games,Who invented the Hovercraft ?,Sir Christopher Cockerell,General,What is the first day of the week,Sunday -Geography,In Which Country Was The Battle Of Waterloo Fought ,Belgium ,General,Coco-cola' was invented in which year,1886,General,A giraffes long tongue is what colour,"Blue, blue black really" -General,Fluctat nec Mergitor - Wave tossed but not sunk - Cities Motto,Paris,General,What was the name of the movement founded by the Pole Lech Walesa,Solidarity,General, The study of the manner in which organisms carry on their life processes is ________.,Physiology -General,In Albany NY in winter children were arrested for what illegal act,Sledging and sledges were broken,General,What was the first 30 minute animated Disney show,Duck Tales,General,In which sport might yoU.S.ee an Axel-Paulsen and a double Lutz,Ice skating -Science & Nature, __________ is one American breed of hardy hogs having drooping ears _ it was allegedly named after the horse owned by the hog's breeder.,Duroc,Music,Which girls make the Beatles scream and shout?,Moscow girls,General,"When was the Berlin Wall erected, and when was it dismantled",1961 1990 1961 -General,What was the d-day invasion password,Mickey mouse,General,How Did St Valentine Die ,Beheaded ,General,Pedophobia is a fear of ______,Children -General,Treat religious name or subject irreverently,Blaspheme,General,What type of food is pecorino?,Cheese,General,Name either of the only sisters to both win acting Oscars,Joan fontaine olivia de haviland -General,What is the largest gold refinery,Rand refinery, Geography,What is the capital of Uruguay?,Montevideo,General,Who was the mad monk,Rasputin -General,What continent is home to jaguars,South america,General,What human organ houses your amygdala & thalamus,The brain brain your brain, Geography,In which country is Chennai (formerly Madras)?,India -General,"In the 15th century, what was the war between the houses of lancaster and york",War of the roses,General,How many pints of blood does the average human have in his/her body,12,Food & Drink,How many herbs and spices are used in Kentucky Fried Chicken?,Eleven -General,What beating victim's 23-lawyer defense team handed the city of los angelesfor million,Rodney king,General,What links Martha Corey Brigit Bishop Mary Easty in 17th cent,Salem Witchcraft trial,General,The left lung is smaller than the right lung to make room for what,Heart -General,In Kingsville Texas its illegal for who/what to shag on airport land,Pigs,General,What is Calvados,Apple Brandy,General,"A clip, shaped like a bar to keep a woman's hair in place is a _______",Barrette -General,The most expensive car produced by the Chrysler Corporation.,Dodge viper,General,Where was Bonnie Prince Charlie born,Rome,General,"What group of minerals are corundum, sapphire and ruby a part",Alumina -General,"In the US 20,000 what are made for children each year",TV ads 7000 cereals,General,"The first Corvette rolled off the Chevrolet assembly line in Flint, MI. in what year",1953,Geography,What Do You Call A Narrow Strip Connecting 2 Land Masses ,An Isthmus  -General,What is the fear of rabies or of becoming mad known as,Lyssophobia,General,In formula one grand prix what does a black flag waving mean,Car go into pits,General,"Which group sang the song ""Thank You For Loving Me""?",Bon Jovi -General,Who wrote the words of the hymn 'Amazing Grace',John newton, History & Holidays,"In the movie 'Home Alone', Macaulay Culkin plays a boy who is accidentally left alone at Christmas. What is the name of this character? ",Kevin ,Sports & Leisure,Baseball: The Baltimore ________.,Orioles -Music,What Was The B52's Chrysler As Big As,A Whale,Sports & Leisure,At Which Grand Prix Circuit Did Aryton Senna Lose His Life? ,"San Marino , Italy ", Geography,The Palk Strait runs between which two countries?,India and Sri Lanka -Music,Brian Harvey Was The Lead Singer With Which 90's Boyband,East 17,General,"Who co-starred with julie andrews in ""mary poppins""",Dick van dyke,General,What name is popularly applied to twins congenitally united in a manner not incompatible with life or activity,Siamese twins -General,Who wrote the Booker Prize-winning novel The Old Devils,Kingsley amis,Music,"Which Group Gave Us The ""Four Bacharach & David Songs"" EP",Deacon Blue,General,What is the capital of South Dakota,Pierre -Geography,In what country is Banff National Park,Canada,General,"Can You Name Any Year In The Life Of ""Nostradamus""",1503 - 1564,General,Napoleons life was saved by a dog what breed – and he hated dogs,Newfoundland – saved from drowning -General,Name Lancashire town first test tube baby born,Oldham,General,Games Slater invented what,Fibreglass,General,"Which country has won the most Olympic gold medals at 10,000 metres",Finland -Science & Nature,This large bean-shaped lymph gland can expand and contract as needed.,Spleen,General,Who said 'Give me a firm place to stand and I will move the Earth' ?,Archimedes,General,"Who is the elder statesman of 'british blues', and fronted 'the bluesbreakers'",John mayall -General,What nationality are the most immigrants to the USA,Mexican,General,Who was atahualpa,King of the incas,General,Where are the cheddar caves,Mendips -General,What is the fear of speed known as,Tachophobia,General,"In Greek mythology, the riddle of what did oedipus solve",Sphinx,Science & Nature,What are the moufflon & bighorn ,Sheep  -General,Capital cities name translates as City of Islam,Islamabad,Geography,What Separates Spain From Morocco ,The Straits Of Gibralter ,Art & Literature,Who Wrote The Opera (The Flying Dutchman) ,Wagner  -General,What was added to Band Aids in 1940,Red opening string,General,In Tennessee it is illegal to drive if you are what,Asleep, Geography,What is the capital of Russia ?,Moscow -General,A blunt thick needle for sewing with thick thread or tape,Bodkin,General,"""Gherkins"" are a type of ______",Pickle,General,Name origins Baker obvious but what had a Palmer done,Pilgrimage returned with palm leaf -General,Rosalind Julia Portia Viola Cymbeline what links not obvious,Heroines dress as men,General,Which group of islands lie between Iceland and the UK,The faeroes,Science & Nature,What is the meaning of the name of the constellation Equuleus ?,Colt -Art & Literature,What Is The Earliest Known Drawing Medium ,Charcoal ,General,Where is the painted desert,Arizona,General,What is the only bird in the world that can fly backwards,Hummingbird -General,MDMA is another name for which illegal drug,Ectasy,Science & Nature,What Was Invented By An American Firm Called Texas Instruments In 1958 ,The Silicone Chip ,General,Who owns all the swans in england,Queen elizabeth -General,What do you call the three wires on a transistor,"Emitter, Base, Collector",General,In Judo if the referee calls Sono-mama what does it mean,Players must freeze in position,General,Which south african oil company has estblished the only commercially proven 'oil from coal' operations in the world,Sasol -Music,"Which Danish Duo Rode Their ""Little Donkey"" Up The Charts In 1960",Nina & Frederick,Geography,What Was Istanbul Formerly Known As ,Constantinople ,Entertainment,What was the relationship between Superman and Supergirl,Cousin -Science & Nature,What is the latin name for the top set of vertebrae?,Cervical,Music,"Grandmaster Melle Melle's ""White Lines"" Has Been Released 4 Times On Which Occasion Did It Reach It Highest Chart Position",2nd,General,Who is Shirley Mclean's brother,Warren Beatty -General,Name the British General in charge of the 1916 offensive WW1,Sir Douglas Haig,General,What is the study of word origins,Etymology,General,"Which German actress appeared in the film ""Witness for the Prosecution",Marlene dietrich -General,Where would one eat a taco?,Mexico,General,Which musical features the song Some Enchanted Evening,South pacific,General,Who is mother goose's son,Jack -General,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,General,What was king arthur's mother's name,Igraine,Music,Who Composed The Music For The 1994 Muisical Copacobana,Barry Manilow -General,Where are swedish buns found,Denmark,General,U.S. Captials - Georgia,Atlanta,General,In which sport might yoU.S.ee a googly,Cricket -General,Which instrument developed from African and Latin-American origins features in a modern orchestra as a bass xylophone,Marimba, History & Holidays,Which War Involving The UK Began In 1982 ,The Falklands War ,Music,Which 2 Artists Also Died When Buddy Holly's Plane Crashed,"Richie Valens & The Big Bobber," -Sports & Leisure,Which Football Team Are Known As The Toffees ,Everton ,General,"Queen Victoria was a carrier of which disease that was responsible for the death of her son, Leopold",Haemophilia,General,What are the two main islands of the Philippines,Mindanao & luzon -General,What do Yoni worshipers worship,Female Genitals, History & Holidays,What is the former name of Sri Lanka?,Ceylon,Music,"The Rolling Stones First Single ""Come On"" Was A Cover Of A B Side By A Famous US Rock N Roller Name Him",Chuck Berry -Music,"Kylie Minogues First Single Was ""I Should Be So Lucky"" Or ""The Locomotion""",I Should Be So Lucky,Entertainment,In which Verdi opera does Violetta sing 'Sempre Libera'?,La Traviata,General,Which country do Sinologists study,China -General,In what field were Louis Daguerre and William Henry Fox-Talbot pioneers,Photography,General,Sericulture involves raising which animals,Silkworms,General,Yasser Arafat has been leader of the PLO since what year,1969 -General,"Given 5 Years Either Way, In What Year Did Sir Francis Drake Begin His Voyage Around The World",1577,Music,"Musician Ray Brown Was Married To Ella Fitzgerald, Which Instrument Did He Play",Bass,Technology & Video Games,What does the CAT in CAT-SCAN stand for?,Computerised Axial Tomography -General,Old superstitions - it is bad luck to do what in the morning,Sing,General,What part of a chicken is the 'parson's nose',Rump,General,What can go without water longer than a camel,Giraffe -Entertainment,"In the TV sitcom 'Married With Children', what is the dog's name?",Buck,General,In China big wigs have four but lesser men only two what,Outside Pockets,General,What Beatle reportedly slept with a light on,John lennon -General,Who invented condensed milk,Gail borden,General,"In the film 'american hot wax', who played the 'mookie'",Jay leno,General,Premises used for prostitution,Brothel -General,What is the smallest member of the weasel family,Skunk,Science & Nature," __________ 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,Music,In 1932 Edward Elgar recorded his violin concerto. Who was the sixteen-year-old soloist?,Yehudi Menuhin -Geography,What is the capital of Laos,Vientiane,Sports & Leisure,When Maradona performed his Hand of God trick which goalkeeper did he beat? ,Peter Shilton ,General,Which Hollywood star was born Fredrick Austerlitz,Fred astaire -General,Clemantine Campbell became famous under what name,Cleo Lane,Geography,Which Is The Largest Freshwater Lake ,Lake Superior ,Mathematics,The space occupied by a body is called its ______.,Volume -Music,"The Doors Frontman “Jim Morisson” Passed Away In 1971 , But Can Anyone Tell Me Where Exactly Was The Body When He Was Found.",In The Bath,General,Whose horse was called Traveller,Robert E Lee,General,Solanum Tuberosum is the Latin name for what plant,Potato -General,In the theatre what is behind Barn Doors,Electricity Sockets,General,What is the shortest event in speed skating,500 metres,General,"Who said ""Go ahead - make my day"" (character name)?",Harry Callaghan -Music,Brotherhood Of Man Won The Eurovision Song Contest For Which Country In 1976,UK,General,What is the banking system in the u.s known as,Federal reserve system, History & Holidays,Which European Country Withdrew Its Forces From NATO In 1975? ,Greece  -General,After who was the month of July named,Julius Caesar,General,What escape route did John Brown run,Underground railroad,General,Who is reginald dwight known as,Elton john -General,She is famous for her airbrushed woman-animal art,Olivia,General,Samuel Hahnermann developed what type of therapy,Homeopathy,Music,"In The UK, Which Has Been James Brown's Only Top Ten Hit?",Living In America - History & Holidays,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,General,Bangkok is the capital of ______,Thailand,Music,Which Star Was Don Mclean's Hit American Pie Dedicated To,Buddy Holly -General,"In Hindu mythology, who is kali",Mother goddess,General,"Associated with 'Blues' music, which instrument is nicknamed a 'Mississippi saxophone'",Harmonica,General,In what Australian state would you find Mildura,Victoria -Science & Nature,Lester B Pearson International Airport Is In Which Canadian City ,Toronto ,General,"Detroit, Skokie Illinois St Paul Minnesota what official instrument",Accordion,General,Dobby Selvages and Filling are terms used in which process,Weaving -General,ORD are the identification letters of what airport,O'Hare Chicago,Science & Nature, The spines on a newborn __________ start to appear within 24 hours.,Hedgehog,People & Places,Which Famous actress Once Said: ' I am a marvelous housekeeper. Every time I leave a man I keep his house '? ,Zsa Zsa Gabor  -General,Who was george washington's vice-president,John adams,General,Name the muscle at the front of the shoulder and above the biceps which serve to raise the arm laterally,Deltoid deltoideus,General,What do supertankers carry,Oil -Science & Nature,"Hyraxes, Which Grow To Weigh A Maximum Of 5kg & And Are Conies Mentioned In The Bible, Have A Shared Ancestry With Which Large Mammal ",Elepahnt ,General,Who was the only starting pitcher in a world series to bat anywhere but ninth,Babe Ruth,General,Mary Surratt what the first woman to do what in US,Be Hanged -Sports & Leisure,What sport was invented in 1973 by a group of drinkers at a pub in West Sussex? ,Lawnmower Racing ,Science & Nature,What is the name of the minute organisms found drifting near the surface of seas and lakes ,Plankton ,Art & Literature,What Was The Title Of The First Ever James Bond Novel ,Casino Royale  -Geography,KLM Is The National Airline Of Which Country ,Holland / The Netherlands ,General,Which u.s state has the smallest population,Alaska,Music,Which Merseyside Group Who Had 3 No.1 Hits During 1963 & 1964 Took Their Name From The Title Of A 1956 Movie Starring John Wayne,The Searchers -Sports & Leisure,Who was supposed to present Jesse Owens his 100 metre Gold Medal at the Berlin Olympics? ,Adolf Hitler ,General,"What Christina Crawford book was originally titled ""the hype""",Mommie dearest,General,Mantle what is the official name of michael knight's car,Knight Industries 2000 -General,"Of what are epidermal cells, palisade cells and veins a part",Leaf,Sports & Leisure,Name the famous Italian football team who play in Black and White stripped shirts? ,Juventus ,General,What was Pierce Brosnan's first James Bond film in 1995,Goldeneye -Music,What Musical Instrument Does Elton John Play,Piano,Food & Drink,Who released the following 'edible' album 'Shaved fish' ,John Lennon ,Music,"""Move On Up"" Was The Only Major Hit For Which US Male Vocalist",Curtis Mayfield -General,In Disney's Fantasia what is the Sorcerers name,Yensid – Disney reversed, History & Holidays,What Is The Name Of The Cake Traditionally Eaten In Italy At Christmas Time ,Panettone ,General,William Robert Greer (1909-1985) Is Famous For Undertaking Which Famous Historical Journey,Kennedys Driver -General,In 1976 what show appeared on TV for the first time,Charlie Angels,General,Who was king arthur's champion,Sir lancelot,General,What country drink the most milk per capita,Iceland -General,Desire for more cows is the translation what Sanskrit word,War - same in English,General,What is the more common name for Alkane,Paraffin or Kerosene, History & Holidays,Which King Wore Two Shirts At His Execution So As Not To Shiver And Appear Frightened? ,Charles I  -General,Who wrote the Savoy Operas,Gilbert and Sullivan,General,What British actor got 2.25 percent of the profits from STAR WARS,Alec Guinness, Geography,What is the second highest peak in Mexico?,Popocatepetl -Science & Nature,The Big Dipper is part of what constellation,Ursa major,General,The author of Moll Flanders wrote which more famous work,Robinson Crusoe,Entertainment,Who starred as 'ouboet' in the first TV series of 'Orkney Snork Nie'?,Frank Opperman -General,What is the white trail behind a jet plane made from,Ice Crystals,Science & Nature,Who discovered Vitamin C?,Linus Pauling,General,Where were the first glass mirrors made in Europe circa 1300,Venice -Food & Drink,What type of food is Port Salut? ,A Cheese ,General,Phobos is a moon of which planet,Mars,General,"In what game would you see Stamen, Blackwood and Gerber",Bridge - History & Holidays,Where does Santa land his sleigh? ,On The Roof ,Food & Drink,This liquor brand accents a Scarlet O' Hara or a Rhett Butler,Southern comfort,General,The Althing rules in which country,Iceland -General,Which vegetable is 91% water,Cabbage,Food & Drink,What is 'water of life' in 'Latin' ,Aqua vitae ,General,What's used to make grenadine syrup,Pomegranate -General,Which cellular structures are composed of DNA,Chromosomes, History & Holidays,Who was George Washington's vice_president,Adams,General,Harold the Fairhead was the first supreme ruler of where,Norway -General,What colour are an American porcupines teeth,Orange,Sports & Leisure,Which Sport Is Played By The Philadelphia Flyers ,Ice Hockey ,General,What is the maximum number of degrees in an obtuse angle,179.9 -General,What is the Capital of: American Samoa,Pago pago,General,What name is given to the part of the sundial that casts the shadow,Gnomon,Food & Drink,What is Britain's top selling fruit flavoured soup? ,Tomato  -General,What train leaves pennsylvania station at quarter to nine,Chattanooga choo,General,What is the world's oldest newspaper(the name is swedish) ?,Post och Inrikes Tidningar,General,To which family of birds does the 'Linnet' belong,Finch -General,"Sun-dried brick used in places with warm, dry climates, such as Egypt and Mexico; also, the structures built out of these bricks. ",Adobe, Geography,What is the second largest continent in the world?,Africa,General,A mass of flowers on a tree,Blossom -General,Who discovered penicillin,Sir alexander fleming,General,How Is “Ethylene Glycol” Better Known?,Antifreeze,General,What was the name of the city in the Bible which was built by Cain and named after his son,Enoch -General,"Stones hewn, squared, and smoothed for use in building, as distinguished from rough building stones.",Ashlar,General,In the movie Next Friday what is the name of the vicious dog?,Chico,General,Martin Fallon Hugh Marlow James Graham Harry Patterson who,Jack Higgins -General,25% of the adult male population of the UK are what,Over 6 feet tall,General,Which two countries made up the 'Dual Monarchy' which existed from 1867-1918?,Austria and Hungary,General,What is the fear of pregnancy or childbirth known as,Tocophobia -General,What bird has the maximum recorded life span 36 years,Herring Gull – Royal Albatross,Geography,In Which Country Can You Find The Sperrin Mountains ,United Kingdom ,Music,Whose Body Was Stolen And Cremated In The Desert,Gram Parsons -General,Consumption was the former name of which disease,Tuberculosis,General,Katy Mirza was the first Indian woman to do what,Feature in Playboy,General,Taidje Khan became famous under which name,Yul Brynner -Music,Which Well Known Pop Group founding The Company Polar Music,Abba,Religion & Mythology,Who is the greek equivalent of the roman god Neptune ?,Poseidon, History & Holidays,How many ghosts appeared to Scrooge in Dicken's 'A Christmas Carol'' ,Four  - History & Holidays,What daughter of czar nicholas ii is said to have escaped death in the russian revolution ,Anastasia ,General,For how many years was Queen Elizabeth the First on the throne of England,45 years,General,Whats the most abundant element in the sun,Hydrogen -General,"Petula clark sings 'if you're feeling sad and lonely, there's a service i can render'. what is it",Call me,General,"What tiny animal, valued for its pale grey fur, lives higher than any other in the andes",Chinchilla,General,What is the first name of Sean Connery's actor son,Jason -Music,What Was Roxy Music's Only No.1 Hit,Jealous Guy,Food & Drink,Which scottish river supplies over 90% of the water used in whiskey manufacture? ,Spey ,Music,Who Was The Drummer In “The Dave Clark Five”?,Dave Clark -Music,What Is The Smallest Instrument In An Orchestra,A Piccolo,General,If you suffered from varicella what have you got,Chickenpox,Science & Nature, 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 -General,In wacky races who drove the Creepy Coop,Gruesome Twosome,Geography,What is the capital of Lebanon,Beirut,General,What lager reached the parts other beers could not reach,Heineken -General,What was alanis morissette's first album,Jagged little pill, History & Holidays,"Which directors films included Shivers, Videodrome and The Fly ",David Cronenberg ,Music,Which 1985 Hit  For Dire Straits Features 2 Members Of The Phonetic Alphabet,Romeo & Juliet -Music,"Who Sang The Seductive ""I Wana Sex You Up""",Color Me Bad,General,What is a group of dogs,Pack,General,Dr F Lanchester invented what motor safety aid in 1902,Disc Brakes -General,Who was the 10th president of the U.S.,John tyler,Geography,Which County Is Stratford - Upon - Haven In? ,Warwickshire ,General,What does michael jackson call his home,Wonderland -General,What is the sixth month of the year,June,Music,Which Band Featured Ex New York Dolls Guitarist Johnny Thunders,The Heartbreakers,General,"Where would you find a Rocker, Eight, Loop and Three",Figures in Ice Skating -General,Which war was formally concluded at Paris in 1856,Crimean,General,Who composed the music for the ballet 'l'apres-midi d'un faune',Claude,General,What two countries contain the Sierra Nevada mountains,"Spain, usa spain" - Geography,What is the basic unit of currency for Malta ?,Lira,General,Who wrote the book Forest Gump,Winston Groom,Entertainment,Green Lantern's alter ego,Hal jordan -General,William Golding won the Nobel Prize for literature in which year,1983,General,In the pasa doble what is the female dancer supposed to be,A bullfighters cloak,General,What was the first rap group to appear on 'american bandstand',Run d.m.c -General,Magnum PI wore a baseball cap supporting what team,Detroit Tigers,General,What is the name of the capital of Quebec,Quebec City,General,"The longest time someone has typed on a typewriter continuously is 264 hours, set by whom",Violet Burns -General,President Kennedy was shot in Dallas in what type of car,Lincoln,General,According to strain theory crime is mainly committed by who,The lower classes,Geography,What is the capital of San Marino,San marino -Music,What 1958 Eddie Cochran song became his biggest US hit and a rock classic?,Summertime Blues,General,What is the most commonly spoken language in India,Hindi,General,What bird builds a nest about 12 feet deep and eight and a half feet wide,Bald eagle -Science & Nature,What is a Blue Moon?,2nd full moon in 1 month, Geography,Which U.S. state has the least rainfall?,Nevada,General,"""I Melt With You"" was this band's signature hit, released on their after the snow album in 1982",Modern English -General,What English meadow saw the signing of the Magna Carta,Runnymede,Food & Drink,"Which Vegetable Can Be Oyster, Chestnut, or Shitaki? ",Mushrooms ,Science & Nature,What animal can get the disease 'heaves'?,Horse -Art & Literature,Who Told Stories About Brer Rabbit & Brer Fox ,Uncle Remus ,General,In The World Of Literature Who Live At No.7 Savile Row (London),Phileas Fogg,Food & Drink,What drink is named after the queen of England who was famous for her 'sanguinary' persecution of the protestants?,Bloody Mary -General,Kolpeuryntomania is what sexual activity,Stretching the vagina, History & Holidays,During Which Monarch's Reigns Did Shakespeare Live? ,Elizabeth I & James I ,Food & Drink,From Which British City Do Balti Dishes Often Used In Indian Cuisine Originate From ,Birmingham  -General,AG Bell opened school in Boston in 1872 for Teachers of what,The Deaf,Toys & Games,Klondike is the most popular form of this game.,Solitaire,Geography,"______________ has the greatest number of islands in the world: 179,584.",Finland -General,Dagon is the mesopotamian god of ______,Vegetation,General,Where would you find an Oculus,Dome central opening,General,What was introduced to the UK 1799 as a temporary measure,Income Tax -General,Second city: Brisbane (state),Rockhampton,Sports & Leisure,With Which Sport Would You Associate Jahangir Khan ,Squash ,General,Approximately how long after the atomic bombs were dropped on Japan did they surrender,One week -General,"Who wrote The Bad Child's Book of Beasts, first published in 1896",Hilaire belloc,General,Which country invented the mariners compass,China,General,In the language of flowers what does the cucumber flower mean,Criticism -General,What u.s president was castigated for picking up his pet beagles by the ears,Lyndon johnson, Geography,Where is the original London Bridge located?,"Lake Havasu, Arizona", Geography,What country was once known as Gaul?,France -Music,Which James Bond Film Duran Duran Provide The Theme Music For,A View To A Kill,Sports & Leisure,Which Scottish Athlete Struck Gold In The 100m At The 1980 Moscow Olympics ,Alan Wells ,General,Who is Yogi Bears girlfriend,Cindy Bear -General,Who cut off Samson's Hair (King James Edition),An Unnamed Man, History & Holidays,Who Released The 70's Album Entitled Blood on the Tracks ,Bob Dylan ,General,Who was the author ofn the novel 'The Crow Road'?,Iain Banks -General,Who Was The First Female Presenter Of The Old Grey Whiste Test,Annie Nightingale,General,What is the term of an animal with pure white skin & hair & pink eyes,Albino,General,What play marked marlon brando's last broadway appearance,A streetcar named -Food & Drink,What Type Of Oranges Are Traditionally Used To Make Marmalade ,Seville Oranges ,Entertainment,Who played in the film 'Ragtime' after 20 years offscreen?,James Cagney,Geography,___________________ is the only Central American country not bordering the Caribbean Sea.,El salvador -General,Police in Winchester - got call - Man being held by wife - how,Hidden artificial leg,General,The eyes of which animal have rectangular pupils,Goat,Geography,"Which Country Has Borders With France, Germany, Austria, Lichtenstein & Italy ",Switzerland  -Entertainment,Who was the first voice of Mickey Mouse?,Walt Disney,General,"Jagger, Richards, Wyman, Jones, Watts, Stewart - which band",The Rolling Stones,General,Who shot j.r ewing in the tv series 'dallas',Kristin shepard -Tech & Video Games,What is the most powerful whip in 'Castlevania 2'? ,Flame Whip,General,Purple green and gold are the official colours which annual event,Mardi Gras,General,"On 'dragnet', who played officer bill gannon",Harry morgan -General,Men women compete 3 Olympic sports Equestrian Shooting ?,Yachting,General,Which cartoon company is based in Walla Walla Washington,Acme in Roadrunner,General,"In which children's pantomime does the character ""Widow Twankey"" appear",Aladdin -Science & Nature, A __________ can remember a specific tone far better than can a human.,Dolphin, History & Holidays,Whose army did Admiral Nelson defeat at the battle of Trafalgar?,Napoleon,Music,"Boyzones First UK Hit Was ""Love Me For A Reason"" Who Had A Hit With The Original",The Osmonds -Food & Drink,By which name are English Truffles known? ,Pignuts ,General,How were 'Mr Barrow' and 'Miss Parker' better known,Bonnie and clyde,Entertainment,On what T.V. show could Tom Terrific be found,Captain kangaroo -General,Iophobia is the fear of,Poison,General,What is a Vitrine,Glass Display Cabinet,General,"On which Scottish island is the malt whisky, Talisker, produced",Skye -General,How many weeks until Christmas Day if it is the 25th September?,13 weeks,Sports & Leisure,David Campeze Was the Leading try Scorer for Which country ,Australia ,General,"In 'snow white and the seven dwarfs', what was the occupation of the seven dwarfs",Miners -Sports & Leisure,In 1992 Kevin Keegan became manager of which football club? ,Newcastle United ,General,Of what were ancient egyptian pillows made,Stone,General,While grass grows the horse ___.?,Starves -Music,Which Track Became Elvis Presley's Final UK No.1 In The Weeks After His Death,Way Down,Music,How Old Was Marvin Gaye When He Was Shot Dead By His Father,44 Years Old, History & Holidays,Which English King was crowned on Christmas Day ,William the Conqueror (1066)  -General,Which Artist Has Had More Hits Dead Than Alive?,2Pac Shakur,Sports & Leisure,With which sport do you associate `Flushing Meadows`? ,Tennis ,General,Peladophobia is the fear of what,Bald People -General,What kind of creature is a funnel web,Spider,Music,"Before Belinda Carlisle Found ""Heaven On Earth"" She Was Part Of Which All Girl Group",The Go Go's,Sports & Leisure,"Steve Davis Reached The Final Of Every World Championship Between 1983 & 1989, Loosing On Just 2 Occasions 1 Point For Each Of The Players Who Beat Him ","Dennis Taylor, 1985 Joe Johnson, 1986 " -Music,What Was The Name Of Prince's Band In The 80's,The Revolution,General,To who did the sword excalibur belong,King arthur,General,Who was the only unmarried president,James buchanan -General,In British Columbia is illegal to kill what,Sasquatch,Music,Which Band Released The Best Selling Album Rumours In 1977,Fleetwood Mac,Sports & Leisure,Colin Hendry left Blackburn in 1998 to join which Scottish Club? ,Rangers  -General,In which country is the city of Omdurman,Sudan,Geography,Which City Is The Capital Of Australia ,Canberra ,General,Ancient Roman hall with colonnades,Basilica -Geography,"In which country would you find the Angel Falls, the highest waterfall in the world? ",Venezuela ,Toys & Games,This is a French named car_racing card game.,Mille borne,General,A paddling is a group of which animals,Ducks -General,A Hobbits will requires seven signatures in what,Red Ink,Geography,The water of the ___________ is seven to eight times saltier than ocean water.,Dead sea,General,"In psalm 46, what is the 46th word from the last word",Spear -General,Which computer firm made a model called Amiga,Commodore,Sports & Leisure,Between 1961 & 1990 a win in Formula One was worth how many points? ,Nine ,General,What is an ancient word for a pharmacist,Apothecary - History & Holidays,The following is a line from which 1970's film 'Blessed are the cheese makers' ? ,Life of Brian ,General,"The star of ""Police Woman"" was married to Burt Bacharach. What was her name",Angie dickenson, Geography,What is the capital of Panama ?,Panama City -General,What is podobromhidrosis?,Smelly feet,General,What did Gregor Mendel study,Heredity, History & Holidays,How many British officers were forced by Indian troops into the Black Hole of Calcutta?,146 -General,What did Scott find at the North Pole,Nothing - he never went there,General,"This spikey succulent, native of Africa is often an additive in creams and lotions?",Aloe Vera,General,What's the fifth largest country in the world,Brazil -General,What was Oliver Mellors' daytime job,Gamekeeper,General,What final event did Gladstone and Churchill share,State funeral,People & Places,Which Romanian Tennis Player Was Famous For His Tantrums ,Ilie Nastase  -General,Hellenologophobia is a fear of ______,Greek terms,Music,Which Prodigy Album Cover Features The Screaming Metallic Like Face Photographed By S Haygarth,Music For The Jilted Generatiojn,Geography,"The citizens of _________________, Brazil are called ""Cariocas.""",Rio de janeiro -General,On the show FRIENDS what was Phoebes twin sisters name?,Eursela,General,"Who wrote the poem, the lines were composed a few miles above, Tintern Abbey",William wordsworth,Music,"Which Band Had Magical Results With ""Abrcadabra"" In the Early 80's",The Steve Miller Band -General,What is a 'tandoor',Clay oven, History & Holidays,Is A Pumpkin A Vegetable Or A Fruit ,A Fruit It Grows On Vines ,Music,Name The Andrae True Connection's only top ten hit?,"More, More, More" - Geography,What is the capital of Seychelles ?,Victoria, Geography,What European country administers the island of Martinique?,France,Science & Nature,In 1976 JVC Introduced The VHS Video Format What Does VHS Stand For ,Video Home System  - History & Holidays,"Who was the New Zealand mountaineer who in 1953, together with Sherpa Tenzing Norgay, became the first person to reach the summit of Mount Everest ",Sir Edmund Hillary ,General,What northern country Helsinki the capital of,Finland,General,What pop group saw their first 5 singles enter UK charts at No 1,Westlife -General,What's a computer screen's display made up of,Pixels,Music,Introductory interest rate that's charged on the Ringo-designed Discover card,5.9 percent,General,What comes after the year of the snake - Chinese calendar,Horse -General,What name was given to the 8th century Muslim invaders of Spain,Moors,Music,"Who Had Late 60's Hits With ""Aint Nothing But A House Party"" And ""Eeny Meeny""",The Showstoppers,General,What are the cutting teeth called,Incisors -General,The sackbut developed into which modern instrument,Trombone,General,Collective nouns - a romp of what animals,Otters,General,What is known as Radishes in Denmark,Cartoon strip Peanuts -Art & Literature,Where Is The Louvre ,"Paris, France ",General,Prior to 1998 who was the last non-American to win the U.S. Masters golf championship,Nick faldo,Toys & Games,"Name the only flexible murder weapon in the game of ""Cluedo"".",Rope -Music,Which Pair Had A Leaky Bucket In 1961,Harry Belafonte & Odetta,General,How many eyeballs does a four-eyed fish have?,2, Geography,Rome is the capital of ______?,Italy -General,There is a museum in Philadelphia 211 North 3rd Street to what,Pretzels,Mathematics,What is the maximum number of integer degrees in an acute angle?,89,General,"Who sang the song ""Another Brick In The Wall""?",Pink Floyd -General,Who was Poet Laureate during World War Two,John masefield,General,Which island do the nationalist Chinese occupy?,Taiwan,General,In which country did the Battle of Plassey in 1756 take place,India -General,Concord Is The Capital Of Which US State?,New Hampshire,General,What is the chemical name for water,Hydrogen oxide,General,Which group of hobbyists spend the most money on it,Gardeners -General,Board in what country would you find the world's largest pyramid,Mexico,Sports & Leisure,Which Tennis Player Has Announced they Are To Quit The Sport After It Emerged That They Tested Positive For Cocaine At This Years Wimbledon? ,Martina Hingis ,Science & Nature,Which Member Of The Orchid Family Is Used Commercially As A Flavouring? ,Vanilla  -General,The Japanese word 'karate' can be translated as,Open hand,Music,With Which Instrument Is Les Paul Associated,Guitar,General,The average child wears out 730 by age ten 730 what,Crayons -General,Polyhexamethyleneadipamide is better known as what,Nylon,General,What was Motowns biggest hit in 1968,Heard it through the Grapevine,General,The Dead Sea Scroll was discovered in what year,1947 -General,In which European country is the Dalmation coast?,Croatia,General,Who was the first black American in space,Guion bluford,Music,"Ballad Of Bonnie & Clyde"" Was A No.1 For Which Keyboard Playing Singer",Georgie Fame -General,What is the Capital of: Uganda,Kampala,General,Complete the saying 'What can't be cured must be _______________.',Endured,Food & Drink,What Is The Most Popular Chocolate Bar In The UK ,Kit Kat  -General,What was rembrandt's surname,Van rijn,Religion & Mythology,Who is referred to in the New Testament as 'the disciple Jesus loved'?,John,General,"What one word may be added to news, carbon and wall",Paper -Sports & Leisure,In Formula One what is the race course called in Italy? ,Monza ,General,What is the flower that stands for: severity,Branch of thorns,Geography,Which Cambridge Bridge Was Put Together In The 18th Century Without The Use Of A Nail ,The Mathematical Bridge (Queens College)  -General,What was the name of the hollow hole-covered plastic ball kids used to hit instead of a baseball?,Wiffle ball,Music,No.3 In The Charts Was A Lucky Number For Whom,Lene Lovich,General,What is Dick Grayson better known as,Robin (Batman and Robin) -General,"Which Country Did The 1998 Eurovision Song Contest Winner ""DANA INTERNATIONAL"" Come From",Israel, History & Holidays,"What type of shoes were favored by skateboarders? (Hint, it's 4 letterslong) ",Vans ,General,The word philosophy comes from Greek literally meaning what,Love of wisdom -General,"Who was the American master of decorative ""art nouveau"" glass, especially lamps",Louis comfort tiffany,Music,"What In 1966 Was A Secretary Not, According To Frank Loesser","""A Toy"" How To Succeed In Business",General,What is wild rice,Grass -General,"In the play ""The Entertainer"" what is the name of the Entertainer",Archie rice,Science & Nature,What period Came after the triassic?,Jurassic,Science & Nature,What is Nitrous Oxide better known as? ,Laughing Gas  -General,Which city had the world first public bus service,Paris,General,What name is given to a window that opens and shuts by moving up and down,Sash window,General,"Which poet wrote ""Fools rush in where angels fear to tread""",Alexander Pope essay on criticism -Entertainment,Where does young Anakin Skywalker come from?,Tatooine,General,An exclusive group of people,Clique,General,There are two general types of skiing Alpine and what,Nordic -General,"What are the sava, drava and soca",Rivers,Sports & Leisure,"Which sport has a movement called a ""telemark""?",Skiing,General,Silky case spun by larva to protect it as a pupa,Cocoon -Geography,Where is Queen Maud Land located,Antarctica, History & Holidays,This F.B.I agent headed the investigation of Al Capone.,Elliot ness,General,What does the acronym vhs mean,Video home system -General,In traditional wedding anniversaries what is given on the twelfth,Silk,Music,"Butthole Surfers Were Formerly Known As ""Ashtray Baby Heads"" Or ""Aliens Must Die""",Ashtray Baby Heads,General,Who invented the light bulb,Thomas edison -Entertainment,Name Cathy's on again/off again boy friend?,Irving,General,"Relating to food, what is 'Polenta' made from",Cornmeal,Geography,What is the capital of Kansas,Topeka -General,Whose epitaph reads Lived a philosopher died a Christian,Casanova,General,How much does the cullinan diamond weigh,3100 carats,General,From which city can yoU.S.ee Table Mountain,Cape town -General,What is the only word in English that ends in mt,Dreamt,General,Who is the alter ego of Henry the mild mannered janitor,Hong Kong Phooey,General,The film 'Dancer in the dark' features which pop star,Bjork -General,The Treaty of Paris in 1856 ended which war,The Crimean war,General,Spanish or Italian name for a bar or wine shop,Cantina,Art & Literature,What Is The Name Of The Bird In The Peanuts Strip ,Woodstock  -Music,Paul Hewson Is the Real Name Of Which Rock Star?,Bono,General,"What planet was pummeled by pieces of Shoemaker levy 9 in 1994, producing 2000 mile high fireballs",Jupiter,General,On average it rains 4 days a week in what European capital,Amsterdam or Brussels wettest -General,What is officially the poorest US state,Mississippi,General,"Napoleon had connections with three islands, he was imprisoned on Elba and died on St. Helena, where was he born",Corsica,General,What is a triangle with two equal sides called,Isosceles -Entertainment,Where do Rocky and Bullwinkle play football,What'samatta u niversity,General,What kind of aircraft is the c46 Commando built by Curtiss Wright,Cargo,Science & Nature,How Does A Snake Smell? ,With Its Tongue  -General,"In the film ""bringing up baby"", the baby is what",A leopard,General,If you landed at Carthage airport where would you be,Tunis,General,This term refers to any crown-shaped structure. It's also the name of a beer.,Corona -General,How did the Greek dramatist Aeschalys die,Eagle dropped tortoise on head,General,Who wrote the book 'Something Happened',Joseph heller,General,What is earwax,Cerumen -Sports & Leisure,"What comes next in the following sequence (Red, Blue, White, Black, Orange) ",Black and White (Grey Hounds) ,Science & Nature,What is the more scientific name for quicksilver,Mercury,Sports & Leisure,Of What Was Pluto Platter The Original Name ,The Frisbee  - Geography,What is the capital of El Salvador ?,San Salvador,General,Who's Auto Biography Is “Who Does She Think She Is”,Martine McCutcheon,General,Who initiated the works of the Bible,King solomon -Music,"In His Joy Division Days Bernard Sumner Used Two Other Surnames Before Settling On Sumner, Name Any","Dicken, Albrecht",General,American burrowing animal with plated body,Armadillo,General,What idea began in London in 1764,House Numbers -General,"Who Are Known To The British Secret Service With The Codenames ""Potus & Flotus""",Us President & First Lady,General,Margaret Thatcher day is 10th January in what area,Falklands Islands,Science & Nature,As what is an algonquin more commonaly known?,Moose -Music,Which Band Wanted to Know What Love Is,Foreigner,Art & Literature,"What play by Shakespeare features the following characters: Cornwall, Gloucester, Regan, and Goneril?",King Lear,Sports & Leisure,What Is The Last Event In A Decathlon? ,The 1500 Metres  -General,What is a period of play in polo,Chukka,General,Gynelophilous people get aroused from what,Pubic Hair,General,In Knoxville Tennessee it is illegal to lasso what,Fish -General,On what japanese city was the second atomic bomb dropped during world war ii?,Nagasaki,General,What did the Perthians conquer in 141 bc,Mesopotamia,Music,"According To Jonathan King, Where Was Everybody In 1965",On The Moon (Everyones Gone To The Moon) -General,What is the Capital of: Spain,Madrid,People & Places,Which Tory MP Made Multiple BT Share Applications ,Keith Best ,General,"Who wrote Sleeping beauty, Mother Goose, Puss in Boots",Charles Perrault -General,"On Friday 23rd Sept 1955 ITV First Began Boadcasting , But What Other Major Media Event Occurred On That Very Same Night!!!!!!!!",Grace Archer Died On Radio,People & Places,Whose Catchphrase Was 'Here's Another Fine Mess You've Gotten Me Into' ,Oliver Hardy ,Art & Literature,What Dutch master painted 64 self_portraits,Rembrandt -General,Who composed the classical piece Peter and the Wolf,Sergei Prokofiev,General,"What do camels store in their humps water, fat or milk",Fat,General,Whose porridge did Goldilocks eat,Three bears -Food & Drink,How Many Million Barrels Of Beer Are Sold Annualy In The UK ,36 Million ,General,Where was paper invented,China,General,Birdseye' introduced fish fingers into the UK in what year,1955 -General,"Originating around 1830 as a social dance, by 1844 it had become a raucous dance performed in French music halls.",Cancan,General,What did the roman emperors and the rich people of rome carried on,Litters,Geography,"Translation of _____________ is ""beautiful country"".",Sri lanka -Science & Nature,"Excluding man, what is the longest-lived land mammal?",Elephant,General,An altimeter measures what,Altitude,General,What is the flower that stands for: bluntness,Borage -General,What football team was previously known as the frankford yellow jackets,Philadelphia eagles, History & Holidays,This fearsome creature lived on Grympen Myre and was the principal character in which book ,The Hound Of The Baskervilles ,General,What is the fear of names known as,Nomatophobia -General,Whose headstone reads 'my jesus mercy',Al capone,General,"Who was a member of 'crosby, stills and nash' and 'the hollies'",Graham nash,General,The first toilet ever seen on television was on what show,Leave It To Beaver -Music,What Was Rodgers & Hammerstein's First Musical,Oklahoma!, History & Holidays,Who was the first British monarch to broadcast a Christmas message to the nation? ,George the Fifth (in 1932) ,General,What sort of garment is a dirndl,Skirt -General,What is the fear of hearing a certain word known as,Onomatophobia,General,What used to be measured in Gillettes,Laser Strength – no blades drilled,General,"What are blombergs, oak and fire bellied types of",Toads -Music,Known To Millions As Hank Marvin What Is His Actual Christian Name,Brian,General,From Which Country Does The Tomato Originate,Peru,General,Orient Express restarted in 1982 going from London to where,Venice -General,"Tissue or organ of the animal body characterized by the ability to contract, usually in response to a stimulus from the nervous system",Muscle,Music,"Which Group Sang The 80's Hit ""Fade To Grey""",Visage,General,"Best or nothing in the song 'skip to my lou', in what beverage are the flies",Buttermilk -General,Which Country Has The Highest Population Of Mobile Phone Users?,Finland,Music,In The Hit Song Tell Laura I Love Her What Was The Young Mans Name,Tommy,Science & Nature,What Is The Equivalent Of Rust Which Occurs On Copper ,Verdigris  -Science & Nature,The deficiency of which vitamin causes scurvy ,C ,General,What is Fonzies full name on Happy Days,Arthur Herbert Fonzerelli,Music,What Type Of Eyes Did Kim Carnes Sing About,Bette Davis Eyes -General,What flavouring is in frangelico liqueur,Hazelnuts,General,Hoy and Rousay are part of which British island group?,Orkneys,General,What is a sirocco,Wind -General,What is the real name of the actor who plays the voice of the spaceship in Flight Of The Navigator?,Paul Reubens,General,What part of the eye is affected by cataracts,Lens,General,Who had a 30-year love affair with dashiel hammett,Lillian hellman -Science & Nature, Baby opossums _ upon birth when they move to the mother's pouch _ are smaller than honeybees. An entire litter can fit in a __________,Teaspoon, Geography,"What European country has ""Vaduz"" as its capital city?",Liechtenstein,General,What is the lowest level of the Earth's atmosphere called,Troposphere -General,Which former Soviet Republic in Central Asia has Alma Ata as its capital,Kazakhstan,General,"Charing Cross in London was built in commemoration of Queen Eleanor, who was the wife of which British King",Edward i,General,Anreas Cornelis van Kujik was who’s manager,Elvis Col Tom Parker -General,Who wrote the book Interview with a Vampire,Ann Rice,General,Which British City Was Known To The Romans As Luguvallium,Carlisle,Sports & Leisure,How Many Minutes Is A Golfer Allowed To Search For A Lost Ball ,Five  - History & Holidays,Which 1964 Movie Had The Alternative Title 'How I Learned To Stop Worrying & Love The Bomb'' ,Dr Strangelove ,General,Of what did the poet John Milton die,Gout,General,What is a group of hawks called,Cast -General,How many days of Sodom were there according to the Marquis de Sade?,120,General,What portuguese territory will revert to china in 1999,Macao,General,In which British county is the land of the Prince Bishops,County durham -General,What animals cannot walk backwards,Emus,General,What is armagnac?,Brandy,General,What word the highest string on an instrument and a mushroom,Chanterelle -General,"The upper part of an entablature, extending beyond the frieze; also, ornamental molding projecting along the top of a building or wall.",Cornice,General,Which Fictional Character The Sister Of Lucy Was Raised In The Town Of Pitsdale By Her Parents Sam & Ella,Lois Lane,General,Captain Hans Langsdorff captained which German Battleship,Graf Spee -Food & Drink,Capers Are Derived From What ,The Pickled Flower Buds Of A Mediterranean Plant ,General,The Weir of Hermiston - last unfinished novel of who,Robert Louis Stevenson,General,"What us war killed brent and stuart, the tarleton twins",Civil war -General,International Airline Registrations N is what country,America,General,Which monarch was the first to appear on a postage stamp,Queen victoria,General,"Bond, Cotton Fabric and Tablet are types of what",Paper -General,"What country was ruled by pol pot, leader of the khmer rouge party",Cambodia,General,Students at Cambridge - no dogs - what Lord Byron keep,Bear,General,In a survey US ERs what is the most commonly broken bone,Clavicle or Collar Bone -General,All US Presidents were Federalists Republicans Democrats or what,Whigs 1841 - 45 1850 -53,General,What's a disk of gas orbiting a star of black hole called,Accretion disk,General,Into what bay does the golden gate strait lead,San francisco bay -Geography,What is the capital of Kenya,Nairobi,General,With what is 'Grand Marnier' flavoured,Orange,General,Which modem country was formerly Nyasaland,Malawi -General,Who was the youngest American President,Theodore Roosevelt,General,Kiki Haakenson a policeman's daughter was the worlds first what,Miss World,Music,Which day did the Boomtown Rats not like,Monday -General,Who is the most-capped scottish footballer,Kenny dalglish,General,Which Award Winning Movie Ended With The Line Hey Can I Try On Your Yellow Dress,Tootsie,General,UK football Derby County home the Baseball Ground nickname,Rams -General,"Which screen role has been played by, among others, Elliot Gould and Humphrey Bogart",Philip marlowe,General,What is the title of the wife of a Marquis,Marchioness,General,The Tony awards are named for what person,Antoinette perry -General,"The Louvre in Paris, was originally a what, before it was changed to a museum durung the French Revolution?",Palace,General,What was the name of Dion's Group,Belmonts,Music,"Who Did Jennifer Warnes Team Up With For The Hit ""Up where We Belong""",Joe Cocker -Food & Drink,"The Dish Of Rice, Flaked Fish And Hard Boiled Eggs Is Known As What ",Kedegree ,General,The Atlanta Braves baseball team has retired # 35 which used to belong to _____,Phil niekro,General,Hundred and ninety five litres what toy was originally made from the bladder of an animal,Balloon -General,Name the aboriginal detective in the novels of Arthur W Upfield,Napoleon Bonaparte,General,How long is a one year anniversary,Paper anniversary,General,What is the Canadian equivalent of the krugerrand,Maple leaf -General,Who is the supreme head of the Church Of England?,Queen Elizabeth II,Entertainment,"Who played the lead in the movie ""Braveheart""?",Mel Gibson,General,Which wine grape variety is nicknamed The King of Grapes,Cabernet Sauvignon -General,The Patella is commonly known as what?,Kneecap,General,What's Iceland's main industry,Fishing,Music,"Frank Zappa Launched 2 Labels Of His Own, Name One",Straight Or Bizarre -General,Lack of what vitamin causes pellagra,B3,General,Whose autobiography was entitled Past Imperfect,Joan Collins,Religion & Mythology,What religious movement was founded by William Booth?,Salvation Army -General,To which part of the body does the adjective 'pulmonary' refer,Lungs, Geography,What U.S. city is named after Saint Francis of Assisi?,San Francisco,General,Name Hong Kong Phooey's cat,Spot -General,"In Greek mythology, as which constellation did zeus place callisto",Ursa,Sports & Leisure,"As at August 2004, who is England's all time top goal scorer? ",Bobby Charlton ,General,"Who In The World Of Entertainment Has The Real First Name ""Clifford Joseph Price""",Goldie -General,The long term effect of the sun's radiation on the rotating earth's varied surface & atmosphere,Climate,Music,In Which Musical Does The Song Old Man River Feature?,Showboat,General,Days of the week - whats the only day named for a planet,Saturday -General,"What was the name of the bar that the characters from ""Three's Company"" frequented?",Regal Beagle,General,What longtime cleveland browns quarterback was shipped off to dallas in 1993,Bernie kosar,Music,Name 2 Celebrities Appearing On The Band On The Run Album With Wings,"Michael Parkinson, James Coburn, Clement Freud, Christopher Lee, John Conteh, Kenny Lynch" -Food & Drink,Who is `The Naked Chef'? ,Jamie Oliver ,General,The Simplon Tunnel runs between which two countries,Italy & switzerland,Science & Nature, The Bactrian camel is the only land mammal on Earth that can survive on __________,Salt water -General,Which company developed the Laser Printer,Cannon,General,What talent did Dumbo the elephant have?,He could fly,Science & Nature,Of what are walrus tusks made?,Ivory -Entertainment,Who was Dick Dastardley's pet,Muttley,General,On what river will you find Kew Gardens,Thames,General,What is the more usual name for blue beryl,Aquamarine -General,What does iron deficiency cause,Anaemia,Music,Who Had A Hit With Under The Bridge In 1998,All Saints,General,What name is given to the effect that the Earth is gradually becoming warmer,Global warming -General,Who was the first man to fly across the channel,Louis Bleriot,General,"Who wrote the lyrics for the song ""Chestnuts Roasting By An Open Fire""",Mel, History & Holidays,Who Eastenders Character Left Albert Square On Christmas Day 2005 ,Alfie Moon  -General,What are the busiest days for hospital emergency departments,Mondays,General,What literary work gave Geoffrey Chaucer something to do from 1387 to 1400,The canterbury tales canterbury tales,Music,"Which Now Famous Actress Did Bruce Springsteen Pull On Stage During His ""Dancing In The Dark"" Video",Courtney Cox -Food & Drink,Who released the following album 'Whipped cream and other delights ' ,Herb Albert and the Tijuana brass ,General,Jayne Austin had five brothers and one sister name her,Cassandra,General,Who invented 'bifocal' lenses for eyeglasses?,Benjamin Franklin -General,Highway 9 is the official name of what thoroughfare,Broadway New York,General,"In Halloween, what is Michael Myers' middle name?",Audrey, Geography,What is the capital of Kuwait ?,Kuwait City -Sports & Leisure,Who said if i had to choose between staying married & Snooker it would be snooker everytime ,Ray Reardon ,General,When were false eyelashes invented,1916,Geography,In which continent would you find the nile river ,Africa  -General,To which family of birds does the fieldfare belong,Thrush,General,Who played Commissioner Dreyfus in the Pink Panther films,Herbert lom,General,Peridot is the birthstone for ______,August -General,Who is the boss of UNCLE,Mr Waverley,Science & Nature,As what is sulphur also known?,Brimstone,General,In 1933 the U.S. formally recognized which country,Ussr -General,Which battle was fought by Wellington two days before Waterloo,Quatre bras,General,What is a Bunt a part of,Section of sail,General,Where is the world's largest library,Washington dc -Music,How Many Sisters Are There In The Group “Sister Sledge”,4,General,In which play and film does Jean Valjean appear,Le Miserables,Music,"Name The Two Members Of The Duo ""Tears For Fears""",Curt Smith & Roland Orzabal -General,Borborygmus is the medical name for what,Gas noises in gut,General,What was Max Headroom's network number,23,General,French word for jewel or trinket,Bijou -General,How many litres of air is in an adult lung,Five,General,What was the scorpions first lp called,Lonesome crow, Geography,Richmond is the capital of ______?,Virginia -General,We have heard of the Renaissance - what's it literally mean,Rebirth,General,When was Mount Everest first climbed,1953,General,"Who, in the Holy Bible, was the father of David",Jesse -General,In which American city can the Liberty Bell be found,Philadelphia,General,What is the more common name of the fruit the Chinese Gooseberry,Kiwi fruit,Sports & Leisure,What Nationality Is Tennis Player Gabriela Sabatini? ,Argentine  -General,Where was Napoleon born Ajaccio -,Corsican capitol,General,Which mountain peak is the highest in the Western Hemisphere,Aconcagua,General,If you Manuxorate what are you doing,Male masturbating with hand -General,With the development of which computer language was grace hopper associated,Cobol,General,What team won the Super Bowl XII,Dallas cowboys, Geography,Tegucigalpa is the capital of ______?,Honduras -Sports & Leisure,Which Tennis Player In 2007 Equalled Bjorn Borg's Record Of Five Consecutive Men's Wimbledon Titles? ,Roger Federer ,Entertainment,What musical instrument did Jack Benny play?,Violin,General,Where in Europe can you find wild monkeys,Gibraltar -General,"Who painted the picture, entitled Mares and Foals in a Landscape, in 1762",George stubbs,General,Coffee How long is a baby kangaroo at birth,One inch 1 inch,Music,"Who Sang ""I Want To Be Free"" In 1981",Toyah -General,In mythology Romulus and Remus were brought up by which animal,Wolf,General,Which actor is common to Magnificent 7 and Dirty Dozen,Charles Bronson,General,Gephydrophobia is a fear of___.,Bridges -General,"What product is sold with ""just for the taste of it""'",Diet coke,General,What does basf stand for,Baden aniline & soda factory,General,What is the flower that stands for: afterthought,Michaelmas daisy -General,Which famous talk show host made a guest apearence on Laverne & Shirley?,Jay Leno,General,What astronomical unit of distance is used for measurements beyond the solar system,Parsec,General,What is the Capital of: Ethiopia,Addis ababa - Geography,In which state is the Painted Desert?,Arizona,General,What fruit do viticulturists grow,Grapes,General,"Fill in the missing word - balloon____, gold ____, sword ____?",Fish -General,"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,General,The Locals Call It “The Goddess Mother” What Do We Know It As?,Mount Everest,Religion & Mythology,What was the first sign shown to Moses by God according to the Bible?,Burning bush -General,Who was proclaimed empress of India in 1877,Queen victoria, History & Holidays,After who was Mickey Mouse named?,Mickey Rooney,General,"During the American revolutionary war, what country declared war on Great Britain to help the colonies",Spain -General,Name the porceilan chair yoU.S.it on at least once a day,Toilet,General,"Betta Splendens, known for its labrynth gills that allow it to live in small plastic cups, it's long bright fins and aggression to males of the same species is also called the:",Siamese Fighting Fish,General,"What kind of rocks are basalt, granite and obsidian",Igneous -General,The amazing Spider Man' was one of the first comic books to have a story in which one of the supporting characters ____,Dies,Music,They started out as the Warlocks. By what name did they become world famous?,The Grateful Dead,General,"What links the trees Bodhi, Peepul and Ailento",They are all sacred to someone -General,In 1995 what was the most common name given to girls in USA,Ashley,General,Who wrote 'The Camomile Lawn',Mary wesley,General,Who painted - A Girl Asleep - The Letter - The Kitchen Maid,Jan Vermeer -General,Whose teachings are collected in the Hadith,Muhammad,Science & Nature,Which animal has the largest eyes?,Giant squid,General,What is Samsoe a type of,Cheese -General,What is the birthstone for august,Peridot,Music,What Is Elvis Presleys Middle Name,Aaron,Science & Nature,If Your Were Travelling at Mach 2 How Fast Would You Be Travelling ,2x 761mph is speed of sound  -General,Margie Belcher provided the body movements - which character,Disney Snow White,General,Lucy Johnson became famous under what name,Ava Gardner,General,"Wrought-iron tower in Paris, a landmark and an early example of wrought-iron construction on a gigantic scale",Eiffel tower -General,What common legal item literally means under penalty,Subpoena, History & Holidays,Where Was Thomas Becket Murdered? ,Canterbury Cathedral ,General,What was the real name of the children's TV character Bananaman?,Eric Wimp -General,Which imaginery line approximately follows the 180 degree meridian through the pacific ocean,International date line,General,A Japanese dance drama featuring stylized narrative choreographic movements.,Kabuki,General,Excrement of sea birds used as manure,Guano -General,In what TV series did we see Del Floria tailors shop,The man from UNCLE,General,Electronic device that allows the passage of current in only one direction,Diode,General,What are the main ingredients of the Irish dish 'colcannon',Green cabbage and potatoes -General,14% of Americans could not identify which country on a map,America,General,Triskaidekaphobia is a fear of ______,Number thirteen,General,How was hamida djandoubi executed,Guillotine -Geography,The first country along the great circle route due south from San Francisco,Canada,Music,By what name is Antonin Dvorak's ninth symphony known?,From The New World,General,In what country was the espresso machine invented in 1822,France -General,Where would you find the Ponte de Sospiri,Venice - Bridge of Sighs,Music,"The All Saint's Hit ""Pure Shores"" Was Featured On The Soundtrack To Which Movie",The Beach,General,What band recorded the 1990'2 hit 'slide',Goo goo dolls -Art & Literature,What Is The Most Performed Opera In The UK ,La Boheme ,General,What one word fits ____stream; ____hill; _____pour,Down,General,Until when was california a part of mexico,1846 -Music,"Which Band Relaased The Albums “Bleach, Nevermind & The Muddy Banks Of Wishkah”",Nirvana,Sports & Leisure,Where were the 1900 Olympics held ?,"Paris, France",Entertainment,The first 18 minutes of this movie is black and white.,Wizard of Oz -General,What was the name of the helicopter service that was the cover for Airwolf?,Santini Air,Geography,In Which Country Will You Find The Bay Of Pigs? ,Cuba ,General,In airline slang what is a 365,Eggs Bacon served any day or time -General,A short thick post used for securing ropes on a quay,Bollard,General,"Punt, coracle and kayaks are all types of what",Boat,General,What cartoon character was 5 foot 6 inches tall,Popeye -General,"At the Montreal Olympics, Nelli Kim was judged to have given a perfect performance in the floor exercise and which other discipline",Vault,General,Who was the japanese detective in novels by john phillips marquand,Mr moto,General,What do Stacey Keach and Oscar Wilde have in common,Reading Jail -General,Lepidoptera (from the Greek) literally means what,Scaly Winged,General,Portugal has had six Kings with what first name,John,General,"On the fahrenheit scale, there are 180 degrees between freezing point and ______",Boiling point -General,November 18th is who's birthday,Mickey Mouse,General,Which novel has the longest sentence in literature 823 words,Les Miserables – Victor Hugo,General,"Which substance causes milk to curdle, and is used to make cheese",Rennet -General,Which vegetable has the highest sugar content,Onion,General,What was the language if ancient Rome,Latin,General,Who was the first athlete to hit a major league home run and make a professional football touchdown in the same week,Jim Thorpe -General,Which Country Was The First To Win The Eurovision Song Contest In 1956,Switzerland,General,Who sang 'have you ever seen the rain',Creedence clearwater revival,General,Which was the first apostle to be stoned to death,Stephen -General,"In Star Trek, what is Mr Spock's pulse rate?",242 Beats Per Minute,General,Which American state is nicknamed 'The Sioux State' or 'Flickertail State',North dakota,Sports & Leisure,Which Shooting Season Begins On (The Glorious Twelth) ,Grouse Shooting  -General,In Strongville Ohio what book is banned by law,Catch 22,General,What country did the USA defend in the Spanish American war,Cuba, History & Holidays,At which battle was the Charge Of The Light Brigade? ,Balaclava  -Food & Drink,What Food Do You Use Up More Calories Eating Than You Gain Through Consumption? ,Celery ,General,What country was ruled by the Schleswig-Holstein dynasty,Greece,General,What is the fear of brain disease known as,Meningitophobia -General,What Do We Call A Squirrels Home,A Drey,General,What are a chessboard's vertical rows called?,Files,Music,What Was Rod Stewarts 2nd Number One After Maggie May,You Wear It Well - History & Holidays,When Cook Discovered The Hawaiian Islands What Did He Name Them? ,Sandwich Islands , Language,What does 'AOL' stand for?,America Online,General,When was chewing gum patented,1869 -General,What fictional archaeologist trained under Prof Abner Ravenwood,Indiana Jones,General,Ball and ______,Chain,General,What neighbouring country did Iraq go to war with in 1980,Iran -General,"What was broadcast causing U.S. radio listeners, to flee for their lives fearing an attack by aliens",The war of the worlds,General,Who was the son of Poseidon and Ampherite,Triton,General,What English king was killed with a red hot poker up his arse,Edward 2nd -General,What is the largest city in africa,Cairo,General,What country did Germany invade on September 1st 1939,Poland,General,"What is the region loosely defined by geography and culture, located in southwestern Asia and northeastern Africa",Middle East -Science & Nature," __________ 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, History & Holidays,"What Was Introduced Into The UK First, The Christmas Card Or The Christmas Tree ",Christmas Cards ,General,How many sheets of paper are there in a ream,500 -General,Who did Jimmy Carter defeat to win the Presidency of the USA,Gerald ford,Science & Nature,Of What Is Fe The Chemical Notation ,Iron ,General,"Whats the meaning of the Latin battle cry 'ad arma, ad arma",To arms to arms -Science & Nature,What Vaccine Did Edward Jenner Develop ,The Smallpox Vaccine ,General,Who was the female star of the film 'Barefoot in the Park',Jane fonda,Food & Drink,"Rum, lime, and cola drink make up which type of cocktail ",Cuba Libre  -Tech & Video Games,Which legendary games designer/producer created the Super Mario Brothers franchise for Nintendo?,Shigeru Miyamoto,General,What sequence is this the start of: 1 3 12 60 360 2520,Even permutations,Music,Who Is Mark King The Lead Singer With,Level 42 -General,Porphyrophobia is the fear of,The color purple,General,What is the fear of the opposite sex known as,Sexophobia,Music,How Was Norma Dolores Egstrom Better Known,Peggy Lee -General,French artist Edward Degas noted for what particular subject,Ballet Dancers,Sports & Leisure,"Sir Paul Fox created which programme, that is shown on the BBC every year? ",Sports Personality Of The Year ,General,Name the two movies that Michael Crichton made (before Jurrasic Park )about a theme park out of control.,"""West World"" and ""Future World""" -General,Which novel by Michael Crichton was the number one best-selling paperback in 1993,Jurassic park,People & Places,Who Said Of Touring Pakistan 'I Wouldn't Even Send My Mother In Law There' ,Ian Botham ,General,"In The Movie ""Slumdog Millionaire"" 'Jemal' Was The Name Of The Main Character But What Was The Name Of His Older Brother",Salim -General,"Who averaged receiving 21,000 letters a day in 1993",Bill clinton,General,On which Saint's day was the battle of Agincourt fought in 1415,St crispin,General,"Football Team, Denver ____",Broncos -Sports & Leisure,What's the highest possible finishing score in a game of darts ,167 , History & Holidays,Which James Bond Film Featured A Bond Girl Called Doctor Christmas Jones ,The World Is Not Enough , History & Holidays,The Eldest Sons Of The Kings Of Which Country Had The Title (Dauphin)? ,France  -Music,Which American state featured in the title of a 1971 hit for Olivia Newton John,Ohio (Banks Of The Ohio),General,What name is given to the Jewish candlestick with special religious meaning? ,Menorah,General,Who was an ordained priest in the Church of England,Sir isaac newton -General,"When olive oil is described as 'extra virgin', what has happened to it to make it so",First pressing of the olive,General,At what theme park are the Looney Toons associated with,Six flags,General,Grace Robin was the first model - to model what in 1930,Contact Lenses -General,46% of women say this is better than sex - what,A good nights sleep,General,What is the widest-ranging ocean bird,Albatross, History & Holidays,"What was the third country to get the ""bomb""?",Britain -Music,In Which Year Was Saturday Night Fever Released,1978,Science & Nature, The pupil of an octopus's eye is __________,Rectangular,General,Who was america's first public enemy no 1,John dillinger -General,C17 H21 N04 is the chemical formula for what,Cocaine,Geography,What river is known as China's Sorrow,Yellow,General,A bear is ursine - what bird is pavonine,Peacock -Music,Who Wrote The Lyrics To The Songs In West Side Story,Stephen Sondeim,Music,The Living Years Was A Hit For Which Band,Mike And The Mechanics,General,Who wrote Whip Hand Proof and Flying Finish,Dick Francis -Food & Drink,Which Country Consumes The Most Cornflakes ,Ireland (Per Head) ,General,Mare Nostrum was the Roman name for what,Mediterranean Sea (Our Sea),General,Whose first release was 'talking heads 77',Psycho killer -General,Harry Patterson is the real name of which author,Jack Higgins,General,What is the Capital of: Bhutan,Thimphu, History & Holidays,"This military attack took place on Dec. 7, 1941.",Pearl harbour -Music,Who Claimed To Be The Wild One,Bobby Rydell,Sports & Leisure,Which Famous Sporting Team First Began In 1926 When They Were Known As The Savoy Big Five? ,The Harlem Globetrotters ,General,Who sang about Saturday Night at the Movies,The Drifters -General,Old Lyme Connecticut has a museum dedicated to what,Nuts,General,Name bar John Wilkes Booth got pissed in before killing Lincoln,Star Saloon,Geography,In which country is the Blarney Stone? ,Ireland (or Eire) at Blarney Castle near Cork  -General,What city hosted the 1936 summer olympics,Berlin,General,What county has a national dog (only one country has one),Netherlands,General,What Queen of Ogygia detained Odysseus for seven years,Calypso -General,What do you call the act of putting a word inside another (ie: abso bloody lutely.),Tmesis,Music,In Which Year Were The Housemartins Having A Happy Hour,1986,General,"In Greek mythology, who was the only mortal gorgon",Medusa -General,What presidential ticket was dubbed bozo and the pineapple,Gerald ford and, Geography,What is the capital of Jamaica ?,Kingston,General,"Whose last words were - ""Clito I owe a cock to Asclepius""",Socrates -General,A tool with screw point for boring holes in wood,Auger,General,What is the great mass of stone trees in the Painted Desert in Arizona called,The petrified forest,General,"The Sicilian, French and Alekhines are all used in which game",Chess -General,Who is on a U.S. $20 bill,Andrew jackson,General,Lucille Langhanke born 1906 won an Oscar as who in 1941,Mary Astor,Music,With What Name Was Duke Ellington Christened,Edward Kennedy Ellington -General,The Fields Medal is equal to a Nobel prize in what area,Mathematics, History & Holidays,What type of natural disaster hit the American Midwest in 1935? ,Dust Storms ,General,The scale used to measure the magnitude of earthquakes,Richter -General,"Clarissa Luard, Mariane Wiggins & Elizabeth West. Have All Been Married To Which Famous Author ?",Salman Rushdie,General,Who wrote the book Gremlins in 1943 - later filmed,Roald Dahl,General,Which American state is nicknamed the 'Beehive' state,Utah -General,Who won the best actor award for Marty in 1955,Ernest Borgnine,General,Who wrote the novel brighton rock,Graham greene,General,In 1954 George Cowling was the first British TV what,Weatherman -General,Led Deighton trilogy Game Set Match What 3 Capitals,Berlin MexicoLondon, History & Holidays,What did Victorian women bathe in to try to enlarge their breasts?,Strawberries,General,What is the birthplace (city) of the late John Candy,Toronto - Geography,What continent is Cyprus considered to be part of?,Asia, History & Holidays,From what did Alexander the Great suffer?,Epilepsy,General,What was signed on 15th June 1215?,The Magna Carta -Music, Who had a Hit in 1958 with the Song 'Hoots Man',Lord Rockingham's XI,General,The space occupied by a body is called its ______,Volume,General,In a year the average person walks four miles doing what,Making their bed -General,The Perils of Penelope and Dastardly and Mutley spin offs what,Wacky Races,General,What domestic cat enjoys swimming,Angora,General,Fault What Italian city had the Roman name Mediolanum,Milan -General,A mustelidae family member is a(n)___.,Weasel,Science & Nature,What Parasitic Infection Is The Most Wide-Spread ,Malaria , History & Holidays,What was the name of the balloon three americans piloted across the atlantic in 1978 ,The double eagle ii  -General,What were the two forenames of dramatist and novelist J.M. Barrie,James matthew,General,How many seats did the Scottish National Party win at the 2015 General Election?,56,General,What animal can sleep 3 years but only mates once - 12 hours,Snails -General,What is the flower that stands for: rural happiness,Yellow violet,General,What keeps one from crying when peeling onions?,Chewing gum,Art & Literature,"In 'Alice In Wonderland', who never stopped sobbing?",Mock Turtle -General,What Group Performed On The First CD To Sell Over A Million Copies Worldwide,Dire Straits,General,Amundsen reached the South Pole in which year,1911,Sports & Leisure,In which city is the Cotton Bowl played?,Dallas -General,Urea is only found in humans and what other animal,Dalmatian Dogs, History & Holidays,Who Played The Title Role In The 1965 British Film The Nanny ,Bette Davis ,Art & Literature,Which American Author Wrote Jaws ,Peter Benchley  -General,What derivative of cocaine is often used in Dental surgeries as an anaesthetic?,Lidocaine,General,In Which Country Was Greenpeace Founded In 1971,Canada,General,As who is Terry Bollea known,Hulk Hogan -Geography,On Which Side Of The Road Do They Drive In India ,The Left ,General,What did Barbie do in 1977,Smile,General,"Which particles, when emitted by radioactive nuclei, are known as beta particles",Electrons or positrons -Music,Mark Knopfler Was A Member Of Which Band,Dire Straits,General,What is the square root of zero,Zero 0,General,Who composed the opera Lakme,Delibes -General,What Japanese city was the scene of a devastating earthquake in 1994,Kobe,Sports & Leisure,Who won the Ladies singles title at Wimbledon in 2004? ,Maria Sharapova ,General,What is the medical term for short sightedness,Myopia -General,What distinguished the 9th and 10th Cavalry,All Black Regiments,General,Branch of mathematics using letters to represent numbers,Algebra,General,Which letter of the alphabet is used in cameras to describe the aperture setting?,F -Music,Guess The Band From These Initials MO / HD / RW / JO / GB,Take That,General,What is agoraphobia,Fear of open spaces,General,Minerals that are treasured for their beauty & durability,Gemstones -General,"What islands got their name from the Spanish 'baja mar', meaning 'shallow water'",Bahamas,General,Who was born on the island of korcula,Marco polo,Science & Nature,What Is The Cos A Type Of? ,Lettuce  -Music,"Who Began The Decade Riding In A ""Big Yellow Taxi""",Joni Mitchell,General,What note sounds at 261.6 hertz,Middle c,General,What famous religious hymn by Augustus Montague Toplady,Rock of Ages -General,"Which ex-Neighbours star released the No.2 hit single ""Tom"" in October 1997",Natalie imbruglia,General,When is the shortest day in the northern hemisphere,December, Geography,Which country's ships fly under the Union Jack ?,Great Britain -Geography,Which city is furthest north in terms of its line of latitude? ,Rome ,Science & Nature,Which Common Flower Has The Scientific Name Bellis Perennis & Has A Connection Via A Song With A Bicycle ,Daisy ,General,Who was the first gymnast to score a perfect 10 in Olympics,Nadia Comaneci -General,"According to the title of a famous novel, there are how many 'Years of Solitude",100,Food & Drink,What type of pulses are used in humous? ,Chick Peas ,General,What is the inscription on the squadron badge of 617 Squadron,Apres moi le deluge -General,Who wrote The Hitchhikers Guide to the Galaxy,Douglas Adams,Science & Nature,Where Does The Arctic Tern Migrate To? ,The Antartic ,General,40000 Americans are injured each year where,In the toilet -General,"Milk, cheese and meat are good sources of which nutrient needed for a healthy diet",Protein,Food & Drink,Which herb is used to flavour Pernod? ,Anise,General,What traditionally happened on Ash Wednesday? ,People put ash on their foreheads  -Food & Drink,How would you serve Gezpacho Soup ,Cold ,General,What was Marilyn Munroes original last name,Mortenson,General,Which Soviet Republic Was the first To Declare Independence from Moscow In 1991?,Lithuania -General,8% of people in the world have an extra what,Rib,General,The Bank of Italy changed its name to what,The Bank of America,General,Reginald Carey became famous as who,Rex Harrison -General,Sport variable ground size 120x150yd min 170x200 max,Aussie rules football,General,53 is the international dialling code for what country,Cuba,General,What was the first credit card called?,Diner´s Club -General,Who played the stepmother in 'my stepmother is an alien',Kim bassinger,Toys & Games,Term for any number between 19 & 36 in Roulette,Passe,General, The study of light and its relation to sight is called ________.,Optics -General,Which Films Theme Was The Biggest Selling Song Of The Year 1979,Bright Eyes,General,"In ballet, a gliding step which usually connects two steps.",Glissade,General,Elaine Bookbinder became more famous as who,Elkie Brooks -General,In which European city is Templehof airport,Berlin,General,In Youngstown Ohio it's illegal to run out of what,Gas or petrol,General,Who won the Best Actress Oscar in 1987 for her role in Moonstruck,Cher -Music,"In 1975 Who Discovered To His Horror That His New Single ""Honky Tonk Angels"" Was About Prostitutes And Promptly Banned The Record Himself",Cliff Richard,General,Russian blue and Turkish brown are types of what,Cats,General,"Name the female version of the Jewish Bar Mitzvah, celebrating a girl reaching the age of thirteen",Bat mitzvah -General,Where is nuuk,Greenland,General,Which stretch of water separates Denmark from Sweden,Kattegat,General,Fritz Von Werra was the only German pilot WW2 to do what Escape,The one that got away -General,Who was the author of 'dracula',Bram stoker,Toys & Games,This term denotes a chess move in which both the king and the rook are moved.,Castling,General,16th century husband had to stop doing what to wives after 10pm,Beating Them - History & Holidays,What cult-fav eighties movie features John Lithgow from another dimension? ,The Adventures of Buckaroo Banzai ,Geography,What is the basic unit of currency for United States,Dollar,General,"Which Italian painter noted for ""red"" canvases died in Venice of the plague in 1576, aged about 99",Titian -General,Caruso put what in Nellie Melbas hand singing tiny hand frozen,Hot Sausage,Music,With Which Renowned American Composer Did Elvis Costello Collaborate On The 1998 Album Painted From Memory,Burt Bacharach,General,Who set a world water speed record over 70 mph at age 72,Alexander Graham Bell - History & Holidays,Who is known for his 'theory of evolution'?,Charles Darwin,Geography,Which City Is The Capital Of Switzerland ,Berne ,General,Name the person who caused Chicago kids to get school milk,Al Capone -General,The cultivation of grapes,Viticulture,Music,What Are The First Names Of The Eurovision Winners Bucks Fizz? (PFE),"Cheryl, Mike, Bobby & Jay",General,What was stolen from a Hotel Garden in Britain in 1991,Onion Crop -People & Places,Whose Real Name Is 'Gordon Sumner' ,Sting ,General,Which two books in the old testament list the ten commandments,Exodus and,General,Who wrote Three Men in a Boat,Jerome K Jerome -Science & Nature,What Is A Kumquat? ,A Small Japanese Variety Of Orange ,Music,"Who Had A Hit In 1994 With ""Wonderman""",Right Said Fred,General,"Who said ""Tha tha that's all folks""?",Porky Pig -General,What do astronomers call the red sky before sunrise,Aurora,Music,"Who Had A 1985 Hit With ""Fever""?",Peggy Lee,General,"Which forename, deriving from the Germanic 'rulehard', has been held by three English kings",Richard -General,Grunge music originated in which American city,Seattle,General,"His hit, Calendar Girl, features the lyrics ""April-You're The Easter Bunny When YoU.S.mile""",Neil Sedaka,General,What Is Nosocomephobia The Fear Of,Hospitals - Geography,Bissau is the capital of ______?,Guinea-Bissau,General,In Phoenix Arizona you cant walk through a hotel wearing what,Spurs,General,Where does the annual poker world series take place,Las vegas -General,In which county is Corfe Castle,Dorset,Entertainment,What was the average age of United States soldiers in the Vietnam war?,Nineteen,General,The 1st personal computer went on sale in what year,1977 -General,John McEnroe won Wimbledon doubles with what partner,Peter Fleming,General,Ankara is the capital of ______,Turkey,Geography,What Tourist Attraction Is Wearing Away At A Rate Of 5 Feet Per Year ,Niagra Falls  -General,In which play did Shakespeare write a whole scene entirely in French,Henry v,General,U.S. Captials - Indiana,Indianapolis,General,What is the flower that stands for: aversion,Indian single pink -General,What was the first product to have a bar code on it?,Wrigley's gum,Art & Literature,Who Painted The Creation Of Adam ,Michelangelo ,General,What is a cancerous tumour,Malignant -General,Who played alexis carrington in the tv series 'dynasty',Joan collins,Food & Drink,How Did Caprese Salad Get It's Name ,It Came From The Island Of Capri,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 -Sports & Leisure,Which swimming stroke is named after an insect?,Butterfly,General,"What did jim morrison do on march 1, 1969",Exposed himself get naked on,Science & Nature,What is the meaning of the name of the constellation Ursa Minor ?,Little Bear -General,Who wrote the song 'Anything Goes',Cole porter,General,What was mussogorsky's profession,Composer,Science & Nature," 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 -Food & Drink,"What name is given to a savoury of oysters wrapped in bacon slices, served on toast? ",Angels on hoseback ,General,What russian emigre to the us is credited with inventing the helicopter,Igor,General,What is the fear of suffering and disease known as,Panthophobia -General,"Italy Schiaffetoni, Rosetti and Crusetti in Sicily what pasta type",Cannelloni,General,Who were the group Hue and Cry looking for,Linda,General,The bridge connecting Boston & Cambridge via Massachusetts Avenue is commonly know as the ______,Harvard bridge -General,In Hazledon Pen a lecturer can't legally do what while working,Sip Carbonated Drinks,Science & Nature,What Is The Function Of The Pituitary Gland ,It Controls The Production Of Hormones ,Science & Nature, The chameleon has a tongue that is 1.5 times the length of its __________,Body -General,"Before coming a full time author, what was the profession of Frederick Forsyth",Journalist,General,The vaccine MMR offers protection against which diseases,Measles mumps and rubella,General,What element does the symbol 'at' represent,Astatine -General,In the Bible where was Jesus when he ascended into heaven,Bethany,Music,"Who Had A Hit With ""Heartbreaker"" In 1982",Dionne Warwick,Science & Nature,These limestone deposits rise from the floor of caves.,Stalagmites -General,What does cpr stand for,Cardiopulmonary resuscitation,General,In what country would you find New Brunswick,Canada,Entertainment,What was the first network series devoted entirely to rock and roll?,American Bandstand -General,Which 1956 film caused riots in cinemas,Rock around the clock,General,The first telephone exchange was opened in the U.S. in what year,1878,General,The 25th U.S. president always wore a red carnation. He was _______ ______,William mckinley -General,What Was Michael O'Briens Claim To Fame,First Ever British Streaker,General,In WW2 Air corps non flying members given what nickname,Kiwis - Non Flying,Science & Nature,Sydneys Main Airport Is Named After Which Great Australian Aviator ,Sir Charles Kingsford Smith  -General,A booklet containing descriptive information,Brochure,General,What Food Do You Use Up More Calories Eating Than You Gain Through Consumption,Celery,General,When was the cathode ray tube invented,1878 -General,What is the capitol of the United Arab Emirates,Abu Dhabi,General,Who gave the u.s.a the statue of liberty,France, History & Holidays,Who Released The 70's Album Entitled Catch a Fire ,Bob Marley and the Wailers  -General,Syngenesophobia is the fear of what,Your relatives,Music,What instrument did bob dylan play in his recording debut,Harmonica,Science & Nature,What Is The Most Common Element In The Universe ,Hydrogen  - History & Holidays,"The General Strike, Called In 1926, Supported Which Union? ",Mine Workers Union ,General,Who wrote 'the joy of sex',Alex comfort,General,What was the name of the party dog that that was Budwiser's mascot in the late eighties?,Spuds McKenzie -General,"During which war did the term ""Fifth Column"" originate",Spanish civil war,Toys & Games,In poker five cards of the same suit is called a(n) __________.,Flush,General,What is the name in a planet's orbit when it is nearest to the sun,Perihelion -General,What pope died 33 days after his election,John paul i,General,Metallophobia is the fear of,Metal,General,Which Athenian philosopher wrote nothing - immortalised by Plato,Socrates -Sports & Leisure,This traditional Japanese wrestling sport takes place in a circular ring.,Sumo,General,What is the nickname for Maine,Pine tree state,General,When is the shortest day in the southern hemisphere,June -General,In 1927 what ceased to be a weapon in the British Army,The Lance,General,What vegetable is found in the dish chicken divan,Broccoli,General,Six copies of what are stored under bell jars in Serves France,The Kilogram in platinum iridium -Entertainment,Which famous male actor made his name in 'I Dream Of Jeannie'?,Larry Hagman,General,"Colorless, corrosive liquid that has the chemical formula HNO3",Nitric Acid,General,What color are an albino elephant's toenails,White -General,As what are male bees also known?,Drones,General,Who won the 1982 soccer world cup,Italy,General,What is the Capital of: Sweden,Stockholm -General,What are garbanzo beans also known as,Chick peas,General,Where would you find your Coxa,Hip Joint,Music,The Big Bopper and Ritchie Valens died in a plane crash with which rock and roll legend,Buddy Holly -General,A small village without a church,Hamlet,General,What russian leader was killed with an icepick?,Trotsky,General,What job does up & down do for a living,Elevator operator -General,Who was the first woman golfer to earn a million dollars,Kathy witworth,General,What was the location for the first Winter Olympics in 1924,Chamonix,General,What animal can smell a virgin same type from 1.8 miles away,Gypsy Moth -General,What did the Romans call the tenth part of a legion - between 300 and 600 men,A cohort,General,A smurf is this tall,3 apples,General,What is rayon made from,Wood pulp -Music,In Which Film Did Fred Astaire & Ginger Rogers Team Up,Flying Down To Rio,Geography,Which Country Produces The Most Pears Each Year ,China ,General,Which is the longest river system in Australia,The murray-darling -General,"The ""final solution"" dealt with what people",Jews, Geography,Bamako is the capital of ______?,Mali,General,Michael Jackson sing this song in 1987,Smooth criminal -General,"Shovelhead, Knucklehead, Panhead types of what",Harley Davidson,General,Telesphobia is a fear of what,Being Last,General, A person with a strong desire to steal is a(n) ________.,Kleptomaniac -Sports & Leisure,Who was the first woman to compete in the World Snooker Champion? ,Alison Fisher ,General,Who played ashley wilkes in gone with the wind,Leslie howard, Geography,What is the capital of Nebraska,Lincoln -General,Tennis - who won the us open in 1989,Boris becker,Music,"Who Had A Hit In 1988 With ""Good Life""",Inner City,Art & Literature,Which book featured the miser Scrooge?,A Christmas Carol -General,In which U.S. state would you find Tulsa,Oklahoma,General,What was the first cd pressed in the u.s,Born in the u.s.a,Sports & Leisure,Who was the first manager from outside the British Isles to win the English FA Cup? ,Ruud Gullit  -General,Trick what country suffered the most combat deaths in world war ii,Soviet union,General,What has a palimped got,Webbed Feet,General,"In 1968, who released 'carnival of life' and 'recital'",Lee michaels -General,What has 12000 eyes,A Butterfly,General,Debussy how tall was the shortest british monarch charles i,"4'9""",General,"The indoor theatre at the new Globe, being built in London, will be named after which historical person",Inigo jones -Science & Nature,What are the larvae of flies called ,Maggots ,General,Which of the Greek islands is closest to Turkey?,Rhodes, History & Holidays,What style of dancing was popularized with rap music? ,Break Dancing  -General,Amaxophobia is the fear of what,Riding in a vehicle,General,"Chaconne, Rigadoon, Passepied are all types of what",Old style dances,General,"The longest suspension bridge in the world is the Akashi Kaikyo, located where",Japan -General,Soccer new york ______,Cosmos,General,If you are on the Choke mountains what country are you in,Ethiopia,General,Aleksei Leanov was the first to do what,Space walk -Religion & Mythology,"In Greek mythology, the riddle of what did Oedipus solve?",Sphinx, Geography,What is the capital of the United Arab Emirates?,Abu Dhabi,Food & Drink,"Not to be confused with spatchcock, which creature might be split and grilled or fried in a manner known as spitchcock? ",Eel  -General,The Madeira islands lie in which ocean,Atlantic,Music,"Which Of Madonna's Albums Featured A Duet With Prince Called ""Love Song""",Like A Prayer,General,"In Shakespeare's play, who tamed the shrew",Petruchio -General,"In Christian churches, the universal rite of initiation, performed with water.",Baptism,Religion & Mythology,Who is the greek equivalent of the roman god Mercury ?,Hermes,General,Which Singer Released Their 4th Album Entitled “ This Time ” In 2007,Melanie C -General,Cavendish is the family name for which Duke,Devonshire,General,What happened in Britain Sept 3rd 1752,Nothing - day never existed,General,What do the initials U.F.O stand for?,Unidentified Flying Object -General,Who played 'Cricket Blake' in the 1960s T.V. series Hawaiian Eye,Connie stevens,General,"Who is known as the ""George Washington"" of South America",Simon bolivar, History & Holidays,Who Was The Youngest British Prime Minister? ,William Pitt (The Younger)  -General,In astronomy what are rapidly rotating neutron stars called,Pulsars,General,"Who composed ""Messiah""",Handel,General,What is the flower that stands for: stoicism,Box tree -General,Under My Wheels' and 'Be My Lover' were cuts of whose 1971 'Killer' release,Alice Cooper,General,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,People & Places,Who Is Married To Tatum O' Neil ,John Mcenroe  -General,Which American city was named after a British Prime Minister,Pittsburgh,General,"What are or were The Adena, Cayuga, Haida and Nootka",North American native Indian tribes,General,In Kansas by law you cannot drive what down the street,Buffalo -General,A Chinese eunuch invented what in the second century,Paper,General,Where would you find the titmus test,ICC cricket test for bowling action,General,A very tall center and a real ladies man,Wilt the stilt -General,Who wrote the Paris and Prague symphonies,Mozart,General,"A slender, lofty tower with balconies, attached to a Muslim mosque.",Minaret,General,What is the flower that stands for: conjugal love,Lime -General,Which western writer created Hopalong Cassidy,Louis L'Amour,Science & Nature,What Is The Longest Side Of A Right Angled Triangle Called ,It's Hypotenuse ,Science & Nature, Baby rattlesnakes are born in August and __________,September -General,Which singer is known as the 'Walrus of Love',Barry white,Mathematics,Who proved Fermat's Last Theorem ?,Andrew Wiles, History & Holidays,During Which War Did The Charge Of The Light Brigade Occur? ,Crimean  -Science & Nature,Which Is The Smallest Living Relative Of The Dinosaur ,The Bee Hummingbird ,General,What symbol appeared in green on white flags flown by U.S. relief ships during the Irish potato famine,Shamrock,Sports & Leisure,Which Chess Piece Always Remains On The Same Colour Square ,Tthe Bishop  -General,The dollar was established as the official currency of the U.S. in what year,1785,Science & Nature, The lungfish can live out of water in a state of suspended animation for __________,3 years,General,Jocasta was the wife of Laius and the mother of who,Oedipus -General,"On irc, how do you ask age, sex, location",A/s/l,General,The term Tercentennial represents how many years ?,300,Entertainment,"Gadzookie has a large, green friend. Who is he?",Godzilla -General,War heroine Violette Bushell was better known by her married surname - what is it,Szabo,General,Small country has more 1000 dialects and two official languages,Philippines,General,The Sweater Shop International was a competition which sport,Snooker -General,Medical treatment involving needles,Acupuncture,General,What body of water separates Australia and Papua New Guinea,Torres Strait,General,What is the flower that stands for: blushes,Marjoram -General,Energy waves produced by the oscillation or acceleration of an electric charge. Electromagnetic waves have both electric and magnetic components.,Electromagnetic radiation,General,Japan what is the capital of kenya,Nairobi,General,What does the Fleetwood Mac inspired plaque on Bill Clinton's desk read,Don't stop thinking about tomorrow -General,Epitaxis Is The Correct Medical Term For Which Common Condition,Nose Bleed,General,"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,General,Who was hanged & decapitated two years after he had died,Oliver cromwell -General,What did scientists build in a squash court under a football stadium at the university of Chicago in 1942,Nuclear reactor,General,"Who said, ""the best way to resist temptation is to yield to it""",Oscar wilde,General,"On an Indian menu, Aloo is what type of food?",Potato -General,Glossitis is inflammation of which part of the body?,Tongue,General,Which television island gave well-heeled guests the chance to live out their dreams in the 1970's,Fantasy island,Music,What was the first single released on the Apple label?,"Hey Jude""/Revolution" -General,Who said I've have take more out of alcohol that it has out of me,Sir Winston Churchill, Geography,Where is the tallest building in the world?,"Kuala Lumpur, Malaysia",General,As close as two ______ in a pod,Peas -General,Whats the oldest brewery in continuous operation in North America,Molson,Science & Nature,Which planet is known as the red planet ?,Mars,General,Dainty or cute to an affected degree,Cutesy -General,Name the Indian version of Barbie,Monica,General,Which motor company produces the Alhambra,Seat,General,Marie Stopes discovered what in British Museum after marriage,Should not be virgin -General,Who wrote the music for the ballets Firebird and Rites of Spring,Igor Stravinsky,General,"What mouseketeer's first hit song was ""tall paul""?",Anette funicello,General,Literal translation what Persian word is leg garment,Panamas -Science & Nature,Scotch Tape Was Invented In 1930 By American Richard Drew For Which Company Did He Work? ,3M ,Food & Drink,From Which Country Does Bulls Blood Originate ,Hungary ,Science & Nature,These marine crustaceans often attach themselves to the hulls of ships.,Barnacle -General,Ovine refers to what kind of animal,Sheep,General,In the Chinese New Year what year follows Rat,Ox,Science & Nature," 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 -General,What is a group of quail,Covey,Entertainment,In the cartoons who was Hokie Wolf's sidekick,Ding,General,What financial item was introduced to UK in September 1963,American Express card -General,In London what would you find at 87-135 Brompton Road,Harrods,General,"Which star, the brightest in the constellation Taurus, is known as the 'Eye of Taurus'?",Aldebaran,Art & Literature,"This subject is covered in the magazine ""Bondage"" (two words)",James bond -General,Which meat do Hindus not eat,Beef,Geography,Into Which Sea Does The river Danube Flow ,The Black Sea ,Science & Nature,What is the sixth planet from our sun?,Saturn -General,What body parts are oversized in a man suffering from gynecomastia,Breasts,Music,"Who Recorded The Album ""The Dream Of The Blue Turtles""",Sting,General,How is a zither played,Plucked -General,In the UK sport of Kings what is significant about the number 18,Max letters in a racehorses name,Music,"Following His Honorary Knighthood, What Letters Is Bob Geldof Entitled To Put After His Name",KBE,General,What union did duran duran sing of in 1983,Union of the snake -General,"Who was the author of ""The Tin Drum""",Gunther grass,Geography,What Is The Largest Island In The World ,Greenland ,General,In which country is the world's largest National Park?,Greenland -General,Who created the 'grinch',Dr seuss,General,Name the group that organist barry andrews left xtc to join,League of,Music,"Who Sung Their Own Theme Before Moving On To A ""Superfly Guy""",S Express -Sports & Leisure,Which Football Club Play Their Home Games At The Walkers Stadium ,Leicester City ,General,What is the fear of tuberculosis known as,Phthisiophobia,General,"Who said 'there, i guess king george can read that'",John hancock -Science & Nature,In Which Country Are The Worlds Deepest Mines ,"South Africa, Near Carletonville ; They Are 3,777m Deep ",Geography,The city of Los Angeles is more than one_third the size of the entire state of ______________,Rhode island,Food & Drink,What is the flavour of the liqueur Kahlua? ,Coffee  -Music,"Who Wrote The Song ""Manic Monday"" For The Bangles",Prince,General,What is a zinfandel,White grape variety,General,Which fictional city is Superman's home,Metropolis -Entertainment,What actress has received the most Oscar nominations?,Katherine Hepburn,General,The term Bicentennial represents how many years ?,200,Geography,What is the capital of Latvia,Riga -General,King Mongut had aprox 9000 wife's/concubines what country,Siam - Thailand,Entertainment,Who sang about 'The Boogie Woogie Bugle Boy Of Company B'?,The Andrews Sisters,General,Who starred in the 'hard to kill' series of films,Steven segal -Geography,What is the capital of Mauritius,Port louis,General,In Spain St John Bosco is the Patron Saint of what,Cinema,General,Who appeared solo at the woodstock festival after leaving 'the lovin' spoonful',John sebastian -Science & Nature, The Cairn terrier is great at catching __________,Rats,Science & Nature,The Chemical Symbols For Titanium & Sodium Spell Out The Letters To Which Girls Name? ,Tina ,General,The world's largest department store is a feature of which world city?,Seoul -Science & Nature,The planet closest to the sun is _________.,Mercury, History & Holidays,What's the resting place of those buried at sea,Davey jones's locker,General,The secret police of which country were known as the 'Ton Ton Macoute',Haiti -General,What is the only real food that U.S. astronauts are allowed to take into space,Pecan nuts,General,Cheers exterior shots featured a real bar - what's it name,Bull & Finch, History & Holidays,Which Band Were Dropped By Their Label EMI In 1978 On Grounds Of Unacceptable Behavior ,The Sex Pistols  -Sports & Leisure,When Kevin Keagan Left Liverpool To Which Club To Move To ,Hamburg ,General,"What are Unaone, Soxisix and Novenine",International phonetic numbers 169,Music,Blue Note Records Began In A) 1938 - B) 1949 - C) 1958,A = 1938 -General,Baked beans were originally served in what sauce,Treacle - molasses,General,Stingray Bay named by Cook is now known as what,Botany Bay,General,This chocolaty cereal features Fred Flintstone and Barney Rubble,Cocoa pebbles -General,Book of information on many subjects,Encyclopedia,General,What was the name of the seasick sea serpent,Cecil,General,Who led the U N forces in the gulf war,General colin powell -General,James Abbott McNeill were the first names of which artist,Whistler,General,Imperial Airways in 1925 was the first to do what,Show an in flight movie,General,What is Barbi's full name,Barbara Millicent Roberts -General,What song on the Rubber Soul album became No 1 Overlanders,Michelle - 1966,General,Hebrew and what are the official languages in Israel,Arabic,General,In Beast Wars what is the name of the Maximal Ship?,The Axalon -General,"What sport was described as ""Chess with muscles""",Fencing, History & Holidays,Which horror film star was portrayed by Martin Landau in Tim Burtons 1994 film about cult film maker Ed Wood ,Bela Lugosi ,Science & Nature,What Is The Commonest Metal On Earth ,Aluminium  -General,How many championship divisions are there in boxing,Eight,General,Who recorded such popular songs as 'policy of truth' and 'personal jesus',Depeche mode,Entertainment,TV series: 'American ______'?,Bandstand -General,Canthopterygian is a(n)___.,Fish,Music,Which Song From Grease Was A No.1 Hit In The UK & USA,You're The One That I Want,Music,Highest amount a Beatles-related item sold for at auction,"$2.3 million (in 1985, for John's 1965 psychedelic Rolls-Royce)" -General,What is the Capital of: Macedonia,Skopje,General,What is the fourth day of the week,Wednesday,General,"Which of these is NOT a computer: MANIAC, SILLIAC, BRAINIAC,ILLIAC, JOHNNIAC",BRAINIAC -General,Who was the first male to appear on the cover of Playboy,Peter Sellers,General,What colour is puke,Dark Green,General,In Switzerland it is illegal to do what in an apartment after 10pm,Flush Toilet -General,Who was Prime Minister of China 1949 to 1976,Chou En-Lai,General,"In the US, what is a 'flapjack' a type of",Pancake,General,What kind of car does Nick Nolte's character in 48 hours?,A sky blue Cadillac convertible -General,What london palace was destroyed by fire in 1936,Crystal palace,General,"Derived from the latin 'australis', what does Australia mean",Southern,General,A salt enema was given to children to rid them of ______,Threadworm -General,"In the film version of Willy Russell's play, who played Shirley Valentine",Pauline collins,General,What is the main flavouring in a Greek Tzataili sauce,Garlic,General,Which house did Winston Churchill live in from 1922 to his death,Chartwell -People & Places,"What Did Churhill, Cromwell, & Shakespeare Have In Common ? ",They all Had Red Hair ,Music,In Whose Band Is Madonna Wayne Gacy The Keyboardist,Marilyn Manson,General,"Which female vocalist had a top ten hit in 1988 with ""Je ne sais pourquoi""",Kylie minogue -General,In what country was Bonnie Prince Charlie born,Italy,General,What was the name of the detective agency in Moonlighting?,Blue Moon Detective Agency,General,The average what is designed to last for 180 wearings,Bra -General,Who was on the throne at the time of The Great Fire Of London,Charles II,General,"Who said that all matter comes from fire, water, earth & air",Aristotle,General,A computer small and light enough to be held in one hand,Palmtop -General,"How many fires erupted in the april 18, 1906 san francisco earthquake",Fifty, Geography,On what island is the Blue Grotto?,Capri,General,Who was the Lady of the Lamp,Florence nightingale -General,In area what is the largest South American country,Brazil,Music,In Which Keyboard Instrument Are The Strings Plucked Not Struck,The Harpsichord,General, Acrophobia is a fear of ___________.,Heights -Food & Drink,"The Italian Desert Made By Whisking Egg Yolks, Wine And Sugar Is More Commonly Known As What ",Zabaglione ,General,What is a Dandie Dinmont,Dog - Borders Terrier,General,What sea creature resembles a knight in chess,Seahorse - History & Holidays,What company used the little aligators as it's symbol on clothing? ,Izods ,General,What is the Capital of: Ghana,Accra,General,What cocktail is made of rum and lemon,Daiquiri -Entertainment,Who sang 'In The Air Tonight'?,Phil Collins,General,What did john augustus larson invent,Lie detector,General,Ford Prefect came from a star in which constellation,Orion (Betelgeuse) -General,"What Police Resource Was First Used In The ""Jack The Ripper"" Investigation",Bloodhounds,General,What does a.d. actually stand for,Anno domini,General,In WWW terms what does i.e. mean on a domain name,Ireland -General,"What's the international radio code word for the letter ""C""",Charlie,Music,Who Was Calling Gloria In 1982,Laura Branigan, History & Holidays,What was the first name of the baby girl who fell down the well? ,Jessica  - Geography,Into what ocean does the Zambezi River empty?,Indian Ocean,General,What colour shirts must table tennis players wear in official competition,Black, Geography,What is the basic unit of currency for Liechtenstein ?,Franc -General,"In which sport would yoU.S.ee a dolphin bent knee, a walk over front and a catalina",Synchronized swimming,Toys & Games,A Royal Flush is the best hand you can get in which game,Poker, History & Holidays,In 1959 Who Established A Communist Government In Cuba ,Fidel Castro  - Geography,What is the capital of Vanuatu ?,Port-Vila,General,Satanic Majesties Request Music: What was the only hit song for the band 'It's a Beautiful Day',White,General,"Short, simple, descriptive poem idealizing country life",Idyll -General,To which S American country does Easter Island belong,Chile,General,A Blue Imperial or a New Zealand white types of what,Rabbits,General,Which temperature scale begins at minus 273.15 degrees Celsius,Kelvin absolute thermodynamic -General,What industry would use a mordant,Dying - to fix a colour,General,Which is the larger of the rhinocerous,White,General,Which Duo's Fan Club Is Known As The Sons Of The Desert ?,Laurel & Hardy -General,Man shall not live by bread alone - Which NT book,Matthew 4.4,General,The soft areas of the cartilage on a baby's head where the skull bones havn't joined is called what,Fontanelle,Geography,Seoul is the capital of which country,South korea -Science & Nature, The individual hair of a chinchilla is so fine that __________of them equal the thickness of a single human hair.,500, History & Holidays,"The Christmas story is only told in two of the four gospels, Luke is one which is the other ",Matthew ,General,Tip Throat Vamp Collar Shank are parts of what object,Woman's Shoe -General,In computing what is Ram short for?,Random Access Memory,General,Robin Goodfellow alternative name which Shakespeare character,Puck,General,Numerophobia is the fear of,Numbers -General,"In ballet, a rising with a spring movement to point or demi-point.",Relevé,General,What is the flower that stands for: bonds of affection,Gillyflower,General,The star Spica is in which constellation,Virgo -General,The Italian Date is a common name of what fruit,Tamarind,General,The Witches Curse alternative name which G&S operetta,Ruddigore,General,What is the most popular dogs name in the US,Max -General,"What links The Reivers, Grapes of Wrath, Humboldt’s Gift",Pulitzer Prize winners,General,African tree with massive trunk and edible fruit,Baobab,General,What term is given to the cooling method applied to Metals in order to relieve strains which have occured during heat treatment??,Annealing - History & Holidays,In Which Year Did The Battle Of Hastings Take Place? ,1066 ,General,What one word fits ____hood; ____hole; ____date,Man,General,What is the acronym for an image produced by aligning molecular crystals,Lcd -General,What's Penthouse's sister publication for women,Viva,Sports & Leisure,Which Country Produces The Most Successful Rally Drivers ,Finland ,General,Charles Adrian Wettach became famous as what clown,Grock -General,"In an alphabetical list of countries in the world, what middle eastern country comes between portugal and romania",Qatar,General,"Which ""Coronation Street"" character was played by Ian Mercer",Gary mallett,General,"In Greek mythology, who is the mother of the muses",Mnemosyne -General,What was the name of the attempted invasion of Cuba in 1961,The bay of pigs, Language,What is 'bountiful mother' in Latin?,Alma mater,General,Which port is the capital of the Italian region of Liguria,Genoa -Sports & Leisure,What Is The Name Of The Controlling Body In Flat Racing ,The Jockey Club ,General,Celtic language of Scots or Irish,Gaelic,General,What's the fourth book of the new testament,John -Geography,What is the capital of Vanuatu,Vila,General,Who would take silk as part of their job,Barrister,Science & Nature,To Which Family Does The Kookaburra Belong? ,Kingfisher  -General,What is Alberta's most important tree,Spruce,General,Baseball: star Joe Dimaggio married which actress,Marilyn monroe,Food & Drink,On the dessert menu what is the name given to a mixture of Fresh or dried fruit in syrup? ,Comp?te  -Music,Which Future Pop Star Attended The Scene Of Eddie Cochran's Fatal Car Crash In 1960 In His Job As A Police Officer,Dave Dee,General,Which fast suburban railway system in Ireland runs from Howth in the North to Bray in the South,Dart,General,"Who Drove The Car ""The Compact Pussycat""",Penelope Pitstop -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,Entertainment,"In 'La Traviata', what does Violetta sing?",Sempre Libera,General,What part of the body does a neuro-surgeon specialise in,Nervous system -General,What name is given to the fleshy part of a horses tail,The dock,General,Which Spanish town is noted for high quality steel swords,Toledo,General,Woodbury soap was the first to show what in its advertisements,Full length nude woman 1936 -General,What are Misty Rain Sunshine Blue Honey Rose,Porn Stars,General,Worlds largest numismatic publication is___.,Coinage,General,The Tehran hostages were released in 1980 after how many days of captivity,Four hundred and forty four -General,What was romeo's family name,Montague,General,"In tokyo, for what are toupees sold",Dogs,General,Whats the worlds longest snake,Python -Music,"What Live Record Did ""Rolling Stone"" Readers Vote The Best Album Of 1976",Frampton Comes Alive / Peter Frampton,General,What does a fishmonger do for a living,Sells fish,General,Dimaggio what band did james brown tour and record with in the 1950's,Famous flames -General,Which metal is in liquid state at ordinary room temperature,Mercury,General,Three Scottish kings and eight Popes share what name,Alexander,Music,"Who Had A Hit In The 90's With ""Boom Boom Boom""",Outhere Brothers -General,Who recorded the albums Blonde on Blonde and Blood on the Tracks,Bob dylan,General,Moriaphillia is sexual arousal from what,Telling dirty jokes,General,If a bird nidifies what has it just done,Built a nest -General,What European capital city is NOT on a river,Madrid,Entertainment,In which film was Goldie Hawn the body double for Julia Roberts?,Pretty Woman,General,In what film did alec guinness play eight parts,Kind hearts and coronets -Food & Drink,What Do The Initials U.H.T Refer To In Relation To Milk? ,Ultra Heat Treated ,General,Wimpy was the working title of what classic movie,Psycho,General,What's the world's largest fresh-water island,Manitoulin -General,How many lives did Herb Philbrick lead,Three,General,Naturally occuring community of flora and fauna adapted to the conditions in which they occur,Biome, History & Holidays,On the 3rd January 1959 which state became America's 49th ,Alaska  - History & Holidays,What tree is mentioned in the Christmas song 'Twelve Days of Christmas' ? ,A Pear tree , History & Holidays,"What is the name of Tiny Tim's father in the story, 'A Christmas Carol'? ",Bob Crachit ,Food & Drink,Which is the most eaten fruit in the world? ,Banana  -General,In which county is Combe Martin,Devon,General,"Which Japanese suicide technique translates to the English ""belly cutting"" ?",Hara-kiri,General,What was the name of Nero's murdered mother,Agrippina -General,The 'Wife of Bath' is a character from what tale,Canterbury tales,Music,What Type Of Music Would One Associate With The West Indies,Calypso,Geography,"______________, in Russia, is the largest city north of the Arctic Circle.",Murmansk -General,"Who recorded the album ""moving finger"" in 1971",Hollies,Entertainment,Name Jerry Garcia's long lived group.,The Grateful Dead,General,What kind of shoe is nailed above the door for good luck,Horseshoe -Science & Nature," Flatfishes form a unique and widespread group that includes about 130 American species, common in both the Atlantic and __________",Pacific ocean,General,Who speaks Quechua,Peruvian Indians,Music,Who was Ringo's first wife?,Maureen Cox -General,"Who Provided The Voice Of Esmerelda In The Disney Animated Movie ""The Hunchback Of Notre Damme""",Demi Moore,General,In what field was Erie Shipton famous,Mountaineering,General,Britain what's the adhesion of molecules to the surfaces of solids called,Adsorption -Geography,"In Which County Is Chequers , The PM's Official Residence? ",Buckinghamshire ,General,Brings your ancestors back to life - translated advert for what,Come alive with Pepsi - in China,General,"Which British City Was Known As ""Luguvallum"" To The Romans",Carlisle -Music,"What Is The Connection Between Swing Bandleaders - Woody Herman, Artie Shaw, & Benny Goodman",They All Lead On Clarinet,General,Abel Magwitch and Biddy appear in which Dickens book,Great Expectations,General,Chinese bean sprouts are usually the sprouts of which bean,Mung bean -General,Which 'tarzan' swimmer was the first man to swim a hundred yards in less than a minute,Johnny weismuller,Sports & Leisure,Who was the first spin bowler to take over 500 test wickets? ,Shane Warne , Language,"""faux pas"" means ___________.",Mistake -General,What phrase did the nazi adopt in the 1920s to label their new order,The third reich,General,What is a turkey's wishbone,Furcula,General,What is the fear of sleep known as,Somniphobia -General,Who Was The Comic Partner Of The Man Born Arthur Jefferson?,Oliver Hardy,General,Which Holds The Record For The Novelist Most Borrowed From Public Libraries ?,Catherine Cookson,General,What can you buy in a bar that Japanese farmers massage into their cows to make the meat tender,Gin - History & Holidays,How Old Was Edward VI When He Became King? ,9 Years Old ,General,Which playing card is called the Curse of Scotland,Nine of Diamonds,Entertainment,Name the ranger who was always after Yogi Bear.,Rick -General,"Name the fat, rich detective with a passion for beer, food and orchids?",Nero wolfe,General,Climbing boys were banned what did sweeps drop down chimneys,Live Chickens,General,Do trees grow more quickly or slowly at night,More slowly - History & Holidays,Who was nick named Hanoi Jane in 1972 because of her enemy propaganda broadcasts from Vietnam? ,Jane Fonda ,General,What type of charge does a proton carry,Positive,General,What is the atomic mass of bromine,79.9 -General,"In Common: Himalayan, Rex, Manx, Maine Coon",Breeds of cats kinds of,General,Local law - Atwood con - cant play what if waiting politician speak,Scrabble,General,Lutraphobia is the fear of,Otters -General,In animal terms what is a dude,A camels penis,General,Who starred in Ceiling Zero as a pilot,James Cagney,General,How did Marc Quinquadron die while setting a new world record,Food Poisoning ate 7 snails 3 min -General,What is the young of this animal called: Horse,Foal yearling colt filly,Science & Nature,What is a young whale called?,Calf,General,What is the flower that stands for: am i forgotten?,Holly -General,What is a place where bees are kept called,Apiary, History & Holidays,Who sang Happy Birthday to John F. Kennedy for his 45th?,Marilyn Monroe,General,Which band member was Boy George allegedly seeing in Culture Club during the eighties? (Just name the instrument he plays),The Drummer -General,In 1959 1211-kg great white shark becomes largest fish ever caught on a,Rod, History & Holidays,What country did Abel Tasman discover in 1642 ?,New Zealand,General,Which word refers to all the animal life of a specific place or time,Fauna -Science & Nature,Which science studies animal behaviour in natural habitats ?,Ethology,Geography,What country borders Egypt on the west,Libya,General,Cat stevens 'want's to try to love again but ______',The first cut is the -General,"Which Common Everyday Item Was Introduced To The World By ""Ralph Scneider""",The Credit Card,General,Dish served between fish and meat courses,Entree,Art & Literature,Whose ghost appears at the dinner table in 'Macbeth'?,Banquo's -General,Jefferson how did leonardo da vinci's alarm clock wake a sleeper,Rubbing the feet,General,The sleeve of which album was the first to feature lyrics,Beatles Sergeant Peppers,General,What does a sacerdotal person study for,The priesthood -General,"To within 30 feet, how tall is the Eiffel Tower",984,General,What is Xylography,Wood Engraving,General," The word ""cumulus"" refers to a type of ___________.",Cloud - History & Holidays,Name The Ship In Which Columbus Discovered America? ,Santa Maria (Pinta & Nina Were Sister Ships) ,Music,"Which Album Was At One Time Going To Be Called ""Everest""",Abbey Road, Geography,What country formed the union of Tanganyika and Zanzibar?,Tanzania -General,What city has Kogoshima as its airport,Tokyo,General,What is the main food of mosquitoes,Nectar,General,What is a 'kartoffel' in germany,Potato -General,What weighs less than a penny,Hummingbird, History & Holidays,"He is identified with the expression, ""Eureka"".",Archimedes,General,What is the flower that stands for: assignation,Pimpernel -General,What is 40 in Roman numerals,XL,Music,Name The 2 No.1 Singles For The Seekers In The 60's,I'll Never Find Another You / The Carnival Is Over,Science & Nature, __________ have scent glands between their hind toes. The glands help them leave scent trails for the herd. Researchers say the odor smells cheesy.,Reindeer -General,Who said of Marilyn Monroe 'Kissing her is like kissing Hitler,Tony cutis,General,What was the lone ranger's real name,John reid,General,What do you kiss to be endowed with great powers of persuasion,Blarney stone -General,What US states name means long river in Indian,Connecticut,General,"What industry is symbolized by the term ""madison avenue""",Advertising,General,Rich crescent shaped roll,Croissant -General,Which flying pioneer was nicknamed the lone eagle,Charles Lindbergh,People & Places,Which Former Goodie Is Into Bird Watching ,Bill Oddie ,Science & Nature,What is it that turns blue litmus paper red,Acid -Food & Drink,If A Sparkling Wine Is Labelled As 'Brut' How Will It Taste ,Dry ,General,What is the national airline of the Netherlands called,Klm,General,In photography what does S.L.R stand for?,Single Lens Reflex -General,What is the study of the earth's physical divisions,Geography,Science & Nature,This organic gem is a deep red secretion from a marine animal.,Coral,Science & Nature,In Computing Quite Simply What Does The Abbreviation USB Stand for ,Universal Serial Bus  -Geography,What European country administers the island of Martinique,France,Music,"What Connects Catatonia, Super Furry Animals, Budgie",Wales, Geography,What is the capital of Lithuania ?,Vilnius -Sports & Leisure,In Which County Is The Epsom Derby Raced? ,Surrey ,Food & Drink,"Which cocktail consists of Tia Maria, vodka and coke? ",A Black Russian ,Food & Drink,"Vodka, orange juice and Galliano make up which type of cocktail ",Harvey Wallbanger  -General,What Historical Even Occurred on the 22 January 1901 ?,Death Of Queen Victoria,Geography,Which city has the largest rodeo in the world,Calgary,Geography,Can you give me the two former names of the modern Turkish capital of Istanbul? ,"Constantinople, Byzantium " -General,"Carpet, coral and pilot are all types of which animal",Snakes,General,Anthony Daniels played who in a series of films,C-P3O,General,The Windhover Is The Country Name For Which Bird?,Kestrel -General,What county has its map on its flag,Cyprus,General,On TV what team worked out of Iolani Palace,Hawaii 5 0,Science & Nature, A 42_foot sperm whale has about 7 tons of __________ in it.,Oil -General,George C Scott - what does the C stand for,Campbell,General,In WW2 what was the British equivalent of the German E-Boat,MTB or Motor Torpedo Boat,General,Who wrote Finnegan's Wake in 1939,James joyce -Sports & Leisure,The US Tennis Open takes place at which venue? ,Flushing Meadows ,General,Which spice comes in hands,Ginger,General,Who wrote mirc,Khaled mardam-bey -General,The same Louis did not consummate his marriage 7 years - why,Overgrown Foreskin,General,"What was the name of the comic strip that ""Henry Rush"" (Too Close for Comfort)wrote?",Cosmic Cow,General,What is the Greek word for Egyptian,Coptic -General,The Parthenon in Athens is built in which architectural style,Doric,General,A person putting a lot of effort into a task is said to be using,Elbow grease,Science & Nature,Which Has A Black Bill The Crow Or The Rook ,Crew  -General,In George Orwell's Animal Farm what type of animal was Muriel,The Goat,Science & Nature, The jackrabbit is not a rabbit; it is a __________,Hare,Technology & Video Games,What color is the 1-up mushroom in Super Mario Bros.? ,Green -Geography,___________ has 150 recognized ecosystems.,Hawaii,Entertainment,"When not a Birdman, what does Ray Randall do for a living",Police officer,General,What do English speakers call the region that the Spanish know as 'el Pais Vasco',The basque country -General,System of winds producing fine weather,Anticyclone,General,What is the average lifespan of a major league baseball,Five to seven, History & Holidays,This Indian group ruled in early Peru.,Inca -Science & Nature,Why Is Louise Brown Famous ,First Test Tube Baby ,General,Siderophobia is the fear of,Stars,General,Hemp plant part of which can be used as a narcotic,Cannabis -General,What is a group of this animal called: Finches,Charm,General,To an Australian what is an esky,Portable Beer Cooler,General,Phalacrophobia is the fear of,Becoming bald -General,"What story features Flopsy,Mopsy and Cottontail",Tales of peter rabbit,General,Name the ship in which Sir Ernest Shackleton sailed to the Antarctic,Endurance,General,The most shoplifted book in the world is ________,The bible -General,What did dr bart hughes create,Trepanning,General,Who was 45 when he became the oldest heavyweight boxing champion,George,Sports & Leisure,Who Was The First Black Footballer To Captain England ,Paul Ince  - History & Holidays,Who invented the wristwatch?,Louis Cartier,General,What part of a camera clicks when a photograph is taken,Shutter,Music,In 1977 Manhattan Tranfer Had A Uk Hit With The Song “Chanson D’Amour” But What Does It Mean When Translated Into English,Love Song Or The Song Of Love -Entertainment,"Which of Beethoven's symphonies was the legendary ""Incomplete""?",The 9th Symphony,General,What is the Capital of: Poland,Warsaw,Food & Drink,Gazpacho is a type of what? ,Soup  -General,Which television programme did Roy Castle present for 22 years,Record breakers,Music,What Is A Small Flute With A Higher Pitch Called,A Piccolo,General,What was the name of the show that featured Larry Appleton and his zany foreign cousin?,Perfect Strangers -General,For how many radio stations was john cage's 'imaginary landscaper no 4' scored,12,Science & Nature,What is the meaning of the name of the constellation Aquila ?,Eagle,General,"Who wrote the thriller ""The Eagle has Landed""",Jack higgins -General,"What's the largest island in the arctic ocean, with 195,928 square miles",Baffin,Science & Nature,"Which Canal , The Brainchild Of Ferdinand De Lesseps, Was Opened , To Great Aclaim, In November 1869 ",The Suez Canal ,General,What is the 13.5 ton chime on london's tower clock,Big ben -Entertainment,"Bugs always finds himself at the wrong end of a gun, usually toted by either Elmer Fudd or who",Yosemite sam,General,Whose 1986 hit was 'Walk Like an Egyptian',The bangles,General,"What, during World War Two, was the German or Nazi equivalent to the Japanese Kempei Tai",Gestapo -General,"In 1981, who won song of the year with 'sailing'",Christopher cross,Music,According To Cyni Lauper What Do Girls Just Want To Do,Have Fun,General,What chemical symbol is used for the element actinium,Ac -Entertainment,"Name the band - songs include ""Let's Stick Together, The Price of Love""?",Bryan Ferry,General,"Biology: In Linnaean classifcation, the group which comes directly under Kingdom.",Phylum,General,What Frenchman was the king of chefs and chef of Kings,August Escoffier -General,What Sanskrit word means great king,Maharaja,General,There is approximately one what for each person in the world,Chicken,General,Who rode a horse called Magnolia,George Washington -General,What sort of bone is broken as wishes are made,A wishbone,General,In which country is the U.S. naval base of Guantanamo,Cuba,Art & Literature,Which Famous Book Contains The Line 'In A Hole In The Ground There Lived A' ,The Hobbit  -General,Which is the largest province of canada,Quebec,General,"What are the Anatolian, Atacama, Nafud and Zirreh",Deserts,General,Yellow translucent fossil resin,Amber -General,Skeleton is derived from Greek - what is its literal translation,Dried Up,Science & Nature,What Disorder Is Characterised By Appetite And Weight Loss ,Anorexia Nervosa ,General,Italians often eat a whole what to cover garlicky breath,Coffee Bean -General,What is the name of the berlin cabaret where lola lola sang,Blue angel,Music,"Which Band Had Hits With ""Heaven"" & ""Cherry Pie""",Warrant,Food & Drink,What is a sorbet? ,A Water Ice  -General,Which teacher did Maggie Smith play in the 1969 film of Muriel Spark's novel,Miss jean brodie,General,What was the name of tim holt's horse,Duke,General,Which Dickens novel is considered an autobiography,David Copperfield -General,Collective nouns a Blessing of what animal group,Unicorn,General,"Which sign placed before a note in music, lowers it by a semitone?",Flat,Entertainment,Secret Identities: Jonn Jonzz,Martian manhunter -Science & Nature,What's known as the bishop's stone ,Amethyst ,Art & Literature,"Stephen King's: ""Pet ________"".",Semetary,General,In ancient Japan public contests were held to find what,Best Farter loud and long -Music,Were Cabaret Voltaire Named After A French Fashion Magazine Or An Art Movement,Art Movement,General,What was discovered in the northern tip of Vancover Island in 1835,Coal,General,Plant what city did general sherman burn in 1864,Atlanta -General,The telephone country code 852 would connect you with _____,Hong kong,Music,"In Which City Would You Find Jazz Clubs Called ""Birdland, The Blue Note, & The Village Vanguard""",New York,General,Indianapolis is the capital of ______,Indiana -Music,In Which City were The Group Pulp Formed,Sheffield,Music,"Who had a massive hit in 1993 with ""I'm Easy/ Be Aggressive""?",Faith No More,General,Who is the biggest landowner in New York city,Catholic Church -General,Massachusetts in April the law states that dogs will have what,Rear Legs Tied,General,In the twelve labours of Hercules what did he do third,Capture Arcadian Stag,General,French cup of coffee flavored with apple brandy,Cafe calvados -General,At what atoll in the South Pacific did the U.S. do bomb nuclear bomb test in 1946,Bikini atoll bikini,General,"In the film 'hercules', whose voice is danny devito",Phil,General,John Lennon was shot outside of what New York building,The dakota -General,Palindromic word means raise to the ground or a mine passage,Level,Geography,In what country is the Mekong River Delta,Vietnam,General,Hercules performed twelve labours what was number seven,Capture of the Cretan Bull -General,What was the first name of the Israeli man who invented a rapid fire weapon in 1953,Uzi,General,Whitcome Judson in 1891 invented what for fastening shoes,Zip Fastener,General,Signal or time after which people must remain indoors,Curfew -General,Hamida Djandoubi in 1977 was the last one - what,Person Guillotined in France,General,Selma Lagerlof of Sweden in 1909 first woman to get what,Nobel Prize for Literature, History & Holidays,In which country was paper money first used?,China -General,What was Auguste Bartholdis most famous work 1886,Statue of Liberty,Science & Nature,What Are A Whales Breathing Organs Called ,Lungs ,General,"What First Did American ""Gertrude Ederle's"" Achieve In 1926",1st Woman To Swim Channel -General,Which Hugely Popular Tv Show Was The Creation Of Peter Fluck And Roger Law,Spitting Image,General,What Are Goldie & Isis,Reserve Boats For The Boat Race,General,Where is gorky park,Moscow -Music,"What Song Features The Lyric ""Then Your Children Will Be Next""",If You Tolerate This,General,What monarch observed a jubilee in 1977,Queen elizabeth,General,Picture representing word or syllable,Heiroglyph -Music,For Which Famous Rock N Roller Did Scotty Moore Play Guitar In The 1950's,Elvis Presley,General,For what tv sitcom did isabel sanford get her 1981 best actress emmy,Jeffersons, History & Holidays,"In 1972 which flash new motor was advertised with the slogan, `The car you always promised yourself'? ",Ford Capri  -General,What is the all-time best selling paperback book,Baby and child care baby,General,What is the most common sexual complaint of females over 50,Vaginal Dryness,General,"What Beatles album spent the longest time atop the charts, at 15 weeks?",Sgt. pepper's lonely hearts club band -Science & Nature,What lies between mars and jupiter?,The asteroid belt,General,What is a female swan called,Pen,Music,Who Used The Pseudonym Lieutenant Lush For Early Stage Appearances As A Member Of Bow Wow Wow,Boy George -General,Orthography is the study of what,Mountains,Science & Nature,A point to which rays of light converge is called a(n) ________.,Focus, Geography,What is the second largest of the United States?,Texas -General,Who played Louis Armstrong in 1954 film The Glen Miller Story,He played himself,General,"Who ""Loved not to wisely but too well"" Shakespeare play",Othello,General,What word for taking tissue for microscopic examination was coined by French dermatologists in 1879,Biopsy a biopsy -General,Meteorology is the study of ______,Weather,General,Whats the term for a resident of Liverpool,Liverpudlian,General,Brother Benedict translated name of what port and food product,Fray Bentos -Mathematics,Solve this: 10*3+2?,32, Geography,Frankfort is the capital of which US state?,Kentucky,General,An addition to a will is called a,Codicil -General,Religious initiation of Jewish boy at 13,Bar mitzvah,Music,What musical does the song “There's No Business Like Show Business” Come From?,Annie Get Your Gun,General,Bon Jovi and Ritchie Sambora both list this band as their influence?,The Beatles -General,In which modern country is the biblical land of Sheba,Yemen,General,What does the symbol 'am' represent,Americium,General,The Aztecs reckoned it was the food of the gods what was,Chocolate -General,The black and white episode of Chicago Hope is a tribute to who,Alfred Hitchcock,General,Which Country Inflicted “Sven Goran Eriksons” First Defeat As England Manager?,Holland,General,Anti tank rocket launcher,Bazooka -General,Flower of the blessed night is the local name of which plant,Poinsettia,General,"Which ""fishy"" character, in an opera by Benjamin Britten, is elected May King, spending his prize money on a debauch",Albert herring,General,"According to Hindu myth, what river once flowed through heaven",The ganges ganges -General,"What did Iroquois Indians mix with willow bark and call ""kinickinick""",Tobacco,General,In Main what is it illegal to step out of,Flying Plane,General,This award is the mystery writers equivalent of an Oscar,Edgar -General,Who invented the magnifying glass,Friar roger bacon,General,"The Theme Tune To Which Classic TV Show Was Performed By ""The Dickes""",The Banana Splits,General,The Shadows first record went straight to no 1 - what was it,Apache -General,Lilapsophobia is the fear of,Tornadoes and hurricanes,General,"Of which australian band, still rocking after 20 years, is angus young the brains",Ac/dc,General,If you had a Brassica Rapa what vegetable would you have,Turnip -General,A burning oil lamp is the symbol of which organisation,Gideons,General,How many children did queen anne have,Seventeen,Music,"What connects composers such as Haydn, Mozart, Beethoven and Schubert with the city of Vienna?",They All Died There -General,What is a draped female figure supporting an entablature,Caryatid,General,The name for the group of stars which form a hunter with a club & shield is ________,Orion,General,The gigantic Badshashi mosque is in which city in Pakistan,Lahore -General,What's the apparent gap between Saturn's A & B rings called,Cassini division,General,What kind of teeth did george washington have,Wooden,General,What is a '/',Virgule or solidus -General,Zeusophobia is the fear of ______,Gods,General,4000 people each year are injured by what household item,Tea Pots,Geography,In which continent would you find the yangtze river ,Asia  -General,Hitihita is a character in what book and film,Mutiny on the Bounty - Tahiti chief,General,What more attractive name do fishmongers use for dogfish,Rock salmon,General,Which is the second largest of the Japanese islands,Hokkaido -General,What sea is directly north of Poland,Baltic sea,Food & Drink,Who released the following 'edible' album 'Buddah and the chocolate box' ,Cat Stevens ,General,Which country (capital Kiev) lies just south of Belarus,Ukraine - Geography,Who owns the island of Bermuda?,Britain,General,A heavy winter fog containing ice crystals is a _____,Pogonip,General,What instrument do doctors usually have around their necks,Stethoscope -Science & Nature," The average adult male __________, the world's largest living bird, weighs up to 345 pounds.",Ostrich,General,What is the nickname for Idaho,Gem of the mountains,General,Which country consumes the most wine per capita 16.7 gal per,Luxemburg -Science & Nature,How many litres of air is in an adult lung?,Five,General,What were v1s and v2s supposed to do upon landing,Explode,General,What two natural resources are used to make steel,Coal & limestone limestone & coal -General,"In the television series, who owned the High Chapparal ranch",John cannon,General,How many Great Lakes do not border Michigan,One,Geography,What is the capital of Eritrea,Asmara -General,What is the capital of Lichtenstein,Vaduz,General,In New York where is it illegal to talk to a stranger,An Elevator,General,This is the only animal that can't jump.,Elephant - Geography,On which river is Rome located?,Tiber,Music,"Who Started His Chart Career In 1983With ""Black Heart"" Billed As Marc And The Mambas",Marc Almond,General,The Germans call them Stumphhose - what are they,Tights - History & Holidays,Whose Election slogan Was (You've Never Had It So Good)? ,"Harold Macmillian, 1959 ", History & Holidays,What is the name of the cake traditionally eaten in Italy at Christmas? ,Panettone ,Sports & Leisure,Which player was thrown out of Wimbledon in 1995 after he belted a ball in anger and it hit a Ball Girl? ,Tim Henman  - History & Holidays,Muhammad Ali Took On George Foreman In The 'Rumble In The Jungle'' In what Country Did This Take Place ,Zaire ,General,Supposed paranormal force moving objects at a distance,Telekinesis,General,Caractacus Potts drove what car,Chitty Chitty Bang Bang -Science & Nature,In Geology What Period followed The Cretaceous ,Jurassic ,General,Don Hoeffler coined what phrase in Electronic News in 1971,Silicon Valley,Science & Nature,What Do We Call A 3D Picture Created By Lasers ,Hologram  -Geography,In which state are Gettysburg and the Liberty Bell,Pennsylvania,General,What does an animal have if it is a bird,Feathers,General,"1B.In the Roman Catholic church, what is a devotion of prayers or services on nine consecutive days called",A novena -General,What sort of celestial body is Uranus,Planet,General,Who is the patron saint of lovers?,Saint Valentine,General,What organization's launch was FDR preparing to attend when he died,The united nations united nations -Geography,What is the capital of Andorra,Andorra la vella,General,After water what is the most consumed beverage,Tea,Music,"Who Played Anna In The 1956 Film ""The King And I""",Deborah Kerr -Science & Nature,Of What Illness Is Petit Mal A Form ,Epilepsy ,Music,Everything Changes And Nobody Else Were Hit Albums For Which 90's Band,Take That,General,What uniform number was worn by Larry Bird & Kareem Abdul Jabbar,33 -General,The average Britain consumes 4907 what in their lifetime,Loaves of bread,Music,"Who Released An Album Of Woody Guthrie Lyrics Entitled ""Mermaid Avenue""",Billy Bragg & Wilco, History & Holidays,Where Was The Royalist HQ During The English Civil War? ,Oxford  -General,"Point He released the parody ""oh you ate one too"" in 1988 which included the song ""Cabo Wabo""",Van Halen,Science & Nature,Which Flightless Bird Lays The World's Largest Eggs? ,Ostrich ,General,Where is ancient troy,Turkey -Food & Drink,What is the main vegetable ingredient of moussaka? ,Aubergines ,General,Who won the first Grand Prix World Motor-racing Championship in 1950,Guiseppe farina,Music,What Was The No.1 hit For Early Eighties Band Tight Fit,The Lion Sleeps Tonight - Geography,What are the worlds four oceans - alphabetically?,"Arctic, Atlantic, Indian and Pacific",General,In SF California by law what is guaranteed to the masses,Sunshine,General,There are 42 what in a standard deck of cards (exclude jokers),Eyes -General,In which 1956 film did Elvis Presley make his debut,Love me Tender,General,Richard Roundtree played what detective in three 70s films,John Shaft,General,Where do the english monarchs live,Buckingham palace -General,What is the common name for Larus argentatus,The herring gull,Music,"Bosendorfer, Steinway, & Bechstein Are All Makes Of Which Instrument",Piano,Music,"Which Band Sang ""Love My Way"" On The ""Valley Girl"" Soundtrack",Psychadelic Furs -General,"Football Team, minnesota _______",Vikings,Music,"Which Soul Artist Died At The Very End Of 1999, Having Been Confined To A Wheelchair Since 1990 After A Stage Lighting Rig Fell On Him",Curtis Mayfield,General,What is the name of the group of Muslim scholars who have fought for control of Afghanistan in recent years,Taliban -Food & Drink,From which plant is tequila derived?,Cactus,General,What word is used to describe a Muslim who has completed a pilgrimage to Mecca,Hadji,General,How many volumes were in abdul kassem ismael's library,117 000 -General,This marsupial native to Australia feeds on eucalyptus leaves.,Koala,General,In Morse code one dash four dots what number,Six,General,What was the surname of the family in The Grapes of Wrath,Joad -General,In what year did the Royal Navy's daily rum ration end?,1970,Sports & Leisure,"In Indoor Athletic Races, Over What Distance Is The Shortest Sprint Race Run ",60 m ,General,"Who said the line ""Dr Livingstone, I presume!"" ?",Henry Morton Stanley -General,Any solo performance in a ballet.,Variation, History & Holidays,What did Erik Rotheim invent in 1926?,Aerosol,General,In what city was Handel's Messiah first performed,Dublin -General,"Excessive discharge of blood from blood vessels, caused by pathological condition of the vessels or by traumatic rupture of one or more vessels",Haemmorage,General,The film 'the wizard of ______',Oz,Music,"Which Beatles Song Did Frank Sinatra Describe As ""The Greatest Love Song Of The past 50 Years""",Something -Science & Nature,What Hormone Controls The Supply Of Sugar From The Blood To The Muscles ,Insulin , History & Holidays,Who created an 86-letter syllabary for the cherokee language ,Sequoyah ,Music,Name The Guitar Like Instrument With A Circular Belly Of Streched Parchment,The Banjo -General,Which bottled water originates in Dovedale,Ashbourne,General,Tessenjutsu is a martial art based on the use of what item,A Fan,General,There are 625 sweat glands in one square inch of human ______,Skin -General,Processed Galena produces which metal,Lead,General,Janette MacDonald was nicknamed the Iron what,Butterfly,General,In which 1992 film was Kevin Costner hired to look after Whitney Houston,The bodyguard -Toys & Games,What are a chessboard's horizontal rows called?,Ranks,General,What is considered history's greatest military evacuation,Dunkirk,General,Bacardi and Carioca rums come from what country,Costa Rico - History & Holidays,Elizabeth I was the daughter of which king?,Henry VIII,General,The rabbit's foot came to be considered a_____,Good luck charm,Sports & Leisure,Who Won The 2007 US Super Bowl? ,Indianapolis Colts  -General,"In computing, what is 'bit' an abbreviation for",Binary digit,General,Capital cities: Oman,Muscat,General,What shape is canestrelli pasta,Little Baskets -General,Which Italian hard cheese is especially good for grating,Parmesan,Science & Nature, Most cows give more milk when they __________,Listen to music,Music,"Who Saw ""Life Thru A Lens"" On His 1998 Album",Robbie Williams - History & Holidays,By what name was Baron Manfred von Richthofen better known? ,The Red Baron ,General,John McLaughlin made sold McLaughlin's Belfast style – what,Canada Dry Ginger,Sports & Leisure,Where were the 1980 Olympics held ?,"Moscow, U.S.S.R." -General,In 1986 Graceland was the Grammy album of the year – who’s,Paul Simon,General,What is a group of doves,Dule,Sports & Leisure,In which year will London host the Olympic Games ,2012  -Art & Literature,Whose First Collection Of Short Stories Entitled In Our Time Was Published In 1925 ,Ernest Hemmingway ,General,What colour on black produces the most visible combination,Yellow,General,"Who wrote the first song ""Come On"" Rolling Stones recorded 63",Chuck Berry -Science & Nature,What is the study of prehistoric plants and animals?,Paleontology,General,Paul Morel was a character in which classic novel,Sons and Lovers,General,Which astronomer discovered the planet Uranus in 1781,William herschel - Language,What does the Irish 'dubh linn' mean?,Black pool,Food & Drink,What flavour is the drink Kahlua? ,Coffee ,General,Hank Ballard and the Midnights first released what in 1960,The Twist -Science & Nature,"Where Will You Find The Characters Blinky, Pinky, Inky & Clyde ",Pacman (The Ghosts) ,Sports & Leisure,Who Won The 800 Metres At The Moscow Olympics (1980) ,Steve Ovett ,General,Ixchel is the mayan patroness of ______,Pregnant women -People & Places,By what name is Reginald Dwight better known as?,Elton John,Music,"How Is The World Of Music Is ""Anna Mae Bullock"" Known To The World",Tina Turner,Music,What Band Didn't Want To Miss A Thing In 1998?,Aerosmith - History & Holidays,"According to the Christmas song what was the only present asked for? 2 Front Teeth, 5 Bath Cubes, 4 Bars Of Soap, 3 Pairs Of socks ",2 Front Teeth ,General,Which word describes a male singer singing in a high register,Falsetto,Music,"Ollies Gang Made Me Go To A Flower Show In London, Who Am I",Elvis Costello -General,Sex shop survey what's most popular flavour eatable knickers,Cherry,General,As what was the Taj Mahal built,Tomb,General,"What Nationality Was Saint Valentine, The Patron Saint of Lovers ",Italian  -General,"What kind of animal was Cleo in the famous story of ""Pinocchio""",A fish,General,"In Which Sport Did The Term ""Hat Trick"" Originate",Cricket,General,Who owns: folger coffee,Procter and gamble -General,Which Asian Country Banned Lewis Carrol's Book Alice In Wonderland,China,General,What is the frog's name in 'the muppet show',Kermit d frog,General,Who was the first chief justice of the us supreme court,John jay -General,Which pie consists of a long pork pie stuffed with a boiled egg?,Gala Pie,General,In 1965 Gambia achieved independence from which country,United Kingdom,General,"Who was the actress that made waves in 1984's ""Splash""?",Darryl Hannah -General,In Star Trek what is Chekov's first name,Pavel,General,Captain Jean Luc-Picard keep a fish called what,Livingston,Music,Brian Jones Came From Which Gloustershire Town,Cheltenham -Music,"""Le Freak"" and ""Good Times"" were hits for which New York group?",Chic,General,By what other name is the mountain K2 called,Mount godwin austen,General,What are a tiger's paw prints,Pug marks -General,Greyhound racing in UK what colour does the No one dog wear,Red,Music,Who Shot Up The Charts With Eloise In 1986,The Damned,General,"Which football team has been nicknamed the ""Orange Crush""",Denver broncos -Music,"Who Recorded The Album ""Handsworth Revolution""",Steel Pulse,Technology & Video Games,What was the first lighthouse ?,Pharos of Alexandria,General,Which book was first published in Edinburgh in 1768 and subsequently moved its home to Chicago?,Encyclopedia Britannica -General,A digitabulist collects what,Thimbles,General,Brigham Young University offers what unusual Major,Ballroom Dancing,General,Of gibraltar In this team sport each player gets a chance to play every position,Volleyball - History & Holidays,"""Which of these was not one of the twelve apostles ? """"Jason,Bartholomew, Phillip, Thaddaeus"""" "" ",Jason ,General,In the siege of Mafeking who led the defenders,Robert Baden Powell, History & Holidays,The Mask In The Film Scream Became A Popular Costume What Famous Painting By Edward Munich Was It Based On,The Scream  -General,Longacre square is now better known as what,Times Square - NY, Geography,What island has Hamilton as its capital?,Bermuda,Geography,To Which Country do The Balearic Islands Belong? ,Spain  -General,Whose associate was J. Wellington Wimpy,Popeye,General,During their lifetime the average person eats four what,Spiders in their sleep,General,In what city is the worlds largest carpet manufacturer,Kashmir -General,The term Centennial represents how many years ?,100, History & Holidays,In What Us City Was President John F Kennedy Assasinated In 1963 ,Dallas / Texas ,General,What was the original meaning of the word harlot,Tramp -Geography,Where Is Sugar Loaf Mountain ,Rio De Janeiro ,General,Every human first spent about half an hour as a single what,Cell,Entertainment,"Which comic strip was banned from ""Stars and Stripes""",Beetle bailey -Sports & Leisure,"Which is the heaviest, An Ice Hockey Puck or a Baseball? ",An Ice Hockey Puck , History & Holidays,How Long Did The 100 Years War Last ,116 Years ,Music,Which Single Was Recorded EMI's Studios In Paris In 1964,Can't Buy Me Love -General,Which country eats the most turkey per capita?,Israel,General,Which famous ship had a total crew numbering 430,Star ship Enterprise – Captain Kirks,General,Panophobia is the fear of,Everything -Music,"Who Declared ""I Second That Emotion"" In 1967",Smokey Robinson & The Miracles,Sports & Leisure,"What sport do the following terms belong to - ""Hotdog & Bottom Trun""?",Surfing,General,Calico cloth was invented in which country,India -General,What product sold 25 bottles in its first year for $50 cost $75,Coca Cola a 50% loss,General,Who was the French revolution leader who was later guillotined by Robespierre,Danton,General,The world's longest natural gas pipeline is in what country,Canada -General,Who was the leader of the good Transformers?,Optimus Prime,Music,"Who thought up the band name ""The Beatles""?",Stu Sutcliffe,General,Bubba is Yiddish for what,Grandma -General,Who was known as 'the peanut president',Jimmy carter,Music,Whose Debut Single Was A Cover Of A Smokey Robinson Tune And Former No.1 For The Temptations,Otis Redding / My Girl,Music,"Who Won The 1995 Mercury Music Prize For The Album ""Dummy""",Portishead -General,Japanophobia is a fear of ______,Anything japanese,Science & Nature,What is the chemical symbol for copper,Cu,General,What is Pennsylvania's official drink,Milk -General,Which is the largest african bird of prey,Lammergeyer,General,A poem of fourteen lines is called a..,Sonnet,General,What is 'perestroika' in english,Restructuring -General,What has approximately 1/4 pound of salt in every gallon,Seawater,Science & Nature,What is a chuckwalla ,A lizard ,Geography,What is the capital of Russia,Moscow -Science & Nature,What's the curved line between any two points on a circle ,An arc ,General,Oikophobia is the fear of what,Houses,General,51 what were destroyed by the Great fire of London,Churches -General,What is the last word of the old testament,Curse,General,A race is won by four laps of the track - which sport,Speedway,General,What paris restaurant is at 3 rue royal,Maxim's -Food & Drink,Wher Might You Be Offered Ouzo ,Greece ,General,Eric Morley (Creator Of Miss World) Was Also Responsible For Which Hugely Successful TV Show,Come Dancing,General,Collective nouns - A Desert of what,Lapwings -General,How many children are in the 'american dream',2.5,General,"In Shakespeare, who killed Tybalt",Romeo,Sports & Leisure,Basketball: The Boston ___________.,Celtics -General,How many degrees in an interior angles of an equilateral triangle?,Sixty,General,You ordered unagi in a Japanese restaurant what would you get,Eel,General,What is the character of French wine described as 'mousseaux',Sparkling -Music,Whose 1979 Debut Album Was Called Inflammable Material,Stiff Little Fingers,Sports & Leisure,"In ten-pin bowling, how many points does a perfect game consist of?",Three hundred,General,Who has been serving apple pie for more than 100 years,Yale college -General,"Who was the lead singer for creedence clearwater revival, and recently released 'blue moon swamp'",John fogerty,Food & Drink,Taramasalata Is Made From The Roe Of Which Fish ,Cod Or Grey Mullet ,General,Which group had a hit with Mr Tambourine Man,The Byrds -Science & Nature,What is the term that refers to the search for the existence of ghosts?,Eidology,Food & Drink,An American frying pan is called what? ,A skillet ,General,Who composed Clair de Lune,Debussy - Geography,What is the capital of Zimbabwe?,Harare,General,Which American state has the longest borders with Canada,Montana,General,Which city was the location for the 1994 Winter Olympics,"Lillehammer, norway" -General,The petawatt is the worlds largest what,Laser,General,French riot police were ordered to the Rivera to deal with what,Hundreds topless women (1971),Toys & Games,Whist is an early form of this card game.,Bridge -General,Which instrument did jazz musician Louis Bellson play,Drums,General,Again in Ecuador if you were served cuy what have you eaten,Guinea pig,General,What is Radio Shack's main brand name,Realistic -Entertainment,What is the name given to the type of West Indian music made famous by artists such as Bob Marley and Peter Tosh?,Reggae,General,What tropical disease does an insect of the Anophales genus transmit,Malaria,General,What country issued a banana shaped stamp,Tonga -Sports & Leisure,Who won the 1982 soccer world cup?,Italy,General,In Venezuela lovers use pink what,Envelopes - post half price,General,Which German city was the setting of Auf Wierdersehn Pet,Dusseldorf -General,"What does ""kindergarten"" mean in german",Children's garden,Science & Nature,What Is The Condenser Better Known As ,A Capacitor ,Entertainment,What instrument are you playing when you perform a rim shot?,Drums -General,Who composed 'Symphonia Antarctica',Vaughan williams,Music,"Which Crew Was ""I Just Died In Your Arms"" A Hit For",Cutting Crew,General,"Who was ""The father of magazine science fiction""",Hugo Gernsback -General,What animal has a forked penis,Possum,Science & Nature,What Was The First Animal To Be Domesticated? ,Dog ,Science & Nature,What Figure Has Four Sides All The Same Length But No Right Angles ,A Rhombus  -General,In which actual city is the television series Casualty filmed,Bristol,General,What was King George VI first name,Albert - but Victoria said no king Albert ,General,Kiss on My List' was which duo's second number one hit,Hall and Oates -General,In Minnesota what pleasurable activity is totally illegal,Oral Sex,General,What counrty would you visit to ski in the Dolomites,Italy,General,Capital cities: Australia,Canberra -General,"Bezique, piquet and pinochle are all types of what",Card games, History & Holidays,He taught Alexander the Great.,Aristotle,General,Famous Flames Music: What 1958 song was The Coaster's only #1 hit,Yakkety Yak -Sports & Leisure,In Which Type Of Card Game Might You Make A Meld ,Rummy Or Canasta ,General,On which mountain did noah's ark run aground,Mount ararat, Geography,What is the highest point in South America?,Aconcagua -Food & Drink,Name The Woman Who Was In The Vanguard Of Tv Crooks ,Fanny Craddock ,Food & Drink,From Which Nut Is Marzipan Derived ,Almonds , Geography,In which state is Tupelo?,Mississippi -General,The ledge between a parapet & a moat is a(n)..,Berm,General,What was Canada's first chartered bank,Bank of montreal,General,"On irc, what does a/s/l mean?",Age/sex/location -General,The ponderosa pine is the state tree of which US state,Montana,Entertainment,"Name the band - songs include ""Aqualung, Thick as a Brick""?",Jethro Tull,General,"Fescue, Foxtail, Ruppia and Quitch are types of what",Grass -General,What was the name of Norm's wife on Cheers?,Vera, History & Holidays,"Who Had An 80's Hit With The Song 'Funky Cold Medina,' ",Tone Loc ,General,"Foreman at 45, what did george foreman win",Heavyweight championship -Music,What Did Adolphe Sax Invent,Saxophone,General,In the grounds of which house is the largest private tomb/mausoleum in England,Castle howard,General,How many children did adam and eve parent together,Three -General,Which of Henry VIII's wives was his siter-in-law,Catherine of aragon,General,Cuffs and Buttons was a cocktail in the 19th century what it now,Southern Comfort,Science & Nature,What bird is associated with Lundy Island?,Puffin -General,How many players are there in a water polo team,Seven,General,Who wrote Never Love a Stranger,Harold Robbins,General,"Excluding man, what is the longest lived land mammal",Elephant -Music,What Was The Lennon-McCartney Composition To Feature Ringo On Lead Vocals,I Wanna Be Your Man,General,What london street is named after the forerunner of croquet,Pall mall,General,What does bovine mean,Cowlike -General,For which film did art carney win best actor oscar in 1974,Harry and tonto,General,Which famous bell ringer killed Archdeacon Frollo,Quasimodo,General,In which 1960s kids show is The Hood the supervillian,Thunderbirds -General,Kind of white heron,Egret,General,"Common name for a tropical tree (Mulberry), grown on the islands of the South Pacific Ocean",Breadfruit, Geography,What is the capital of Solomon Islands ?,Honiara -General,What short sighted cartoon character had a nephew - Waldo,Mr Magoo,General,Titanic music score sales are greatest which film did it beat,Chariots of Fire – Vangelis,Science & Nature,What Is The Chemical Notation For Hydrogen ,H  -General,What is the oldest known vegetable,Pea,General,Gustav Vasa was the King of which Scandinavian country,Sweden,Food & Drink,What is sauerkraut? ,A German dish of pickled cabbage -General,Luang prabang was the capital of ______,Laos,General,Justitia is the roman goddess of ______,Justice,Art & Literature,What were the two cities in 'A Tale Of Two Cities'?,London and Paris -Science & Nature,Who discovered Penicillin ?,Alexander Fleming, Geography,What is the capital of Malawi?,Lilongwe,Music,According To The Song “Nellie The Elephant”  To Which Country Does Her Travelling Circus Visit,India (Bombay) -Music,"What Group Consisted Of James Dean Bradfield, Nick Wire & Sean Moore",The Manic Street Preachers,General,Federal law prohibits the recycling of used - what in USA,Eyeglasses,General,In what American state do most people walk to work,Alaska -General,What is mosquitoes main food,Nectar from flowers,Science & Nature,"Which Small Breed Of Cattle Is Found Wile In The Tibetan Plateu , North Of The Himalayas ",Yak ,General,Osmophobia is the fear of,Smells odors -General,Where was the last major american indian resistance to white settlement,Wounded knee,Geography,What Is The More Famous Name Of The Dancing (St Benezet Bridge) ,Le Pont D'Avignon ,General,Dating Back As Far Back As 1469 Who / What Is Britains Oldest Publisher,Oxford University Press -General,What are the two stone lions in front of the new york public library,Patience and fortitude,General,"What george harrison lp featured the single ""give me love""",Living in the,General,What did the republicans call the platform they hyped in the 1994 congressional elections,Contract with america -Music,"Which Two Journalists Co Wrote The Book ""The Boy Looked At Johnny"" The Orbituary Of Rock & Roll",Tony Parsons & Julie Burchill,General,What late night news show became popular in the eighties after the Iranian Hostage takeover?,Nightline,General,"Which American, who died in 1910, wrote ""Water - taken in moderation - cannot harm anybody""",Mark twain - Geography,What is the highest mountain in Europe?,Mont Blanc, History & Holidays,What Was The Name Of Scotland's First King? ,Kenneth ,Technology & Video Games,"What's the first video game ever to contain an ""Easter Egg""? ",Adventure -General,"What kind of music imitates the fanfares, drum rolls, and commotion of a battle",Battaglia,General,What state is 'the golden state',California,General,License plates: what does do loop do for a living,Computer programmer -General,What is the fear of narrow things or narrow places known as,Stenophobia, History & Holidays,"""The carol 'Silent Night' was first played on what instrument? """"Harpsichord,Guitar,Pipe Organ, Piano"""""" ",Guitar ,General,What shoe company has the slogan no slogans,Reebok -General,Which song did aretha franklin sing in the original 'blues brothers' film,Think,General,"What did the Greeks call Roman goddess, minerva",Athena,General,There are 625 sweat glands in what area of human skin,One square inch - Geography,The longest river in Western Europe is _________?,Rhine,Toys & Games,What is the most popular sport in england?,Darts,Geography,What Is The Capital Of Australia ,Canberra  -General,At what age does a filly become a mare and a colt become a horse,Five years,General,In which building in Washington D.C. does the United States Congress meet,The capitol,Food & Drink,How Is Goose Known In France ,Foie  -General,"Which American president said, 'The only thing we have to fear is fear itself",F d roosevelt,General,Mary Ann Nichols was the first - the first what,Victim of Jack the Ripper,General,What famous classical composer continued to compose great music after becoming deaf,Beethoven -Geography,What Is The Airline Of Luxembourg ,Luxair ,General,Who was the first person to be buried in London's St. Paul's Cathedral,Sir christopher wren,General,Who wrote the series of Palisair novels,Anthony Trollop -General,In the US flamingos are only outnumbered by what similar thing,Plastic flamingos, History & Holidays,"After years of flirtation, the U.S. began direct military involvement in Vietnam in what year? ",1964 ,General,"In the USA, what is an estate agent known as",Realtor -General,Game in which participants simulate military combat using airguns to shoot paint capsules at each other,Paintball,Music,Name the band whose debut album is titled 'Suck on This'.,Primus, History & Holidays,In What Year Did Mikhail Gorbachev Become Leader Of The Soviet Union ,1985  -General,"Which TV Show Has The Theme Tune ""The Best Of Both Worlds""",Hanah Montana,Music,Which 2 Members Of The Group 10CC Left To Form A Duo,Kevin Godley & Lol Creme,General,What is the flower that stands for: despair,Cypress and marigold -General,Which U.S. singer is nicknamed the 'Queen of Soul',Aretha franklin,General,What job did Ernest Hemmingway do in WW1,Ambulance Driver,Science & Nature,Why Does The Woodpecker Peck Wood? ,To Get Insects Below The Bark  -Sports & Leisure,What Is A Petanque Better Known As ,Boules ,Music,In Which Australian Film Did Mick Jagger Appear In 1970,Ned Kelly,Geography,Kingston is the capital of which country,Jamaica -Science & Nature,What engery does an Eolic power station?,Wind Power, History & Holidays,The Battle of Rorke's Drift in 1879 featured in which war? ,Zulu War (or Zulu Wars). ,General,Japanese hi tec toilets auto wipe buts using what,Lasers -General,Nanook is a Canadian word for what animal,Polar Bear,General,At a Quaker wedding it is forbidden to do what,Take photographs,General,What links Bob Hope John Huston Ryon O'Neil Bo Diddley,Boxers early in life -General,Which country invented the bedsprings,Greeks,General,What is the only 15 letter word that can be spelled without repeating a letter,Uncopyrightable,General,"Complete the line: ""step on a crack""",Break your back - History & Holidays,Which police-dog was one of Stalin's favourites?,Berya,Food & Drink,What the V.O. in Seagrams V.O. stands for?,Very old,General,"Which number psalm begins, 'The Lord is my Shepherd I shall not want'",23rd -General,What is the name given to a cocktail of rum and lime juice,Daiquiri,General,"Which company, based at Westgate Brewery, Bury St. Edmonds, produces Abbot Ale",Greene king,General,Who owns: Rise shave lathers,Carter wallace -General,Which great Asian river flows into the sea near Karachi,The indus, History & Holidays,Who Brought Back Tobacco And Potatoes From The Americas? ,Sir Walter Raleigh , History & Holidays,Canadian Prime Minister: Pierre Elliott __________.,Trudeau -Food & Drink,The Popular Breakfast Meat Bacon Comes From Which Type Of Animal ,Pig ,Science & Nature,What type of rock is marble?,Metamorphic,Sports & Leisure,Who Did David Gower Overtake As England's Most Prolific Run Scorer In 1992? ,Geoffrey Boycott  -General,What is tattooed on glen campbell's arm,Dagger,General,"Triassic, jurassic, & cretaceous are three periods during which era",Mesozoic, History & Holidays,"In the period 978-1016 England was ruled by which ""Unready"" king ?",Ethelred -General,What does 'jejune' mean,Dry, History & Holidays,Who had a Message To Rudy? ,The Specials ,General,Obesophobia is the fear of,Gaining weight -General,What Lake is the biggest in europe?,Ladoga,Science & Nature,What phenomenon is caused by the gravitational attraction of the moon?,Tides,General,After who is the 'Ramses' brand condom named?,Pharaoh Ramses II -General,What loaded gaming devices were found in the ruins of Pompei,Dice,Science & Nature,What Is Sin? A+ Cos? Equal To? ,1 ,General,"A movement that developed in the 1920s, characterized by a regularized surface, a lightening of mass, and often large expanses of glass. ",International style -Science & Nature,What planet position is the Earth from the Sun?,3rd,General,In WW2 what sort of weapon was a kaiten,Japanese manned torpedo,General,There are more in Los Angeles than in all France - what,Judges -General,"Barnacle, Canada and Brent are all types of what",Geese,Science & Nature,What is the atomic number of Molybdenum?,Forty two,People & Places,Which Daughter Of A Lighthouse Keeper Rescued Survivors From A Shipwreck ,Grace Darling  -General,What should you ask for in the U.S. if you want jam,Jelly,Music,How Old Was Leann Rhymes When She Had Her First Number One Country Album,Thirteen,Music,Break Machine Had 3 Hits In The Mid Eighties Name Two Of Them,"Street Dance, Breakdance Party, Are You Ready" -Music,"Robin Zander Was A Member Of ""Cheap Trick"" Or ""Chicago""",Cheap Trick,General,Charles Lindbergh took only four of these to eat with him on his famous transatlantic flight.,Sandwiches,Entertainment,What was Rocky's nickname in the ring?,The Italian Stallion -General,Which Boxwer Carried The Olympic Flame Into The Stadium At The 1996 Atlanta Games,Evander Holyfield,General,The study of sound is _________.,Acoustics,Geography,What city is the Kremlin located,Moscow -General,Who failed his music class at school,Elvis Presley,General,Which Punjabi city is famous for its Golden Temple,Amr1tsar,General,"Which was the 1st winner of the academy award for best picture, and the only silent film to achieve that honor",Wings -General,What is the name of the knot which is used to make a fixed loop that should not slip or jam,Bowline, History & Holidays,Who Released The 70's Album Entitled Machine Gun Etiquette ,The Damned ,Science & Nature,"What is the name of the lowermost portion of the earth's atmosphere, where clouds occur? ",The Troposphere  -General,What is the Capital of: Singapore,Singapore,Music,Bobby Farrell was the only male member of which chart topping group?,Boney M,Science & Nature,How many teeth does a walrus have?,Eighteen -General,Which African country had its capital transferred to Dodoma,Tanzania, History & Holidays,Who was defeated at the Battle of Little Bighorn?,George A. Custer,Entertainment,Alvin & Simon had a brother called ____.,Theodore -People & Places,In Which Us State was John F Kennedy Shot ,Texas ,General,"In The World Of Music How Is ""Johnny Allen"" More Commonly Known",Jimi Hendrix,General,This racist organization was formed in tennessee in 1865,The ku klux klan -People & Places,Which Famous Woman Always Carried Pet Owl In Her Pocket ? ,Florence Nightingale ,Science & Nature," Canned herring were dubbed __________ because the canning process was first developed in Sardinia, Italy.",Sardines,General,Which Oliver Stone film won the Oscar for the best film in 1986,Platoon -General,Christobal Colon is better known as who,Christopher Columbus,Science & Nature,Where Might You Find A Hammer And Anvil In The Human Body ,The Ear ,General,In England what year was the Lynmouth flood disaster,1952 -General,Avron Hirsch Goldbogen changed his name to what,Mike Todd Married Liz Taylor,General,"Which best selling car with a production spanning some 30 years is to be replaced by the ""Focus""",Ford escort,General,In Shakespeare's Hamlet what herb is said to be for remembrance,Rosemary -General,"Where would you find a canton, halyard and field",On a Flag,General,Astana Is The Capital City Of Which Asian Country,Kazakhstan,General,Duffy: A Confederacy of Dunces,John kennedy toole -General,Where is the wabash river,Indiana,General,"Whose show claimed to have ""the world's most dangerous band""",David letterman,General,By law who require a cert. of health before entering Kentucky,Bees must have one -General,You could be executed for drinking what in ancient Turkey,Coffee,General,Which of Shakespeare's plays contains the most number of words,Hamlet,General,"Backfall, diapason, pallet, gamba, sticker all parts of what",Pipe Organ -General,Which sportswear company was founded in Germany by a certain Dr. Dassler,Adidas,General,Chaucer's Canterbury Tales were written in which century,Fourteenth,General,"Who Wrote The Autobiography ""Don't Laugh At Me""",Norman Wisdom -General,What was lestat's last name,De lioncourt,Music,Which Beatles Song Gave Billy Bragg His Only Uk No.1,She's Leaving Home,General,When did Baden Powell found the Boy Scout movement,1907 - Geography,What US Citys name means 'straits' or 'channel'?,Detroit,General,What is a line of columns supporting a horizontal or arched superstructure,Colonnade,Food & Drink,Which Chain Of Restaurants Have The Nickname 'The Golden Arches'' ,Mc Donalds  -General,"What mega group had the hit ""black dog""",Led zeppelin,General,What season is it in Australia when Santa Claus drops in,Summer,Art & Literature,Frodo is chosen to deliver The Ring into the heart of what,Mount doom -General,When was flavored soda pop invented,1807,General,"Eggplant is not a vegetable, but is actually a member of what plant family",Thistle,General,Staurophobia is the fear of,Crosses the crucifix -General,In what country was Mother Theresa born,Albania,General,To whom does the island of St Helena belong,United kingdom,General,The Kina is the unit of currency in which country?,Papua New Guinea -Sports & Leisure,The Duckworth Lewis Method Is Used To Keep The Score In Which Sport ,Cricket ,Music,Which Country Does Enya Come From,Ireland,Science & Nature,What Is Measured In Decibels ,Sound Intensity  -Music,"Which Family Group Had Hits On The Stax Label With ""Respect Yourself"" & I'll Take You There",The Staple Brothers, Geography,What is the basic unit of currency for Seychelles ?,Rupee,General,For her performance in which film did Jane Wyman win the 1948 Best Actress Oscar,Johnny belinda -General,What is the flower that stands for: argument,Fig,General,In 1951 these were invented what were,Disposable diapers – nappies,General,In Arizona you must register with state before becoming what,Illegal Drug Dealer -General,"Who Became The Youngest Ever Member Of The ""GLC"" In 1969",Jeffrey Archer,General,Are yoU.S.tanding or sitting when you put your coccyx on the floor,Sitting,Science & Nature, The largest species of seahorse measures __________,8 inches -General,What is the national symbol for india,Lotus flower,General,Which film finds Jack Nicholson in the Los Angeles oriental district,Chinatown,General,Who or what lives in a formicarium,Ants -General,A couple dogging are having sex with others watching where,In their car, History & Holidays,In What Year Did India Gain Independence Marking The Start Of Decolonisation ,1947 ,General,Victor Barna was world champion five times at what sport,Table Tennis -Music,Who Were Inducted Into The Rock & Roll Hall Of Fame In 1993 Two Years After Their Biopic,The Doors,General,"Which london station handles trains directly to the continent, through the channel tunnel",Waterloo,General,Hippopotomonstrosesquippedaliophobia is the fear of what,Big words -General,What does bbs mean,Be back soon,Science & Nature,This is the only mammal with four knees.,Elephant,General,Where would one have borscht,Poland or russia -Geography,What city is on Lake Erie at the mouth of the Cuyahoga River,Cleveland,Sports & Leisure,"In Which Sport Did Britains Nigel Short, Compete For The World Championship in 1991 ",Chess , History & Holidays,What particular gimmick was used in the 1958 film House of Wax ,It was made in 3D  -Music,"Which British Singer Produced The First Album By The Specials & ""Red Roses For Me""",Elvis Costello, History & Holidays,What was the fight between Argentina and Great Britan over? ,Falkland Islands ,General,What is the unit of Imperial measure equal to 1/10 of a nautical mile,Cable -General,Who is the Barber of Seville,Figaro,General,"Nunaat Island, southern Indonesia, one of the Lesser Sunda Islands, in the Indian Ocean",Bali,General,Which island's roads are paved with coral,Guam -General,Which countries leader was an extra in Hollywood,Fidel Castro,Geography,Which Country Has The Longest Coastline ,Canada ,Science & Nature,What Is Toxicology The Study Of? ,Poisons  -General,What is the first capital of laos,Luang prabang,General,"The blesbok, a south african antelope, is almost the same color as",Grapefruit, History & Holidays,What's 'Stir-Up Sunday'? ,The Day To Make Xmas Pudding  -General,A speed stick measure the speed of what,Cricket balls,General,Who received 800000 fan letters in 1933,Mickey Mouse,General,What is a group of this animal called: Crow,Murder -Science & Nature,What is the study of the composition of substances and the changes they undergo?,Chemistry,Geography,____________________ has 570 miles of shoreline.,New york city,General,What is the Capital of: Bulgaria,Sofia -People & Places,By what name is Francis Gumm better known as?,Judy Garland,General,What did the Israelites eat in the desert after the exodus,Manna,General,"In which organ is a clear watery solution known as the ""aqueous humor"" found",Eye -General,Which English book was written without using the letter 'E' once ?,A Void,Music,What Is The Singers Bjork Nationality,Icelandic,General,What city's magazine broke the Iran contra scandal in a 1986 article,Beirut -General,Which film star has his statue in Leicester Square,Charlie Chaplin,General,By Law in Tulsa you need a licensed engineer to open what,Soda Bottle,General,Which annual world championship is held at Coxheath Kent,Custard Pie throwing -General,What part of the body has a thin drum like membrane stretched across a tube,Ear, Geography,What is the largest ocean?,Pacific Ocean,General,Where would you find a crossjack and a spanker,Sailing ship there sails -General,The Passion Play is performed every 10 years where,Oberammergau,General,What famous building is located on the banks of the river Jumna?,Taj Mahal,General,What kind of car was the General Lee in Dukes of Hazard,Dodge Charger -Food & Drink,What Is The Swedish Name For A Hot Or Cold Food Served As A Buffet? ,Smorgasbord ,Sports & Leisure,Which Country Is Set To Host The 2010 World Cup Finals ,South Africa ,General,"Which classic French dish contains chicken, bacon and red wine",Coq au vin -Music,Apollo 9 Was A Hit In 1984 For Whom,Adam Ant,Music,"""Planet Earth"" Was Duran Duran's First Hit, But What Was Their First Top Ten Entry",Girls On Film,Geography,What direction does the nile river flow ,North  -Food & Drink,What Are Globe And Jerusalam Both Examples Of ,Artichoke ,General,Carly Simon sang the theme song to which James Bond film,The spy who loved me,Geography,What is the capital of Vietnam,Hanoi -General,Which Game Was Was Named After The Latin Name For A Hawk,Subbuteo,Science & Nature,What is the meaning of the name of the constellation Canes Venatici ?,Greyhounds,General,What was the home of Douglas Fairbanks and Mary Pickford called,Pickfair -Sports & Leisure,At Which Sporting Venue Would You Find Melling Road? ,Aintree Race Course ,General,What is a one humped camel called,Dromedary,Science & Nature, The smallest frog is the Gold frog (Psyllophryne Didactyla) of __________. It grows to only 9.8 mm (3/8 inch).,Brazil -General,Which sauce or paste is found in the Japanese dish Sashimi?,Horseradish,General,"What did Lyndon Johnson declare war against on January 8, 1964",Poverty,General,Cockney Rhyming Slang: trouble and strife,Wife -Science & Nature,What did Lewis E. Waterman invent in 1884,Fountain pen, History & Holidays,What did pre-Christian pagans call Xmas time ,Yule ,General,"In ballet, the third and final part of the classical pas de deux.",Coda -Music,What Is The Singer Prince's Real First Name (He He He),Prince,Geography,What Is The Oldest Inhabited City In The World ,"Damascus, Syria ",Science & Nature, The rear portion of the head of a horse is called the __________,Poll -Science & Nature,What Is The Largest Cell ,The Ovum , Geography,What is the capital of Dominican Republic ?,Santo Domingo,General,Where was napoleon born,Corsica -Geography,What Is The Deepest Lake In England ,Wastwater , History & Holidays,"Which Group Had 3 Consecutive Christmas Number One's In 1996,1997,1998 ",The Spice Girls , History & Holidays,Who played the policeman in The Blue Lamp? ,Jack Warner  -General,"On Three's Company,what city did the trio live in?",Santa Monica, History & Holidays,"Which Christmas Carol, tells the tale of a 10th Century Duke of Bohemia ",Good King Wenceslas ,General,For what song did country & western singer marty robbins win a grammy?,El paso -General,What is the stage name of actress Demetria Guynes,Demi Moore, Geography,In which continent would you find the Congo river ?,Africa,General,What has yale college been serving for more than 100 years,Apple pie -General,What was Heindrich Himler's job before lead Gestapo in WW2,Chicken Farmer,General,What is the fifth most popular meal ordered in sit down restaurants in the U.S.,Baked ham,General,In 1990 there were 99 public executions Suadi Arabia - Drugs How,Beheading -General,Which band did david bowie and the 'sons of soupy sales' form,Tin machine, History & Holidays,James Dean died during the filming of which film in 1955? ,Giant ,General,"In alphabet radio code, what word is used for 'x'",X ray -Food & Drink,What is it called when fat and juices from the roasting tin are spooned over meat while it is cooking? ,Basting ,Music,"Who Had A Hit With ""She Drives Me Crazy""",Fine Young Cannibals,General,What swimming stroke is named after an insect,Butterfly -Music,Bryan Ferry Was Originally the Lead Singer Of Which Band,Roxy Music,General,In Which Country Will You Find The Highest Concentration Of Japanese People Outside Japan,Brazil,Geography,What city is served by tempelhof airport ,West berlin  - History & Holidays,What animal is Snowball in George Orwell's book Animal Farm? ,A pig ,General,What were the first tennis balls stuffed with,Human Hair,Science & Nature,What name is given to animals which only eat meat ?,Carnivore -General,Kwame Nkrumah was the first president of which country,Ghana,General,Name the word an anti mine device towed from bows of a ship,Paravane,General,What gift is given on behalf Saudi Arabia King to Mecca pilgrims,Small Bottle Extra Virgin Olive Oil -General,What is the hardest bone in the human body,Jawbone,General,What is banned by law in Japanese restaurants,Tipping,General,Who played the pawnbroker in the film of that name,Rod Stiger -Science & Nature, Gorillas do not know how to __________,Swim,General,What is the official language of Mozambique,Portuguese, History & Holidays,Which Saint's Day is celebrated on Boxing Day ,St Stephen  - Geography,What is the basic unit of currency for Poland ?,Zloty,General,Which country owns the Hen and Chicken islands,North island New Zealand,General,What is used as an antidote for poison arrows and as a thickener in cooking,Arrowroot - History & Holidays,Who was the President of Egypt in 1956 who nationalized the Suez Canal causing British and French troops to invade the region ,Gamal Abdul Nasser ,General,Brisbane is the state capital of which SE Australian state,Queensland,General,What is Venezuela named after,Venice -General,On 17 th Nov 1970 German “Stephanie Rahn” Became The First Woman Ever To Do What???,Topless Page 3 Model,Geography,In Which European Capitaal Is The Famous Mankin Pis? ,Brussels ,Music,How Were Showaddywaddy Discovered,On The TV Show New Faces -General,What is the fear of ghosts known as,Phasmophobia,General,Zorro was the secret identity of what wealthy landowner,Don Diego De La Vega,General,The mathematical notation for a product is designated by what greek letter,Pi -General,Which island is also known as the apple isle,Tasmania,Geography,Havana is the capital of which country,Cuba,General,Samhainophobia is the fear of,Halloween -General,What is the only Shakespeare play that mentions America,The Comedy of Errors (Act III Scene ii),Music,"In which Year Did George McCrae Release His No.1 Hit ""Rock Your Baby""",1974,General,What is a Gambrel - One of two answers,Sloping Roof or Butchers Hook - History & Holidays,Which Instrument Of Torture Had a Hinged Case Full Of Spikes? ,The Iron Maiden ,General,Pogonophobia is a fear of ______,Beards,General,Sun Which U.S. president bought a place in Colorado to ski during vacations,Gerald -Music,"Mary Hopkin's ""Those Were The Days"" & The Beatles ""Hey Jude"" Were Early Hits For Which Label",Apple Records,General,What country celebrates its National Day on 12th October?,Spain,Geography,What country owns the island of Corfu,Greece -General,Which character was portrayed by Robert Redford in the film Out of Africa,Dennis finch hatton,General,"The large optics diamond turning machine has severed a single human hair, lenghtwise, how many times",3000,General,Where is Stone Mountain?,Atlanta -General,What does britain lose the lease on in 1997,Hong kong,General,"If yoU.S.aw the word 'aloo' on an Indian menu, which vegetable would it stand for",Potato,Science & Nature,What is the unit used to measure supersonic speed ,Mach  -General,William Hurt won best actor Oscar for which 1985 film,The Kiss of the Spiderwoman,General,California is to Eureka as New York is to,Excelsior,Geography,Which element makes up 27.72% of the Earth's crust,Silicon -Geography,In which country is the Great Victoria Desert,Australia,General,What was karl marx's term for wage laborers in modern capitalist systems,Proletariat,Food & Drink,Which Are Larger Winkles Or Whelks ,Whelks  -Sports & Leisure,Which Japanese Martial Art Uses Bamboo Swords? ,Kendo ,General,Where would you see analog watches showing 10.10,On most watch advertisements,General,What is a group of parrots,Company -Science & Nature,A piece of glass that separates light into the visible spectrum is called a _____.,Prism,General,In your body where is the macula,Eye centre of the retina,Geography,What is the capital of Namibia,Windhoek -General,"Every person generates approximately 3.5 pounds of rubbish a day, most of it being ______",Paper,General,What does the Greek word eureka mean,I have found it,General,On Average North American women do what 83 times a year,Have Sex -General,"Like fingerprints, what other print is individual",Tongue,Music,"Which Of These Shadows Records Was Not A No.1 Apache, FBI, Kon Tiki, Dance On, Foot Tapper""",FBI,Geography,Name the expanse of water between New Zealand's North and South Islands.,Cook strait -General,November 28th 1948 what was the first TV western in the USA,Hopalong Cassidy,General,"On the Bullwinkle Show, what was Boris's last name",Badenov, History & Holidays,In 1952. 'Elizabeth Becomes Queen'. Who was her late father? ,George VI  -General,Facility of stopping a videotape in order to wiew a motionless image,Freeze-frame,General,In the original Wizard of Oz what colour were the slippers,Silver,Food & Drink,How is a herring turned into a kipper? ,Soaked (in brine) & smoked (over an oak fire)  -General,What year was the first commercial opera house opened,1637,Sports & Leisure,In Which Sport Could You Take Long And Short Corners? ,Hockey ,General,What does a person suffering from kleptomania want to do,Steal -General,"Which Chart Topping Diva Was Born ""Yvette Marie Stevens"" In 1953",Chaka Khan,General,What religious movement did joseph smith found,Mormonism,General,Names - Baker - Cook Smith easy - what did a Chandler do,Make Candles -General,Do your pores open or close when your body is hot,Open,Music,"How Are ""Rod Stewart, Ron Wood, Ian McLagan, Ronnie Lane & Kenny Jones"" More Commonly Known",The Faces,Entertainment,Who directed '2001: A Space Odyssey' and 'A Clockwork Orange'.,Stanley Kubrick -Science & Nature,Meteorology is the study of ______?,Weather,General,Which year was the St. Valentines Day Massacre,1929,General,Who had the vision that resulted in the book of revelations,John -General,Who would use a hammer & tongs,A blacksmith,General,"What is the nickname for Allentown, Pennsylvania",Cement city,General,"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 -General,"Who appears on the 100,000 dollar (US) note?",Woodrow Wilson,General,What is a group of coots,Cover,General,Which stone fruit has a kernel that can be used as a flavouring,Apricot -Food & Drink,"Cocktails: Rum, lime, and cola drink make a(n) ____________.",Cuba libre,General,What Boston craftsman made George Washington's false teeth,Paul revere,General,What occupation had the most fatal work injuries in US in 1994,Truck Drivers -General,Who was said to have used a monocle made of emerald to improve his vision at the arena,Emperor nero,General,Jean Vander Pyl Who Died In 1999 Aged 79 Provided The Voice Of Which Well Known Cartoon Character,Wilma Flintstone,General,This animal can't jump?,Elephant -Geography,Name the large mountain chain in the eastern u.s.a. ,The appalachians ,General,"Joe Frazier Was The First Ever Boxer To Defeat Muhammed Ali , But Who Was The 2nd?",Leon Spinks,General,Who is Prime Minister of Canada,Jean chretien -Music,Which Lennon & McCartney Number Was A Hit For The Rolling Stones In 1963,I Wanna Be Your Man, History & Holidays,"The official song and anthem of the state of oklahoma is ___,composed and written by richard rodgers and oscar hammerstein ",Oklahoma ,General,Pine Eyes is the literal translation of which characters name,Pinocchio - History & Holidays,How many times was franklin roosevelt elected president ,Four ,General,What does gastritis affect,Stomach,Sports & Leisure,In 1994 Which West Indian Batsman Scored 501 Not Out In One Innings ,Brian Lara  -General,"Before she was a pop star, why was Samantha Fox in the British tabloids?",She was a page three girl,General,In Which Month Of The Year Does The Superbowl Take Place,January,General,Never look a gift horse in the ___.?,Mouth -General,What argentinian boxer was shot dead outside a nevada brothel in may 1976,Oscar bonavena,Geography,What is the capital of Estonia,Tallinn,Entertainment,Paul Mccartney played these instruments?,Bass guitar and piano -General,20s Robert 50s Robert 70s Michael what US top boys name 90s,Michael,General,Dresses first incorporated this in the 1930's,Zipper,General,What grew when the doll 'growing up skipper''s arm was turned,Breasts -General,Which creatures transmit Bubonic Plague,Rat fleas,General,"How is ""Maria Kalageropoulos"" better known",Maria callas,General,What does the sun in SUN Microsystems stand for,Stanford University Network -General,What fluid lubricates the eye,Lacrimal fluid,General,What Italian city is the Monza grand prix held in,Monza,General,What indiana city did steve martin once call 'nowhere u.s.a',Terre haute -General,What does the abbreviation a.m. stand for,Ante meridian, History & Holidays,Who are the four ghosts in Charles Dickens' A Christmas Carol? ,"Christmas Past, Present, Yet to Come, and Jacob Marley ",General,Who was crowned King of England on Christmas Day 1066,William the conqueror -General,In a survey what food did Americans say they hated most,Tofu,General,"The two rival gangs in ""west side story"" were the sharks and the _________",Jets,General,What was the title of Oliver Cromwell when he was head of the Commonwealth,Lord protector -General,What was the name of jacques cousteau's research ship,Calypso,General,"The fastest bird is the _____ ______ _____, clocked at speeds of up to 106 miles per hour",Spine tailed swift,General,Isopterophobia is the fear of,Termites -General,What is the fear of myths or stories or false statements known as,Mythophobia,General,A vaulted roof of circular or polygonal shape.,Dome,Food & Drink,What fruits are usually served 'belle helene'?,Pears -General,What is the fear of speaking known as,Laliophobia,General,25 points were given to a laff-alympics team for placing first in a given event. How many for placing second,Fifteen,Food & Drink,Where Might You Encounter A Balti ,At An Indian Restaurant Or Meal  -Music,"Which Late Great Singer Was Christened, Ellen Naomi Cohen",Mama Cas,General,Frampton with what vegetable song did dee dee sharp score big,Mashed potato time,General,What was the Italian Umberto Nobile first to do in 1926,Airship Crossing North Pole -General,In the world of communications for what do the letters U R L stand for,Uniform resource locator,General,In which Fritz Lang film of 1926 do impoverished workers live beneath a city,Metropolis,General,What Opera's story is about a female cigar factory worker,Carmen -General,What continent is sierre leone in,Africa,Art & Literature,"A movement that began in Britain and the United States in the 1950s. It used the images and techniques of mass media, advertising, and popular culture, often in an ironic way.",Pop art,General,Harrods was the first UK store to install what,An escalator -General,What is the largest city in canada,Toronto,General,This cereal is the only one that features a frog as its mascot,Sugar smacks,General,St John the Divine wrote which book of the Bible,Revelations -Geography,What is the capital of Saint Lucia,Castries,General,What was Charles Dickens last (unfinished) novel,Mystery of Edwin Drood,Art & Literature,"Movement in painting, originating in New York City in the 1940s. It emphasized spontaneous personal expression, freedom from accepted artistic values, surface quallities of paint, and the act of painting itself. ",Abstract expressionism -General,When was Sean Connery born,1930,General,Superstition if a woman sees a robin Valentines day marry who,Sailor,General,Who wrote the Earth's children series,Jean manuel -General,Which famous artist painted The Potato Eaters,Vincent van gogh,General,"In ""alice through the looking glass"", who played humpty dumpty",Jimmy durante,General,Where would you be most likely to see a 'gazebo',Garden -General,What is the capital of Venezuela?,Caracas,General,"A commonly used process for oxide and nitride deposition, CVD, stands for:",Chemical vepor deposition,General,What is the Capital of: Niger,Niamey -General,Who wrote the series of novels with the hero Sharp,Bernard Cornwell, Geography,What is the capital of Maldives ?,Male,General,What is the flower that stands for: regard,Daffodil -Entertainment,"In the film 'American Hot Wax', who played the 'Mookie'?",Jay Leno,General,Which country has the largest orthodox church,Russia,General,Which dance in 2/4 time originated in Bohemia in the early 19th century,Polka -Science & Nature,What period takes place shortly after chilbrith?,Postpartum,General,What is the main language of Liechtenstein,German,General,In the Winnie the Pooh books what name is over Poohs door,Mr Sanders -General,Which actress played the Bond girl Honeychile Rider in Doctor No,Ursula andress,Sports & Leisure,With which sport is Bobby Moore associated ?,Soccer,General,What is a nephron,Filtering unit in the kidney -Sports & Leisure,Which tycoon failed to buy Manchester United in 1998? ,Rupert Murdoch ,General,What natural hydrocarbon polymer comes from the hevea brasiliensis tree,Rubber,Science & Nature,What Is Measured Using The Troy System ,Precious Metals  -General,What is the fear of decaying matter known as,Seplophobia, Geography,What is the capital of Bulgaria ?,Sofia, Geography,With what country is Fidel Castro associated?,Cuba -General,George washington carver advocated planting what to replace cotton and tobacco,Peanuts and sweet potatoes,General,Who was the 26th president of the U.S.,Theodore roosevelt,General,In the US women own 35% of what,All businesses -General,In 1934 Percy Shaw Came Up With An Invention That Is Still In Use Today What Was It?,Cats Eyes,General,In 2000 what state removed confederate flag - statehouse dome,South Carolina,People & Places,As Of 2000 In Britain John Is Still The Commonest Boys Name What Is The Girls ,Elizabeth  -General,What is the abnormal fear of feathers known as,Pteronophobia,General,From what is banana oil made,Petroleum,General,Those born on April Fools day are what star sign,Aires -General,What can you shag in Georgia but its illegal in Florida,A Porcupine,General,A cat is feline - what animal is murine,Mouse or Rat,General,"You get a shiver in the dark, it's raining in the park ___' What's the Dire Straits song title",Sultans of Swing -General,Who founded the Boy Scouts?,Lord Baden Powell,General,Game or fly fishing is for salmon and which other fish,Trout,Music,Name The 1983 ZZ Top Album Featuring The Car Of The Same Name On The Cover,Eliminator -Science & Nature,The koala bear eats the leaves from this tree.,Eucalyptus,General,What gives piggy banks their name,Pygg - type of clay their made from,General,Who served 27 years in prison for sexual offenses,Marquis de sade -People & Places,Which Actor Was Charged With Lewd Behavior In 1995 ,Hugh Grant ,Music,"From the 1970's, which song and which group “Listen to the ground: there is movement all around, There is something goin' down and I can feel it, On the waves of the air, there is dancin' out there”?",The Bee Gees / Night Fever,General,In The 1980's Which Actor Became Motown's Biggest Selling White Artist,Bruce Willis -General,"He was the worlds most prolific inventor in the 1970's and 1980's with inventions such as Calculators, Digital Watch, Home Computer and Pocket Televisions?",Sir Clive Sinclair,General,Cavalier in French Springer in German what in English,Chess Knight,Geography,"Savannah, ________________ was founded in 1733 as a haven for British debtors.",Georgia -Science & Nature,What Is The Most Common Element On Earth ,Oxygen ,General,Crossword Clues: On the sheltered side (4),Alee,General,Which fictional character was introduced in A Study in Scarlet,Sherlock holmes -General,What do you get when you mix blue and yellow?,Green,General,"From Which Country Does The Energy Drink ""Red Bull"" Originate",Thailand,General,Which of Shakespeare's plays is set in the Forest of Arden,As you like it -General,What's the capital of ecuador,Quito,Art & Literature,Which Poet Preceded Ted Hughes As Poet Laureate ,Sir John Betjeman ,General,Name the author of 'the pumphouse gang',Tom wolfe -General,Which two fighting ships other than the 'arizona' were sunk at pearl harbor,Oklahoma and utah,General,In the first voyager program who were the Maquis fighting,The Cardassians,General,Mizaru Mikazaru and Mazaru are better known as who,Three Monkeys -General,What are lentigines,Freckles,General,What symbolises the election of a new Pope,White smoke,General,What U.S. spacecraft landed on the planet mars in 1976,Viking 2 -General,A female fox is a vixen what is the male fox called,Dog,General,What is the fear of parasites known as,Parasitophobia,General,What fast-food chain was named for brothers Forrest and LeRoy Raffel in 1964,Arby's -General,Which leader died in St Helena,Napoleon Bonaparte,General,What is the world's highest waterfall,Angel falls,General,It is the region where most of electrons are apt to be found,Orbital -General,In which European country is gambling illegal,Sweden,General,Who was the Chief Designer of the Supermarine Spitfire,Reginald mitchell,General,"Which group sang the Song ""The Call""?",Backstreet Boys -General,In which everyday household products would find alkyl benzene sulphonate,Detergents,General,What is the oldest college in the U.S.,Harvard,General,Which country was the proposed target in the German 'Operation Tannenbaum' in World War II?,Switzerland - Geography,Which element makes up 27.72% of the Earth's crust ?,Silicon,Geography,What is the capital of Guyana,Georgetown,General,In Tampa Bay Florida its illegal who who/what to leave ships,Rats -General,What is the Western ( cowboy ) name for a motherless calf,Dogie,General,Two former members of what group formed hot tuna,Jefferson airplane,General,Who painted the picture Mr. and Mrs. Andrews circa 1750,Gainsborough -Science & Nature, An average_size __________ weighs about 150 pounds.,Aardvark,General,"What was the name of the cheaply made, ultra popular car prevalent in East Germany during the Cold War years?",Trabant,General,Which country had the guns of Naverone installed,Turkey -General,"What is the dish made from peppers, aubergines, courgettes and tomatoes called",Ratatouille,General,In Mississippi it is still legal to kill who,Ones Servant,General,"The Canadian province of ____ ______ leads the world in exporting lobster, wild blueberries, & christmas trees",Nova scotia -General,Which chemical element is named after the 1959 winner of the Nobel Prize for Physics,Laurencium,Music,"Which 1983 Song, Shot To The Top Of The UK Charts After Mike Reid Refused To Play It On His Radio Show Due To It’s Sexual Content",Frankie / Relax, History & Holidays,Which Roman Emperor Followed Claudius? ,Nero  -General,"How many children did JR Ewing knowingly have that lived on ""Dallas""?",3,General,What does the entire economy of the island of Nauru depend on,Bird shit - Guano fertiliser,General,The Bovespa is the stock exchange in which country,Brazil -General,What is a goup of clams,Bed,General,High speed passenger train is called a,Bullet train,Sports & Leisure,The Colours of the All England Lawn Tennis Club are green and what else ,Purple  -Religion & Mythology,"In Egyptian mythology, who was Isis the wife of?",Osiris, History & Holidays,Who starred in the 1954 Musical remake of 'A star is born' ? ,Judy Garland ,General,What is Radar from MASH home town,Ottumwa - Iowa -General,Which wedding anniversary is wood,Fifth,General,Who plays dawson leary on 'dawson's creek',James van der beek,General,Corzetti is what shaped pasta,Coin shaped -General,Why did Roselin Franklin (pre discovered dna helix) no Nobel,She was dead,General,U.S. captials Delaware,Dover,General,What European language is unrelated to any other language,Basque -General,Who invented carbonated soda water,Joseph priestley,General,Which is the largest of the National Parks of England and Wales,Lake district,Art & Literature,Which Painter Reputedly Cut Of His Own Ear ,Vincent Van Goch  -General,"What, according ot the saying, makes waste",Haste,Music,Elton John Is His Stage Name What Is His Real One,Reginald Dwight,General,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 -General,What is a group of this animal called: Cow,Kine,General,What countries language is Magyar,Hungary,General,This order of insects contains the most species,Beetles -Art & Literature,Which Word Created By JK Rowling Gained Entry Into The Oxford English Dictionary In 2003? ,Muggle ,General,In what country was fashion designer Yves St Laurent born,Algeria,General,What is the main ingredient of the Indian dish dahl,Lentils -General,Who moved his 1960's variety series to miami,Jackie gleason,Music,Which City Not State Is The Home Of Motown Records,Detroit,General,In ancient China people committed suicide by eating what,Salt One lb will kill you - History & Holidays,Alexander the Great was king of which country ?,Macedonia,General,"Which foodstuff has types called ""blanket"" and ""honeycomb""",Tripe,Science & Nature,What Was The Main Competitor To VHS Video ,Betamax  -General,Which movie had a device known as a flux-capacitor?,Back to the Future,General,"What actress/dancer/politician went ""out on a limb""",Shirley maclaine,Music,In The UK Which Artist Became The First Act To Go To Number One On Download Sales Alone?,Gnarls Barkley's - Crazy -Sports & Leisure,What was Baron Pierre De Coubertin's contribution to sport? ,He founded the Olympic movement in 1892 ,General,Which is the highest peak in the Andes,Aconcagua,General,Savage garden took 13 nominations and 10 wins at which awards,Aria awards - Geography,What's the capital of Poland?,Warsaw,General,J K Rowling wrote the Harry Potter series what do the JK mean,Joanne Kathleen,General,Name the North African spicy dish of steamed semolina served with meat stew,Cous cous -General,Mrs Darell Waters (translated 128 languages) pen name,Edith Blyton,Entertainment,Who wrote the opera 'The Masked Ball'?,Giuseppe Verdi,General,Ordinary seaman Able Seaman what comes next,Leading Seaman -General,In The Caine Mutiny Bogart played Cap Queeg who first choice,Richard Widmark,Food & Drink,What type of pastry would be used for a jam roly poly? ,Suet ,General,What are terra cotta objects baked from,Clay -General,Which Australian state capital was named in honour of a British Prime Minister,Melbourne,Science & Nature,What Is The Largest Species Of Deer? ,The Moose ,General,Mark mcguire tied and went on to beat whose record of 61 home runs in one major league season,Roger maris -General,What country has the highest voting age 25,Andorra,General,"Who was the 4th child on ""Growing Pains?""",Chrissy,General,What links Fantasy Devils Coral and Christmas,Islands -Music,"Which Female Singer Married In 1969, Divorced In 1975, & Recorded One Last Album With Her Ex Husband In 1995",Tammy Wynette,Science & Nature,What Is Hydrophobia Better Known As ,Rabies , History & Holidays,This was the largest real estate deal in U.S. history.,Louisiana purchase -General,Noologists study what,The Mind,Music,"The Film ""Chances Are"" Featured A Song Called ""After All"" By Which Male Singer",Peter Cetera,General,What TV program first used the word hell,Star Trek lets get the hell outa here -General,What is the name given to the fortified gateway of a castle,Barbican,General,Who was Speaker of the House of Commons immediately prior to Betty Boothroyd,Bernard weatherill,General,Who painted The Haywain,John Constable -General,"Who said ""The reports of my death are greatly exaggerated.""?",Mark Twain,General,"Who said ""Iv'e never had an accident worth talking about""",Captain E J Smith of the Titanic,Music,What Links Boney M In 1976 And David Grey In 2000?,Babylon -General,What king dissolved the English monastries,Henry viii,General,Coco Channel a fashion star had what real first name,Gabrielle,General,What is classified on the Fujita scale,Tornados 1 to 5 -Entertainment,"A set of graduated steel bars set in a frame and hit with a hammer, used in the orchestra.",Glockenspiel,General,At which Paris terminus does the Eurostar train from London arrive,Gare du nord,Food & Drink,Kale is a variety of which winter vegetable? ,Cabbage  -General,Which actress starred in the original King Kong in 1933 (both),Fay Wray,General,What is the smallest lake in the world,Vanern,Food & Drink,"In Greek Mythology, what was the food of the Gods? ",Ambrosia  -General,What word do we get from shah mat,Checkmate,General,"One gram of 2,4 d, a common household herbicide can contaminate __________ litres of drinking water",Ten million,General,"How many legs do crabs, lobsters & shrimp each have",Ten -General,Who directed Dr Strangelove - 2001 - The Shining (full name),Stanley Kubrick,General,What country has two AK47 assault rifles on it's flag,Mozambique,General,"What Film Was Advertised With The Slogan ""Don't Give Away The Ending It's The Only One We Have""",Psycho -Music,"In Which Year Were The Following All UK Chart Hits: ""Solsbury Hill"" By Peter Gabriel, ""Silver Lady"" By David Soul And ""Pearl's A Singer"" By Elkie Brooks?",1977,General,Who invented painting by numbers?,Palmer paint company,General,What is 'tilapia' a type of,Fish -General,"In cornish folklore, what is a sea spirit that lives among fisherman",Bucca,General,Who formulated the laws which first explained the movements of the planets properly,Kepler,Religion & Mythology,Who was Hercules' stepmother?,Hera -Entertainment,What did George Harrison discover on the Witwatersrand?,Gold,General,Rod Temperton From Cleethorpes Is One Of The Richest Men In Music But What Is His Claim To Fame,He Wrote Micheal Jacksons Thriller,Music,What song did Lennon and McCartney give to the Rolling Stones in 1963?,I Wanna Be Your Man -General,When do children grow fastest,Springtime,General,What is the food of the secretary bird,Snakes,General,What were China 14 Raduga 14 Himwari 3,Orbiting satellites -General,What is the flower that stands for: prettiness,Pompon rose,Music,Which Pink Creation From Noel's House Party Had A UK No.1 In 1993,Mr Blobby,Food & Drink,Where were Cornflakes invented?,Battle Creek Sanitarium -General,How is the tree with the botanical name Fagus better known,Beech,General,"What word is used in a balance sheet to mean ""What a company owes to its suppliers and lenders""",Liabilities,General,In New Jersey what is it illegal for a man to do fishing season,Knit -General,What is the young of this animal called: Codfish,Codling sprat,Food & Drink,In which country did edam cheese originate ,Holland ,General,Where in the body would you find the Bowman's capsule,Kidney -Science & Nature,What Metal Are Light Bulb Filaments Made From ,Tungsten ,General,When was the Berlin wall erected,1961,General,The Computer Language ADA Was Named After The Daughter Of Which Famous Poet,Lord Byron -General,Methyphobia is the fear of,Alcohol,General,Who protects themselves from from blowing dust with three eyelids,Camels,Sports & Leisure,Who Was Britains Golden Girl In 2004 Winning Both The 800 & 1500 Metres ,Kelly Holmes  -General,What name is given to a stone female figure who supports a ceiling on her head,Caryatid,General,What's the smallest known planet in our solar system,Pluto,General,Large brown seed with edible white lining enclosing milky juice,Coconut -Music,Which 1998 Double Album Has One For The Heart And One For The Feet,George Michael / Ladies & Gentlemen,General,Polite society man does it 2 legs woman sitting dog 3 legs what,Shake hands,General,Name either of the two giant stars in the constellation of Orion,Rigel betelgeuse -General,Who wrote The Prime of Miss Jean Brodie,Muriel Spark,General,He assassinated john lennon on december 8 1980,Mark chapman,General,Jimmy Carter was the first US president to have done what,Born in a Hospital -General,"In France what take place at Auteuil, Saint-Cloud and Chantilly",Horse Racing – they are courses,General,Kong what member of ac/dc died in 1980,Bon scott,General,"In Coronation Street, what was the name of Ken Barlow's first wife, played by Anne Reid",Valerie -Music,Name The Orchestral Instrument That Lent Its Name To A Mike Oldfield Album,Tubular Bells,General,What animal is represented by the constellation Lacerta,Lizard,General,Paris is the administrative centre of which French region,Ile de france -Sports & Leisure,Which Uk Leasure Activity Has Caused The Most Fatalities ,Fishing ,General,Name Tina Turners solo comeback album of 1984,Private Dancer,General,In California it is illegal to eat what while bathing,Oranges -General,Geneva stands on what river,Rhone, History & Holidays,"What movie featured Reece's Pieces as part of the story, because the director couldn't obtain the rights to use M&M's? ",E.T. ,Toys & Games,What game or sport is Bobby Fischer identified with?,Chess -General,In the 60s a Yellow Golliwog worn by a girl symbolised what,Proud of non virginity,People & Places,Whose Nickname Was Satchmo ,Louis Armstrong ,General,Who started life as Dippy Dawg,Goofy -General,Where Are The Maxwell Gap And The Keeler Gap Located,Between The Rings Of Saturn,General,In fiction who's mother Monique Delacroix died when he was 11,James Bond,General,"In 1979, who recorded ""London Calling""",Clash -Food & Drink,How Many Legs Does A Bombay Duck Have? ,None Its A Fish!! ,General,"What served as a cowboy's wash cloth, dust mask & water filter",A bandana bandana,Science & Nature,What Is An Exoskeleton? ,An Insects External Skeleton  -General,What was the name of the ranch in the tv series 'bonanza',Ponderosa,General,Short actors stand on what wooden object - to appear bigger,Pancake,Art & Literature,"Who wrote 'little lamb, who made thee'?",William Blake -General,Which Grand Prix driver was also a champion claw pigeon shot,Jackie Stewart UK clay 5 times, History & Holidays,"Electric Christmas tree lights were first used in what year? 1878,1895, 1903, 1907 ",1895 ,Sports & Leisure,Which Heavweight Boxer Is Known As The Real Deal ,Evander HolyField  -General,In what Australian state would you find Cessnock,New south wales nsw,General,Which acid was first prepared from distilled red ants,Formic acid,General,"""Don't worry, unless they're strange, your kids will eat them!""",Life -General,Strabismus is the correct name for what condition,A Squint,General,To grill meat on a rack over charcoal,Charbroil,Sports & Leisure,Which Game Makes Use Of Hoops ,Croquet  -General,What US city buys the most blond hair dye,Dallas Texas,General,A charm worn against evil,Amulet,General,Who is Dick Tracey's girlfriend,Tess Trueheart -General,Ancient Chinese thought what fruit a symbol long life immortality,Peach,Science & Nature,"How many Earths would it take to match the size of the sun? Over 1000, 100,000 or 1,000,000?","1,000,000",General,Which book first featured the character Felix Leiter,Casino royale -General,The Volga River flows into what sea,Caspian sea,General,What is the name of the colourful cathedral on Red Square in Moscow,St basil's,General,"Whose headstone reads 'at rest, an american soldier and defender of the constitution'",Jefferson davis -General,Which Saint translated the Vulgate bible,Jerome,General,"An electrical device for removing suspended impurities such as dust, fumes, or mist, from air or other gases",Electrostatic precipitator,General,How many beams of light are used to record a holograph,Two -Music,What Do Gary Lineker & John Lennon Have In Common,Both Have The Middle Name Winston,General,Which Country Scored The First Ever “ Golden Goal ” At The World Cup Finals,France,General,What was the capital of Ethiopia,Addis Ababa -Food & Drink,"What is Japanese ""sake"" made from?",Rice,General,Picea is the generic name for which tree,Spruce,Science & Nature,What kind of poisoning is known as plumbism?,Lead poisoning -General,Fred Waller patented what sporting equipment,Water Skis,General,The sacred book of which religion is divided into 114 chapters called Suras,Islam,General,What are bright regions of the sun's photosphere,Facula -Sports & Leisure,With which sport is Chris Evert Lloyd identified,Tennis,Music,The Label Is Bludgen Riffola Name The Band,Def Leopard,Music,"Who Released The Top Selling Album ""The Good Will Out""",Embrace -Music,Which Member Of The Buzzcocks Went On To Form The Band Magazine,Howard Devoto,Entertainment,Secret Identities: Jim Corrigan,The spectre,General,"What is a ""ruderal""",Weed -General,What is the worlds longest race,The Whitbread round the world,General,What was the best chariot route from rome to brindisi,Via appia,General,Who killed Laura Palmer on Twin Peaks?,"Her father,Leland Palmer." -General,"What german city do italians call ""the monaco of bavaria""",Munich,General,Ronald MacDonald is worldwide except Japan what's he there,Donald MacDonald,General,Fill in the blank: chang and eng were the most famous,Siamese twins -General,"In which South African town were over sixty people murdered by the police, during a campaign against the Pass laws in March 1960",Sharpeville,Geography,"There are approximately 320,000 _____________ in the world.",Icebergs,General,"What rock group recorded ""smokin'"" and ""more than a feeling""",Boston -Music,What Was John Lennons First No.1 Single In 1980,(Just Like) Starting Over,General,"In 1909, which U.S. President became the first to be depicted on a coin?",Abraham Lincoln,Art & Literature,What was Michelangelo's first name? ,Michelangelo!!  -General,What is the largest & most complicated joint in the body,Knee,Science & Nature,What Is Blackwater Fever A Complication Of ,Malaria ,General,Sterlet is the rarest most expensive what,Caviar - tiny eggs -General,Who painted The Gleaners,Jean Francis Millet,General,What show was Family Matters a spin-off of?,Perfect Strangers.,General,What was the first sport to be filmed,Boxing by Thomas Edison 1894 -General,In Japan what is Shogi,Japanese Chess,General,You can who sang 'I'm a believer',Monkees,Science & Nature,Which Camera Was Invented By Edwin Land ,The Polaroid Camera  -General,In which city were the summer Olympic Games of 1900 held,Paris,General,What element is azoth the ancient name for,Mercury,Music,What Is The Best Selling Album Of All Time In The UK,Sergeant Pepper's Lonely Hearts Club Band- The Beatles -General,In cooking something made Veronique must contain what,Grapes,General,Which south-east Asian city is served by Kimpo International airport,Seoul,General,Helen Mitchell became famous as what soprano,Nellie Melba -General,Which TV Show Was Set In The Fictional Location Of Kings Oak,Crossroads,General,Who did Catherine Parr marry after the death of King Henry VIII?,Thomas Seymour, History & Holidays,From Which Country Does The Poinsettia Plant Originate ,Mexico  -General,What's a farm that has both cattle and crops called,Mixed farm,General,What is the name given to the dish of beef coated in pate and wrapped in pastry,Beef wellington,General,"The internal diameter of a gun, diameter of a bullet",Calibre -General,What mountain - Greeks believe was the home of the Muses,Helicon,General,The assassin in The Man With the Golden Gun was played by who,Christopher,General,"Name the evil slave owner and villain in Harriet Becher Stowe's novel ""Uncle Tom's Cabin"".",Simon legree -General,E W Hornung created which fictional character,Raffles,Food & Drink,What Does A Charcuterie Sell ,Pork Products ,Mathematics,2.7182 is the approximation for which variable used in logarithms?,E -General,Who is the master of the Shakespearean brute Caliban,Prospero,General,"What was Tom Clancy's blockbuster first novel, published in 1984",The Hunt,General,"Raspberry, dewberry and blackberry are all members of what family",Rose -General,What is a group of gnats,Mothers-in-law,General,Which tennis winner also won a Winter Olympics silver medal,Jaraslav Drobny,General,What is the worlds oldest desert - country named after it,Namib -General,What bird is depicted on the Canadian $1 coin,The loon – coin nickname is loonie,General,When was gas lighting invented,1792,General,The Wadomo tribe in Zimbabwe have what physical oddity,Two toes each foot -General,"In horse racing, what is the straight opposite the one with the finish line",Backstretch,Geography,What is the capital of Kuwait,Kuwait city,General,What does a myologist study,Muscles -General,Name the author who created Brer Rabbit and Brer Fox,Joel Chandler Harris,General,What insects do isopterpophobics fear,Termites,General,Geococcyx Californicus is what (cartoon) animal,Road Runner -General,Large South American constrictor snake,Anaconda,General,What international award was worth 365 dollars mineral value in 1988,Olympic,General,In computing what was the first ironbed,A Scanner -General,After which Italian is America named,Amerigo Vespucci,General,"Until the dinner plate was introduced in the 15th century, it was customary to eat on what",Bread,General,Hadephobia is a fear of ______,Hell -General,What is the longest tunnel,Water supply tunnel,General,What port lies at the mouth of the Swan river,Freemantle (Perth),Art & Literature,What Were The Tree Like Creatures In The Lord Of The Rings Called ,The Ents  -General,What do Ombrophobes fear,Rain,General,"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,General,Name the only two mammals with hymens,Humans and horses -General,"Who wrote ""The Black Prince"", ""The Sea The Sea"", and ""The Philosopher's Pupil""",Iris murdoch,Music,"Who had his first UK top 40 hit single in 2004 with Magic, thirty years after his death at the age of 26?",Nick Drake,General,Manu National Park Peru has 1300 different species of what,Butterfly -General,Name the home city of the US football team nicknamed Falcons,Atlanta,General,On the body what is a calcaneium,Heel bone,Geography,What is the capital of Comoros,Moroni -General,What actress played mrs margaret williams in the danny thomas show,Jean, History & Holidays,What Christmas delicacy has blue veins running through it and tastes cheesy'? ,Stilton Cheese ,General,One person in Texas is killed annually doing what,Painting road lines -Sports & Leisure,What Is The Longest Athletics Race In The Olympic Games? ,50 Km Walking Race ,Sports & Leisure,In Which English City Will You Find Lords Cricket Ground ,London ,General,Which is the only English word to both begin and end with the letters U-N-D,Underground -General,Who played Billy the Kid in The Left Handed Gun,Paul Newman,General,"Which 1978 film from the book of the same name by Ira Levin, tell of the cloning of Adolf Hitler",The boys from brazil,General,Which educational establishment in Utah is known as B.Y.U.,Brigham young university -Art & Literature,Which British Artist Is Noted For His Numerous Paintings Of Horses ,George Stubbs ,General,In the USA a police 10-31 is the code for what,Crime in progress,General,Powdered red pepper,Cayenne -General,Which was the sacred animal of ancient egypt,Cat,Science & Nature,What is the only dog that doesn't have a pink tongue,Chow,Music,Suzanne Hoffs Was The Lead Singer Of Which Very Successful Band,The Bangles -General,In what bodily system are Schwann cells found?,Peripheral Nervous System,Science & Nature," Of all known forms of animals life ever to inhabit the Earth, only about __________ still exist today.",10%,General,Who wrote the book Coma,Robin Cook -General,What foodwise is a Fieldlane Duck,Baked Sheep's Head,General,Whose novels include 'The Cement Garden' and 'Comfort of Stangers',Ian mcewan,General,Suriphobia is the fear of,Mice -Toys & Games,D&D stands for this.,Dungeons and dragons,General,Name either of the songs which were big hits for Shirley Ross and Bob Hope in two musical films in 1937/8. Thanks for the memory,Two sleepy people,General,What did Pope John XX1 use as effective eyewash,Babies Urine - History & Holidays,What Was The Name Of The North Sea Oil Rig That Caught Fire In 1988 ,Piper Alpha ,General,"Serotine, Leislers and Noctule are all varieties of which nianinial",Bat, History & Holidays,What Is A Male Witch Known As ,Warlock  -General,"On Punky Brewster,how was she abandoned by her mother?",Her mother went in to the grocery store and never came out., Geography,Which U.S. state borders a Canadian territory?,Alaska,Sports & Leisure,Which Baseball Team Won A Record 37 World Series In The 20th Century ,New York Yankees  -General,Which group had a 1970s UK number one hit with Oh Boy,Mud,Mathematics,What is next in the series 1 8 27 ?? 125 216?,64,General,Whose girl friend was Virginia Hill,Bugsy siegel -Geography,What is the capital of Spain,Madrid,General,Of what is apiphobia the fear,Bees,General,Which country has the longest coastline,Canada -General,How many years in a vicennial?,20,General,Etymology is the study of what,Word origins,General,Name the cowardly member of Dick Dastardly's squadron,Zilly -General,What unit is used to measure electrical resistance,Ohm,General,What is the last animal in the dictionary,Zorille,General,Who wrote the thriller The Name of the Rose,Umberto eco -General,What company did actor Brad Pitt model for,Levis,General,"In an average lifetime, the average american visits a ___ 5 times",Psychiatrist,General,In which of Aristophanes plays do the women refuse sex,Lysistrata -Music,"Who Had A Hit In 1997 With ""Torn""",Natalie Imbruglia,Art & Literature,Which Nobel Prize Winner Wrote (A History Of The English Speaking Peoples) ,Winston Churchill ,General,Bam Yat and Holon are in which country,Israel -Sports & Leisure,"What football player rushed for 2,003 yards in 1973?",OJ Simpson,General,In the rhyme about magpies what do 5 represent,Silver,General,"Who has daughters named Jade, Elizabeth, Scarlett and Georgia",Mick jagger -General,In Kiplings Jungle Book Ikki was what type of creature,Porcupine,General,The only U.S. State that ends with 3 consonants,Massachusetts,General,"Did you know that if ________________ had not been shot, & not convicted for killing JFK, he would have been convicted for killing Officer Tippet",Lee harvey oswald -Geography,Where is George Washington buried,"Mt. vernon, virginia",General,To refuel your car you go to a _____ station.,Petrol/Gas,General,What is dick turpin's horse's name,Black bess -Sports & Leisure,What Is The Value Of (K) In Scrabble ,5 Points ,General,Former Royal coat of arms of France,Fleur-de-lis,General,What year did Emily Pankhurst chain herself to 10 Downing Street,1907 -Music,Name Any Three Of The Five Members Of The New Seekers,"Eve Graham, Lyn Paul, Peter Doyle, Marty Kristian, & Paul Layton",Geography,Name the largest cathedral in the world. ,St. peter's ,Geography,"He visited australia and new zealand, then surveyed the pacific coast of north america. ",Vancouver  -Music,"Who Recorded The Album ""Never Too Much"" Was It Luther Vandross Or George Benson",Luther Vandross,Music,Which Famous British Composer Wrote A Sea Symphony & At The Age Of 80 The Score For A Film About Scott's Antarctic Expedition,Ralph Vaughan Williams,Geography,Which Town Is Situated Close To The Geographic Centre Of Australia ,Alice Springs  -General,What is between panama and nicaragua,Costa rica,General,Which country has the greatest number of islands?,Finland,Science & Nature,How many Astronaughs crewed the Gemini series of Spacecraft?,Two -Music,"Who's First Top Ten LP Was Entitled ""Wood Face""",Crowded House,General,What instrument does kenny g play,Saxophone, History & Holidays,What type of sweet did Mars and Murrie develop in 1941? ,M & Ms  - History & Holidays,Who was Joseph Merrick?,The Elephant Man,General,"Who publishes the newspaper, The Australian",Rupert murdoch,Science & Nature,A heavenly body moving under the attraction of the Sun and consisting of a nucleus and a tail is a(n) _____.,Comet -General,What actress was born frances ethel gumm,Judy garland,General,Which native Indian tribe never signed a peace treaty US govern,Seminoles,General,What planet did the Thundercats live on?,Third Earth. -Music,Which Spice Girl Upset Anti Fur Campaigners By Wearing Furs In A 1997 Feature In Tatler,Victoria Beckham,General,Which people invented the compass?,Chinese,General,Of what was Charlie Chaplain's cane made,Bamboo -General,"What was the final destination of the first u.s. paddle wheel steamboat, what departed from pittsburgh?",New orleans, History & Holidays,Who wanted to make a coat out of 101 Dalmatians ,Cruella Devil ,General,Robert Langford Modini became more famous as who,Robert Stack - Geography,Where are the 'wallops'?,Hampshire,Geography,Which Country Grows The Most Potatoes Per Annum ,Russia ,Music,Which Song Was A Hit For Both Tom Jones And Prince?,Kiss -Art & Literature,Who Wrote (Robinsonn Crusoe) ,Daniel Defoe , History & Holidays,In 1968 Which Country Did The USSR Invade To Stamp Out Liberal Reform ,Czechoslovakia ,General,"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 -Geography,What are the worlds four oceans _ alphabetically,"Arctic, atlantic, indian and pacific",General,"In 'a christmas carol', how many ghosts visited scrooge",Four,Toys & Games,"In which sport are terms ""spare"" and ""gutter"" used?",Tenpin bowling -General,"In which Kent town is the Indian princess, Pocahontas, buried",Gravesend,General,What sport are barbells used in,Weightlifting,General,The SF award the Hugo is named after Hugo who?,Gernsbeck -General,"What did Emerson, Lake & Palmer burn on stage during their concerts?",The American flag,General,What is the general term used for various forms of insanity & mental derangement,Mental illness,General,Illusion of hearing or seeing something not actually present,Hallucination -General,What is the largest country in central america,Nicaragua,General,What is the flower that stands for: sadness,Dead leaves,General,David John Moore Cornwell became famous as who,John Le Carre -Geography,What Is The Largest Of The Channel Islands ,Jersey ,General,Memonites are what Christian sect founded 1525 Conrad Grebel,Anabaptists like Amish,General,What drug is obtained from the dried bark of an evergreen tree native to south america,Quinine -General,What ernest hemingway novel depicts the lives of rebels during the spanish civil war,For whom the bell tolls,General,Tubular sac attached to the large intestine,Appendix,General,Where were George Mallory & Andrew irvine heading when they were last seen alive,Summit of everest -Geography,Which Famous Cocktail Was Invented At The Raffles Hotel In The Far East Around 1910 ,The Singapore Sling ,General,What is the capital of the state of Ohio,Columbus,General,Where is the Isle of Pelicans,Alcatraz -Music,On which Beatles album would you find “Ticket To Ride”,Help, Geography,What is the capital of Jordan ?,Amman,General,"In Greek mythology, who solved the riddle of the sphinx",Oedipus -Music,Blackie Lawless Was The Singer With Which Band,Wasp,General,Who was the founder of the Irish political party Sinn Fein?,Arthur Griffith,General,In Missouri a man must have a permit to do what,Shave -Toys & Games,What is the Chess ranking system called ?,Elo,Entertainment,"In the TV series 'The Brady Bunch', what was Cindy's toy doll's name?",Kitty Carrie All,General,"Which actor plays the part of Dr. Frasier Crane in the Channel 4 series ""Frasier""'",Kelsey grammer - Geography,In what country is Lahore?,Pakistan,General,Minerva is the Goddess of what,Wisdom,General,Khartoum' Is The Capital City Of Which African Country,Sudan -Entertainment,For whom did Colonel Tom Parker act as manager?,Elvis Presley,General,What is the name of the computer in Stanley Kubrick's '2001: A Space Odyssey,Hal, History & Holidays,"In 'A Christmas Carol'', what is Tiny Tim's surname ",Cratchett  -General,What was the name of the nuclear missle defense system Reagan proposed?,Star Wars,General,Baile Atha Cliath - Official name what capitol city,Dublin - its Irish Gaelic,Entertainment,"Who sang for 'Bad company' and 'Free', then went out on his own?",Paul Rodgers -General,Who was the first christian emperor of rome,Constantine,Science & Nature,The name for the group of stars which form a hunter with a club and shield is _____.,Orion,Sports & Leisure,Who was the first unseeded player to win Wimbeldon?,Boris Becker -General,Which country is the world's biggest gold producer?,South Africa,General,"Any type of self-propelled vehicle used by railroads to pull or push other types of rolling stock, including passenger, freight, & work cars",Hovercraft,General,The Roman festival of Hilaria is equal to what modern day,April Fools Day -Music,"In ""Lucy In The Sky With Diamonds"", what were the colors of the Celophane Flowers?",Yellow and green,Geography,What is the most sacred river in India,Ganges, History & Holidays,"The birthplace of Napoleon, also the capital of Corsica, is?",Ajaccio -General,"Who painted ""The Shriek"" and ""The Kiss""",Edvard munch,Art & Literature,Where is the Louvre located?,Paris,General,Football - the Philadelphia ______,Eagles -General,Which is the last book of the Old Testament,Malachi,General,On common ailments Charles Osborne had what for 69 years,Hiccups, History & Holidays,"""Who Is The First Ghost To Appear To Scrooge In """"A Christmas Carol""""?"" ",Marley's Ghost  -General,"Lassa fever is named after the village in which it was first detected in 1969, where is Lassa",Nigeria,Music,"Who Joined Genesis From ""Flaming Youth""",Phil Collins,General,"Who wrote the play "" What the Butler saw """,Joe Orton -General,Crime of getting married again whilst still legally married,Bigamy,General,"Cumulus, cirrus and stratus are all types of what",Clouds,General,What food is the leading source of salmonella poisoning,Chicken -General,Which is the highest poker hand 2 pairs or three of a kind,Three of a kind,General,The British colonial law in India monopolizing salt production provoked whose rebellious march to the sea,Mahatma ghandi, History & Holidays,Where did the famous witch trials of New England take place ,Salem  -General,What form of light comes at wavelengths below 360 nanometers,Ultra violet,General,What Zimbabwe beer is named after a river,Zambezi,General,"Where would you find a nave, apse, atrium and narthex?",Basilica -Music,What Was The Best Selling Dire Straits Single In The UK,Private Investigation,General,Who hired the Mormon Mafia to prevent contamination,Howard Hughs,General,What plant is snuff made from,Tobacco -General,What did the Victorians call servant regulators,Alarm Clocks,Geography,"Which country borders Italy, Switzerland, West Germany, Czechoslovakia, Hungary, Yugoslavia, and Liechtenstein",Austria,General,In Greek mythology who were the guardian spirits of the sea,Neriads -General,"In Imperial measurement, how many square yards are in a square chain",484, History & Holidays,Who played the lead role in the 1960 Hammer production The Curse of the Werewolf ,Oliver Reed ,General,A ___ can not move it's jaw side to side,Cat -General,What country calls themselves Nipon?,Japan,General,"Wafter Re-Uniting In The 80's The Song ""That Was Then This Is Now"" Was The First Single released By Which Group",The Monkees,General,"In baseball, how far do you have to run if you hit a home run",Three hundred -General,What is The Adi Granth,Sacred Scriptures Sikhs,General,Which SF author created the character Lazarus Long,Robert Heinlein,Food & Drink,What Is The Third Most Popular Soft Drink In The UK ,Lucozade  -Geography,"Which American state's name is Spanish for ""flowered"" or ""flowery land""?",Florida,General,What was Cecil B. De Mille's Middle name,Blount,Music,Who Was Just A Step From Heaven In 1994,Eternal -General,What would you expect to find in a vespiary,Wasps,General,What inert gas is used in fluorescent lights,Argon,General,What is a 'funambulist'?,A tightrope walker -General,How many members are in the 'fairfield four',Five, History & Holidays,What was the name of the multi-colored cube you had to re-organize? ,Rubik Cube ,General,"What actor mouthed the line ""Whatch you talkin' 'bout Willis?""",Gary Coleman -General,Baseball: the cleveland ______,Indians,General,An orchidectomy involves what procedure,Removal of testicle,General,Whose was the first voice to appear on the British TV station Channel 4?,Paul Coia -General,What language is klutz an insult in,Yiddish,General,What is the capital of pennsylvania,Harrisberg,General,Which nationality calls Munich the 'Monaco of Bavaria'?,Italians -General,"In ballet, a leap in which the lower leg beats against the upper one at an angle, before the dancer lands again on the lower leg.",Cabriole,Music,What Was Former Spice Girl Victoria's Maiden Name Before She Married David In 1999,Adams,General,Which 16th century Italian wrote The Prince,Machiavelli -General,Nicosia is the capital of ______,Cyprus,General,In Paris what are FD Roosevelt Stalingrad Louis Blanc,Metro Stations, Geography,What's the highest mountain in the 48 contiguous U.S. states?,Whitney -General,For what was Joan of Arc made a Saint,Her Virginity,General,"In 1987, who released her second album 'solitude standing'",Suzanne vega,General,Which notorious British murderer appears in Alban Berg's unfinished opera Lulu,Jack the ripper -General,Which US city was once named Porkopolis,Cincinnati,General,What soap was about the trials and tribulations of a vampire,Dark shadows,Food & Drink,What is the main ingredient of Paella? ,Rice  - Geography,What is the basic unit of currency for Antigua and Barbuda ?,Dollar,General,Which abbey is located near Barrow Upon Humber in North Lincolnshire?,Thornton Abbey,General,26% of McDonalds Ontario employees admit doing what,Putting bodily fluids in food -General,What is the only day named for a planet,Saturday,General,Most of these animals are bisexual - what animal,Giraffe,Music,Amount ABC reportedly paid for rights to the Beatles Anthology documentary,$20 million -General,Zymase and Glucose combine to form what drug,Alcohol,General,What is the literal meaning of 'pince-nez',Pinch nose,General,Who was the female lead in 'hello dolly',Barbara streisand -General,Which international companies logo is exactly 42 dots,Sony,General,In what film did rick moranis make his big-screen debut,Strange brew,General,"How often does something recur, that recurs ""quotidian""",Daily -General,Psychologist say when a woman wears red she wants what,Another Woman,Art & Literature,"The two races in HG Well's ""The Time Machine"" are the child-like Eloi and the subterannean ______?",Morlocks,Music,Who composed the music for the German national anthem?,Joseph Haydn -General,"A social dance in ¾ time that became widely popular in the nineteenth century. It developed from the Landler, a German-Austrian turning dance.",Waltz,General,"Which us city is called the ""windy city""",Chicago,General,Marinated limbs of fowl,Chicken wings -General,In 1891 what city held the first weightlifting world championship,London,General,What does a month beginning with a Sunday always have?,Friday the 13th,Sports & Leisure,In 1994 Oliver McCall Defeated Who To Become World Heavyweight Boxing Champion ,Lennox Lewis  -Religion & Mythology,Who is the greek equivalent of the roman god Mercury,Hermes,General,Only three grape varieties can be used to make champagne. Pinot Noir and Pinot Meunier are two. Name the third,Chardonnay,General,In Greek mythology who killed the Gorgon,Perseus -General,Dacca is the capital of which country,Bangladesh,Music,Which Guitarist Replaced Bernie Leadon In The Eagles In 1975,Joe Walsh,General,Who created the myrmidons,Zeus -Science & Nature,What device was used to determine a ship's latitude ?,Sextant,General,In Mork and Mindy what was the capitol of Ork,Kork,General,In what WW1 battle were tanks first used in 1916,Somme -Sports & Leisure,Who was the 1978 Wimbledon Women's Singles champ?,Martina Navratilova,Geography,What Is The Name Of The Highest Mountain In Japan ,Mount Fujiyama Or Mount Fuji ,General,What is the medical term for pain and aching in the lower back,Lumbago -General,Whom did Colin Baker replace as Doctor Who on television,Peter davison,General,Schschpiel is what game in Germany,Chess,Sports & Leisure,In Which Sport Would You Encounter A Bully Off? ,Hockey  - History & Holidays,Who had a hit with Schools Out in 1972? ,Alice Cooper ,General,What is the lifespan of a turkey that evades the cooking pot,Twelve years,General,Who built a loyal following with the release of 'the pretender' in 1976,Jackson browne -General,"Which Country Now Have A Parliament Called ""The Bee Hive""",New Zealand,General,The lutra-lutra is which semi aquatic animal,Otter,General,What is the flower that stands for: early youth,Primrose -General,What type of birds (Hugin + Munin) sit on the shoulders of Odin,Ravens,General,Tennis: what area falls between the baseline & the service line,Back court, Geography,What is the capital of Angola ?,Luanda -General,Dutchphobia is a fear of ______,Anything dutch,Food & Drink,In What Decade Did Sliced Bread First Appear? ,1930's ,Science & Nature,"If you're in the northern hemisphere, Polaris, the North Star, can be found by looking which direction?",North -General,What is the 100 year old safe in washington dc,Centennial safe,General,The false plane tree is better known as what,The Sycamore,General,"In the 1995 movie, To Wong Foo, Thanks for Everything, Julie Newmar, what were the names of the characters portrayed by Patrick Swayze, Wesley Snipes and John Leguizamo?","Vida Boeheme, Noxema Jackson, and Chi Chi Rodriguez" -People & Places,"What Do Eric Clapton, Marilyn Monroe, And Laarry Grayson All Have In Common ",They All are Or Were Illegitimate ,Music,"Whose Songs Include Night & Day, Begin The Beguine & Just One Of Thoese Things",Cole Porter,Music,"In Which Year Was ""Crying In The Chapel"" A No.1 Hit For Elvis",1965 -Tech & Video Games,What does CR-ROM stand for?,Compact Disk Read Only Memory,General,In the Bible who built the ancient city of Babylon,Nimrod,Music,Who Composed The Planet Sweet,Gustav Holst -General,Where is Londons whispering gallery,St pauls cathedral,General,What links Socrates Aristotle Janis Joplin,Bisexuals,General,"What colour is bistre, a pigment used in artist's paints and inks",Brown -Religion & Mythology,Who is the Roman goddess of destiny?,Fortuna,General,What kind of small glass bottle turns liquid perfume into a fine spray,Atomiser,Technology & Video Games,What was the hybrid pinball/video game in the Pac-Man series? ,Baby Pac-Man -Geography,What is the largest of the countries in Central America,Nicaragua,Music,For Which Record Company Did The Beatles Record Most Of Their Work,Parlophone,General,The longest tunnel connects delaware and ______,New york -General,Who won the world soccer championship in 1934,Italy,General,"Name the evil slave owner and villain in ""Uncle Tom's Cabin""",. simon legre,Music,"""Sally"" Was A 1970 Hit For Which Male Singer",Gerry Monroe -General,Which film links novelist Ira Levin and Sharon Stone,Sliver,Science & Nature," __________ never walk or trot, but always hop or leap.",Rabbits,General,What instrument are you playing when you perform a rim shot,Drums -General,"What president's hobbies included pitching hay, fishing, and golf?",Calvin coolidge,Food & Drink,Who was the female russian dancer who had a desert named after her? ,Anna pavlova ,General,To which U.S. city would you travel to see the Liberty Bell,Philadelphia -Science & Nature," The only __________ to ever appear in a Shakespearean play was Crab in ""The Two Gentlemen of Verona.""",Dog,General,Capital cities: Western Samoa,Apia,Technology & Video Games,What was launched on the 4th December 1996 ?,Mars Pathfinder -General,Pushin' Too Hard' was the notable song recorded by which group in the 60's,Seeds, Geography,What is the basic unit of currency for Turkmenistan ?,Manat,General,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 -General,When Prince Edward Married Sophie Rhys Jones In 1999 What Title Did She Adopt,Countess Of Wessex,General,How is 75% of petrol in an engine wasted,Combustion,General,What team has won the most NBA championships,Boston celtics -General,Who was Britain's second Labour Prime Minister,Clement attlee,General,What does a croque Madame have that a croque monsieur don’t,Egg on top – Cheese Ham Toast,Geography,Which County Is Glastonbury In? ,Somerset  -Music,"Who Was The First Woman To Be Inducted Into The Country Music Hall Of Fame In 1973, 10 Years After Her Death",Patsy Cline,Science & Nature,"The Komodo Dragon, the biggest known lizard to science, is endemic to the Komodo islands of what country?",Indonesia,General,Generation X Was A Band Fronted By Which Famous Rocker,Billy Idol -Sports & Leisure,Which rugby ground is sometimes referred to as the Cabbage Patch? ,Twickenham ,General,Benthos are plants and animals living where,Water,General,Round which planet do the moons Ganymede and Callisto orbit,Jupiter -Food & Drink,"Iceberg, Boston, and Bibb are types of What ",Lettuce ,Technology & Video Games,What object did you need to get to the secret room in Atari's 'Adventure'? ,The dot,General,Roller coasters originated in what country,Russia - ice on sleds -General,Aaron Copeland wrote a ballet about which American folk hero,Billy the Kid,General,Strabismus is another name for which affliction,Squint,General,What is the Capital of: Martinique,Fort-de-france -General,Which superstar film actor's real narne is T.C. Mapother IV,Tom cruise,General,What was Britain's first colony (annexed in 1583),Newfoundland,General,What is Colombo's first name,Phillip -Geography,In Which English City Will You Find The Crucible Theatre ,Sheffield , Geography,What US state is completely surrounded by the Pacific Ocean?,Hawaii, History & Holidays,Which Mutiny Took Place In 1789? ,Mutiny On The Bounty  -General,"Humans are 10,000 times more sexually active that what animal",Rabbits,General,What did the song '867-5309/jenny' spawn for tommy tutone,Lawsuit,General,What are double sixes called on dice,Boxcars -General,What pop group was originally named 'The Quarrymen',The Beatles,General,How many air force one(s) are there,Two,General,"Where is a nave, apse, atrium and narthex",Basilica -General,Film is to Oscar as Mystery novel is to,Edgar,General,The capital of Romania,Bucuresti,General,What is the Capital of: El Salvador,San salvador -General,Who painted' A Bar at the Folies Bergere' (1882),Edouard manet,General,Name the river that flows through Baghdad,Tigris,General,"If it's 12.00 noon GMT - what time is it in Sydney, Australia?",10.00pm - Geography,What country was once known as 'The Breadbasket of Russia'?,Ukraine,General,In The World Of Dancing From Which Country Does The Tango Originate ?,Argentina,General,Who is tippi hedren's daughter,Melanie griffith -General,Who was the 2nd president of the U.S.,John adams,General,"Cornbread, Turkey and Sweet potatoes made up the first what",TV Dinner,General,Part of a theatre for the audience,Auditorium -General,Which computer firm made a model numbered ZX80,Sinclair,General,What is the largest cell in a human body,Ovum,General,In which country are condoms most commonly used,Japan -General,What is the Capital of: Wallis and Futuna,Mata-utu,General,Wo Fat was the enemy of which TV detective,Steve MacGarett,Science & Nature,What is the instrument used to measure atmospheric pressure ,Barometer  -General,Egyptian god credited with first making beer,Osiris,General,"If a dog is canine, cat feline what creature is accipitrine",A hawk,Music,"Who Wrote The Theme Tune To The James Bond Movie ""A View To A Kill""",Duran Duran -General,What meets the Atlantic Ocean at the Cape of Good Hope,Indian ocean,Sports & Leisure,What was Evonne Goolagong's married name ,Cawley ,General,What is the formal corporate slogan of Google?,Don't Be Evil -General,Who created 'trepanning',Dr bart hughes,General,Who played The Talented Mr Ripley,Matt Damon,General,Who had a hit with Tiger Feet,Mud -General,What is the Capital of: Zambia,Lusaka,General,"What can be Inline, flat or v",Car cylinders, Geography,What is the capital of Japan ?,Tokyo - History & Holidays,Which Chinese Dynasty Lasted From 1368-1644? ,Ming ,Music,In 1989 Bobby Brown Was the First American Solo Male Artist To Spend The Most Weeks Since Who In 1977,Elvis Presley,General,"Scuba: if a marine animal cannot be identified, a diver should _____",Avoid it completely -Geography,What is the capital of Singapore,Singapore,Science & Nature,And Where Did His Brother Repeat The Experiment A Few Days Later ,"Fort Meyer, Virginia ",General,Which group had a hit in 1985 with Everybody wants to Rule the World,Tears for fears -General,What is the Capital of: United States,Washington dc,General,Which Famous Musician Married Star Wars Actress Carrie Fisher On Aug 16 1983,Paul Simon,General,The chako war 1932 1935 was between which two countries,Bolivia and Paraguay -General,A crested parrot,Cockatoo, History & Holidays,Which island was Napoleon from?,Corsica,Technology & Video Games,Final Fantasy Legend 1-3 are known in Japan as what? ,SaGa 1-3 -General,"Which company produces PageMaker, Photoshop and Acrobat",Adobe,Geography,Where Is The Worlds Busiest International Airport ,London Heathrow ,General,On which river does Washington D. C. stand?,Potomac -General,Of The Known Planets Which One Is Nearest The Sun,Mercury,General,What arabian peninsula nations recently merged under communist leadership,Yemen,General,"What is the common name for tinea, a fungal skin condition, when it attacks the feet",Athlete's foot -General,After whose rebellion were the 'Bloody Assizes' presided over by the infamous Judge Jeffreys,Duke of monmouth, History & Holidays,Who Lead The British Labour Party Before Harold Wilson? ,Hugh Gaitskell ,General,NaOH Is The Chemical Symbol For What,Sodium Hydroxide Or Caustic Soda -General,Who Provided The Voice Of Buzby In The Old BT Adverts Of The 1980's,Bernard Cribbins,General,What is the SI base unit of electrical current,Amperes,General,The Sublime Porte was the Court of Government of which Empire,Turkish/ottoman -Music,What Was Rolf Harris 's First Hit,Tie Me Kangaroo Down Sport, History & Holidays,Who Was Shot In Dallas On 24 th November 1963 ,Lee Harvey Oswald ,General,Men average 12 a year women 18 a year - what,Read Books -General,Which BBC Newsreader Advertised Cow & Gate Baby Food In The 1980‘s?,Martin Lewis,General,What scale measures temperature,Rankine scale,General,Which sport is played by the Sheffield Steelers,Ice hockey -Mathematics,Who invented logarithms ?,John Napier, History & Holidays,"In which 1984 film does the character of Billy Peltzer bring Christmas chaos to the town of Kingston Falls, when he inadvertently feeds someone he shouldn't after midnight ",Gremlins ,General,This assassin of Julius Caesar was his friend,Marcus brutus -General,Of what is 'soweto' in south africa an abbreviation,South west township,General,Which group had hits with Fernando and Angelo,Brotherhood of Man,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 -General,What in reality was Dr McCoy's medical scanner in Star Trek,A Salt Shaker,General,What is the first name of the son of David and Victoria Beckham,Brooklyn,General,Who sang Move em out head em up head em up move em on,Frankie Lane Rawhide -Science & Nature,What Does BASIC Stand For In Computing Terms ,Beginners All Purpose Symbolic/Standard Instruction Code ,General,What is the flower that stands for: do not abuse,Saffron,General,What was the original scumbag,Condom -Geography,Which European country has the lowest population density,Iceland,General,The feeling of having experienced something before is known as _______,Deja vu,Music,William Bailey Is The Real Name Of Whch Singer,Axl Rose -General,A Baseball travels 9% faster in which US city,Denver - thinner air,General,Which object was known as a Churchwarden,Long clay pipe,General,What English china company has a lion as it's logo,Royal Doulton -General,What is an octothrope,The # symbol,Music,"Who Had A Hit In 1996 With ""Naked""",Louise,General,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 -General,What muscle is joined by the lingual nerve to the brain,Tongue,General,A gritty psychedelic version of Dale Hawkin's 'Suzy Q' was on which group's first album in 1968,Creedence Clearwater Revival,Food & Drink,What Is The Name Of The Dish Of Cold Meat Served In Aspic ,Ballotine  -Science & Nature," 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,Music,Woody Cook Born In December 2000 Is The Son Of Which Couple,Norman Cook & Zoe Ball,General,Which Prime Minister of Pakistan was deposed in a military coup in October 1999,Nawaz sharif -Science & Nature,Which part of a cat's eye reflects light ?,Tapetum,General,In 1987 U2 won Grammy for best album of year name it,The Joshua Tree,General,There can be only one.,Highlander -General,Where is maxim's restaurant,Paris,General,"Medically, what are lentigenes",Freckles,General,What time was it when the mouse ran down the clock,One o'clock -General,"Is right music: who recorded ""sos""",Abba,General,From the coast of which county does the padstow lifeboat get launched,Cornwall,General,What is the name of the spicy paste that accompanies dishes such as couscous in North African cuisine,Harissa -General,What is a group of owls,Parliament,General,Why did the chicken cross the road,To get to the other side,General,"In the old gag, where is prince albert",In a can -Music,"Who had a hit in 1987 with the single, Tonight, Tonight, Tonight?",Genesis,General,To whom did denmark sell the virgin islands,United states,General,In New Jersey 1879 stopping a constable doing what $25 fine,Catching a runaway goat -General,What singer's February 6th birthday is a national holiday in Jamaica,Bob,General,Which famous building was built by Shah Jehan ?,Taj Mahal,General,What is the state fish of Hawaii - in Hawaiian,Humunuku Apua'a -Science & Nature,Where Did The Chrysanthemum Originate? ,Japan ,General,Which mountain is called Goddess of the Harvest by the locals,Annapurna in Nepal,General,From what animal is mutton,Sheep -General,Who founded a monastery on Lindisfarne in AD 635,Saint aidan,General,Who sang the song 'Jack your Body' in 1987,Steve 'silk' hurley,General,Thorburn what canal connects lake ontario and lake erie,Welland canal -General,Which edible nut of the American hickory tree is similar to a Walnut,Pecan,General,In the Bible who was Adam and Eves youngest child,Seth or Shet,Music,"""With You Im Born Again"" Reached No.2 In 1979 For Which Pair",Billy Preston & Syreeta - Geography,What is the basic unit of currency for Mauritania ?,Ouguiya,General,What job has the longest lifespan in the USA average age 77,Nuns,General, Legal Terms: A formal agreement enforceable by law.,Contract -General,"""Sindinology"" Is A Well Known Historical Debate Concerning The Origins Of What",The Holy Shroud Of Turin,Science & Nature,"Due to a lack of vitamin C, sailors used to contract this disease.",Scurvy,General,"An old, short, large bored gun",Blunderbuss -General,Which company is owned by Bill Gates,Microsoft, Geography,What Asian city was once called Edo?,Tokyo, History & Holidays,What Are The Names Of The Ghosts In The Classic 80's Video Game Pac Man ,Inky Pinky Blinky & Clyde  -Food & Drink,Small cubes of fried or toasted bread ,Croutons ,Music,Eddie Vedder Is Lead Singer With Which Band,Pearl Jam,General,Who's Sporting Comeback Had The Most Viewers On The 18th FEB 1994 Attracting A Whopping 23.9 Million People,Torvill & Dean -Religion & Mythology,Who is the greek equivalent of the roman god Juno,Hera,Science & Nature,In what body part does an osteopath specialise?,Bones,General,What uses 28 calories if done for one minute,Kiss -General,Which Greek philosopher wrote The Republic and The Laws,Plato,Music,Which Pirate Died In 1966 Aged 26,Johnny Kidd,General,"Which well known novelist, has written a children book called 'Haroun and the Sea of Dreams",Salman rushdie -Music,Which British Band Released Two Hit Albums In The 1970's With Titles Taken From Marx Bros Film,Queen (A Night At The Opera & A Day At the Races),General,Where is antofagasta,Chile,General,The American Soceity of Magicians has status of being what?,The Largest Magic Organistation - History & Holidays,Who Had An 80's Hit With The Song 'Queen of Hearts' ,Juice Newton ,General,Who sang 'kind of a drag' in 1966,Buckinghams,General,Which racist organisation was formed in tennessee in 1865,Ku klux klan -General,In which novel did Edgar Linton marry Catherine Earnshaw,Wuthering heights,General,What world capital city is heated by volcanic springs,Reykjavik (Iceland),General,What is 'tizwin',Indian corn beer -Music,What Country Did The Pop Duo Roxette Come From,Sweden,General,The star Castor is in which constellation,Gemini,General,The countries of Sarawak and Brunei lie on which island,Borneo -General,The Harlem Globetrotters had what signature tune,Sweet Georgia Brown,General,The star constellation Grus has what English name,The Crane,General,Who has the world's largest double-decker tram fleet,Hong kong -General,"Alphabetically, what were the two cities in 'A Tale of Two Cities'",London & paris,General,What is the english equivalent of the name ivan,John,Music,"Who Recorded Albums Entitled ""Mystery"", ""The Beat Goes On"" And ""Near The Beginning""",Vanilla Fudge -General,In what city is the worlds largest medieval cathedral,Seville,General,Approx 800 people died at a firework display in Paris in what year,1770,General,7% of Irelands annual barley crop is used for what,Making Guinness -Science & Nature,The closest living relative of this African mammal is the giraffe.,Okapi, History & Holidays,The Devonian Period is also known as the Age of __________.,Fish,Science & Nature,Who was the first to use rubber gloves during surgery?,Dr. W. S. Halstead -Food & Drink,What is added to Whisky to make is Whisky Mac? ,Giner Wine ,Religion & Mythology,Which ancient continent is said to be submerged,Atlantis,General,What is the right side of a ship called,Starboard -Science & Nature,What is the name given to the short tail of a rabbit ,Scut ,General,"An American folk dance with an even number of couples forming a square, two lines, or a circle. The dance is comprised of figures announced by a caller.",Square dance,Sports & Leisure,"The Nursery End, The Pavilion End & St John's Road Are All Linked With Which Sporting Ground? ",Lords  -General,The process of adding a number to itself a certain number of times is called?,Multiplication,General,Yabusame is the Japanese version of what sport,Archery,General,"Social dances usually performed by couples, including the fox-trot, waltz, tango, rumba and cha cha.",Ballroom dances -General,What do Christians call the period of fasting before Easter,Lent,General,In 18th century England what would you do with whim wham,Eat it Cream sponge,General,"Of what are throat, foxing and platform parts?",Shoe -General,"In Greek mythology, what did daedalus construct for minos",Labyrinth,General,Whats the chemical formula CH3COOH commonly known as?,Vinegar,General,What product only sold 8 in its first year in the USA,Remmington Typewriters - History & Holidays,"What treaty, signed in 1713, ended the War of the Spanish Succession?",Treaty of Utrecht,Science & Nature,What element has the periodic table name Sn ?,Tin,General,Who invented the Windows o s,Bill gates -General,How were the camels carrying abdul kassem ismael's library trained to walk,In alphabetical order,General,Who was the founder of Boy's Town,Father flanagan,Art & Literature,What trilogy did J.R.R. Tolkien write ?,Lord of the Rings -General,"The cooking term ""parmentier"" indicates which vegetable",Potatoes,General,"What Type Of Foodstuff Is A ""Turophile"" Particularly Fond Of ""Some Are Addicted""",Cheese,General,What Venetian traveler's printed journal did Columbus have a copy of,Marco polo's marco polos marco polo -General,What is an ideo locator,You are here' arrow,General,Which religious festival begins with the sighting of the new moon,Ramadan,General,What is the flower that stands for: precocity,May rose -Entertainment,Tess Trueheart married which plainclothes detective?,Dick Tracy,General,Jamestown is the capital and chief port of which Atlantic island,St. helena,General,What is the highest scoring english word in 'scrabble',Quartzy -General,Textophobia is a fear of ______,Certain fabrics,General,What rock magazine that came out in the eighties is now Rolling Stone's major competitor?,Spin,Music,"Who Recorded The Album ""Nylon Curtain""",Billy Joel -Music,What Was Donny Osmonds Real First Name,Donald,General,What did Grace Kelly become in 1956,Princess,General,When was the greek alphabet first used,800 bc -General,The medical journal The Lancet was established in which year,1823,General,Which language never have spelling contests - spell as sounded,Russian,Music,"Name The Band: Andy Summers, Gordon Sumner, Stewart Copeland",The Police -Geography,With what country is Fidel Castro associated,Cuba,Food & Drink,What Is A Kipper ,A Smoked Herring ,General,The latin qed spells out in full as,Quod erat demonstrandum -General,Which is the only species of mammal that can't jump?,Elephant,General,In Florida what is banned in public places after 6pm Thursdays,Farting,General,In which modern country is the region known as Cappadocia,Turkey -Religion & Mythology,Who is the mother of Apollo and Artemis?,Leto, History & Holidays,Halloween is celebrated on the eve of what Christian holiday is it A All Saints Day B St Swithins Day or C Feast of the Tabernacle ,A = All Saints Day ,General,The bering strait lies between russia and ______,Alaska -General,"Who recorded ""burning bridges"" in 1960",Jack scott,General,Which Female Icon Was Created By Ruth Handler In 1959,Barbie,General,What is the young of this animal called: Kangaroo,Joey -General,What is a group of this animal called: Raven,Unkindness, Geography,What is the capital of Saint Lucia ?,Castries,Music,Rockin Dopsie Queen Ida & Clifton Chenier Are All Cajun Music Legends. How Are They Connected Instrumentally,Accordion -Geography,What is the capital of Qatar,Doha,General,Greek Roman Apollo Babylonian Marduk Indian Vishnu gods ?,Healing,General,Grand Turk is the name of the ship - where would you see it,Old Spice cologne bottle -General,What is a Dolly Varden,Large Hat,General,What controversial book did germaine greer write,The female eunuch,General,When was the first republic of France was proclaimed in,1792 -General,Poor whites in florida and georgia are called 'crackers' because of the name of their principal staple food which is what,Cracked corn,General,What do the letters std stand for,Sexually transmitted disease,Geography,What is the capital of Bolivia,La paz -General,What happened to you if you get a nosicomial condition,Infection caught in hospital,General,The average person in a lifetime grows 7 foot of what,Nose Hair,General,What is the flower that stands for: esteem,Garden sage -Art & Literature,"Author of ""The Lighthouse"" and ""Eminent Victorians""?",Virginia Woolf,General,What is Wynonna Judd's real name?,Christina Clair Ciminella,General,Semiotics is the study of what,Signs or symbols -General,What is the fear of movement or motion known as,Kinetophobia,General,Milo what is the binot-simon scale used to measure,Intelligence,General,What river divides the dutch capital of amsterdam in two,Amstel -Entertainment,What is the name of Pearce Brosnan's first James Bond film?,Goldeneye,General,What is a baby squirrel called,Kit or Kitten,General,Luke Halpin Sandy Tommy Norden Bud what 1960s TV show,Flipper -General,What word means an attack of nerves suffered by sportsman especially golfers,Yips,General,What was the number of the M.A.S.H. unit in the film and television series of the same name,4077,General,"On Laverne & Shirley,what was Laverne's favorite drink?",Milk and Pepsi -General,"Who recorded the album ""there and back"" in 1980",Jeff beck,General,In a church who would use the chancel,Choir they sit there,General,What is the only country with a bible on its flag,Dominican republic -General,"The study of natural phenomena: motion, forces, light, sound, etc. Is called ______",Physics,General,What is the name of the syrup drained from raw sugar,Molasses,General,In which novel of 1874 does Sergeant Troy appear,Far from the madding crowd -General,What is Challa,Bread - often plaited,General,"From which Congreve play comes the line, 'Music has charms to soothe a savage breast'",The mourning bride,General,Aerofloat Is The National Airline Of Which Country,Russia -General,What Canadian Prime Minister retired in 1984,Pierre Trudeau,General,A person 100 or more years old,Centenarian,General,Who was Douglas Elton Ullman better known as,Douglas Fairbanks Senior -General,Gabbro is which type of rock,Igneous,Science & Nature, 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,General,What part of the polar bear is highly intoxicating to eskimos,Liver -General,"What nation's populace watches the most TV, per capita",Japan's japans japan,General,What links Dr Spock Errol Flynn and Emperor Nero,Olympics Rowing Boxing Chariot,General,In 1789 Britain legally adopted what officially,Hanging - before it was burning -Music,"""Blaze Of Glory"" Was A Hit In 1990 For Whom",Jon Bon Jovi,General,What is a percoid,A bony fish,General,Triplane driving: what country is identified by the letter i,Italy -General,What is the fear of dirt or contamination known as,Molysmophobia, Geography,What is the basic unit of currency for Namibia ?,Dollar,Music,"Who Sang About A Denim ""Demi-God"" In 1962",Mark Wynter / Venus In Blue Jeans -General,What state is the second largest of the U.S.,Texas,Music,"Whose Albums Include ""Reproduction"", ""Love And Dancing"", ""Dare""",The Human League,General,"In which State is the Little Bighorn, scene of Custer's last stand",Montana -General,What is the young of this animal called: Sheep,Lamb lambkins,General,What is another name for the carambula,Star fruit,General,"Where was Mohammed, the founder of Islam born",Mecca -General,What U.S. state includes the telephone area code 702,Nevada,General,Which European city is served by Leonardo Da Vinci Airport??,Rome,Sports & Leisure,In which sport is the America's Cup awarded?,Sailing -General,What's the capital of Majorca?,Palma,Science & Nature, The leech will gorge itself up to __________ its body weight and then just fall off its victim.,Five times,General,What is the zodiacal symbol for Capricorn?,Goat -General,What is the capitol of Belarus,Minsk,Technology & Video Games,What is the name of the Star Fox Team's cocky wingman? ,Falco Lombardi,General,Who was the Greek equivalent of the Roman god Vulcan,Hephaestus -General,What is the young of this animal called: Deer,Fawn yearling,General,What Does A Dendrologist Study,Trees & Shrubs,General,"What sport uses stumps, bails & bats",Cricket -General,What is an angle greater than 180 degrees and less than 360 degrees,Reflex,Art & Literature,What Is The Name Given To The Painting Medium Involving Egg Yolks ,Tempera ,General,What has a range of 28 miles,Aim-7 sparrow -General,How many months are there in a year,12,General,Approximately 40 million of what are consumed each year,Bananas,General,As what did Al Capone's business cards identify him,Furniture Dealer -General,Portable underwater breathing apparatus,Aqualung, History & Holidays,What was the last Port of call for the Titanic?,Queenstown, Geography,On which river was Rome built ?,Tiber -Food & Drink,Which countrys does one associate with the following foods or drinks 'Barmbrack' ,Ireland ,General,Jimmy Carter once thought he saw a UFO; what was it,Venus,General,Sam Weller was whose servant in a Dickens book,Samuel Pickwick -Food & Drink,Which countrys does one associate with the following foods or drinks: 'Sachertorte' ,Austria ,General,Who discovered the circulation of blood,William harvey,General,Who owned jerusalem before israel,Jordan -General,"The Russian revolutionary, Leon Trotsky, was exiled three times and eventually assassinated in which country",Mexico,Entertainment,Who sang about 'Commitment'?,Leann Rhimes, History & Holidays,Which great Renaissance figure had the surname Buonarroti? ,Michelangelo  - History & Holidays,Presepe in Italy refers to what Christmas tradition? ,Nativity scene (literally meaning crib) ,General,Who met at Ujiji in 1871,H M Stanley and Dr. Livingstone, History & Holidays,In 1960 who did Bobby Darin marry. ,Sandra Dee  -General,"Cardinal, Barlinka and Napoleon are varieties of what",Black Grapes, History & Holidays,What Is The Title Of The 1992 Belgian Film About A Crew Following The Expolits Of A Serial Killer ,Man Bites Dog ,General,Type of Dodge also a snake,Viper -General,What toy is manufactured to a tolerance of 5 thou of a millimetre,Lego,General,What Is The Auto Pilot Called In An Aeroplane,George,General,What was the first 90 minute TV series in 1962,The Virginian -General,What tropic passes through Mexico,Cancer,General,What is the most consumed fruit in the US,Coffee Bean,General,What sex is a filly,Female -Music,Concrete And Clay Was A 1964 Hit For Which UK Band,Unit Four Plus Two,General,Anna M Jarvis of Philadelphia instituted what she never qualified,Mothers Day May 1908 Childless,General,How many cars are permitted to take part in a Formula One race,26 -General,What's the worlds widest river,Amazon,Sports & Leisure,What sport do neither participents or spectators know the score until the end?,Boxing,Food & Drink,Which country is the ancient home of chocolate? ,Mexico  - Geography,In which continent would you find the Yangtze river ?,Asia,General,What term is used to describe the mind functioning as the center of thought and behavior,Psyche,General,What is the Taj Majal made of?,Marble -General,How many possible opening moves does white have at the start of a game of chess,20,Geography,Which Pacific Nation Gained Independence From New Zealand In 1962 ,Western Samoa ,General,Names from jobs - Baker Cook obvious what was a Pallistair,Fence maker -General,In what direction does the nile river flow,North,General,"What are chrysolite, beryl, jasper & tourmaline",Gems,General,48 extras from what Oscar win film died within a year making it,Babe - all pigs -General,"Brian eno released a us 1978 lp titled ""before and after _____""",Science,General,What is the correct name for The Laughing Jackass,Kookaburra,General,What is the name given to a white sauce flavoured with cheese,Mornay -Geography,Chicago stands on the banks of which lake? ,Michigan ,General,90% of bird species are what,Monogamous,General,Jesse Owens is associated with what sport,Athletics -General,Who said 'History is bunk'',Henry ford,General,Which musical instrument was originally called a busine,13th century trumpet,General,U.S. captials Washington,Olympia -General,Sylvester and Tweety Pie - Cat Bird started out as what,Clown and Baby,General,"Who published ""Poor Richards Almanack""",Benjamin franklin,General,Which country won the gold medal for football at the 1996 Atlanta Olympics,Nigeria -General,In Greek mythology Deianeira was the wife of who,Hercules,General,On which river does St. Petersburg in Russia stand,Neva,General,Path or trajectory of a body through space,Orbit -General,"Who was the backup singer on alice cooper's ""muscle of love"" lp",Liza,General,What were Twinkletoes - Lucky Jim (stuffed cats) first to do,Fly across Atlantic Alcock Brown,Entertainment,Who sang about Desmond and Molly Jones?,The Beatles -General,S J Perelman wrote the screen plays for many of the films starring which zany comedians,Marx brothers,General,Who developed the laws of electrolysis,Michael faraday,Music,Which Record Label Has Simply Red Recorded Under In The 90's,East West -General,Who invented the Parking Meter,Carlton c mcgee,General,"Which country has regions named Cyreniaca, Tripolitania and Fezzan",Libya,General,To who is a polar bear's liver highly intoxicating,Eskimos -General,Johnson who married george harrison's former wife,Eric clapton,General,"Who sculpted Rima, Genisis and Ecco Homo",Jacob Epstein,General,How many trouser legs are there in a standard Japanese kimono,None -General,What is the name of the smaller currency unit that an Austrian schilling is divided into,Groschen,Geography,"A whirlpool below ____________ iced over for the first time on record, on March 25, 1955.",Niagara falls,General,In which country would you find the Kremista Dam,Greece -General,Which dancing represents fertility through death and rebirth,Morris dancing,General,When was black the most common colour for automobiles,During the depression,General,Not Indians what links Cherokee Apache Arapaho Comanche,Piper Aircraft -Sports & Leisure,What Are The 6 Weapons Used In A Game Of Cluedo ,"Candlestick,Lead Pipe, Dagger, Spanner, Rope, Revolver ",General,"What are Eastern, Central, Mountain, and Pacific ?",American Time Zones,General,Which is the smallest u.s state,Rhode island - History & Holidays,What made the crew sick in the movie Airplane? ,The fish ,Music,"Name The Year Relax Reaches No.1 In The UK, ""This Is Spinal Tap"", Born In The USA",1984,General,In which country is Mount Ossa,Greece -General,Which religions name means The way of the Gods,Shinto,Music,"Who Recorded The 1969 Album ""Goodbye""",Cream,General,Which of the United States is nicknamed the Equality State,Wyoming -General,In what country is the town of Limoges,France,General,What whisky brand was advertised with two terrier dogs,Black & White,General,The average one has 248 muscles in its head - what,Caterpillar -General,Raw vegetebles served as an hors d'oeuvre are called what,Crudites,Science & Nature,Who made the first phone call to the moon?,Richard Nixon,General,What is the sum of 91 x 452,41132 -General,Which companies name translates as rising sun,Hitachi,General,Which composer and pianist became Prime Minister of Poland in 1919,Paderewski,General,What was an Egyptian king called,Pharaoh -General,What is the Capital of: Mayotte,Mamoutzou,General,In Greek mythology what type of creature was Chiron,Wise Centaur,Toys & Games,How many dots are on a twister mat?,Thirty -Science & Nature,Of What Is Renolgy The Area Of Study ,The Kidneys ,General,"Which species of animal has sub-species which include Maasai, Reticulated and Rothschild's",Giraffe,General,The first skyscraper in the United States was built in which city?,Chicago -General,Hotfoot Teddy was the original name of what icon,Smokey the Bear,General,Who won the 1979 Nobel Peace Prize,Mother teresa,Music,"Which Group Is Attributed To Introducing Dina Carrol On ""It's Tooi Late""",Quartz - Geography,Under what river does the Holland Tunnel run?,Hudson,General,In Portsmouth Ohio who does the law rank with vagrants thieves,Baseball Players suspicious chars,General,What do the initials j.p. stand for after a person's name,Justice of the peace -General,"What pop group had a ""Message in a Bottle""",Police,Geography,What is the capital of Taiwan,Taipei,General,George Washington became the first president of the U.S. in what year,1789 -General,In what city was the final of the 1991 Canada Cup played,Hamilton,General,Where is honshu island,Japan,General,What city was chosen but refused the 1976 Winter Olympics,Denver -General,If You Suffer From Aulophobia What Are You Afraid Of?,Flutes,General,According to a survey what is Americans favourite smell,Bananas,General,What is the Morse code representation for the letter T,Single dash -General,Which Former England International Was The First Player To Be Born After England's 1966 World Cup Victory,Tony Adams,General,Which club did Eusebio play for throughout the 1960s,Benfica,General,The blood of mammals is what color,Red -General,Who was the pop-up figure in the fun house in The Man With the Golden Gun,Al,General,What did Webster call his adoptive parents?,Ma'am and George,General,What was James Shalto Douglas claim to sporting fame,Marquis of Queensbury - Boxing -General,English law males should do it 2 hours week watched by vicar,Archery Practice,Sports & Leisure,What did jockey John White do in 1993 for which he is likely to be best remembered? ,Won Grand National that was void after false starts ,Geography,What is the capital of Greece,Athens - Language,What is the only English word formed by the first three letters of the alphabet?,Cab,Sports & Leisure,Who Were The Only 2 Players To Score For England In The 1986 Football World Cup Finals? (PFE) ,Gary Lineker & Peter Beardsley ,General,What is Romaic,The modern Greek language -General,"Which Singer Sang The Title Song To The Disney Movie ""The Aristocats""",Maurice Chevalier,General,What is unusual about mating in the whiptail lizard,No Males - females, History & Holidays,Which of Courteney Coxs co-stars from the Scream films is now her husband ,David Arquette  -General,Bell View in Manchester built in 1928 was Britain's first what,Greyhound Stadium,General,"Which film ends with 'after all, tomorrow is another day'",Gone with the wind,General,What was the first team to play in what is now Wrigley Field,Chicago whales -General,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,General,Teichi Igarashi climbed what mountain at the age of 99,Mount fuji,General,"Who said 'We're not in the hamburger business, we're in showbusiness'?",Ray Kroc -General,"What City is nicknamed the ""Glass capital of the world""","Toledo, Ohio", History & Holidays,What was the name of Norm's wife on Cheers? ,Vera ,General,A Scatologist studies what Excrement,Crap - Shit -General,What term is used for the technique of growing plants without soil,Hydroponics,General,Which U.S. president is on the five-dollar bill?,Abraham Lincoln,General,"What does a king cobra normally eat beetles, rodents or snakes",Snakes -General,What is the name of the largest gold refinery?,Rand Refinery,General,What was the first Disney animated film released on video,Dumbo,General,"Carnivorous mammal, native to the northern regions of North America, Europe, & Asia, whose habits are much like those of the badger",Wolverine -General,Whose record breaking performance in winning Olympic Gold in 1968 stood as a World record for 23 years,Bob beamon,General,What physical feature gives the platypus it's name,Webbed feet,General,Harry S Truman and Gerald Ford what's the non obvious link,Left handed -General,What were comfrey baths were believed to restore,Virginity,Music,Who was the first Beatles drummer?,Pete Best,General,What type of craft is the US's Airforce One?,Boeing 747 -General,The juice of which berry can be used to prevent and treat urinary tract problems,Cranberry,General,What continent boasts the greatst number of Roman Catholics,South america,General,"Which Band Formed in Sheffield Before Hitting The Big Time Were Previously Known As ""Vice Vesa""",ABC -General,What is a better known name of Switzerland's Mont Cervin,The matterhorn,Science & Nature,What genus of tree does the wattle belong?,Acacia,General,Ignoring cats what large animals purr when they are happy,Brahma Bulls - Geography,Which city is on the east side of San Francisco Bay?,Oakland,General,Les Reed wrote which famous song for a Welsh singer,Its not Unusual – Tom Jones,General,Name Donald Ducks father,Quackemore -General,The Algarve is in what country,Portugal, Geography,What ocean is found along the East border of Asia?,Pacific Ocean,Science & Nature,Which Country Is The Natural Habitat Of The Emu ,Australia  - Geography,Which South American country has both a Pacific and Atlantic coastline?,Colombia,General,Who appeared on the back of a u.s banknote in 1875,Pocahontas,Music,"Who Sang ""The Futures So Bright I Gotta Wear Shades""",Timbuk 3 -General,What British birds lay only one egg during the nesting season,Fulmar or Guillemot,Music,"What Year Was Prince's ""When Doves Cry"" Released",1984,General,In What Country Will You Find The Largest Waterfall In Europe,Norway -General,What fruit did Eve give to Adam in the bible,Fig – Apple mistranslation,General,Which Famous Newspaper Is Sometimes Referred To As “ The Old Grey Lady ”?,New York Times,General,Where would you find bead wires wrapping and sipes,On Tyres -General,Carara in Tuscany is famous for producing what,Marble,Geography,What is the capital of Kazakhstan,Alma_ata,Food & Drink,What French Word Is Used For The Water Ice Often Served Between Courses To Refresh The Palette ,Sorbet  -General,What is the answer to the meaning of life according to Douglas Adams in 'The Hitchhikers Guide to the Galaxy?,42,Music,Who Did Andy Bell Perform With In The Group Erasure,Vince Clark,General,What was the royal name 'mountbatten' originally,Battenberg -General,Parton what is the official birthplace of country music,Bristol,General,In the Old Testament who married his cousins Leah and Rachel,Jacob,Music,On Which Record Label Did The Bee Gees Release Their Many Saturday Night Fever Hits,RSO -General,Beijing drivers fined 40 Yuan doing what at pedestrian crossing,Stopping its illegal,Religion & Mythology,Who is the greek equivalent of the roman god Juno ?,Hera,Sports & Leisure,Which Sport Has The Davis Cup ,Tennis  - Geography,What is the most sacred river in India?,Ganges,General,What was the first British instrumental to top the USA charts,Telstar by The Tornados,General,What is known as amundsen scott station,South pole -General,Collective nouns - A nye of what,Pheasants,Music,What is Ringo Starr's real name?,Richard Starkey,General,What is the state capital of Washington,Olympia -Science & Nature,What is 'Nitrous Oxide' more commonly known as ,Laughing Gas ,Music,"Which 2 Are Missing From Dozy, Beaky & Tich",Dave Dee & Mick,Entertainment,This movie is about the migration of poor workers from the dust bowl to the Californian fruit valleys.,The Grapes of Wrath -General,What is the collective name for a group of larks called,Exaltation,General,Richard Carlisle invented an early vending machine selling what,Books,General,The furcula is what part of a bird,Wishbone -Food & Drink,"Booze Name: 1 1/2 oz. light rum, 1 lime, powdered sugar, fruit juice, blend w/crushed ice",Daiquiri,General,"Who was the last ""Emperor of India""",George vi,Art & Literature,Bob Kane created who?,Batman -General,What is the distance from earth to the sun,93 million miles,Music,Name One Of Big Country's Two Top Ten Hits Of 1983,Fields Of Fire & Chance,General,Marilyn Munroe was the model for which Disney Character,Tinker Bell -Music,Reaching No 3 What Was The first Singles Chart Entry For Smokie,If You Think You Know How You Love Me,Science & Nature,He founded our modern periodic table. Surname only?,Mendeleev, History & Holidays,In Which Year Was The Law Abolished That Allowed Witches To Be Burned ,1736  -Sports & Leisure,This sport allows substitutions without a stoppage in play.,Hockey,General,Which Italian city is at the heart of its fashion industry,Milan,General,In 19th century USA what was The Mongolian Curse,Opium -Religion & Mythology,Who is the Norse Watchman of the Gods ?,Heimdall,General,Before 1883 who were called kranks,Baseball fans – fan invented then,General,What building in New York has 43600 windows,World Trade Centre -Sports & Leisure,How many minutes is each period of hockey,20,General,Lack of vitamin B1 causes what condition,Beri Beri,General,What is the worlds largest herb,Banana -Music,Who Backing Group Is The Range,Bruce Hornsby, Geography,Boise is the capital of ______?,Idaho,General,In the book Treasure Island which character owns the Spyglass Inn,Long john silver -General,What is the original meaning of the word Shambles,Abattoir butcher),Music,"Name The Guitarist Thet Performed On Belinda Carlisles ""Mad About You""",Andy Taylor,Sports & Leisure,What Type Of Fruit Is Depicted On Top Of The Men's Singles Trophy At Wimbledon? ,A Pineapple  -General,On an ordinance survey map what does a H in circle represent,Hospital,General,What can stop the Duke of Earl,Nothing,General,The Thunderbirds boys were named after what theme,Apollo Astronauts - History & Holidays,He discovered the Grand Canyon.,Francisco Coronado,General,Which country had the first state victims compensation scheme,New Zealand in 1960,General,"In ""Family Ties"" who was Alex P. Keaton's idol?",Richard Nixon -General,What countries flag has two bars white top red bottom,Poland,General,From Which Country Do French Fries Originate?,Switzerland,General,Who composed the Brandeberg concertos full names,Johan Sebastian Bach -Music,"Who Asked ""Are You Gonna Go My Way"" In 1993",Lenny Kravitz,General,What media icon invaded Network 23?,Max Headroom,General,What is a group of nightingales,Watch -General,What is a group of this animal called: Rat,Pack swarm,Science & Nature,"Complex Numbers Have 2 Components , Name Them ",Real & Imaginary ,General,Who was the founder of the Quakers (both names),George Fox -General,"At one time, 6 white beads of this Indian currency were worth one penny",Wampum,General,Spiral slide at a funfair,Helter-skelter,General,Nessus killed Hercules - What was Nessus,Centaur -General,What was the name of the medical journal established by Dr Thomas Wakely,The lancet, History & Holidays,Apart From Anthony Perkins Which Other Performer From Psycho Also Appeared In Psycho 2 (23 Years Later) ,Vera Miles ,General,Phagophobia is a fear of ______,Swallowing -General,"""7X"" was used to refer to the secret ingredient of which drink?",Coca Cola,Music,Estimate of Paul's worth,$600 million,General,"Man At Saint Marks Her headline hit in 1984 was ""Girls Just Want To Have Fun""",Cyndi lauper -General,What was Paul the Apostles real name,Saul,General,"What's the international radio code word for the letter ""D""",Delta,General,What is a group of rabbits,Warren -Sports & Leisure,"What in sport, is 7 feet 9 quarter inches(2.375 metres) in length? ",The Oche in darts ,General,In Heraldry there are 60 varieties of what,Cross,Science & Nature,What Is The Common Name for Alopecia ,Baldness  -Geography,What lake is the source of the white nile ,Lake victoria ,Science & Nature,Who First Used Electric Ignition By Battery & Coil In 1886 ,Karl Benz ,General,"In the film 'star trek first contact', when picard shows lilly she is orbiting earth, australia and papua new guinea are clearly visible, but which country is missing",New zealand -General,"Kaleidoscope. Daddy, Palomino and Changes name the author",Danielle Steele,General,Who Won The BBC Sports Personality Of The Year In 1992,Paul Gascoigne,Music,Which Musician Actually Created Mantovani's Unique Sound,Ronald Binge -General,In 1940s California it was illegal to serve alcohol to who,Homosexuals,Food & Drink,Who Sang The 1967 Hit 'Drink Up Thy Zider' ,The Wurzels ,General,In Elkhart Indiana it's illegal for a barber to threaten to do what,Cut off youngsters ears -General,What show/game has characters such as bulbasaur and pikachu,Pokemon,Music,Who is Dr. Winston O'Boogie?,John Lennon,People & Places,How is Meg Lake better known? ,Mystic Meg  -General,Which group of professionals use computer dating the most,Teachers,Science & Nature,What is the smallest irreducible constituent of a chemical element known as? ,An Atom ,General,In Prokoviev's Peter and the Wolf what instrument is the wolf,Horn -General,What is another name for termites,White ants,Sports & Leisure,What Is The Name Of The White Ball In A Game Of Bowls ,The Jack ,Food & Drink,"If food is `au naturel', what does this mean? ",Plainly cooked or uncooked  -Music,"Who Had A Hit In 1991 With ""Bitter Tears""",Inxs,General,Which poet wrote A thing of beauty is a joy forever in Endymion,Keats, History & Holidays,What is the name for a noisy ghost or spirit ,Poltergeist  -General,Tintoretto did most of his painting in what city,Venice,General,Fragrant flowering African bulb,Freesia,General,"Which group sang the song ""Its Gonna Be Me""?",N'Sync -General,"Cheyenne, Navahoe and Arapaho are all what",Native american tribes,General,"In which musical is the song, 'Hey Big Spender' featured",Sweet charity,General,Give Me Just a Little More Time' was recorded by which group in 1970,Chairman of the Board -General,Arachnoid refers to what kind of creature,Spider,General,Which British poet was also a Jesuit priest,Gerald Manley Hopkins,General,"Which book begins ""Christmas wouldn't be Christmas without any presents""",Little women -Music,What was the title of Ike and Tina Turners only album?,"River Deep,Mountain high",General,What is the flower that stands for: refusal,Striped carnation,General,What do the letters IMF mean,International monetary fund -Music,"Which label released Donna Summer""s ""Love To Love You Baby""?",Casablanca,Science & Nature,"This poisonous, oily liquid occurs in tobacco leaves.",Nicotine,General,In what case did Perry Mason make his first appearance,The case of the Velvet Claws -General,In the Bible from whom did David steal his wife Bathsheba,The Hittite warrior Uriah,Music,What Was Chuck Berrys Only Number One,My Ding A Ling,General,In 1967 an Australian had one 11lb in weight - what,Carrot -Art & Literature,In which British national daily newspaper does Rupert The Bear appear? ,The Daily Express ,General, A person who starts fires maliciously is a(n) _________.,Arsonist,Toys & Games,You rotated blocks and matched up the colors to solve this puzzle.,Rubiks cube -Music,Billy Idol Quit Which Band To Embark On His Solo Career,Generation X,General,Which mountain was the home of the Greek Gods,"Mount olympus,", History & Holidays,On Dec 1st 1955 A Woman from Montgomery Alabama hit the headlines after refusing to give up her seat on a bus to make way for a white person what was her name? ,Rosa Parks  -General,"In 1986, what was the maximum fuel capacity imposed in formula 1 racing",One,Geography,In which state is the Mayo Clinic,Minnesota,General,"A mashie, niblick and wedge are types of what",Golf clubs -General,What is the name of the theme song for The People's Court,The Big One,General,Petrography is concerned with what,Rocks,General,What is the young of this animal called: Partridge,Cheeper -Science & Nature,What Is The Most Abundant Radioactive Element ,Uranim (238) ,Science & Nature," Two rats can become the progenitors of 15,000 rats in less than",1 year,General,Leather Apron was an alternative name for what famous figure,Jack the Ripper -General,Which island was the site of the Australian Grand Prix,Philip Island,General,Dutch cheese with red rind,Edam,Geography,In what city is the leaning tower ,Pisa  -General,In French legend who is the lover of Abelard,Heloise,General,What are the ingredients of a daiquiri,Rum and lemon,General,The word opera is a plural of opus meaning what,Grand Work -General,The religious text Tripitaka comes from which religion,Buddhism,General,The ________ kills more people world wide than all the poisonous snakes combined,Honeybee,General,Where can you find Clippit,Excel help assistant paperclip -General,In Feng Shui what colour inspires passion,Pink, Geography,What is the basic unit of currency for Trinidad and Tobago ?,Dollar,General,"In Judaism there are 3 cardinal sins Idolatry, Adultery and what",Murder -Sports & Leisure,Which Football Team Were Originally Nicknamed The Biscuitmen? ,Reading ,General,"What presidential ticket featured the slogan: ""get america moving again""",Carter and mondale carter mondale carter and mondale,General,What is the most popular type of holiday greeting card mailed in the united states,Christmas -Sports & Leisure,What Is The Official Circumference Of A Football ,27-28 Inches ,General,The fennec is the smallest of its species - the smallest what,Fox,General,Which country produces the most full length feature films,India -General,Which Australian writer won the Nobel prize in 1973,Patrick White,General,What was the name of the submarine that sank in the Barents Sea in August this year,Kursk, History & Holidays,What was marco polo's home town ,Venice  -Tech & Video Games,How many fighters are playable in 'Street Fighter II'? ,8,General,What season begins with the vernal equinox,Spring,General,The first one was delivered in 1933 - the first what,Singing Telegram -General,"Who recorded the soundtrack for the movie ""flash gordon""",Queen,General,In the Solar system there are 2 Mount Olympus's Greece and where,Mars,General,What common word comes from two Greek art/craft area study,Technology tekhne logia -General,What sort of ship was the Marie Celeste,Brigantine,General,What is the product for the slogan 'it has seven natural fruit juices in it',Hawaiian punch,Music,"Which Band Proclaimed ""We Don't Need No Education""",Pink Floyd -General,"In Jumanji, a stampede is released. What is the slowest animal?",Rhinoceros,General,Who wrote The Ugly Duckling,Hans christian anderson,Music,"What Song Features The Lyric ""I Was Working As A Waitress In A Cocktail Bar""",Don't You Want Me Baby -People & Places,Which Footballer Famously Slept With Several Miss Worlds Before Leaving Manchester United & Moving To Fulham ,George Best ,Science & Nature,Which Family Of Plants Sends Up Shoots In The Shape Of Croziers ,The Fren ,Science & Nature, A horse can sleep __________,Standing up -General,"What submarine had logged over 100,000 miles before being refueled in 1958",Uss nautilus,General,In which park are Queen Mary's gardens?,Regents Park,General,Name was the first city to mint its own gold coins in 1252,Florence – florin -General,As who is Vincent Furnier known?,Alice Cooper,General,What is attribution of divine honours on persons (living or dead) called,Apotheosis,General,George washington carver advocated planting peanuts and sweet potatoes to replace what,Cotton and tobacco -General,What is the highest waterfall in the Alps,The Richenbach Falls,General,"What character has been portrayed by reginald owen, alistair sim and albert finney",Scrooge,General,Petilent wine is what,Slightly sparkling -General,What was the name of the saloon in Gunsmoke,Longbranch,General,What is the legislative capital of South Africa,Cape town,General,The hood on a monks habit is call a,Cowl -General,Which Was The First University To Win University Challenge?,Leicester,Food & Drink,A Calzone Is A Folded Stuffed What? ,Pizza ,General,What does a racoon do before eating its food,Washes it in water -Science & Nature, The pronghorn __________ can run up to 61 miles per hour.,Antelope,Geography,Only one Canadian province borders at least one Great Lake: _________,Ontario,General,Which East African leader gave himself the title of 'Conqueror of the British Empire',Idi amin -General,What is the Welsh name for Wales,Cymru,General,How many black union soldiers were awarded the Congressional Medal of Honor,Sixteen,General,Francophobia is a fear of ______,Anything french -General,To camber something is to ______ it:,Curve,Food & Drink,What is severe Vitamin C deficiency called? ,Scurvy ,General,"The leaves of the tomato plant are poisonous, they contain ________?",Strychnine -General,On which canal is the Bingley Five Rise series of locks?,Leeds-Liverpool Canal,General,What does the red blood cell not have,Nucleus, History & Holidays,This frontiersman and politician was killed at the Alamo.,Davey crockett -General,What Canadian sketch comedy show helped launch John Candy's career?,SCtv,General,Who captured esquire's 'most dubious man of the year' award in 1980,Billy,Music,What Nationality Is KD Lang,Canadian -General,Jerome Siberman became famous as who,Gene Wilder, History & Holidays,Who fiddled while Rome burned?,Nero,General,Grenadine is a syrup from the juice of which fruit,Pomegranate -General,Which animal has the latin name 'Bos grunniens',Yak,General,The' Long John Silver Collection' housed on the Cutty Sark is the nations largest collection of what,Ship's figureheads,General,What does 'unicef' mean,United nations childrens' emergency fund -General,Palas is the correct name for what playing card,Queen of spades, History & Holidays,What did Peter Minuit buy in 1626 ?,Manhattan Island,General,Axe with an arched blade at right angle to handle,Adze -General,"The play ""Our Town"" is set where",Grover's corners,General,"In hockey, what is the equivalent of a rugby scrum",Face-off,Science & Nature,What is the name given given to the lowest temperature theoretically possible ,Absolute zero  -General,Which gas was named after the Greek word for 'sun',Helium,General,At which university did Spike Lee teach,Harvard,General,A Parthenophobe has a fear of what,Young Girls - Virgins -Music,Whose Real Name Is Cherilyn Sarkisian La Pier,Cher,General,What is the fear of contracting poliomyelitis known as,Poliosophobia,General,How long is an emerald anniversary,Sixty years -General,"Reaching number two in the UK charts in 1991, which was the first hit single for Right Said Fred",I'm too sexy,Sports & Leisure,Which English football team are nicknamed the Tractor Boys? ,Ipswich , History & Holidays,Which 60s film was based on the true 'life' story of Robert Stroud ,The Birdman of Alcatraz  -Music,"Who Had A Hit With The Song ""Say You Say Me""",Lionel Richie,Music,Hole Singer Courtney Love Was Married To Which Nirvana Star,Kurt Cobain,Geography,What continent's westernmost point is called cape verde ,Africa  -General,What was the name of the ship that brought Dracula to England,Demeter,General," A clip, shaped like a bar to keep a woman's hair in place is a _______.",Barrette, Geography,What is the correct name of Bangkok?,Krung Thep -Science & Nature,For What Is NA The Chemical Symbol ,Sodium ,Art & Literature,Who Wrote Jurassic Park ,Michael Crichton ,Geography,In which state is walla walla ,Washington  -Science & Nature,Where Were The Worlds First Windmills? ,In Iran In The 7th Century ,Science & Nature," 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,General,Who's Christian names inc Johannes Chrysostomus Theophilus,Wolfgangus Mozart -General,Who did Valerie Solernis shoot on Jun 3rd 1968 in New York,Andy Worhole,General,Which part of the body is operated on in a menisectomy,Knee, Geography,What is the basic unit of currency for Myanmar ?,Kyat -General,Of which country was Anastasio Somoza president during the 1960s and '70s,Nicaragua,Entertainment,Donald Duck comics were banned in Finland because he didn't wear ______?,Pants,Food & Drink,Which alcoholic drink is named after a Welsh Pirate? ,Captain Morgan  -General,In which battle were 4 japanese carriers destroyed,Midway,General,Who was Elia,Charles lamb,General,"Name the title which, together with Berlin Game and London Match completes Len Deighton's trilogy",Moscow set -Food & Drink,Which seed is the basic ingredient for tahina paste ? ,Sesame ,Food & Drink,What Are Prunes ,Dried Plums ,General,What is the SI unit of force,Newton -General,Sissy Jupe adopted by Thomas Gradgrind which Dickens novel,Hard Times,General,What does Vodka literally mean,Little Water,General,Trypanophobia is fear of what,Inoculations – Injections -General,What are you forbidden to fly an airplane over in india,Taj mahal,Entertainment,"In 1958, who had a pop music hit with 'Willie and the Hand Jive'?",Johnny Otis,General,Where were the 1952 Olympic games held,Helsinki -Science & Nature,Which Is The Largest Of The Poisonous Snakes? ,The King Cobra ,General,What is Martha's Vineyard,An island,Music,"For Which Group Did ""Candy Girl"" Reach No.1 In 1983",New Edition -General,"What was the primary occupation of characters in ""Falcon Crest""?",Vineyard owners.,General,What brassy songstress played lola lasagne on tv's batman,Ethel merman,General,What does a marsupial mouse have that other mice don't,A pouch pouch -General,Zerelda was the first name of what outlaws wife and mother,Jesse James,General,Who played steve erkel in 'family matters',Jaleel white,General,"In Which Movie Blockbuster Does ""Susan Backlinie"" Play The Character Christine ""Chrissy"" Watkins",Jaws -General,How long did Yuri Gagarin's first orbit round the Earth take,108 minutes,General,Who was igraine,King arthur's sister,Religion & Mythology,Which ancient continent is said to be submerged?,Atlantis -Tech & Video Games,How many bits are in a nibble ?,4,General,U.S. Captials - Nevada,Carson City,General,"What product is sold with the slogan ""just for the taste of it""'",Diet coke -General,As what is Constantinople now known,Istanbul,Food & Drink,"Which drink, one of Shakespeare's favourite tipples, is distilled from honey? ",Mead ,General,"Investigation what group's top selling lp was ""rumors""",Fleetwood mac -Art & Literature,Which French Authors Novel Germinal Depicts Life In A Mining Community ,Emile Zola ,General,Every 12 seconds in USA someone does what in a Holiday Inn,Steals a towel,General,What percent of ticket sales did arthur rubenstein demand from concerts,70 -General,A Regatta is a boat races - where was the original Regatta,Venice,General,Where is the US masters golf tournament always played,Augusta Georgia,Geography,"Name the sea north of Murmansk, Russia.",Barents -Science & Nature,What Is Caused Through A Spasm In The Diaphram ,A Hiccough ,General,"A ""Howards Lancer"" Is A Variety Of Which Type Of Fruit",Gooseberry,General,Glascow was voted the European City of Culture in which year,1990 -General,Torme Music: Who recorded Heartbreak Hotel in 1956,Elvis presley,General,"Who assisted behind the bar in ""Cheers"" before Woody",Coach,Music,Madonna Has Been In The Public Eye For Several Years But What Does Madonna Actually Mean?,My Lady -General,Who first wrote about the myth of Atlantis,Plato,General,In military terms what is a SLR,Self Loading Rifle,Sports & Leisure,"Which sport has a movement called a ""telemark""",Skiing -General,Slugs have 4 ______,Noses,General,What did neptune hold in his hand,Trident,General,The young Raphael sketched which famous work by Leonardo da Vinci while it was being painted,The mona lisa -General,What is a group of ravens,Unkindness,General,What north american indian peoples' name meant 'the ancient ones',Anasazi,General,"Which country cancelled national beauty contests 1992, claiming they were degrading",Canada -Sports & Leisure,What sport is played at Wrigley Field in Chicago Illinois - ,Baseball ,Science & Nature," 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,Music,Which 2 Records Both Reached No 12 For Judas Priest In 1980,Living After Midnight / Breakin The Law -Music,"Who Had Hits With The Songs ""Cambodia"" & ""You Keep me Hanging On""",Kim Wilde,General,"On 'the roseanne show', as what was david jacob known",D.j,General,What is another name for a fruit that is often called a pawpaw,Papaya -General,Coal is sometimes added to softdrinks to make them ______,Sweeter,Science & Nature, __________ of South and Central America and the Caribbean lay their eggs in February and March.,Iguanas,General,What bumbling andy griffith show character has the middle initial b,Barney -General,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,General,N. American wild dog,Coyote,General,Nephophobia is the fear of,Clouds -General,Hagiology is the study of what,Saints,General,Who is the silhouette on the major league baseball logo,Harmon killebrew,General,"Who is a successful recording artist, talented landscape artist, and author of children's books",Ricky van shelton -Science & Nature,Which Term Is Used For Electronic Intruments For Use In Aviation ,Avionics ,Music,Which Beatles song is credited to Both George Harrison & John Lennon?,Cry For A Shadow,General,What was the first TV show in colour,The Cisco Kid -General,Who is also known as Mr. Warmth?,Don Rickles,General,What is a group of kittens,Litter,Geography,What is the capital of Slovenia,Ljubljana -Sports & Leisure,What Is The Value Of The Letter (Q) In Scrabble ,10 points ,Sports & Leisure,From Which Football Club Did Arsenal Sign Thierry Henry? ,Juventus ,General,What is the only country in the world that starts with the letter O in English,Oman - History & Holidays,What is the weight of the largest pumpkin in the world is it A 1046 lbs B 1246 lbs or is it C 1446 lbs ,C 1446 lbs ,Geography,What is the capital of Moldova,Kishinev,General,What is the longest undammed river west of the Mississippi,Yellowstone river -Science & Nature, Deer have no __________,Gall bladders,General,Which mountain range forms a geographical boundary between Europe and Asia,Urals,General,Raiders what is the oakland raiders' motto,Commitment to excellence -General,What was the first battleship powered by steam turbines 1906,HMS Dreadnought,General,"New Zealand's National Day, the 6th February, is named after a Treaty of 1840. What is the day called",Waitangi day,General,Guiseppe Verdi wrote Aida - in what city was it premiered,Cairo - History & Holidays,What was the name of Charles Lindbergh's plane in which he completed the first non-stop solo trans-Atlantic flight? ,Spirit of St Louis (achieved in 1927) ,Entertainment,"Tarzan had a chimpanzee, what was his name?",Cheetah,General,In which country was Lord Beaverbrook born,Canada -General,What was a Royal Navy frigate accused throwing Cod War 1973,Carrots at Icelandic Gunboat,General,Country celebrates Aug 11 as independence day from France,Chad,Food & Drink,Which Famous Chef Released The Controversial Cookbook 'How To Cheat'' In 2008 ,Delia Smith  -General,Capital of Argentina,Buenos aires,General,What us state is columbia university located in,New york,General,Given 10 Years Either Way In Which Year Was The Mona Lisa Started,1503 -Geography,What is the capital of Gambia,Banjul, History & Holidays,What was the rank of Mark Phillips when he was married to Princess Anne in 1973? ,Lieutenant ,General,Whish actress was nominated for an Oscar for her part as a prostitute in the 1995 film Leaving Las Vegas,Elizabeth shue -Entertainment,"Who did the voices of Bugs Bunny, Sylvester and Tweety Pie?",Mel Blanc,Sports & Leisure,In 1970 What Did Football Referees Get That They Didn't Have Before ,Red & Yellow Cards ,Geography,In which city is the c.n. tower ,Toronto  - Language,What is the Israeli 'knesset'?,Parliament,General,What instrument does woody allen play,Clarinet,Entertainment,Name the fastest mouse in all of Mexico.,Speedy Gonzalez -General,Which is Britain's largest native carnivore,Badger,General,In cookery a ganache is made from cream and what,Chocolate,General,"In football, where are the hashmarks",Five-yard lines -General,What country calls itself Suomi,Finland,General,Which US born poet won the Nobel Prize for Literature in 1984?,TS Eliot,General,Who was captain of the Titanic,Edward smith -General,What is the 'word' used for multiple personality disorder,Mpd,General,What is singer Elaine Paige's nickname,Leather Lungs,General,Pip' is the hero in which novel by Charles Dickens,Great expectations -General,Lampy is the worlds oldest 1840s insured 1 million oldest what,Garden Gnome,General,Canaan Banana was the first president of where,Zimbabwe,Science & Nature,In what does a rhinologist specialise?,Human nose -General,Who directed 'the breakfast club',John hughes,Food & Drink,At That Temperature Centigrade Does Water Boil At ,100 Degrees C ,General,Leonardo Michelangelo Raphael How many squares are on a Shogi (Japanese chess) board,81 -General,Struthio Cameus is the Latin name of which creature,The Ostrich,General,Henry Fords first car lacked something we expect - what,Reverse gear,General,What is a tourbillion,Whirlwind -General,"What African country's name is Latin for ""free""",Liberia's liberias liberia,General,Name Eleanor Roosevelt's job 1932 husband became president,Editor of magazine Babies,General,Which Roman Emperors name means little boats,Caligula -General,President Hayes 1878 started which annual White house event,Easter Egg Roll,General,In 1900 caterer Harry Stevens introduce what words to language,Hot Dogs,General,20% of women first look at a mans what,Butt not face -General,Which Victorian became the world's most famous sufferer of neurofibromatosis,John merrick/elephant man,General,Where were both donny and marie osmond born,"Ogden, ut",Geography,Which European Country Generates The Highest Proportion Of It's Electricty By Hydroelectric Power Stations ,Norway  -Music,Who Was Jailed For His Behavoir On A Flight From Paris To Manchester In february 1998,Ian Brown,General,Nocturnal burrowing animal with black and white striped head,Badger,General,"Australian highwaymen or robbers who, in the late 18th and early 19th centuries, terrorized settlers in the New South Wales and Victoria regions",Bushrangers -People & Places,By what name is Robert Zimmerman better known as?,Bob Dylan,General,Who composed the musical work Fingal 's Cave,Mendelssohn,General,Whose autobiography is titled 'groucho and me',Groucho marx -General,What is measured on the Cephalic Index,Human head,Food & Drink,What are the main ingredients of a Horse's Neck? ,Brandy & Ginger ,General,In what Australian state would you find Swan Hill,Victoria -General,Men play it at 40 feet women 30 feet what game,Horseshoes,General,In wacky races what were the gang of criminals called,The Ant Hill Mob,General,What is the Capital of: Italy,Rome -General,The world's fastest reptile (21.7 mph) is a type of what,Iguana,Geography,Is The Tropic Of Capricorn North Or South Of The Equator ,South ,Sports & Leisure,Which sport is played by the Minnesota Twins? ,Baseball  -General,What is used as the basis of tequila,Cactus,Music,Which Pop Trio Disbanded When Charlie Simpson Announced He Was Leaving The Group?,Busted,Science & Nature," A jynx is a __________, also know as the wryneck because of its peculiar habit of twisting its neck.",Woodpecker -Entertainment,What does the term 'DJ' mean?,Disc Jockey, History & Holidays,Who was George Washington's vice-president?,John Adams,Geography,The _________________ is the lowest country in the world. It is estimated that 40 percent of the land is below sea level.,Netherlands -General,What is Pogonophobia the fear of,Beards,Music,"""From The Cradle"" Was A No.1 Album For Which British Legend In 1994",Eric Clapton,General,Of what are the central processing units of modern computers mostly composed,Silicone -General,With what sport was mildred ella didrikson associated,Athletics,General,Who played richie in 'happy days',Ron howard,General,What is the fear of stars known as,Siderophobia -Geography,What Is The National Airline Of Russia ,Maya Island Air ,General,John Glen first USA to orbit earth was in which service,US Marine Corps,Music,"""All That She Wants"" Was A Hot Hit For Which Swedish Pop Group",Ace Of Base -General,Clarence Birds Eye had what job,Fur Trader,General,What month was named after Latin for to open,April,General,What was Donald Fagen's first solo album title (1982),The Nightfly -General,What Gift Would You Buy Someone Who Is Celebrating Their 15th Wedding Anniversary,Crystal,General,Porgie in which book did the heroine serve as governess to the ward of the mysterious and moody edward rochester,Jane eyre, History & Holidays,"Who was the lead singer for Creedence Clearwater Revival, and recently released 'Blue Moon Swamp'?",John Fogerty -Toys & Games,"These are the two highest valued letters in ""Scrabble"". ""Q"" and _____.",Z,General,What is a group of this animal called: Mole,Labour,General,Which Fictional Literary Character Has Been Transformed Into The Most Movies?,Dracula -General,Which band recorded the live album 'Live and Dangerous',Thin lizzie,General,What's the most popular sport in South America,Soccer,Science & Nature,What fleshy muscular organ is joined to the hyoid bone?,Tongue -General,The Simpsons are the longest running cartoon who is second,The Flintstones,Geography,Which state is divided into two parts by a large lake,Michigan,Food & Drink,What jelly is traditional accompaniment to Lamb ,Redcurrant  -General,"""There and back Again"" is an alternative title of which novel",The Hobbit,Science & Nature,A rhinoceros has __________ toes on each foot.,3,General,Phallophobia is the fear of,Penis -Food & Drink,What type of food is a bloomer? ,Bread ,Sports & Leisure,Colin McRae joined which rally team in 1991? ,Subaru ,Music,Which Donovan hit was inspired by the rumour that you could get high by smoking dried bananas?,Mellow Yellow -General,The Daleks come from what planet ,Skaro,General,Old Trek: Who is above and below Scotty in the Enterprise's chain of command,Spock sulu spock and sulu,General,In Which Classic 80’s Tv Show Would You Find A Shepherd and His Lost Sheep?,The Dukes Of Hazzard -General,What is the oldest known science,Astronomy,Food & Drink,What is a cross between a blackberry and a raspberry ,Tayberry ,General,Who was Hiawatha's father,Mudjekeewis – The West Wind -Geography,In which English county is the town of Crook? ,Durham ,Entertainment,"In which Disney movie is the song ""So This Is Love""?",Cinderella,General,In England what is the most popular girls name of the 90s,Rebecca -Food & Drink,"A food labelled ""Florentine"" is prepared with this.",Spinach,General,What flavour sweet was created for Ronald Regan,Blueberry Jelly Babies,General,Joe Yule jr born 1920 became famous as who,Mickey Rooney -General,What is the name for Russian beet soup,Borscht,General,"Devil who played god in 'oh god, book ii'",George burns,Science & Nature, The bite of a leech is painless due to its own __________,Anaesthetic -General,Poenosis is what medical condition,Chilblains, Geography,What is the windiest place on earth?,"Mount Washington, New Hampshire",General,The major religion in Haiti is?,Voodoo - Geography,What is the basic unit of currency for North Korea ?,Won,General,Who might use ruddle or what is it,Shepherds dye marking sheep,General,"Where was the capital, established in 1862, of the Confederate States of America","Richmond, virginia" -Entertainment,What is Vanilla Ice's real name?,Robert van Winkle,General,Year Martin Luther was born,1483,General,What film won the best sound effects Oscar in 1985,Back to the Future -General,Night live to where did jackie gleason move his 1960's variety series,Miami,Music,Murray Head Spent One Night Where,In Bangkok,General,What is the maximum distance between the moon and the earth,"253,000 miles" -General,Who tells stories about Brer Rabbit,Uncle remus,Music,Which Gallagher Brother Is The Principal Songwriter In Oasis,Noel,General,Alfred Hitchcock admitted to being terrified of what,Policeman -General,"Who married antonio banderas, her co-star in the film too much",Melanie Griffith,Food & Drink,What Is Ravioli ,Pasta Parcels Filled With Meat Sauce ,Sports & Leisure,If you bet a Lady Godiva what would be your stake? ,5 Pound  -General,With what are alligators often confused,Crocodiles,General,The Jasmine Revolution took place in which country?,Tunisia,General,What is a leprechaun's usual job,Cobbler or shoemaker -General,Which Pop Singer Was Born Leslie Sebastian Charles,Billy Ocean,General,What was the name of the largest british battleship in wwii,Hms vanguard,Science & Nature,What type of animal is a wallaby,Kangaroo -General,What was duke ellington's real name,Edward kennedy,General,Who Was The First Footballer To Score 100 Goals In Englands Premiership,Dwight Yorke,General,What is a sorcerer who deals in black magic called,Necromancer -General,What black magazine was founded by john h johnson in 1947,Ebony,General,Which planet in the solar system has the longest day?,Venus,General,What does a phycologist study,Algae -Science & Nature,A group of gorillas is known as a ___________.,Band,General,In 1810 in England Peter Durand invented what,Tin can (food),General,Greek mythology which character was raised by centaur Chiron,Jason - of Argonauts -Music,Which Road Could The Nashville Teens Be Found On,Tobacco Road, Geography,What is the basic unit of currency for Somalia ?,Shilling,General,North Fork Roe River - worlds shortest - which US state,Montana -General,Vladimir Nabokov wrote Lolita in what language,English,General,What is the largest moon of Saturn called,Titan,Music,Don Henley & Glenn Frey Were Both Members of which band,The Eagles -Geography,Which of the 48 contiguous states extends farthest north,Minnesota,Food & Drink,What is gazpacho? ,Cold Soup ,General,What did the three bears leave to cool when they went for a walk,Porridge -General,Where is tabasco,Mexico,General,What thick metal plate is thrown in the olympics,Discus,General,Somewhere My Love was the theme song of which movie,Doctor Zhivago -General,What colour is the purple finch,Crimson,General,Lara Croft is a character in which computer game,Tomb raider,General,What herb gets its name from Latin for jewel of the sea,Rosemary – Ros Marinas -General,What name is given to a male witch ?,Warlock,General,Who played Pink in the movie The Wall,Bob Geldorf,General,"What group of american indians formerly ranged from texas and arizona, south to the mexican state of durango, until rounded up in 1886",Apache - History & Holidays,Orson Wells directed Charlton Heston and Janet Leigh in which 1958 film? ,Touch Of Evil ,General,Who wrote The Dong with the Luminous Nose and The Jumblies,Edward Lear,General,Name the eighties sitcom in which Bob Ueker was upstaged by an obese butler regularly.,Mr. Belvedere -Music,"The Man Responsible For St Celia's 1971 Hit ""Leap Up And Down"" (Wave Your Knickers In The Air) Had Earlier Received Had Earlier Received A Degree From Trinity College Cambridge Who was He",Jonathan King,General,Who wrote the 1977 TV mini-series Roots?,Alex Haley,Science & Nature," are the only truly social cat species, and usually every female in a pride, ranging from 5 to 30 individuals, is closely related.",Lions -Sports & Leisure,Football: The Minnesota _______.,Vikings,General,What tribe of American indians lent their name to a punk rock haircut,Mohawks, Geography,What is the capital of Cape Verde ?,Praia -General,What is sometimes nicknamed Adams Profession,Gardener,Science & Nature,What Name Is Given To The Study Of Insects ,Entomology ,General,Detective Philip Marlow smokes what brand,Camels -General,What is a group of this animal called: Greyhound,Leash,General,Did you know that there are ______ flavored pez,Coffee,General,Jane Taylor 1783 1824 wrote what famous verse,Twinkle-Twinkle Little Star -General,"About which Prime Minister was it said ""He could never see a belt without hitting below it""",Lloyd george, History & Holidays,The Character 'Jack Skellington' Appears In Which 1993 Film ,The Night Before Christmas ,General,According to Gene Kelly who was his favourite dancing partner,Fred Astair -General,"The Little Bighorn, scene of Custer's last stand, is in which U.S. State",Montana,Science & Nature, __________ have the best eyesight of any breed of dog.,Greyhounds,General,"Sung by the bee gees in 1978, the song is called 'stayin' ______'",Alive -General,West End Girls was the debut hit for what pop duo in the 80s,Pet shop boys, History & Holidays,Who Released The 70's Album Entitled Red Headed Stranger ,Willie Nelson ,General,Sigmund Freud used a dog to help his psychoanalysis what breed,Jo-Fi a Chow -Music,"Who Joined Rod Stewart And Bryan Adams On The 1994 Hit ""All For Love""?",Sting,General,"Who is Private Eyes ""First Lady of Fleet St""",Glenda slagg,General,What is a logogram - a $ sign is one,Sign representing a complete word -General,Which river runs through St Petersburg,Neva,General,What civil war was fought between 1936 and 1939,Spanish civil war,General,What term comes from the catholic church practice of appointing someone to give opposing views on a nominee for sainthood,Devil's advocate -General,What is the capital of colombia,Bogota,General,In what area of Washington does the State Dept hang out,Foggy Bottom,General,In Which European City Was The First Ever Motorway Built In 1921,Berlin - History & Holidays,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 ,General,Where was president truman born,"Lamar, missouri lamar missouri",Sports & Leisure,Which is the only position in soccer allowed to handle the ball,Goalie -Music,Who Was The Original Baasit In The Bay City Rollers,Alan Longmuir, Geography,In which state is Appomattax?,Virginia,General,Name the cold south-west wind which blows from the Andes across the South American pampas to the Atlantic Ocean.,Pampero -General,The food of the Greek & Roman gods,Ambrosia,People & Places,Whose Real Name Is 'Paul Hewson' ,Bono ,General,What famous playwrite has his birthday on 23rd April?,William Shakespeare -General,The UIT govern what sport,International shooting union,Entertainment,How many strings does a harp have?,47,General,In Spain what is manchego,Sheep's cheese -General,What does the average person do approximately 15 times a day,Laugh,General,Who was the second U.S. president,John adams,General,Who wrote the poem It was the night before Christmas,Clement Moore -Music,Who Had A Hit With the Song Umbrella In 2007,Rihanna,General,Which film won the best visual effects Oscar in 1984,Indiana Jones Temple of Doom,General,What republic would a Finn reach by paddling due south from Helsinki,Estonia -General,Who was ben hur's rival in the great chariot race,Messala,General,In 1931 the British Empire became the what,Commonwealth,Sports & Leisure,Which Middleweight Boxer Is The Subject Of The Film 'Raging Bull''? ,Jake Le Motta  -General,Narita is the main airport of which city,Tokyo,General,How many dimples does a golf ball have,336,General,Alex Pierrepoint & His Assistant Royston Pickard Executed Who At Holloway Prison On 12th July 1955,Ruth Ellis -General,Service where is the largest circulation of sunday papers,Los angeles,General,Who was the greek goddess of spring,Persephone,General,Robert Alan Zimmerman real name of who,Bob Dylan -General,Tarom Airlines is the national carrier of which country,Romania,General,What is a group of this animal called: Dove,Dule, History & Holidays,"Which famous explorer visited Australia and New Zealand, then surveyed the Pacific coast of North America?",Captain George Vancouver -General,In what Australian state would you find Rockhampton,Queensland,General,This word can refer to either an Irish accent or an Irish shoe,Brogue,General,Generation X Toys: Building tool named after Civil War president,Lincoln logs -Music,What Is The 3 Stringed Russian Instrument Called With The Triangular Body,Balalaika,Science & Nature,Water containing carbon dioxide under pressure is called ____ _____.,Soda water,Technology & Video Games,What new female fighter is introduced in 'Virtua Fighter 4'? ,Vanessa Lewis - History & Holidays,Name Jacques Cousteau's research ship.,Calypso,General,Cushion for kneeling on in church,Hassock,General,What film was the last featuring mel blanc's voice,Jetsons -General,When did leif erikson set foot on north america,1000 ad,General,What is the boy scout motto?,Be prepared,General,What was Ghengis Khans first job,Goatherd -General,Which USA record producer played maracas Stones 1st album,Phil Spector,General,Art of growing dwarfed trees or shrubs,Bonsai,General,"In Magnum PI,what kind of car did Higgins drive?",An audi -Food & Drink,Name the dessert named after a Derbyshire town? ,Bakewell tart ,General,Who is known as the father of geometry,Euclid,General,In which month is the Munich beer festival held,October -Science & Nature,The Vicufia Is A Member Of Which Family Of Mammals ,Llama ,Science & Nature,Which species of Elephant has the largest ears ?,African,General,In which song did hall and oates tell you to watch out for that sharkey girl,Man eater -People & Places,Which King Reputedly Tried To Turn Back The Sea ? ,King Canute , Geography,Which Irish city is famous for its crystal?,Waterford,General,Sherrinford was hero Ormond Sacker assistant names changed To,Holmes and Watson -Food & Drink,Who Was The First Man To Bring Cocoa Beans To Europe ,Juan De Cardenas ,Sports & Leisure,Who Missed The Penalty That Put England Out Of The 1996 European Championships? ,Gareth Southgate ,General,Where would you find a coffin joint,Horses foot -General,What was given on the fourth day of Christmas,Calling birds,Sports & Leisure,Which Sport Combines Rifle Shooting & Cross Country Skiing ,The Biathlon ,General,For the development of a vaccine against which disease is Jonas Edward Salk best remembered,Poliomyelitis (polio) -General,Who wrote the opera Tosca,Puccini,General,What European country's most common last name is Martin,France's frances france,General,Slow and steady wins the ___.?,Race -General,What is the Hungarian word for pepper,Paprika,General,In the film Tommy who played The Acid Queen,Tina Turner,General,Where were Tommy Lee Jones and Al Gore freshman roommates?,Harvard University -General,What's Mulder's nickname?,SPOOKY,Geography,What continent is the home to the greatest number of countries,Africa,General,The most abundant metal in the earths crust is what,Aluminum -General,What is 32 decimal expressed in hex,20,Sports & Leisure,Who became the first black manager of a premiership club when he took over in 1996? ,Ruud Hullit ,General,Dawson City was replaced by Whitehorse as the capital where,Yukon - History & Holidays,Who Released The 70's Album Entitled Sheet Music ,10cc , Geography,What city has the world's largest black population?,New York City,General,Virginitiphobia is the fear of ______,Rape -Music,Whose Tribute To Soul Singer Geno Washington Reached No.1 In 1980,Dexy's Midnight Runners,General,What is vanilla ice's real name,Robert van winkle,Music,"On the Single “ Do They Know It's Christmas ” Only One Person Performed On Both The Original And The 20 Year Remake Band Aid 20, Who Was It?",Bono / U2 -General,Where does the univerity of maryland's football team play its home games,Byrd stadium, History & Holidays,Where Were The McDonalds Massacred By The Campbells And The English In 1692? ,Glencoe ,Geography,In which country is Brest (NOT Breast;_),France -Music,Gene Vincent Was Injured In A 1960 Car Crash But Who Was Killed In That Very Same Crash,Eddie Cochran,General,What element is present in all organic compounds,Carbon, History & Holidays,Who Released The 70's Album Entitled Toys in the Attic ,Aerosmith  -Food & Drink,Which Country Drinks The Most Beer Per Annum ,Germany ,General,Einstein never wore what if he could avoid it,Socks,General,"Which musical features the song ""Sit Down, You're Rocking the Boat""",Guys and dolls -General,Which nation won the most medals in the 1994 Winter Olympics,Norway, History & Holidays,What Did New Zealand Vote To Abolish In 1961 ,The Death Penalty ,General,Who starred as Daisy in The Great Gatsby,Mia Farrow -General,Santiago is the capitol of Chile what does it mean,Saint Iago - or Saint James,Science & Nature, A racehorse averages a weight loss of between 15 and 25 pounds during a __________,Race,General,When did England's lease on Hong Kong expire,1997 -General,On a poll 50% men said sex in bed favourite 20% fem what fem,Reading 23%, History & Holidays,Which Sport Is Governed By The Queensbury Rules ,Boxing ,General,Vladivostok stands on what body of water,Sea of Japan -Toys & Games,How many numbers are on the spinner in the game of 'Life'?,Ten,Toys & Games,What game or sport is Bobby Fischer identified with,Chess,Music,"Gilbert & Sullivan, Which One Wrote The Music",Sir Arthur Sullivan -Entertainment,Name the dog in the Yankee Doodle cartoons.,Chopper,General,What is the Capital of: Monaco,Monaco,General,What is mainly extracted from pitchblende,Uranium -General,What is the common name for the larynx,Voice box,Food & Drink,From which fish do we get caviar? ,Sturgeon ,General,"Karl Landsteiner was awarded the Nobel Prize for his findings in the field of haematology, what was his discovery",Human blood groups - History & Holidays,"""Which Is The Only Football Team In The 2006/2007 Premiership Which Doesn't Contain Any Of The Letters Of """"Santa"""" In It's Name?"" ",Liverpool ,General,Antoine Domino is better known the world by what name,Fats Domino,General,"What links Edegra, Cavetra and Erix",Brand-names for Viagra -General,Which cowboys middle names were Berry Stapp,Wyatt Earp,Science & Nature,Approximately how many years old are oak trees before they produce acorns?,Fifty,General,Where would you find a Taoiseach,Eire - Head of State -General,Iatrophobia is the fear of,Going to the doctor,General,"A young what can be called a Boyet, Eyas or Nyas",Hawk,General,How many points is the green ball worth in snooker,Three -General,Who played Adenoid Hynkel in the film The Great Dictator,Chalie chaplin,General,Why was Mary Mallen locked up from 1915 to 1938,Typhoid Mary,General,"Often Found On A Computer Keyboard What Symbol Is Known As ""The Octothorpe""",Hash / Gate -General,What was Edison’s first practical invention,Tick a Tape for stockmarket,General,In Which City In The Us Did The St Valentines Day Massacre Occur ,Chicago ,General,What is Britain's most commonly planted tree,Sitka Spruce - History & Holidays,What changed in 1752 which caused Britain to have a White Christmas less frequently thereafter? ,The calendar ,Geography,"Which country developed ""Tae_Kwan_Do""",Korea,General,Who wore clothes made of camel's hair,John the Baptist -General,What happened to Charles Brooks in 1982,First legal death by lethal Injection,General,In which city did the 1998 Tour de France cycle race begin,Dublin,General,Year in which the Battle of Balaklava took place,1854 -Geography,Which 2 Countries Have Coastlines On The Bay Of Biscay ,France & Spain , Language,What city's name is derived from the words 'dubh linn'?,Dublin,General,Which 1993 Disney film starred Bet Middler as a witch,Hocus Pocus -General,What animal eats rests and sleeps on its back,Sea Otter,General,What is the seventh day of the week,Saturday,Science & Nature,What is a marsupium?,Pouch -General,How many moons does Jupiter have,Sixteen,People & Places,Which Author Had A 'Fatwa' Issued Against Him ,Salman Rushdie ,Toys & Games,What are a cheesboard's vertical rows called?,Files - Geography,What is the capital of Ohio?,Columbus,General,In what florida city was the ibm pc conceived,Boca raton,Sports & Leisure,Which Darts World Champion Is Nicknamed The Viking? ,Andy Fordham  -General,"Desire what mouseketeer's first hit song was ""tall paul""",Anette funicello,General,What 1960 movie inspired the rash of beach party movies,Where the boys are,Sports & Leisure,Two under par on a hole of golf is called a(n) ________.,Eagle -Sports & Leisure,"In Baseball, What Name Is Given To The Completion Of A Circuit Of Bases On One Hit ",A Home Run ,General,Where is the modern site of the biblical land of Goshen,Egypt the nile delta,General,"Which African Countries Flag Contains A Machete, A Cog And A Star",Angola -Music,What Was Supertramps First Uk Hit,Dreamer,General,What device changes the voltage of alternating currents,Transformer,Music,Come On Was The Stones First Single But Who Wrote And Recorded The Song,Chuck Berry -General,What is the term for a castrated rooster?,Capon,General,We've used Xerox but from Greek what does it literally mean,Dry,General,PY are the international car registration letters of which country,Paraguay -General,Sir Henry Cole got John Callcot Horsley design ? to save time,Christmas card 1843,General,Sylvester Stallone film shares name with Paris art movement,Cobra,General,In which book of the New Testament is Armageddon named as the gathering place of the Day of Judgement,Revelations -General,What were the two birds that noah sent out from the ark,Raven and dove,Science & Nature,What Are Insects Chewing Jaws Called ,Mandibles ,General,In France it is illegal to sell what doll,ET - Dolls human faces only -General,Who was the Greek cup-bearer to the gods,Ganymede,Science & Nature, The blue whale is maintained by its blubber and can go up to half a year without __________,Eating, Geography,What is the capital of Kyrgyzstan ?,Bishkek -General,Who played the mayor of the munchkins in 'the wizard of oz',Charlie becker,General,What bridge links a Palace with a State Prison,Bridge of Sighs – Venice,General,What did epicurus found,Epicurean philosophy -General,Which Was The First Film Remake To Win The Title Of Best Picture Oscar?,Ben Hur,General,"To what group of elements do cerium, praesiodymium and promethium belong",Rare earths,General,System of compulsory enrollment of men and women into the armed forces,Conscription -General,What reptilian feature evolved in feathers,Scales,General,Which jazz trumpet virtuoso is credited as having invented scat' singing,Louis Armstrong,Science & Nature,"In which organ is a clear watery solution known as the ""aqueous humor"" found?",Eye -General,"What did Wilde describe as ""A man who knows the price of everything and the value of nothing""",Cynic,Sports & Leisure,With what sport is Jack Nicklaus associated?,Golf,General,"A sauce described as 'a la soubise', primarily contains what vegetable?",Onions -General,A nuclear reactor was built beneath a Chicago football stadium in which year,1942,Art & Literature,Who wrote '1984'?,George Orwell,General,Who played the lead Male & Female roles in the movie 'Romancing The Stone' (Point For Each) ,Michael Douglas And Kathleen Turner  -Music,Who Sang The Theme To The Bond Movie Diamonds Are Forever,Shirley Bassey,General,In which game could you 'plink with your plonker' and 'squopp' your opponent,Tiddleywinks,General,How many suicides are recorded in the bible,Seven -General,Which of Charles Dickens' novels is mainly set in the Marshalsea Prison,Little dorritt,General,Who study & predict earthquakes,Seismologists,General,What is Rice Paper made from,A Tree - The Rice Paper Tree pith -General,What is the flower that stands for: simplicity,American sweet-brier,General,Who wrote The Young Persons Guide to the Orchestra,Benjamin Britain,General,What's the national sport of Japan,Sumo wrestling -Music,"To Where Did Steely Dan Bid ""Toodle-oo""",East St Louis,General,What Scientific breakthrough was created by a group of Edinburgh scientists in 1996,The Cloning Of Dolly The Sheep,General,What was elvis' mother's name,Grace -Food & Drink,Which beer sponsors a pre-Wimbledon Tennis Tournament ,Stella Artois ,Sports & Leisure,How Many Pieces Per Player Are There In A Game Of Backgammon ,15 Pieces ,General,What has become a custom from armored knights raising their visors to identify themselves when they rode past their king,Salute -Food & Drink,What country is the largest consumer of beer per head? ,Germany ,General,"A Sevillian gypsy dance, possibly originating in India, also with Moorish and Arabian influences, originally accompanied by songs and clapping and later by the guitar, and characterized by its heelwork.",Flamenco,Sports & Leisure,Baseball: The Boston ______?,Red Sox -General,JVC launched VHS in 1976 what does VHS stand for,Video Home System,Music,With Which Band Was Julian Cope The Front Man,The Teardop Explodes,General,An Enologist studies what,Wine -General,What Country Is The Only Country To Host The Summer Olympic Games & Not Win A Single Medal,Canada,General,Dressed man what song spawned a lawsuit for tommy tutone,867-5309/jenny,General,What woman has the most statues of her,Joan of Arc 40000 -Art & Literature,What Was Shakespeare's First Play ,Henry VI , History & Holidays,What do the Irish call a spirit whose wailing signals imminent death ,Banshee ,General,Dogs & humans are the only animals with what,Prostrates -General,"Who wrote 'i, claudius'",Robert graves,Science & Nature,In Computing What Do The Initials WWW Stand for ,World Wide Web ,General,Who was the second woman in space,Savitskaya -General,"What group of minerals are beryl, emerald and aquamarine a part",Beryllium,General,Someone able to use both hands equally well,Ambidextrous,General,What film did Rock Hudson and Doris Day star in together in 1959,Pillow talk -General,With what were scrabble tiles first made,Pocket knife,General,Tracy Marrow a former convict born 1958 changed name to what,Ice-T,General,Which U.S. city was bombed by terrorists in 1995,Oklahoma city -General,Who wrote The Swiss Family Robinson,J r wyss,General,A strong twilled cloth often used for raincoats,Gaberdine,Food & Drink,What is the UK's best selling chocolate bar? ,Kit Kat  -General,What is the name given to Indian food cooked over charcoal in a clay oven,Tandoori,General,What 38 years old heavyweight couldn't answer the 11th round bell in 1980,Muhammad ali,General,Who was the first original 'saturday night live' cast member to leave,Chevy -General,What country has a Bible on its flag,Dominican Republic,General,A phalophilliac has a fetish about what,Large Penises,Music,"""Rattle And Hum"" Was A Hit Album For Which Group",U2 -General,In the song who told Laura he loved her in 1960,Ricky Valance,General,"Conrad classical music: who composed ""rhapsody in blue""",George gershwin,General,What Country Won The First Ever Eurovision Song Contest,Switzerland -General,Who was offered the presidency of Israel in 1952 (turned down),Albert Einstein,Science & Nature,What is the royal disease?,Haemophilia,General,Who wrote 'Sexual Behavior In The Human Male' in 1948?,Alfred Kinsey - History & Holidays,The Song 'White Christmas ' Was' Performed In Which 1942 Film ,Holiday In ,General,"The left lung is smaller than the right lung, to make room for which organ",Heart,Geography,In Which Country Are The Appenine Mountains ,Italy  -Music,Which No.1 Hit Was Cliff Richards First Million Seller,Living Doll,Music,Which Member Of Guns N Roses Was Born In Stoke England,Slash,General,"Who said ""People only see what they are prepared to see""",Ralph W Emmerson -General,Who hired The Jackal,Oas, History & Holidays,"""What 'NN' Is """"ABCDEFGHIJKMNOPQRSTUVWXYZ & ABCDEFGHIJKMNOPQRSTUVWXYZ"""""" ",Noel Noel ,General,What speed record has remained unbroken since 1938,Steam Train - Mallard -General,What did joseph smith found,Mormonism,General,The earth pig is what animal,Aardvark,General,"What is Cuba's national sport, at which Castro himself was proficient",Baseball -General,Sherlock Holmes paid 55 shillings for what,His Stradivarius violin,General,How may Oscars did Richard Burton win,None – Seven Nomination, History & Holidays,"Who founded the Salvation Army in London, 1865? ",William Booth  -General,Who was the first actor to appear on cover of Time magazine,Charlie Chaplin,General,Where would you find Volans,Southern Sky – Const Flying Fish,Music,"""Mr Mojo Risin"" Is An Anagram Of Which American Rock Singer",Jim Morrison -General,"What kind of gun does the movie's ""dirty harry"" pack",Magnum,General,What is a group of woodcocks,Fall,Music,Stanley Burrell Is The Real Name Of Which Popular 90's Singer,MC Hammer -General,What make of car is a 'thunderbird',Ford,General,Which famous sporting venue is above NewYorks Pennsylvania Station,Madison square gardens,General,What organ endured its first us transplant in 1954,Kidney - History & Holidays,Israel occupied the West Bank. It belonged to _______.,Jordan,General,Ophthalmophobia is the fear of,Being stared at,General,"It's Metallica now,but what band's name originally appeared on Beavis's T-shirt?",Slayer -General,What is the study of elections called,Psephology, History & Holidays,Who introduced bagpipes to the British Isles?,Romans,General,Who played Dr McCoy in the original Star Trek series,Deforest Kelly -Science & Nature," 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,Religion & Mythology,What animal's meat can a Hindu not eat?,Cow,General,Who resigned as Chancellor of the Exchequer in 1947 over a Budget leak,Hugh dalton -General,Aromatic plant used for seasoning and salads,Coriander, Geography,What is the capital of Germany ?,Berlin,General,Ignoring Queen name the only woman to appear on UK currency,Florence Nightingale -Music,Which Country Does The Singer Enya Come From,Ireland,General,What is a group of mules,Span,General,Name UK General who defeated Montcalm on Plains Abraham,James Wolfe -Music,Which Area Of New York City Was Immortalised In The Dance Song By Bob & Earl,Harlem (Harlem Shuffle),General,"Of Which Country Is ""Vilnius"" The Capital City",Lithuania,General,The musical instrument piccolo means what in Italian,Small -General,What fruit produces a herb,Banana,General,Which city in Lombardy is the second largest city in Italy,Milan,General,On what show was 'run d.m.c' the first rap group,American bandstand - History & Holidays,The following is a line from which 1970's film 'It's pronounced Fronkensteen' ? ,Young Frankenstein ,General,What is the Capital of: Greece,Athens,Music,In 1992 A Cover Of The The From M*A*S*H (Suicide Is Painless) Gave Which Band Their First Top Ten Hit,Manic Street Preachers -General,What country has the longest chairlift in europe,Switzerland,Geography,Of Which Country Is Katmandu The Capital ,Nepal ,General,What Was The Name Of The Person Who Won The UK's First Ever Big Brother Contest,Craig Phillips -Science & Nature,What is a male deer called?,Buck,General,What plant did St. Patrick use to explain the Trinity,Shamrock,General,The Hardy boys & ______,Nancy drew -General,What is the official title of the ambassador of the Pope,Nuncio,General,If you climbed the Dolomites what country are you in,Italy, Geography,What is the basic unit of currency for Oman ?,Rial -General,"Cancha, Cesta, Cinta terms in which sport",Jai Alai - Court Glove Tape,Sports & Leisure,How many times did Red Rum win the Irish Grand National? ,None ,General,What is a group of plovers in flight,Wing -General,As what was John F. Kennedy airport formerly known,Idlewild,General,In mythology who slew the nine headed hydra,Hercules,Entertainment,Which film preceded 'Magnum Force' and 'The Enforcer'?,Dirty Harry -General,In which Puccini opera of 1896 is the Christmas Duet,La boheme, History & Holidays,In What Year Was The Berlin Wall Erected ,1916 ,General,Felinophobia is a fear of ______,Cats -General,Relating to food what is porcini a type of,Mushroom,General,What bird lays the largest egg,Ostrich,General,What is the most common name for US cities 66 of them,Fairview -Science & Nature," At seven inches long, the Wilson's storm petrel is the smallest bird to breed on the __________",Antarctic continent,General,The Mason-Dixon line separates Pennsylvania and what state,Maryland,General,What do Australians call dust storms,Willy-willies -General,The island of Krakatoa was almost completely destroyed by a volcanic eruption in which year,1883,General,Which garden plant has varieties called Nelly Moser and Hagley Hybrid,Clematis,General,What shape is cansonsei pasta,Little Britches -General,What was the name of Eddie Murphy's character in Beverly Hills Cop?,Axel Foley,General,What is the name of the winged horse in greek mythology,Pegasus,General,Which American state has the motto Esto Perpetua - its forever,Idaho (Gem State) -General,On which city did Charles Darrow base his original game of Monopoly,Atlantic city,General,In Kansas what can a waiter not do in a teacup (legally),Serve wine,General,What does a butterfly clip usually hold in position,Hair -General,Where is King Arthur supposed to be resting,Avalon, History & Holidays,In Which Year Did The Oil Tanker Torrey Canyon Come Aground Near Lands End Causing A Major Environmental Disaster ,1967 ,Music,Raphael Ravenscroft Plays Which Musical Instrument,Saxophone -Food & Drink,What vegetable did Mark Twain describe as 'Cabbage with a college education'? ,Cauliflower ,General,What would you do with a Romeo's Rouser,Drink it - its a real ale,Geography,What is the capital of Brunei,Bandar seri -General,For making what is the abalone shell used,Jewellery,General,How old are oak trees before they produce acorns,Fifty,People & Places,Who was famously convicted of horse stealing at York Assizes in 1739 and subsequently hanged? ,Dick Turpin  -Geography,What is the capital of Qatar? ,Doha ,Music,"Easter, Easter, Easter, Easter Which Group Am I",Echo And The Bunnymen,General,Which drink was advertised as 'The Wodka from Varrington',Vodka -General,"In Germany who were known as ""Dick und Doof""",Laurel and Hardy,General,In Italy a man can be arrested if found wearing what,A Skirt,General,Which country was known as 'the Cockpit of Europe',Belgium -General,What cartoon character had no feathers until the censors decided he 'looked naked',Tweety,General,Which is the tallest breed of dog,Irish wolfhound,Entertainment,Where is the Rock and Roll Hall Of Fame?,"Cleveland, Ohio" -General,What year did Laurel and Hardy first perform together,1926,General,The average person does it thirteen times a day - what,Laughs,General,What is located on Boothia's peninsula in Canada,North Magnetic Pole -General,What product only sold 1200 bottles in its first year,Liquid Paper - Tippex,General,What was the first x-rated animated cartoon film,Fritz the cat,General,What was the name of Jodie Foster's 1991 film that she directed,Little man tate -General,Troy McClure appears in which cartoon series,The Simpsons, History & Holidays,What energetic singer married the 13 year old daughter of his bass player? ,Jerry Lee Lewis ,Entertainment,What was the original name Charles Schultz had for Peanuts?,Li'l Folks -General,What French automobile company merged with American Motors,Renault,General,What X rated movie won an Oscar,Midnight Cowboy,General,If you were drinking Tiger beer in what country would you be,Singapore -General,"In Save by the Bell,what were Zack and Kelly dressed up as the night they broke up?",Romeo and Juliet,Music,Come As You Are Was A 1992 Hit For Whom,Nirvana,Geography,What Is An Archipelago ,A Group Of Islands  - Language,This animal is found at the beginning of an (English) encyclopedia,Aardvark,General,Ncaa: who were the finalists in the men's basketball championship in 1947,Holy cross & oklahoma,Food & Drink,In which country did the word 'biscuit' originate ,France  -General,"In egyptian mythology, who is known as the god of the desert",Ash,Music,There Is Just One Colour Of The Rainbow Never To Feature As Yet (16/09/08) In The Title Of A UK Top 40 Song What's The Colour,Indigo,General,Jason and the Argonauts sailed to where looking for the fleece,Colchis -General,U.S. Captials - Massachusetts,Boston,General,Who originally made the jack-o-lantern,Ancient celts,General,In which Australian State is Wagga Wagga,New south wales -General,"What infamous bank robber was nicknamed ""willie the actor""",Willie sutton,General,Which area of water separates India from Sri Lanka,Palk Strait,General,Of what is hippophobia a fear,Horses - History & Holidays,Which film first featured a character later named Pinhead ,Hellraiser ,General,The windhover is an alternative name for which bird,Kestrel,General,Which organisation is officially known as Holy Spirit Association,Unification Church – Moonies -General,Specifically to what does Episcopal refer,Bishops,Food & Drink,How Did Chocolate Get It's Name ,Spanish Imitation Of Aztech Word Tchocolatl ,General,In 1979 Ugandan dictator Idi Amin overthrown; Tanzania takes,Kampala -Music,"Which Beatles album is The Song ""Only A Nothern Song"" on?",Yellow Submarine,Music,Which Single Topped The Charts In 1961 For Frankie Vaughan,Tower Of Strength,General,What is Lieutenant Colombo's first name,Philip -Science & Nature,What is the gestation period of a cow*9 months ,Nine months ,General,What inventor blew up a telegraph station in a battery experiment,Thomas edison,General,Whose autobiography is called ' All of me',Barbara windsor -General,In which town or city in the north-west is the Ashton memorial,Lancaster, History & Holidays,"What did a shepherd boy discover at qumram, jordon in 1947 ",The dead sea scrolls ,General,Bacillophobia is a fear of ______,Microbes -General,Who drove a Rolls Royce with a number plate FAB 1,Parker in Thunderbirds,General,Who was shown on the most popular US postal stamp of 1998,Sylvester and Tweety,General,"Who played victoria barkley on the tv show, ""the big valley""",Barbara -General,Numbers What's the capital of Wyoming,Cheyenne,General,What was the political constituency of Harold Wilson?,Huyton,General,Who was the future political pair to star in Hellcats of the Navy,Ronald -General,"Which group sang the song ""Learn To Fly""?",Foo Fighters,Geography,Where in the world is Rock English spoken? ,Gibraltar ,General,The science of preparing & dispensing drugs is ________,Pharmacy -General,What is an enclosed car hung from a cable at a ski slope,Gondola,General,What is it illegal to pawn in New York,American flag,General,"Which pop group's only U.K. chart entry, ""Sugar Sugar"" got to No. 1 in 1969",The archies -General,To what is the harvest moon nearest,Autumnal equinox,General,If You Were An Aronophobe Or Had Aronophobia What Would You Be Afraid Of,The Internet,Music,Who Took A Drive To The Ocean With Their Kin to See The Ship Safely In,Lighthouse Family - History & Holidays,This organization was founded by William Booth.,Salvation army,Entertainment,"This band's highly original video for ""Whip it,"" characterized by red flower pot hats was criticized for being both sado-masochistic and racist.",Devo,General,Who is the Patron Saint of brewers,Saint Nicholas -People & Places,Who was the Director of the C.I.A during 1976-77 ? ,George Bush ,General,Operation Chastise during WW2 better known as what,Dambusters Raid,Food & Drink,Australian city home of Castlemaine XXXX Export Lager,Brisbane - History & Holidays,"Who wrote the book, that was the basis for the 1982 animated film, 'The Snowman'' ",Raymond Briggs ,General,What country calls itself Republika Shqiperise,Albania,General,Mechanophobia is a fear of ______,Machines -Music,According To The Beatles What color was Lucy's sky?,Marmalade,General,"At Mcdonalds in New Zealand, what kind of pies do they serve instead of cherry ones",Apricot,Music,Chantelle Recently Announced Her Engagement To Preston. But Of Which Group Is Preston A Member?,Ordinary Boys -General,What was the number of the squadron which flew the Dambusters mission in 1943,617,General,What is the flower that stands for: shame,Peony,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 -General,Name the only bird that can swim but can't fly,Penguin,General,Which Game Takes Its Name From The Latin For “Bird Of Prey?,Subbuteo,General,"A small structure on top of a dome, tower or roof often open to admit light below.",Lantern -General,Which arteries carry blood to the head and neck,Carotid,Entertainment,What is Super Chicken's partners name,Fred,General,"ELVIS: What was the actual running time of the film ""Wild in the Country""",114 minutes -Geography,Which Country Has The Lowest Birthrate ,Italy ,General,For what does the letter 'S' stand in the initials ISBN,International standard book number,Entertainment,Who was Lauren Bacall's first husband?,Humphrey Bogart -General,Which Female Act (Non Solo) Holds The Record For The Most Consecutive Weeks At The Top Of The Uk Singles Chart,Shakespeares Sister,General,The name of which countries capital means good air,Argentina – Buenos Aires,Sports & Leisure,How Old Was Steve Davis When He Won His First Snooker World Title ,23  -General,Which non alcoholic cordial is made from pomegranates,Grenadine,General,In Japanese cooking what name is given to small pieces of raw fish served with cold rice,Sushi,General,Hitchcock film he did not appear Lifeboat 1944 who female star,Tallulah Bankhead -Science & Nature,The tides on the earth's oceans are actually created by gravitational pull from the ____,Moon,General,What was the 'unfinished symphony' meant to be played for,A requiem,Sports & Leisure,How Many Balls Are On The Table At The Start Of A Game Of Snooker ,22 Including Cue Ball  -General,What stretch of water separates Italy and Sicily,Straights of Messina,General,What is the registry number of the enterprise in the original Star Trek?,NCC 1701,General,Which metal gets its name from Swedish for heavy stone,Tungsten -General,A sufferer from boanthropy believes he is what,An Ox,General,Siderodromophobia is the fear of,Trains,Music,"Name The Instrument Most Readily Associated With Gary Burton, Milt Jackson, & Lionel Hampton",Vibraphone -Music,Who Had A 1982 Hit With Heartbreaker,Dionne Warwick,General,Marmolada nearly 11000 feet highest peak what mountain range,Dolomites,General,What is a group of this animal called: Woodcock,Fall -General,Film title' 'fahrenheit ______',451, Geography,What is the capital of Uganda ?,Kampala,Food & Drink,Which Mixer Was Used To Take Quinine ,Tonic Water  -General,What city hosted the 1976 summer olympics,Montreal,General,What kind of spider devours it's mate after mating,Black widow,Science & Nature,Which has longer wavelengths X-Rays or Microwaves? ,Microwaves  -Music,"Which American Vocal Group Scored Their First UK Top Ten Hit In 1996 With ""We Got It Going On""",Backstreet Boys,General,In which opera is the Anvil Chorus,Il trovatore,Science & Nature," In England, the most commonly used guide dog for the blind is the Yellow __________",Labrador retriever -Food & Drink,How Many Gallons In A Firkin ,9 Gallons ,General,In the Beverley Hillbillies what was a potpasser,Pool Cue at fancy eating table,General,"By What Name Was Singer “ Charles Weedon Westover ” Better Known, Who Commited Suicide In 1990 By Shooting Himself?",Del Shannon -Music,According To The Beatles What Did “The Girl That's Driving Me Mad” Have,A Ticket To Ride,General,Term applied to the ripened ovule of a seed plant before germination,Seed,General,What was the third leading cause of death in 1900,Diarrhoea -General,Who won the 1959 u.s grand prix,Bruce mclaren,Science & Nature,This cluster of stars is also known as the Seven Sisters.,Pleiades,General,According to a survey what is the US top family food,Spaghetti – then Chicken -General,What is the only part of the human body that cannot repair itself,Teeth,General,What word describes the inverse indentation often found on the bottom of a wine bottle?,Punt,General,Amnesiac and The Bends albums of which UK group,Radiohead -General,"Who wrote the novel ""To Kill a Mockingbird""",Harper lee,Music,Which Australian Had A Number One Hit In 1969 And Received A CBE In 2006?,Rolf Harris,General,What was the name of the Addams family's giant man-eating plant,Cleopatra - History & Holidays,Who gave john f. kennedy a dog named pushinka ,Nikita khrushchev ,Music,Let There Be ________ Was A Hit For Sandy Nelson,Drums,General,What elements name comes from the Greek word for violet,Iodine -Food & Drink,What is compote? ,Fruit preserved or stewed in syrup,Science & Nature,What is made by a Bessemer converter? ,Steel ,Music,Name The Production Genius Behind Philles Records,Phil Spector -General,The longest recorded one lasted 51.5 minutes - what,Tennis rally1029 strokes,General,"What is the name of rock group chicago's boulder, colorado recording studio",Caribou ranch,General,"John Young, Gemini 3, 1968 first to do what in space",Eat a hamburger -General,"Who's the voice of ""this week in baseball""",Mel allen,Music,What pop stars first and middle names are Katherine Dawn?,K D Lang,General,The video for which eighties song features nothing but 5 cheerleaders?(Name the artist too),Mickey Toni Basil -Science & Nature,What Is The Function Of White Blood Cells ,To Combat Disease And Infection ,General,"In The Year 2000 ITV Revived The TV Soap ""Crossroads"" But What Long Running TV Show Did It Replace",Home & Away (Moved To Ch 5),Science & Nature,"Which Famous Aircraft Of World War 2, Had A Frame Of Wood & A Skin Of Plywood & Was Glued & Screwed Together In England Canada & Australia? ",De Havilland Mosquito  -General,"On Who's Tombstone Will You Find The Words ""She Did It The Hard Way""",Bette Davis,General,Who was THE woman to Sherlock Holmes,Irene Adler,General,"What place is nicknamed ""The City of Lilies""",Florence -General,"In The World Of Sport What First Did ""Uriah D Rennie"" Achieve In 2001",First Black Ref To Dictate A Game,General,The planet pluto was discovered in what year,1930,General,What kind of charcters were MTV's Sifl and Olly?,Sock puppets -Geography,What colour is the leftmost stripe on the French flag? ,Blue ,People & Places,Who Broke Into The Queens Bedroom For A Chat ,Micheal Fagan ,General,What president's wife saw him elected but died before his inauguration,Andrew jackson -General,Who sang 'born in the u.s.a',Bruce springsteen,General,In the US money is still top marital argument what is second,What to watch on TV,General,Slugs and snails belong to which class of molluscs,Gastropods -General,What is the flower that stands for: boaster,Hydrangea,General,What is the sum of 236 - 145,91,General,Which planet with at least eighteen known moons is sixth closest to the Sun,Saturn -General,Who had hiccups for 69 years,Charles osborne,General,Rubies are a red variety of corundum. What name is given to corundum gemstones of any other colour,Sapphires,Science & Nature,When light waves pass from one medium into another they change direction. This is called _________.,Refraction -General,What first appeared in New York World 21st December 1913,Crossword,General,The ashes of the average cremated person weighs how many pounds,Nine,General,24% of British men have no what,Real teeth -Entertainment,Before Olive Oil met Popeye she was engaged to someone. Who was he?,Ham Gravy,General,"Fettucini, linguini and tagliatelle are all types of what",Pasta,General,Shagaganda sounds like molesting a goose - but where is it,Peru -General,"Who said ""No sex is better than bad sex""",Germaine Greer,Entertainment,Who is the main character in 'Touched By An Angel'?,Monica,General,"The School ""Northbridge High"" Featured In Which Popular Early 90's TV Show",Press Gang -General,After which creature is the Californian island of Alcatraz named,Pelican,General,Wrestling who was the girl in peter sellers' soup,Goldie hawn,General,This animal can be found in sub Saharan Africa & Gir National Forest in India.,Lion -General,"What is ""Magic"" Johnson's first name",Earvin,General,What is the most common name in italy,Mario rossi,General,Which statue is missing its arms,Venus de milo -General,Where did the birkenhead sink,Danger point,General,Southpaw to us means a boxer who leads with his right hand; but in which sport did the term originate,Baseball,General,"Who Played The Role Of Merlin In The Tom Cruise Classic ""Top Gun""",Tim Robbins -General,In 1907 who was the first English writer win Nobel prize literature,Rudyard Kipling,General,In Connecticut by law restaurants must provide separate what,Nose blowing – not blowing tables,General,What is the fear of the sea known as,Thalassophobia -General,Who sang the theme song in From Russia with Love,Matt Munroe,General,What type of animal is an 'agama',Lizard,Sports & Leisure,What Is The Name Of Chicago's American Football Team? ,Bears  -People & Places,Who Was Famously Quoted As Saying 'The Only Thing She Wears In Bed Is Channel No.5' ,Marilyn Monroe ,Science & Nature,For What Illness Did Louis Pasteur Develop A Cure ,Rabies ,General,What two astrological signs begin with the letter a,Aquarius & aries -Sports & Leisure,California Dolls Is A Movie That Was Inspired By And Features Which Sport ,Wrestling ,General,"The sinking of the 'Herald of Free Enterprise' was one of Europe's worst shipping disasters, from which port did the ship sail",Zeebrugge,General,What is Cumberland sauce usually served with,Game -General,In China what colour does the bride traditionally wear,Red,General,What is the Capital of: Guyana,Georgetown,General,What is the Capital of: Madagascar,Antananarivo -General,Computers - mhz stands for________,Megahertz,General,"Which of the stars of ""outrageous fortune"" also starred in tv's ""cheers""",Shelley long,General,A spat is a baby what,Oyster -Science & Nature,What is the heaviest snake?,Anaconda,General,In what winter sport does one lie on ones back,Luge,Sports & Leisure,"Who Accompanied Steve Redgrave In The Last Three Of His Five Olympic Gold Medals Winning Rows, And Went On To Win A Fourth Gold Himself In 2004? ",Matthew Pinsent  -Tech & Video Games,Who is the Linux operating system named after ?,Linus Torvalds,General,Which Scottish Quarter day is on August 1st,Lammas,General,Who wrote The Last Picture Show,Larry McMurty -General,Traditionally in what months should you not eat oysters,May to august,General,Who invented the pneumatic tyre from a section of garden hose,John dunlop,General,The Fool in French and the Runner in German what in English,Chess Bishop - Fou – Laufer -General,What is the capital of the seychelles,Victoria,People & Places,Which US University is in the city of Cambridge? ,Harvard ,Music,Amount for which the Beatles sued Nike for using the song ''Revolution'' in a 1987 commercial,$15 million (terms of the settlement are confidential) -General,On what book was 'three days of the condor' based,Six days of the condor,General,In Rebel Without a Cause name the High School,Dawson,General,"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?",ZZ Top -General,What is the fear of meteors known as,Meteorophobia,General,What does the word chicane mean in the context of a game of bridge,A hand without any trumps,General,Brazaville Is The Capital Of Which African Country,The Congo -General,Which two vegetables are used in vichyssoise,Leek Potato,Music,Who Released An Album Entitled Zenyatta Mondatta,The Police,General,In which city did Zlata Filipovic write a diary in the 1990's which began just before her 11th birthday,Sarajevo -Food & Drink,Beef dish named after a 19th century Russian diplomat ,Stroganoff , Geography,What is the capital of Saudi Arabia?,Riyadh,General,If a doctor said you had claudication what have you got,A limp or lameness -General,Frank Zappa was lead singer with which band,Mothers of invention,General,When was the dynamic loudspeaker invented,1924,Science & Nature,What was given to children to rid them of threadworm?,Salt enema -General,Coronation Street's Kabin is located in which street,Ross street,Sports & Leisure,Hockey: The Toronto ______?,Maple Leafs,General,By what name is Maurice Micklewhite better known,Michael caine -Food & Drink,What Does 'Vol-au-vent' Actually Mean In French ,Vol-Au-Vent Is French For 'Flying On The Wind' They Are Puff Pastry Cases ,Religion & Mythology,On which mountain did Moses receive the Ten Commandments,Sinai,General,Frigophobia fear of what,Being Cold - Language,What is the first letter in the Greek alphabet?,Alpha,General,Who are the largest candy consumers per capita,Danes then Irish,General,"What's the international radio code word for the letter ""F""",Foxtrot -Food & Drink,Which spirit is used to fortify red wine in creating port? ,Brandy ,General,"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,Art & Literature,Which Painter Is Noted For His Works Depicting The Moulin Rouge ,Toulouse- Lautrec  -General,Who wrote 'a tale of two cities',Charles dickens,General,Which cathedral has 4440 statues,Milan,General,"What do the skunk, magpie and otter have in common they are all",Black and white -Music,Which Saxophonist Was Known As Bird,Charlie Parker,General,Which museum now occupies the site of the old Bedlam Hospital in London,Imperial war museum,General,What is the national airline of Indonesia?,Garuda -Science & Nature,What Is The Fluid Which Surrounds A Foetus Known As ,Aminiotic Fluid ,General,Who Was Sentenced To Life Imprisonment On 14 th June 1964 ?,Nelson Mandella,General,"The words concert, opera and carnival have their roots in which language",Italian -People & Places,Who Was Known As The Old Groaner ,Bing Crosby ,General,On a German white wine what does the word 'Spatlese' (pronounced 'shpate-laser') signify,Late picked,Geography,"There are sand dunes in Arcachon, ___________ that are 350 feet high.",France -General,Zephyr' is the poetic name for what,West wind,Entertainment,Michael di Lorenzo was one of the lead dancers on which Michael Jackson video?,Beat It, History & Holidays,How many presidents of the United States fought in the Civil War?,Six -General,What is the wingspan of a condor,Nine feet,General,Which bird is known as the laughing jackass,The kookaburra,General,"Where was the painting by Michaelangelo , valued at £8 million pounds recently found, after remaining unrecognised for more than 250 years",Castle howard -General,"What is a ""hiatus""",Brief period of rest,General,The Saffir-Simpson scale measures the intensity of what,Hurricanes,General,In which country was film star Ray Milland born,Wales -General,Who created the character Parker Pyne,Agatha Christie,Food & Drink,"What type of food is associated with 4th July celebrations, is it a curry, a Roast Turkey, a picnic, or a BBQ? ",Picnic or BBQ ,Science & Nature,Which Are The Three Species Of Animal With Stereoscopic Vision? ,"Monkeys, Apes And Man " -General,What NFL team was formerly known as the Portsmouth Spartans,Detroit,General,Which religion's holiest shrine is the Golden Temple at Amritsar,Sikh,Sports & Leisure,What Name Is Given To The Electronic Eye Used At Wimbledon Tennis Tournaments ,Cyclops  -General,What 80's cartoon theme song did Ricky Martin sing?,Rubic-the Amazing Cube,General,Octophobia is the fear of,The figure 8,General,Chase and Sandborn first sold what in tins in the US,Coffee -General,Butterfly Falcon Fun Glen Lark Penguin If Topper types of what,Yacht Dingy Classes,General,What is the most commonly prosecuted illegal act,Speeding,General,How much wood can a wood chuck chuck if a woodchuck could chuck wood,All the -General,What were wilma flintstone and betty rubble's maiden names,Slaghoople and,General,Who is the author of I'll Be Seeing You released in 1993,Mary higgins clark, History & Holidays,Who Released The 70's Album Entitled Stardust ,Willie Nelson  -General,In Which Country Was Tennis Legend John McEnroe Born,Germany,Religion & Mythology,Who is the Norse Watchman of the Gods,Heimdall,Geography,"On what island is the U.S. naval base, Guantanamo",Cuba -General,A block of compressed coal dust used as fuel,Briquette,Music,What Is The Sound Producing Equipment Element Of Many Woodwind Instrument Called,The Reed,General,Dinner Time by Paul Terry was which cartoon first,Talkie -Sports & Leisure,Which Sport Do You Associate With The Commentator Ted Lowe? ,Snooker ,General,Which film star was the first to appear on a postage stamp,Grace Kelly,General,Which male name means God will judge,Daniel -General,Whats the better known name of Edson Arantes do Nascimento,Pele,Music,Swords Of A Thousand Men Is The Only song Many Will Remember Which Group By,Tenpole Tudor,General,What instrument was played by jazz musician Chet Baker,Trumpet -Entertainment,How many strings are there on a bass guitar?,Four,General,Where on the human skeleton would you find the ilium,Hip,General,85% of women do what,Wear wrong bra size -General,IBM was founded in what year,1896, Geography,What volcano showers ash on Sicily?,Etna,General,Lack of iron makes a person what,Anaemic -General,Hedera Helix is better known by what name,Ivy,General,Who murdered julius caesar,Marcus brutus, Geography,What is the capital of the country Georgia ?,Tbilisi -Sports & Leisure,How did Catherine McTavish make Wimbledon history in 1979 ,First Female Empire ,General,If you have polythelia what have you got,Three nipples,General,Who assassinated president kennedy,Lee harvey oswald -General,Ernest Breaux a chemist created which product in 1921,Channel No 5,General,In what European city was the first book in English published,Bruges - Belgium,General,What mythological animal was the insignia of UK Airborne WW II,Pegasus – carrying Beleraphon -General,In Norse mythology Thor's chariot is pulled by two what,Goats name Tanngrisni Tanngnost,General,Budapest is the capital of ______,Hungary,General,Who read casey at the bat for her tv debut on the ed sullivan show,Lauren -General,Which bird turns it head upside down to eat,Flamingo,General,"Who wrote and performed the song ""Poisoning Pigeons in the Park""",Tom lehrer,General,Star Wars - Darth ____,Mual Vader -General,Film - who was the star of the doctor,William hurt,Science & Nature,What is the world's largest insect?,Goliath beetle,General,The song Mack the Knife comes from what stage show,Threepenny Opera -Music,Reaching No 4 In 1994 Give The Full Title Of Cyndi Laupers Re- Released 80's Classic,Hey Now (Girls Just Want To Have Fun),General,"What actress said ""I dress for women - Undress for men""",Angie Dickinson,General,What nationality was Morse inventor of the famous code,American -Food & Drink,The Subterranean Fungus Highly Prized In Cooking Is Known As What ,Truffle ,General,What was al capone finally arrested for,Tax evasion,General,What is Brussels best known statue,The Mannequin Pis -General,Church bells of Maralnello Ring Sundays Public Hols and when,Ferrari team win,People & Places,What Is The Only American State That Starts With The Letter 'A' But Doesn't End With The Letter 'A' ,Arkansas ,General,"Countries of the world: landlocked country in southern Africa, the capital is Gaborone",Botswana -General,What's a single unit of quanta called,Quantum,General,Series of chemical elements that share similar electron orbital structures and hence similar chemical properties,Transition Elements,General,Who sang 'in the air tonight',Phil collins -General,Of who was Oedipus king,Thebes,General,"Who was the Norse god of light, beauty & peace",Balder,General,In Animal Farm Benjamin was what type of creature,Donkey -General,"Which Literary Fictional Family Lived At ""Hayworth Rectory"" In Yorkshire",The Borrowers,Geography,What is the capital of Algeria,Algiers,General,"What contagious disease was scheduled for complete eradication on June 30, 1999",Smallpox -Science & Nature,What Is Calcium Carbonate ,Chalk ,General,Which is the most westerly South American country through which the Equator passes,Ecuador,General,Alice Springs is a place in which country,Australia -General,What company is the largest aircraft manufacturer in the world,Boeing,General,What countries does the Mont Blanc Tunnel join,France and italy,General,"In mythology, who was the wife of Odysseus",Penelope -General,What is the fear of daylight or sunshine known as,Phengophobia,Food & Drink,What First Went On Sale In America In 1886 ,Coca Cola ,General,A study in shades of grey in the name of what picture,Whistlers Mother -General,What new territory was created in Canada in 1999,Nunavut,Geography,What color does the bride wear in China,Red,General,What country is the worlds largest exporter of Frogs Legs,Japan -History & Holidays,"In Halloween, Michael Meyers wore a Halloween mask of what famous character?",Captain Kirk mask,General,"In the game 'banjo-kazooie', what is gruntilda",Witch,Entertainment,"Popeye's chief adversary has two names, Bluto and ______",Brutus -Music,Where is Blue Jay Way?,Los Angeles,General,Who did Adolf Hitler dictate Mein Kampf to while in prison?,Rudolf Hess,Music,What Was Mud's First No.1 Single,Tiger Feet -General,"Austrian physicist and Nobel Laureate, best known for his mathematical studies of the wave mechanics of orbiting electrons",Schrodinger,General,Who composed the symphonic poems Swan of Tuonela and Kullervo,Sibelius,Toys & Games,"In which game or sport are ""Staunton"" pieces used",Chess -General,What is the integral of the magnetic field with respect to the area,Magnetic,Science & Nature,In What Country Was The Portable Domestic Electric Room Heater First Marketed In 1912 ,England ,General,What is the fear of ice or frost known as,Pagophobia -Music,Name The Three Greats That Played Guitar With The Yardbirds,"Eric Clapton, Jeff Beck, Jimmy Paige", Geography,What is the capitol of Iceland?,Reykjavik,General,What rock is formed from layers of mud & clay,Shale -General,What is the name of the fin on a fish's back,Dorsal fin,General,"How many ice ages have there been in the last 150,000 years",Two,General,What disease was once known as the white plague,Tuberculosis -General,If you had podobromhidrosis what would you have,Smelly Feet,General,"In Italy their I Puffi, In Hungary Torpok, Samafu in Japan - what",Smurfs,General,Chief electrician in a film unit,Gaffer -Music,"Who Took ""Smoke Gets In Your Eyes"" To No.1 In The UK In 1959",The Platters, History & Holidays,What Toy Still Hugely Popular Today First Went On Sale In 1959 Costing Just $3 ,Barbie ,General,What was Fred Astaire's real name,Frederick austerlitz -Religion & Mythology,"In Greek mythology, who had nine heads?",Hydra,Geography,With which country is Prince Rainier III identified,Monaco,General,What is the young of this animal called: Bear,Cub - History & Holidays,Who Released The 70's Album Entitled Blue ,Joni Mitchell ,General,Who was shot and killed in saloon number ten,Wild Bill Hickock,General,In Ohio by law pets have to carry what,Lights on tails at night -Art & Literature,Which novel by Mary Shelley was subtitled 'The Modern Prometheus'?,Frankenstein,General,Which radioactive gas is emitted by granite rock formations,Radon,General,I was Born under a Wand'rin Star' came from which film,Paint your wagon - History & Holidays,Who married actress Nancy Davis?,Ronald Reagan,Geography,What's the largest museum in the world ,The louvre ,General,In which country is it polite to stick your tongue out at your guests?,Tibet - History & Holidays,Who built the Lambarene missionary station?,Albert Schweitzer,General,U.S. Captials - Connecticut,Hartford,General,What US ports name means in Choctaw long haired people,Pensacola in Florida -General,Where's america's oldest zoo,Philadelphia,Art & Literature,Which Author Wrote Novels Apon Which The Tv Series (All Creatures Great & Small) Was Based ,James Herriot ,General,Vehicle designed for the transportation of the sick or injured,Ambulance -General,What is the Hindu Kush,Mountain Range,General,"The Modern Pentathlon event includes the disciplines fencing, cross-country running, riding, shooting and which other event",Swimming,General,License Plates: Who are SHEMP1's favorite comedians,Three stooges -General,Selenophobia is the fear of,The moon,General,"Harp, Elephant and Leopard all types of what",Seal,General,What is the fear of large things known as,Megalophobia -General,Californian law no shooting any animal - moving car except what,Whale,General,Who Wrote The Novel 101 Dalmations?,Dody Smith,General,"American inventor and teacher of the deaf, most famous for his invention of the Telephone",Alexander Graham Bell -General,What is a group of turtles,Bale,Science & Nature,Which Is The Largest Living Rodent ,Capybara ,General,What was the name of prince Hamlet's father in the play Hamlet,Hamlet -General,Clomipramine an anti depressant had what unusual side effect,Orgasm when yawn,General,What word - last arrow in archery contest or the final outcome,Upshot,General,"Whose final words were ""It hurts""",Charles De Gaulle -General,Pablo picasso was abandoned by the midwife just after his birth because she though he was stillborn. by who was he saved,An uncle,General,In film making what does a Blimp do,Covers camera – reduce noise,General,Who became king of Scotland two years before Edward the Confessor took over as king of England?,MacBeth -General,Who invented the yo yo,Donald f duncan,Entertainment,"What classic rock band sang the song 'Paint It, Black'?",Rolling Stones,General,"Converter ""Slow Ride"" was Foghats biggest hit from this album released in 1975",Fool -General,"In the film Friday The Thirteenth, which character was the killer",Mrs. vorhees,General,"7% of Americans don't know the first nine words of the American anthem, but know the first seven words of which anthem?",Canadian anthem,Science & Nature,The Third space shuttle was named __________.,Discovery -General,Randy travis said his love was 'deeper than the ______',Holler,General,"Name the artist/band that recorded this song ""No Limit""",2 unlimited,General,In Schulter Oklahoma nude women cannot do what,Gamble -General,The U.S. Congress comprises the Senate and which other house or chamber,House of representatives,Science & Nature, An ox is a castrated bull. A mule is a sterile cross between a male ass and a __________,Female horse,General,What is another name for a lexicon,Dictionary - History & Holidays,What Was Founded In The Reign Of Henry VIII For The Protection Of The Royal Person? ,Yeoman Of The Guard Or Beefeaters ,Sports & Leisure,Who Was The only Australian To Win The Men's Singles At Wimbledon In The 1980's? ,Pat Cash ,Music,In 1998 David Trimble & John Hume Joined Which Band On A Belfast Stage In Support Of The Good Friday Peace Agreement,U2 -Music,Whose Real Name Is William Michael Albert Broad,Billy Idol,General,What kind of shark has killed the most people,Great white,Science & Nature,What Is The Algebra Involved In Set Theory Called ,Boolean Algebra  -General,What spice is used to make a whiskey sling,Nutmeg,General,What is a Paradiddle,Drum Roll,General,"What is the sudy of humankind, societies and customs",Anthropology -Geography,The largest city on the Mississippi River is _________________,"Memphis, tennessee",General,With what does Dr. Seuss' name rhyme,Rejoice,Music,"Prince's ""Baby Im A Star"" Featured On The Sou8ndtrack To Which Film",Purple Rain -Music,"Mason, Wright & Waters Who Is Missing From This 1972 Line Up",Gilmour (Pink Floyd),General,Which US state gets the most overseas visitors,California – Florida second,General,What links Hof Malomo Zagreb Belgrade Porto Varna Vevey,International film festivals -Science & Nature, Many corals receive nourishment from algae which grow inside their __________,Tissue,Food & Drink,The Prongs On A Fork Are Actually Known As What ,Tines ,General,Which timepiece has the most moving parts,Egg timer -General,ROK international car registrations which country,Korea,General,What is the Capital of: Afghanistan,Kabul,Music,Who Was The Drummer With The Osmonds,Jay Osmond -General,What does the girls name Rebecca mean,Noose,Music,Which Group Had A Hit With The Final Countdown,Europe,General,What does btU.S.tand for,British thermal unit -General,"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,General,"""Faux pas"" means ___________",Mistake,General,Parcheesi is the national game of which country,India -Entertainment,Who is Sally Brown's sweet baboo?,Linus,General,Only 6 people died in what historic event,Fire of London 1666,General,A male singer whose sexual organs have been modified is known as a what,Castrato -General,What year was the first tooth extraction under anaesthetic performed,1846, History & Holidays,In what country did John Lennon and Yoko Ono start their honeymoon? ,Holland/Amsterdam ,General,"Countries of the world: western Asia, Amman is the capital",Jordan -Music,"What Was Unique About Depeche Mode's Single ""Personal Jesus""",First Of Their Singles To Feature Guitars, Geography,Where is Calcutta?,India,Food & Drink,Which Fruit Is The Main Ingredient Of The Relish Guacamole? ,Avocado  -Art & Literature,What Was The Name Of The Author Who Released A Guide To Baby And Child Care In 1946 ,Dr Spock (No Kidding) ,General,Family lived small farm Walnut Grove Plumb Creek Minnesota,Ingles - Little House on Prairie,General, What is the common name for a Japanese dwarf tree,Bonsai -Food & Drink,Name the two dishes named after an opera singer? ,"Peach Melba, Melba Toast ",General,What used to be caught in a fanny trap,Foxes Mid ages fem fox nick fanny,General,There are 33 words on the back of a bottle of what beer,Rolling Rock -General,Cinnamon flavored candies with a Mexican theme.,Hot tamales,Entertainment,What color was Bullitt's car?,Green,Music,Which Duo Went Straight In At No.1 In The Charts On May 20 1995,Robson & Jerome -Science & Nature,What Does E Stand For In E- Numbers? ,European ,Science & Nature,What well known marsupial is the wallaby related to?,Kangaroo,General,What is the extinct animal Megantheron better known as,Sabre Toothed Tiger -Entertainment,Who wrote the opera 'norma'?,Vincenzo Bellini,General,Who signed the 'thanksgiving proclamation',Abraham lincoln,General,What name is given to the Friday in holy week,Good friday -General,Until 1965 what was illegal for Connecticut married couples,Contraception,General,What is the name of the Formula One Grand Prix racing circuit located in Brazil?,Interlagos,General,The study of man & culture is known as ________,Anthropology -General,What were sonny and cher originally called,Caesar and cleo,General,From what country do we get Avia wines,Yugoslavia,General,Bismarck is the capital of ______,North dakota -General,Which religion believes in the Four Noble Truths,Buddhism,General,What is a group of roe deer,Bevy,General,"Name the European hit, now an animated series about underwater people",The snorks -Geography,What city is the Christian Science Monitor based in,Boston,General,Mexico's equivalent to the dollar is the ______?,Peso,General,Prosopography is the study of what,Careers -General,Who invented the toothbrush ?,William Addis,Science & Nature," More than one million stray dogs and over 500,000 stray cats live in the __________",New york city,General,In English packs it's the Jack or Knave what in French packs,Valet -General,Whose hit I Will Survive became an anthem for Women's Lib,Gloria gaynor, History & Holidays,What sort weapon was used in The Shining ,An Axe ,General,Collective nouns - a giggle of what animals,Hyenas -Music,How Are The Trio Of Ferguson Pinkney And Holliday Better Known,The 3 Degrees,General,What was the distress call before SOS,CQD - come quick danger,General,What animal became officially extinct in 1681,Dodo -General,What is soccer star pele's real name,Edson arantes do nascimento,General,What 19th century explorer translated the Kama Sutra,Sir Richard Burton,Toys & Games,Where does the annual Poker World Series take place?,Las Vegas -General,Nenen-Kona is sold in Russia - what do we call it,Pepsi-Cola,General,Who was the daughter of Mary Wollstonecraft & William Godwin,Mary shelley,General,Who makes robitussin cough syrup,Ah robins -Music,"Go West Had A Hit With ""We Close Our Eyes"" Or ""Eyes Wide Shut""",We Close Our Eyes,General,What star sign is Harry Potter,Leo,General,What do the Italians call Munich?,Monaco of Bavaria -Music,Which Was The First Group To Appear In Madame Tussauds As Waxwork Models,The Beatles,Music,What Was Elvis Presleys Middle Name,Aaron,General,"What are Claymore, Thistle and Piper",North Sea Oil Fields -Music,Which rock singer was badly injured whilst riding his quad bike in 2003,Ozzy Osbourne,General,Name of the Roman hippodrome used for chariot races,Circus Maximus,Music,What Group Did Ray And Dave Davis Form In 1962,The Kinks -General,On what do approximately 100 people choke to death every year?,Ballpoint pens,General,What is the basic flavouring of kahlua,Coffee,General,"Who is known as ""the world's oldest teenager""?",Dick Clark -General,What was Trotsky's first name,Leon,General,In what does a steganographer write messages,Invisible ink,General,How often does Halley's comet become visible,Every 76 years -General,Fred Silverman invented the name Scooby Do named after who,Frank Sinatra,General,What is the international telphone dialing code for Antarctica,672,General,"According to the Bible, what kind of woman had a price above rubies",A virtuous woman -Religion & Mythology,In what month is Christmas observed,December,Science & Nature,What word is used for a male duck,Drake,General,Name the largest island in the world,Australia -Music,What Was Arrested Development's First UK Chart Entry,Tennessee,General,Ondinism is arousal from what,Urine,Music,What Did The Human League Keep Feeling,Fascination -General,What authors (unused) final two names are Bower Yin,Leslie Charteris,People & Places,Who Was Eric Sykes On Screen Sister ,Hattie Jaques ,General,In the original Star Trek who has unrequited love for Mr Spock,Nurse Chapel -Music,"Paul Hardcastle's Hit ""19"" Was About Which War",Vietnam,General,Where is the world's largest desert,North africa,General,Whom did Isabel Peron succeed as President of Argentina in 1974,Juan peron -General,Who ran after the farmer's wife,Three blind mice,General,"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,Science & Nature,Which Animal Has Young Called Elver? ,The Eel  -Sports & Leisure,What Is The Most Valuble Property In A Game Of Monopoly ,Mayfair ,General,The book called 'the cocktail party' was written by _________,Ts eliott,General,Simmons film - who was the female star of bugsy malone,Jodie foster -General,The North and South Islands of New Zealand separated by what,Cook Strait,General,"On a human body, hair grows out of pits in the skin. What are these pits called",Follicles,General,In which decade if the 20 century was the first Filofax sold,1920's -General,Peter Goldmak invented what in 1948,LP record,General,Little Jumping Flea literal trans of what Hawaiian instrument,Ukulele,Science & Nature,He transmitted radio signals across the Atlantic in 1901.,Enrico Marconi -Sports & Leisure,Who Was The Only Female To Win A BBC Sports Personality Of The Year Award In The 1990's? ,Liz McColgan ,Art & Literature,What Is The Surname Of Cathy In Wuthering Heights ,Earnshaw ,Music,"Born Roberta Joan Anderson Who Had A 1970 Hit With ""Big Yellow Taxi""",Joni Mitchell -General,Ecuador was named after who / what,The Equator,General,Which singers first band was called The Spiders,Alice Cooper,Music,In December 1990 Who Became The Only Act To Top The Charts In 5 Separate Decades?,Cliff Richard -General,What country used the first aircraft equipped bomber in war,Italy Italian Turkish war 1912,General,What meat outsells mutton and lamb combined in Sweden,Horse meat,Music,"This Was A Highly Successful Film In 1961, A Flop Broadway Musical In 1966, And A Top Ten UK Hit In 1996, What Is It?",Breakfast At Tiffany's -General,Oil is the most traded product in the world what is the second,Coffee,General,Who is the Patron Saint of Grave diggers,St Anthony,Food & Drink,What three main ingredients are added to mayonnaise to make a Waldorf salad? ,"Apple, celery and walnuts " - History & Holidays,In which country do people go to the beach to jump seven waves and throw flowers in the sea while making a wish? ,Brazil ,General,What is the many- legged mythological sea creature of Scandinavia,Kraken,General,Who sang about 'commitment',Leann rhimes -Geography,Where are the headquarters of the CIA?,"Langley, Virginia",General,A pugilist is a _____.,Boxer,General,Catherine the Great kept who in an iron cage in her bedroom,Wigmaker -Sports & Leisure,How Many Times Did Lester Piggot Win The Derby ,Nine ,General,John Chapman was the real name of someone famous in Ohio?,Johnny Appleseed,General,What is a group of snakes,Nest -General,In what Australian state would you find Bundaberg,Queensland,General,Melophobia is the fear of,Music,General,After homes and jobs where do Americans spend most time,Shopping Malls -General,Who did david kill,Goliath,General,Dish what is the thread used in surgery to tie a bleeding blood vessel,Ligature,General,Who was jethro tull,Agriculturist -People & Places,For What Is Peter Roget Famous ,His Thesaurus Of Words ,General,What is the Capital of: Turks and Caicos Islands,Grand turk,General,"Until 1947, what mixture used for calming babies contained opium",Gripe water -Music,"Who Had A Hit In 1985 With ""The Heat Is On""",Glen Frey,General,In Shakespeare who is Romeos love - before Juliet,Rosaline,General,"DNA analysis suggests there are three distinct species of this animal, African forest, African savanna & Indian. What animal",Elephant -General,Which U.S. president was fatally shot in 1881,Garfield,General,What is the clarified butter used in Indian cuisine,Ghee,General,Which company manufactures Calvin Kline's Obsession,Unilever -General,"Who In The World Of Music Has The Real Name ""Wladziu Valentino"" (Pronounced) ""Vlad Zoo""",Liberace,General,Legal Terms: A formal agreement enforceable by law.,Contract,General,Which animal has the largest eyes,Giant squid -Science & Nature,What animal can live several weeks without its head?,Cockroach,General,Which eponymous character was Thane of Cawder Glaimes,Macbeth,General,Pope Clement VII made it illegal for anyone else to eat what,Mushrooms -General,"Which of Shakespeare's kings cries: ""A horse! A horse! My kingdome for a horse!""",Richard iii,General,Marconi transmitted radio signals across which ocean,Atlantic ocean,General,Which painting medium is an emulsion of egg yolks and water,Tempera -General,St Florian is the patron saint of which profession?,Firefighters,General, Legal Terms: To steal property entrusted to one's care.,Embezzle,General,What was the recently closed Wembley Stadium called in 1923,The Empire Stadium -General,Who did Sitting Bull call little sure shot,Annie oakley, Language,What does SOS stand for,Save Our Souls,Food & Drink,What was Bretts last supper in the film Pulp Fiction ? (food and beverage) ,A Big Kahuna (cheese)burger and Sprite  -General,From which country does spinach originate,Iran,General,The earliest recorded one held 1887 Sheen House Richmond ?,Motorcycle Race,General,What is the drink 'Southern Comfort' flavoured with,Peaches -Sports & Leisure,The Golden Gloves Championship is in Which Sport ,Boxing , Geography,What is the basic unit of currency for Benin ?,Franc,General,"Who wrote the book ""wouldn't take nothing for my journey now""",Maya -General,Who is the roman messenger god,Mercury,General,What would you do with a wandering sailor,"Plant it, it’s a plant",General,How many member states are there in the United Arab Emirates,Seven -General,Who directed 'The French Connection' and 'The Exorcist',William friedkin,General,"Where did you play with Ben, Pauline and Michele",Microsoft Windows Hearts game,Geography,Which country has the internet domain .me? ,Montenegro  -General,At which grand prix did Nikki Lauda make his comback,Italian,General,"If you left Oklahoma by crossing the Red river in a southerly direction, which American state would you enter",Texas,General,If you are born in March what is your Flower,Violet -General,What is the capital of the Spanish region of Aragon,Zaragoza,General,Who Was The Last British Player To Win A Singles Title At Wimbledon?,Virginia Wade In 1977, History & Holidays,Which 50's Movie features the Line 'Tomorrow you'll be one of us' ,The Invasion of the Body Snatchers  -General,38 million Americans one in five don’t like what,Sex,General,Lucknow is a city in India - and what other country,Canada,General,Cirrus is a cloud type - what literal translation of its Latin name,Lock of Hair -General,What was painted on peter fonda's helmet motorcycle helmet in 'easy rider',Stars and stripes,General,"What woman is the wife of prince phillip, the mother of anne, andrew, charles and edward, and the daughter of george vi",Elizabeth ii,General,What is a gharial,Fish eating Nile Crocodile -General,Where do men play each year for the Challenge Cup,Wimbledon,General,What name is given to a countries song played on official occasions,National anthem,General,What country was the setting of 'you only live twice',Japan -General,What is the largest city in switzerland,Zurich, History & Holidays,"When is the Feast of St. Nicholas? Dec 6th, Dec 18th, Dec 25th, Dec 27th ",Dec 6th ,General,What singer sang the song Spank Me,Madonna -Entertainment,"In the film ""Bright Eyes"", Shirley Temple sang about this boat.",The Good Ship Lollipop,Sports & Leisure,Who Has A Best Friend who is known to his close pals as Five Bellies ,Paul Gascoigne ,General,Which singer went from 'The Libertines' to 'Babyshambles'?,Pete Doherty -Geography,Which Metallic Element Has The Symbol EU ,Europium ,General,Duffy: The Good Earth,Buck,General,What should you give on a 35th wedding anniversary,Coral -Music,Who is the oldest Beatle?,Ringo Starr,General,What is the southernmost country on the Balkan peninsula,Greece,General,Trudeau 3399 what sport do you rack your balls in,Billiards -General,What is the number of blue razor blades a given beam can puncture,Gillette,Science & Nature,Which colour has highest wavelength in the visible spectrum?,Red,Art & Literature,"A method of producing images or letters from sheets of cardboard, metal, or other materials from which forms have been cut away. ",Stenciling -Music,"What Group Consisted Of Marc Bolan, Steve Peregrine Took",T-Rex,General,Who's Best of Album is called Paint the Sky With Stars,Enya,Geography,What symbol is on the flag of Vietnam,Star -General,Name a quadruped beginning with the letter N,Newt - Nutria – Nagli,General,Which fictional character lived at Montague street before moving,Sherlock Holmes, History & Holidays,"His wife was Roxana, his horse was Bacephalus, he was?",Alexander the Great -General,When do parallel lines meet,Never,General,Who sailed in the Nina - Pinta and Santa Maria,Christopher Columbus,General,When were fortune cookies invented,1918 -General,Who wrote the opera Der Rosenkavalier,Richard Strauss,General,In which language was the poem 'Beowulf' written,Old english,General,What is the smallest bone in the body,Stirrup bone -Science & Nature,Which Dog Bites Human Beings More Than Any Other? ,The Alsatian ,General,Where is the Nep stadium,Budapest,Science & Nature,What Do You Call A Person Who Studies Earth Quakes ,Seismologist  -General,Technical theater: what's the instantaneous killing of all stage lights,Blackout,Science & Nature,"What nationality is Erno Rubik,inventor of the 80's craze the Rubik's Cube? ",Hungarian ,Music,Upon Which Shakespearean Play Is The Musical West Side Story Based,Romeo & Juliet -General,What is the product for the slogan 'a crown appears on your head and trumpets sound when you taste it',Imperial margarine,General,The Invisible Empire is better known as what,Klu Klux Klan,Music,"There Have Only Been 2 No.1 Singles That Have Rhymed ""Eskimo"" With ""Arapahoe"" Name Them",Hit Me With Your Rhythm Stick & Chicken Song -General,In what film did Tommy Lee Jones make his debut,Love Story - As Hank,General,Which musical was based on H.G.Wells' novel 'Kipps',Half a sixpence,General,Who wrote Breakfast at Tiffany's,Truman Capote -General,What emergency safety device was first used in 1945,Ejector Seat,General,The Lambada dance originated in which country?,Brazil,General,Old apothecaries weights 20 grains in a what,Scruple -General,Who hit the first golf shot on the moon?,Alan Sheppard,General,Three under par on a hole of golf is called a(n) __________,Albatross,General,Who was Robbin Island Prison's most famous inmate ?,Nelson Mandella -General,What is the fear of stealing known as,Kleptophobia,General,"This artist cut off his ear & sent it to his lover, before shooting himself dead in a cornfield",Vincent van gogh,General,What is a group of buzzards,Wake -General,What flavouring is used in the Belgian beer Kriek,Cherries,General,What is the flower that stands for: be mine,Four-leaved clover,Geography,The Little Mermaid is found in the harbour of which city,Copenhagen -General,What is the National Bird of India,Peacock,General,Legend says tortellini was created to honour what part of Venus,Her belly button,Religion & Mythology,Who is the greek equivalent of the roman god Vesta,Hestia -General,12 letter word: fancy name for fireworks,Pyrotechnics,General,Myosotis Sylvestris is the Latin name of which common plant,Forget me Not,Sports & Leisure,How many times did stirling moss win the world championship? ,Never  -General,What year did was the great stock market crash that lead to the great depression,1929,General,Camellia Sinesis evergreen shrub better known as what,Tea,General,Captain cook lost almost half his crew in 1768 on his first voyage to ______,South pacific -Music,Who Fell To His Death From An Amsterdam Window In 1988,Chet Baker,Geography,Where Is The Original London Bridge Now Situated ,At Lake Havasu Arizona ,Food & Drink,Plashing' is a term used to describe the collecting or gathering of what kind of nuts? ,Walnuts  -General,Which dance means in Portuguese snapping of a whip,Lambada,Music,The Heartbreakers Backed Which American Singer?,Tom Petty,General,What happens to 12% of Americans each year,Arrested -Science & Nature," Unlike dolphins, porpoises are not very __________",Sociable,General,"A flat, round hat sometimes worn by soldiers is a _________.",Beret,General,What is the Capital of: Guinea,Conakry -Sports & Leisure,What is the 'perfect score' in a game of Ten Pin Bowling? ,300 ,People & Places,In Which UK City Was Dick Turpin Hanged? ,York ,General,Who composed 'the four seasons',Vivaldi -People & Places,Who Founded The Playboy Magazine? ,Hugh Hefner ,General,Who designed the uniforms for the vatican city's swiss guards,Michelangelo,General,Capital cities: Taiwan,Taipei -General,Which French General left Napoleon to become King of Sweden,Jean-Baptiste Jules Bernadotte,General,A kipper is what type of smoked fish,Herring,General,"Cocktails: gin, blue curacao & lemonade make a _______",Blue lagoon -General,"What police show featured Officers Webster, Gillis and Danko",Rookies,Food & Drink,From Which Fruit Was Marmalade Orginally Made ,Quinces ,General,Frodo. Gandalf and Bilbo Baggins are all characters from what,The lord of the rings -Music,Which Group Was Banned From The Official Washington 4th July Celebrations In 1983 Because Secretary Of The Interior Said They Would Attract An Undesirable Element,The Beach Boys,Music,Name The 2 Members Of Wham,George Michael & Andrew Ridegley,General,FIDE govern what game,Chess -General,Name Frosty the Snowman's son,Chilly – Millie Daughter Crystal wife,General,Who was the tallest man,Robert wadlow,General,What is the transformation of inhospitable planets into hospitable ones,Terraforming -Music,What year did Chet Atkins release his first solo album?,1953,General,Nervous as a long tailed cat in a room full of ______,Rocking chairs,General,Madame Tussard the waxwork founder was born in which city,Strasbourg -Tech & Video Games,Who was the main character in the original 'Street Fighter'? ,Ryu,Music,Who were the original four members of the pop group Genesis? Point for each,"Peter Gabriel,Phil Collins, Mike Rutherford & Tony Banks",Music,"Who Recorded The Million Selling Album ""No Parlez""",Paul Young - Geography,What is the capital of Latvia ?,Riga,General,Who had a hit in the UK singing about the Streets of London,Ralph McTell,General,What is the state bird of New York,Bluebird -General,Who Is The Patron Saint Of Lovers ,St Valentine ,General,What was the last item shown on British TV before WW2,Mickey Mouse,Food & Drink,What Is Aioli ,Garlic Mayonnaise  -General,Defender of the constitution whose headstone reads '..that nothing's so sacred as honor and nothing's so loyal as love',Wyatt earp,General,What's the state bird of utah,Sea gull,General,What sport uses rubber cushions and slate beds,Billiards -Science & Nature, The crocodile is a cannibal; it will occasionally eat other __________,Crocodiles,General,What is the royal house of Monaco,Grimaldi,General,What was the name of the company that the characters on Taxi worked for?,Sunshine Cab Company -General,Who gets bitten by vampire bats on the big toe,Campers,General,Daysypgal people suffer from what,Hairy Arse,Music,Name the group that linked with Motorhead on the St Valentine's Day Massacre EP?,Girlschool -General,"In England what links Arden, Dean, Kielder and New",Forests,General,Why did certain busses in Staffordshire refuse to pick up people,Keeping to schedule,General,When a satellite is closest to Earth its position is called what,Perigee -General,When did Nostradamus live,1503 1566,Religion & Mythology,Who is the Norse god of thunder and war?,Thor,General,Which country has the longest coastline?,Canada -General,Hippophagic society members support what,Eating horsemeat,General,Artemis is Greek Goddess of what - only one among all Gods,Virginity and Chastity,General,Barbary Apes live on what Mediterranean feature,Rock of gibraltar -Geography,"This country occupies the ""horn of Africa"".",Somalia,Science & Nature,Which Astronaut piloted Apollo 11 while Armstrong and Aldrin walked on the moon ,Michael Collins ,Sports & Leisure,What Sport Would You Expect To See In A Velodrome? ,Cycling  -General,Bozzoli is what shape of pasta,Cocoons, Geography,What country are the Islands of Quemoy and Matsu part of?,Taiwan,Sports & Leisure,Which British Boxer Was First To Win 3 Lonsdale Belts Outright? ,Henry Cooper  -General,"Name the connection bewteen the ""A-Team"" and ""Battle Star Gallactica?""",Dirk Bennidic,General,In The Austin Powers Movies What Is The First Name Of Austin Powers Arch Enemy Dr. Evil,Dougie,General,What don mclean song laments the day buddy holly died,American pie -General,What does a lepidopterist collect,Butterflies,Sports & Leisure,"Is The Oaks Race , A Race For Colts Or Fillies ",Fillies ,People & Places,After Whome is the Teddy Bear Named ,Theodore Roosevelt  -Music,"In ""Penny Lane"", what did the Fireman keep in his pocket?",A portrait of the Queen,General,"In which constellation is the night's brightest star, Sirius",Canis major,General,Whose first single released July 1961 was Buttered Popcorn,The Supremes -General,From which Shakespeare play does the line 'The course of true love never did run smooth.' come,A midsummer night's dream,General,"Name of the ""cow town"" Joseph McCoy developed in the 1860s",Abaline,General,What's the largest and most powerful of the american cats,Jaguar -Sports & Leisure,Which premiership team used to play at the baseball ground? ,Derby County ,Science & Nature,Quinine is added to water to make _______.,Tonic water,General,Pellagrophobia is the fear of,Pellagra -Music,In what year did Bob The Builder have a U.K. Xmas No1 hit with “Can We Fix It”?,2000,General,Most Jell-o contains crushed what,Hooves,General,"On The Subject Of Fine Wines, Or In This Case Not So Fine , Which Country If The Origin Of The Word “Plonk”?",Australia -General,What is the bone at the end of the spine,Coccyx,General,"What late television commentator closed with ""good night and good luck""",Edward r murrow,General,Which Country Was The First To Allow Woman To Vote?,New Zealand -General,What is a Caryatid,Building support woman shaped,General,Who was the Greek philosopher who decided he'd rather drink hemlock than deny his beliefs,Socrates,General,In Which Tv Show Were “ Henry Davenport & Sally Smedley ” Newsreaders,Drop The Dead donkey -General,"Which city is a 'player with railroads, and the nation's freight handler'",Chicago,General,Who wrote Tropic of Cancer and Tropic of Capricorn,Henry miller,General,"Who plays the part of Satan in the film The Devil's Advocate, released in 1998",Al pacino -General,"What fictional character was ""The Napoleon of Crime""",Professor Moriaty,General,The gluteus maximus muscle is the bulk of the,Buttock ass butt,General,What does sub rosa mean,Not literally but in plain english in secret -General,Who was puff the magic dragon's human friend,Little jackie paper,Religion & Mythology,Who was the ancient Egyptian goddess of the sky and queen of heaven ?,Hathor,Science & Nature,This ugly creature has patches of red on his rear-end.,Mandrill -Food & Drink,"Booze Name: 2 oz. gin, juice of 1/2 lemon, 1 tsp sugar, top with soda water.",Gin fizz,General,"Mauna Loa, Paricutin, Surtsey and Susya are all what",Volcanoes, Geography,What is the capital of Estonia?,Tallin -Geography,Which country administers Christmas Island,Australia,General,How much do nine pennies weigh?,One ounce,Entertainment,The initials of the band NIN stand for?,Nine Inch Nails -Music,"Who Did Stevie Wonder Duet With On The Track ""My Love"" In 1988",Julio Iglesias,General,What is the young of this animal called: Rabbit,Bunny kit,General,What is a chihuahua named after,Mexican state -General,What was the title of Joe Loss's signature tune,In the mood,General,How did Alfred Nobel make his money,He invented Dynamite,Sports & Leisure,What Animal is Featured On a Ferrari Badge ,Horse/Stallion  -General,The peace of Aix-la-Chapelle was celebrated by which piece of music,Music for the royal fireworks,General,What is the geographic centre of the u.s,South dakota,General,What is the only country to have a single color flag,Libya -Food & Drink,Booze Name: 1 oz. gin and 1 oz. orange juice.,Orange blossom,General,In 1976 in USA 23 people got swine fever and died from what,The Treatment,General,"Who did time magazine nickname the ""first lady of radio"" in 1939",Kate smith -General,What USA state drinks the most beer,California,General,The Washington Post received the 1973 Pulitzer prize for reporting what,Watergate scandal,General,"Who said ""never kick a fresh turd on a hot day""",Harry S Truman -General,Where did you find cherry strawberry orange apple grape bird,Pac Man speed up things,Music,Who Enjoyed Chart Success In 1991 With Diamonds And Pearls?,Prince,General,"By raising your legs slowly and laying on your back, in what can you not sink",Quicksand -Music,"Which One Of These Songs Was A Hit For Madness ""Love Is Enough"", Baggy Trousers, Enough Is Enough""",Baggy Trousers,General,Which American As Of 2010 Has Spent The Longest Term In Office,Franklin D Roosevelt,General,What legume did George Washington Carver use as a basis for over 300 inventions,Peanuts -General,"What are mother mary's ""whispered words of wisdom""",Let it be,General,What teaching aid is made mainly from soft limestone,Chalk,General,Who is the roman equivalant of the greek god eros,Amor -General,Eddie Irvine is contracted to drive for which car company in 2001,Jaguar,General,What is pure china clay called?,Kaolin,General,The date of which christian festival was fixed in 325 ad by the council of nicaea,Easter -Geography,What is the capital of Bangladesh,Dhaka,Food & Drink,What is the French word for a cake shop? ,Patisserie , History & Holidays,What is the next line 'Christmas is coming the goose is getting fat …'' ,Please put a penny in the old mans hat  -General,In Which Shakespeare Play Does A Ghost Not Appear,A Midsummer Nights Dream,Music,What Is The Only Song From Michael Jackson's Thriller Album To Reach The No.1 Spot?,Billie Jean,General,Perfume from the fruit of a dwarf orange tree,Bergamot -General,Who is the abandoned man cub in The Jungle Book,Mowgli,Music,"Which Timeless Vocalist Recorded The Album ""Private Collection"" In 1988",Cliff Richaqrd,General,What bird lays an egg that is roughly a quarter of its body weight?,Kiwi -Music,"Which Queen Of Soul Did George Michael Team Up With For The Song ""I Knew You Were Waiting For Me""",Aretha Franklin,General,34-40 knots wind speed signifies what weather condition,Gale,Music,Which Northern UK English city Did The Beatles Come From,Liverpool -General,What is chiengora,Dog Hair spun into yarn,General,Dakar Is The Capital City Of Which Country,Senagal, History & Holidays,What is the name of the 'big con'' that Paul Newman and Robert Redford carry out in _The Sting_? ,The Wire  -Sports & Leisure,Who on the F.A. Cup the most times during the 70's? ,Arsenal , Geography,Which state is divided into two parts by a large lake?,Michigan,Music,"What artist had most weeks in the UK chart in 2000 was it Bob The Builder, Westlife, Craig David or Britney Spears?",Craig David -General,Who founded ASH ( Action on Smoking and Health ) in 1971,Royal College of Physicians, History & Holidays,What rock magazine that came out in the eighties is now Rolling Stone's major competitor? ,Spin ,General,What do we call what the Japanese call Oshugatsu,New Year -General,"In Hinduism, which God is known as the Preserver",Vishnu,Music,What Single GaveThe Human League A Transatlantic Number One,Dont You Want Me Baby,General,Who is the unit of sound named after,Alexander Graham Bell - Decibel -General,"Who was nicknamed ""Queen of the Swashbucklers""",Maureen O' Hara,General,Raleigh is the capital of ______,North carolina,General,"How Many Sides Does A ""Enneadecagon"" Have",19 -General,The British Patent Office since 1949 banned patents for what,Perpetual Motion Machine,General,Joseph Adams served as the minister at Newington for how many years,68,Art & Literature,To What Name Was The Hall Of Arts & Sciences Changed ,The Royal Albert Hall  -General,"What Type Of Food Stuff Comes From The French Language Literally Meaning ""Eat All""",Mange Tout,Science & Nature," 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,General,The baby ruth candy bar was named after which u.s president's daughter,Grover cleveland -General,Philippe Pages is the real name of what pianist,Richard Clayderman,General,Where does the Iditarod dog sled race take place,Alaska,General,"""One shaft of light that shows the way, no mortal man can win this day"" what is the Queen song title",A Kind of Magic -General,A man who commits Pseudogyny is doing what,Uses woman's name to deceive,General,"When using a telephone, you must wait for a ____ tone before starting your call",Dial,General,What vehicles are involved in the 'Tour de France',Bicycles -General,What kind of triangle has a hypotenuse,Right angle triangle,General,Who is christina claire ciminella,Wynonna judd,Music,Who was best man at John and Cynthia's wedding?,Brian -General,Who did macduff kill,Macbeth,Entertainment,How many freckles did Howdy Doody have?,Forty eight,General,The liquid measure of a capacity equal to 1/8 of a fluid ounce is a(n) _________.?,Fluid Dram -Music,What is Leslie West's nickname?,Mountain,General,Margaret Herrick named it in 1931 what,The Oscar – looked like her uncle,Science & Nature,Aspirin was originally obtained from the bark of which tree? ,Willow  -Food & Drink,"If you wanted your eggs fried without cooking the yolks, how should you order them in? ",Sunny side up , Geography,What is the capital of Papua New Guinea ?,Port Moresby,General,Peter Piper picked a peck of what?,Pickled peppers -Music,"Which Comedy Duo Made The Song ""Bring Me Sunshine"" Their Own",Morecambe & Wise,General,"What philosopher stated ""Hell is other people""",Jean Paul Sarte,Music,"Gloria Estefan's Band Was Called ""The Miami Sound Machine"" Or Was It ""The Furious Five""",The Miami Sound Machine - History & Holidays,Where did Gerald Durrell open his zoo in 1958? ,Jersey ,Science & Nature,In The 1933 Film Which Actress Is Held Aloft By King Kong ,Fay Wray ,General,How was Tristram Shandy (fictional character) circumcised,A Sash window fell on it -General,What Edwin Budding invention began changing the face of English landscapes in the 1820's,The lawn mower lawn mower,Music,Whose Magnificent Bald Head Featured On The Cover Of His Hot Butterd Soul Album,Isaac Hayes,General,"In Greek mythology, what were the golden apples",Apricots -General,A fagotist is a person who does what,Plays the Bassoon,General,And what was his first US number one,Heartbreak Hotel,General,What country does Gotland belong to,Sweden -Music,Name The Label Owned By Madonna,Maverick,General,"Which Famous Person Was Born In Grantham, Linconshire On 13th October 1925",Margaret Thatcher,General,The name Gregory is from the Greek meaning what,Watchman -General,Theologicophobia is a fear of ______,Theology,General,A crapulous person is full of it - what,Alcohol - it means drunk,General,"Salad plant, its root can be roasted and ground and used as coffee",Chicory -General,"Which Shop Of Jewish Origin Used To Have The Motto "" Don't Ask The Price - Tis A Penny """,Marks & Spencer,General,What do you call a female calf,Heifer,Science & Nature,"What fruit bear the latin name ""citrus grandis""?",Grapefruit -General,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,General,In the Chinese horoscope what animal comes last alphabetically,Tiger,Food & Drink,Which drink is sometimes referred to as Adam's ale? ,Water  -General,In China if you order white tea - what do you get,Boiled Water,General,Which Swiss town hosts the annual Golden Rose Television Festival,Montreux,General,With what instrument is the jazz musician Chet Baker associated,Trumpet - Geography,"Located above and just below the Arctic Circle, this region became an official territory of Canada in April 1999.",Nunavut,General,A motorist who enjoys driving fast,Speed merchant,Music,"Which 60's Model Starred In Ken Russell's Film Of The Musical ""The Boyfriend""",Twiggy -General,What conc. product carried in tankers has a hazardous sign,Coca Cola,General,Which capital city stands near the delta of the Irrawaddy river,Rangoon,General,What sport do players 'tee off' in,Golf -General,Who was the actor who played Bobby Ewing in Dallas,Patrick duffy,General,What makes a noise middle octave key of F,Housefly buzz,General,What is a cachalot,A Sperm Whale -General,"Dutch-born Swiss scientist, who discovered basic principles of fluid behavior",Daniel bernoulli,Sports & Leisure,Which annual race is 4 miles and 374 yards long ,The Boat Race ,General,Where is the National Motor Museum,Beaulieu -General,Which animal sleeps with one eye open,Dolphin, History & Holidays,In what year did man first set foot on the moon,1969,Food & Drink,Devils on horseback are prunes stuffed with almonds and wrapped in what? ,Bacon  -General,Who believed that a prism split light because of 'corpuscles' of varied mass,Isaac newton,General,"What was the British equivalent of ""We Are The World?""",Do They Know It's Christmas,General,In Japan what is jigai,Female suicide -General,Which rock musician committed suicide in Scattle on 5th April 1994,Kurt cobain,Sports & Leisure,What Do The Opposite Sides Of A Standard Dice Always Total ,7 ,General,What organisation is known as the Society of Friends,Quakers -General,What's the words most popular brand of malt whisky,Glenfiddich,General,"In english mythology, who caused the death of the lady of shallot",Sir,General,Charles Bingley was a character in what classic novel,Pride and Prejudice - Geography,What is the capital of Tuvalu ?,Fongafale (Funafuti atoll is the location of the capital Fongafale! So pls don't complain about the correction ;-)),General,As what was Louis XIV also known,Sun king,General,Sticky tape was produced in which year,1928 -Sports & Leisure,Where were the 1928 Olympics held ?,"Amsterdam, The NetherlandsERROR: Ret: amsterdam, (the netherlands|holland)",General,License plates: what's cheops's profession,Egyptologist, Geography,What is the basic unit of currency for Nicaragua ?,Cordoba -General,In which county does the River Mersey rise,Derbyshire,General,"In an isosceles triangle, if the two equal angles are 35 degrees, what is the third angle",110 degrees,Music,What Is The Name Of Bill Wymans Knightsbridge Restaurant,Sticky Fingers -General,Who composed the opera I Pagliacci,Leoncavallo,General,Denmark Has Twice As Many “ What? ”Than It Does People?,Pigs,General,What film is generally considered the worst film ever made,Attack of the -Music,What was Buddy Holly's First Hit Record as the Crickets reaching No.1 in the UK & USA?,That'll Be The Day, History & Holidays,Who caused outrage with the following quote 'We are more popular than Jesus now'' I don't know which will go first Rock n Roll or Christianity'' ,John Lennon ,General,"What is the meaning of dc in ""Washington DC""",District of columbia -General,"What was ""The gun that tamed the West""",Winchester rifle,General,In Which US State Does The TV Show 'High School Musical' Take Place,New Mexico,Geography,Gore is also known as the Brown Trout Capital of the World and New Zealand's ___________,Country music capital -General,How fast can a kangaroo hop,Forty mph,Sports & Leisure,What Was Alex Ferguson's Team Before He Left To Manage Manchester United? ,Aberdeen ,Food & Drink,Ethanoic (or acetic) acid is the major constituent of which everyday condiment?,Vinegar -General,Bohemian Rhapsody was on what Queen album,A Night at the Opera,General,What flavours root beer,Sarsaparilla,General,What state is only part of the U.S. by treaty,Texas -Sports & Leisure,Which famous duo won the BBC Sports Personality Of The Year In 1984? ,Torvill & Dean ,General,West Indian cricketer Laurence Rowe gave up 1976 mid test why,Allergic to Grass,General,"What rock music term was coined by william burroughs in his book ""the soft machine""",Heavy metal -General,What is measured in units called phon,Sound,Music,"With 12 Hits In This Era Only ""Silly Love"" Did Not Make The Top Ten For Which Group",10CC,Religion & Mythology,"In Egyptian mythology, who was Horus' mother?",Isis -General,She starred in Broadcast News & The Piano.,Holly Hunter,General,We know what lasagne is - what is a lassagnum its named from,A Cooking Pot,General,What animals name comes from the Sanskrit to steal,Mouse - Musha -General,Who voiced Mr Spock in the cartoon version of Star Trek,Leonard Nimoy,General,Who was the eldest member of The Beatles,John lennon,General,When was the Fascist party founded in Italy,1919 -Music,Which Group Was Originally Called The Primettes,The Supremes,General,Who wrote the Dune series of SF novels,Frank Herbert,General,Who recorded such popular songs as 'Whose Zoomin' Who' and is known as the Queen of Soul,Aretha Franklin -General,"A series of arches supported by columns or piers, or a passageway formed by these arches. ",Arcade,Music,Which Beatles song was written by American Country singer Buck Owens?,Act Naturally,General,"Football Team, the baltimore ______",Colts -General,"Known as 'The Ace of Aces', who was the leading American fighter pilot of World War One",Eddie rickenbacker,General,Who played richie cunningham in the tv show happy days,Ron howard,General,Norma Talmage in 1927 made the first - the first what,Footprints concrete Grumman theatre -Food & Drink,What TV sitcom about Liverpool family life did Carla Lane write? ,Bread ,Entertainment,How does Wonder Woman control her invisible airplane,Mental powers,General,What nationality is athlete Greta Waitz,Norwegian -General,"Who started a giant fast food chain in 1928 in a hut near Bradford, Yorkshire",Harry ramsden,General,Which is the longest river in Mexico,Rio grande,Music,Who Was The Fictional Band In The Famous Movie Of The Same Name That Made Fun Of Heavy Metal Bands,Spinal Tap -General,"Who sung the Song ""Fast Car""?",Tracy Chapman,General,In the Snoopy cartoons what does Lucy offer in her booth,Psychiatric help,General,What was invented in 1855 45 years later than it was needed,Can Opener -Science & Nature,Do You Use More Muscles To Smile Or To Frown ,Frown , History & Holidays,"In the movie 'Miracle on 34th Street', Kris Kringle is hired to play Santa Claus in what large department store? ",Macys ,General,"Countries of the world:eastern coast of Baltic Sea in northeastern Europe, the capital is Vilnius",Lithuania -General,The earth's circumference is approximately how many miles,24870,General,"In logic, what is the form of reasoning by which a specific conclusion is inferred from one or more premises",Deduction,General,To what is the area of a human lung equal,Tennis court -General,Which Hollywood Actress Was Responsible For Uttering The First Words Of Maggie Simpson ?,Elizabeth Taylor,General,Something navicular is shaped like what,A Boat,General,What is ambergis used in the making of,Perfume -Music,Name The Singer Whose Body Was Found In A Hollywood Hotel Room On 4th October 1970 Eighteen Hours After She Had Died,Janis Joplin,General,Which modern city was once called Byzantium,Istanbul,General,Francesco Seraglio invented what in Australia in early 1960s,The Woolmark logo -General,What do you get by mixing gin & vermouth,Martini,General,Brave Belt was the original name of what group,Bachman Turner Overdrive,General,"Wheeled vehicle, specifically, a vehicle for carrying persons, designed to be drawn by one or more draft animals",Carriage -General,What does Dorethy have to steal from the wicked witch in oz,Her Broomstick,General,Which liqueur is added to Whisky to make a rusty nail cocktail?,Drambuie,Food & Drink,From Which Fish Do You Obtain Cavia ,The Sturgeon  - Geography,What is the name of the famous large coral reef located off the coast of northeastern Australia?,Great Barrier Reef,General,Bibliophobia is a fear of _____.,Books,General,Roger Bannister ran the first sub 4 minute mile who ran 2nd,John Landie of New Zealand -Music,What do the initials FRAM stand for?,Fellow Of The Royal Academy Of Music,General,In what country would you dance The Sirtaki,Greece, History & Holidays,What were the earliest tree ornaments? ,Apples & Fruit  -Art & Literature,How many plays is Shakespeare generally credited with today,37,General,What is a male sheep,Ram,General,"Indiana Jones: What company handled the ""special effects""",Industrial light - Geography,This island group is off the east coast of southern South America.,Falkland Islands,General,What plane did Aerospatiale of France & the British Aircraft Corp. develop,The concord concord,Sports & Leisure,What colour signifies a difficult slope in skiing? ,Black  -Music,Name One Of The 3 Major record Companies That Simultaneously Launched The Compact Disc In March 1983,"Sony, Phillips, Polygram",General,"Where in the solar system would an observer see the ""Cassini's Division""",Rings of saturn,General,What is the nickname for Maryland,Free state - Geography,What is the capital of Afghanistan ?,Kabul, History & Holidays,Which London building was gutted by fire in November 1936? ,The Crystal Palace ,General,Which city was superman born in,Kryptonopolis -General,How many times has the character Ross from the show friends been married?,Twice,General,What is the latin word 'trivia' in english,A junction of three roads,Science & Nature,Which metal is the best conductor of electricity? ,Silver  -General,What is the world's fastest passenger aircraft,Concorde,General,The Algonquin Indians believed the earth was on what,Giant tortoise,General,Illustrator Florence K Upton created what (now not PC),Golliwog -General,What female name comes from the Greek for foreign woman,Barbara,General,In the Bolshoi ballet what does the word Bolshoi mean,Big,General,What's the oed,Oxford english dictionary - Geography,In which ocean or sea are the Seychelles?,Indian Ocean,Science & Nature,What Base Are Hexadecimals ,16 ,Science & Nature,In Computing what do the initials Jpeg stand for ,Joint Photographic Experts Group  -General,What is a group of this animal called: Rhino,Crash herd,General,"Catlike leap in which one foot follows the other into the air, knees bent; the landing is in the fifth position.",Pas de chat,General,Whose biography is entitled 'lady sings the blues',Billie holliday -General,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, History & Holidays,England Opened Its First Nudist Beach In 1979 At Which Seaside Resort ,Brighton ,Geography,Which port of Sicily shares its name with a city in New York State? ,Syracuse  -Music,What Was The First Number One Album For Oasis?,Definately Maybe,General,Pomona was the Roman Goddess of what,Fruit Trees,General,Vampire bats prefer to bite what part of a sleeping person,Toe -General,Who invented painting by numbers,Palmer paint company,Music,"Who Wrote The Theme Song For The James Bond Movie ""Live & Let Die""",Paul McCartney,General,Carson who succeeded joseph stalin as russian premier,Georgy malenkov -General,What was the name of Dr Dolittle’s Parrot,Polynesia,Music,"Janis Joplin Died In 1970, How Did She Die",From A Heroin Overdose,General,Baseball: the chicago ______,Cubs - History & Holidays,Where did Guinevere retire to die?,Amesbury,General,Menace What Disney film do Parisians know as Blanche Neige Aet les Sept Nains,Snow,General,Myxophobia is the fear of,Slime -General,What was The Liberty Bell manufactured 1900s Charles Fey,Fruit Machine,Science & Nature, A __________ can squeeze through an opening no larger than a dime.,Rat,General,What colour is Queen Elizabeth's blotting paper,Black -General,"In Greek mythology, into what did athena turn arachne",Spider,Food & Drink,Which Foodstuff Links Gary Lineker and The Spice Girls? ,Walker 's Crisps ,General,When was the laser invented,1960 -General,What is a group of this animal called: Cat,Clowder clutter,General,What is a young zebra called,Colt,Geography,What Is The Unit Of Cuurrency In India ,The Rupee  -General,If you take a before meal aperitif what's an after meal one called,Digestif,General,Who recorded the original song 'the twist',The beatles,General,What Sign Of The Zodiac Is Represented By A Centaur,Sagittarius -General,Candy bar promoted by Bart Simpson.,Butterfingers,General,"The 1st U.S. federal holiday honoring Martin Luther King, jr. Was in what year",1986, History & Holidays,Which great ocean liner was launched in 1934? ,The Queen Mary  -General,What's the unit of measure for a racehorse's height,Hand,Geography,He invented the most common projection for world maps.,Mercator,General,Who was the wife of Moses?,Zipporah -General,Who hated mozart with a deadly passion,Salieri,General,What is the name of the body part that separates the abdomen from the thorax?,Diaphragm,General,What was invented by Ludovic Zamenhof ?,Esperanto - History & Holidays,"In Scotland, what vegetable was traditionally carved into a jack-o-lantern was it A Potato B Turnip C Pumpkin ",B = Turnip ,General,"Etna, Hekla and Popocate a petl are all types of what",Volcanoes,General,"Paul Revere was a silversmith, copper engraver and what",Dentist - History & Holidays,Which Singer Born On Christmas Day Released A Debut ASlbum Entitled No Angel ,Dido ,General,Who won the 2000 Booker prize,Margaret atwood,Science & Nature,What colour is a robin's egg?,Blue -General,Muckle John was the last official royal one in England - what,Fool or Jester,Art & Literature,Which Author Did Hitler Acclaim As The Phrophet Of Right Wing Authoritarianism ,Nietzsche ,Science & Nature,What Would You Be Most Likely To Be Chewing If It Were Flavoured With Mentha Piperita Or Mentha Viridris ,"Chewing Gum , Peppermint, Spearment " -General,Who had a hit with the song Loco-Motion,Little Eva,General,What is the name of Porky Pigs father,Phineas Pig,Music,"Who Did The Avalon Boys Accompany On The 1976 Hit ""The Trail Of The Lonesome Pine""",Laurel & Hardy -General,Germany's equivalent to the dollar is the ______?,Deutsche mark,Science & Nature,What does a camel store in its hump?,Fat,General,Sinbad faced this arabian mythical bird of prey name the bird,Roc -General,How much jelly fills a proper dunkin donuts' munchkin,One half ounce 1/2 ounce,Science & Nature,Name the largest web-footed bird.,Albatross,General,Who wrote The Last Frontier first published in 1959,Alistair Maclean -General,Whose face is on the front of a quaker oat box,William penn,Music,"Who Reached No.1 In 1962 With ""I Remember You""",Frank Ifield,General,Maracaibo is the second largest city in which South American country,Venezuela -General,Who wrote 'valley of the dolls',Jacqueline susann,General,"In The TV Show ""The Young Ones"" What Was The Name Of Viviens Pet Hamster",SPG (Special Patrol Group),General,Which musical stage show ( and film ) uses tunes by Borodin,Kismet -General,What were the russian atrocities against the jews called,Pogroms,Science & Nature,What do you call a group of rhinocerus?,A Crash,General,"Which philosopher's last words, were: ""Go on, get out! Last words are for fools who haven't said enough.""",Karl marx -General,"Which film star was described as ""A vacuum with nipples""",Marilyn Munroe,General,What is a hajji,A pilgrim to mecca,Science & Nature,In Which American State Is The Dinosaur Valley Museum ,Colorado  -General,In which modern country is the site of the Battle of Balaklava,Ukraine,General,What is the flower that stands for: revenge,Birdsfoot trefoil,General,The Romans called it Mamcunium what is this English city,Manchester -General,How were the bodies of dead crusaders brought home for christian burial,Chopped up and boiled,General,"What are ""the four nightingales"" better known as",The marx brothers,General,On which day of the year would you 'firstfoot',January 1st -Religion & Mythology,Who is the Linux operating system named after,Linus torvalds,Science & Nature,How Did Nylon Get It's Name ,Developed In New York & London ,General,Which man's name means Bearer of Christ,Christopher -Entertainment,Who is Reginald Dwight known as?,Elton John,Music,Who Duetted With Celine Dion On The 1997 Hit Tell Him,Barbara Streisand,General,What was the last name of the american that invented root beer soft drink,Hires -General,Which is the closest town to Ayres Rock,Alice springs,General,Paul French George E Dale pseudonyms for what SF author,Isaac Asimov,General,What is the proper name for 'mad cow disease',Bovine spongiform -General,What did the massachusetts bay colony outlaw in 1641,Lawyers,General,What happened on screen for the first time in india in 1977,Screen kiss,General,"What small fish, often tinned, was named after a Mediterranean island",Sardine - Geography,What is the capital of Djibouti?,Djibouti,Science & Nature,What are the units of measurement for Frequency ?,Hertz, History & Holidays,What was the first fighting vehicle?,War chariot - History & Holidays,Who was the first person to swim the English Channel?,Captain Matthew Webb,General,Who returned to Britain in 2001 after 35 years on the run?,Ronnie Biggs,Food & Drink,How Many 75cl Bottles Of Champagne Would You Get From A Jeroboam ,4 Bottles  -General,What are bloaters a type of,Fish,Geography,What is the capital of Morocco,Rabat,General,What did aristotle believe the heart was,Seat of intelligence -General,What Shakespeare play was the basis of The Forbidden Planet,The Tempest,General,What does a panaphobe fear,Everything,General,A word like 'NASA' formed from the initials of other words is a(n) ______.,Acronym -General,What sort of animal is donkey kong of video game fame,Gorilla,General,The artist Abbott Thayer's developed what for military use,Camouflage colours,General,"The understanding of speech through observation of the lips, tongue and facial expressions is known as ______",Lip reading - History & Holidays,What was the name of the vehicle in which Sir Malcom Campbell broke the 300 mph barrier in 1935? ,Bluebird ,General,"QANTAS, the name of the airline, is an acronym for___",Queensland and northern territory aerial services,General,As what was Lincoln Park in chicago originally used,Cemetary -General,Which London's church's other name is the Collegiate Church of St. Peter,Westminster abbey,Science & Nature,What Killed Cleopatra ,An Asp ,General,The theme from Top Gun was a hit for which European sounding group,Berlin -Geography,In Which Indian City Is The Taj Mahal ,Agra ,General,In 1901 who first transmitted radio signals across Atlantic,Marconi,General,What are the moufflon & bighorn,Sheep -General,The _____ Revolution began in 1905 on 'Bloody Sunday' when troops fired at demonstrators,Russian,General,What Is The Oldest Inhabited City In The World,"Damascus, Syria",General,What religion follows the teachings of the prophet Mohammed,Islam -Music,Who Warned Us About Dirty Diana,Micheal Jackson,General,Harvard college was founded in this year,1636,General,What part of your body can have a gastric ulcer,Your stomach -General,What is the real name of Tony Curtis,Bernard schwartz,General,To what language is the gypsy romany language related,Sanskrit, History & Holidays,In Which Series Of Films From 1984 Onwards Did Robert Englund Star As Freddy Krueger ,A Nightmare On Elm Street  -General,What is the fear of gravity,Barophobia, History & Holidays,*What 70s television show launched the career of David Cassidy?* ,The Partridge Family ,Science & Nature,What is the heaviest element that can be formed by regular fusion reactions in the core of a star?,Iron -General,What do the five olympic rings represent,Continents,General,What two time all big eight defensive back at Colorado won three U.S. Open golf titles,Hale irwin,Science & Nature," Wolf packs could be found in all the forests of Europe, and in 1420 and 1438, wolves roamed the streets of __________",Paris - History & Holidays,Who was given the only Nobel Peace Prize award during WWI?,International Red Cross,General,In what state was the largest cavalry battle in the civil war,Virginia Brandy Station (20000 men),General,Which country is widely acknowledged to have the largest Jewish population,United states - Geography,What city is the Christian Science Monitor based in?,Boston,General,"In which U.S. state is Quantico, home to an FBI training and research facility and a similar one for the Marine Corps",Maryland,General,What is the Capital of: Yemen,Sanaa - History & Holidays,Which 1950s films took place in Burma 1943 ,The Bridge on the River Kwai ,General,On Which Fictitious Island Does Thomas The Tank Engine Operate,Sodor, History & Holidays,Which Magician Was An Advisor To King Arthur ,Merlin  -Food & Drink,Lack of Vitamin D causes which disease?,Rickets,Music,Why Did The Jackson 5 Change Their Name To The Jacksons When They Left Motown,Motown Owned The Name The Jackson 5,General,What's the most common term of endearment in the U.S.,Honey -General,Whats the nearest galaxy to our own,Andromeda,General,The Ngorogoro crater is in what Tanzanian National Park,Serengeti,General,Pampas grass is a native plant of which continent,South america -Geography,To The Nearest 100 Million Years How Old Is The Earth ,"4,540 Million Years ",General,Branch of science that applies physical principles to the study of the earth,Geophysics,Music,"Which British Pop Star Had A Hit With The Song "" Anyone Who Had A Heart """,Cilla Black -Geography,What is the capital of Central African Republic,Bangui,General,18th century French dance,Gavotte,General,A web designer might use CGI scripts what does CGI stand for,Common Gateway Interface -General,In The Muppet Movie who sang for Miss Piggy,Johnny Mathis,General,Which film won the best screenplay Oscar in 1970,MASH,Entertainment,What was the name of Barney and Betty Rubble's son?,Bam Bam -General,Which European airport has the international code LIS,Lisbon,General,Tuberculophobia is the fear of ______,Tuberculosis,Entertainment,Which country and western singer is known as the 'okie from muskogee'?,Merle Haggard -General,Who shot J.R. Ewing?,Kristin,General,Which animal sleeps on its back,Only man or women,General,What Country Smokes The Largest Amount Of Cigarettes Worldwide,China -General,What river flows through 8 countries and four capitols,Danube, History & Holidays,Which Lancs Town Has A Name That Means A Small Brass Wind Instrument Used For Summoning Witches & Warlocks,Oswaldtwistle ,General,How many episodes were there in the original Star Trek series?,75 - History & Holidays,Which Band Were At The UK Christmas Number One Spot In December 1979 ,Pink Floyd / Wall ,General,"Who was the first U.S. president to travel in a car, plane and submarine",Theodore roosevelt,Music,Which Famous Rapper Was Born “Stanley Kirk Burrel” in 1962?,MC Hammer -General,Derived from Greek what does alias literally mean,Otherwise,General,"What larry niven character was known as the ""hindmost leader""",Nessus,General,Where is the district 'elephant and castle',London - Geography,What is the basic unit of currency for Turkey ?,Lira,Sports & Leisure,What Is The Sign Language Used By Bookies Known As ,Tic Tac ,General,Which was the first rock group to use lasers in a live performance?,The Who -General,What's the name of Disney's Little Mermaid,Aerial,People & Places,Who Invented The Electric Light Bulb ,Thomas Edison ,General,What is the characters name of Agent 86,Maxwell Smart -General,Who piloted the first flight across the English channel,Louis Bleriot,Food & Drink,Which Famous Wine Region Is Centred On Reims ,Champagne ,Music,Which Singer Had A Blonde Ambition Tour In 1990,Madonna -Food & Drink,In which country did Scampi Originate? ,Italy ,Music,"From the 1980’s, which song and which artist “Her weapons were her crystal eyes, Making every man a man, Black as the dark night she was, Got what no-one else had, Wa!”?",Bananarama / Venus,General,On TV P.C. McGarry Is The Local Bobby Of Which Village,Camberwick Green -General,Who was the father of modern bullfighting,Juan belmonte,General,"In The World Of Music How Is ""James Jewel Osterberg"" Better Know",Iggy Pop,Music,Which Fair Was The Subject Of A Simon & Garfunkel Song,Scarborough O Fair -Science & Nature,What is measured by Moh's Scale? ,Hardness ,General,Apparatus that converts molecules into ions and then separates the ions according to their mass-to-charge ratio,Mass Spectrometer,General,"Who wrote ""Dracula""",Bram stoker -Sports & Leisure,How many points are awarded to the winner of a Formula One Grand Prix ,Ten Points ,Science & Nature,Which is the only animal other than humans that can get leprosy?,Armadillos,General,What is the fear of germs known as,Spermophobia -General,Who wrote the Robocomm computer program,Dan parsons,General,In heraldry a lybbard is a lion panther cross symbolising what,Wildness,Music,Who Wrote The Music For The Ballets Swan Lake & Sleeping Beauty,Tchaikovsky -General,For which Olympic athletic event is there no official world record,Marathon same distance diff courses,Music,Sad Movies Norman & Some People Were All Hits For Which Early 60's Singer,Carol Deene,Music,"Which Early 80's Group Sang ""You're Lying "" And ""Intuition""",Linx -General,What chain did ray kroc build,Mcdonald's,General,What is the Capital of: Ukraine,Kiev,General,"Air is 21% oxygen, 78% ______, and 1% other gases",Nitrogen -General,Which British city had the first pavements (sidewalks) in 1688,Edinburgh in High St and Cowgate,General,"In norse mythology, who is brunhilda chief of",Valkyries,General,The Flavian Amphitheatre is better known as what,Colosseum in Rome -General,"During The Beatles Run Of 7 Consecutive No.1 Singles, What Was The Name Of The Song That Failed To Make It 8 In A Row For Them?",Paperback Writer,General,In the tv series 'happy days' what was arthur fonzarelli's nickname,The fonz,General,"Hammer, anvil and stirrup are parts of ______",Ear -General,Mageiricophobia is the fear of what,Cooking,General,How many facets has a snowflake,Six,Entertainment,"Who sang 'Forever and Ever, Amen'?",Randy Travis -General,What country's people developed the crossbow,China,General,Harry Longbaugh became better known under what name,The Sundance Kid,General,Gold Discs Platinum Discs but who won first Rhodium Disc,Paul McCartney -General,To make all the text align against the left or right margins is called,Justification,Science & Nature,What Is The Most Common Colour Of A Great Dane? ,Fawn ,General,Where was steel first made,India -General,What do the Chinese regard as the highest form of visual art,Calligraphy,Technology & Video Games,Manjimaru is the main character of which game? ,Kabuki Klash,General,Who Did Steve Davis Defeat In His First Ever World Snooker Final In 1981,Doug Mountjoy -General,In Ancient Rome what creature was the symbol of liberty,The Cat, History & Holidays,What is the traditional dessert in England on December 25? ,Christmas Pudding ,General,What is the oldest swimming stroke,Breaststroke 16th century -General,Who founded the miss world competition,Eric morley,General,People answered the first telephones by saying what,Ahoy there,General,February 25th 1990 what was banned in the US,Smoking on all domestic flights -Entertainment,"She starred in the 1952 film, ""Niagara"".",Marilyn Monroe,General,What is a group of this animal called: Boar,Sounder,General,Which Country Owns Easter Island ?,Chile -General,"In 'a christmas carol', what was the name of the miser",Scrooge,General,In Korea what is ssirum,Sumo Wrestling,General,Eliza Doolittle is a character in which George Bernard Shaw play,Pygmalion -General,What's the longest river in Asia,Yangtze,Sports & Leisure,Name Both The Start / Finish Points For The University Boat Race ,Putney & Mortlake ,Science & Nature,The violet variety of quartz is called ________.,Amethyst -General,What volcanic peak is visible from naples,Mount vesuvius,General,What phrase is another way of saying covered in bruises,Black and blue,General,Agatha Christie's elderly female crimesolver,Miss marple -General,De'cappo means what in music,Repeat from start,General,The Snake River lies entirely in which country?,USA,General,Cum Granlo Salis is Latin for what phrase,With a grain of salt -General,Fromage is french for,Cheese,General,The araucaria has what more common name,The Monkey Puzzle tree,General,What European countries national anthem has no official words,Spain - History & Holidays,"""What Did My True Love Give To Me On The """"Twelth"""" Day Of Christmas"" ",12 Drummers Drumming ,General,What is the value of pi to three decimal places?,3.142,General,Triangular part of wall at the end of a ridged roof,Gable -Music,"Who had a 1976 hit with ""Young Hearts Run Free""?",Candi Staton,General,Vanilla flavouring is derived from which flower,Orchid,Music,"Which Member Of The Monkees Went On To Front ""The First National Band""",Mike Nesmith -General,The quetzal is the currency of ______?,Guatemala,Music,Who Did The New Yardbirds Become,Led Zeppelin,Music,Whose Real Name Is Roberta Anderson,Joni Mitchell -General,What category of Oscar was the only award for the film Star Wars,Sound track,General,On what is the Mona Lisa painted,Wood,General,What county is chicago,Cook county -General,What is enuresis,Bed-wetting,General,Name the cartoon that featured characters who had messages on their clothes to express their feelings.,Shirt Tales,General,Who was the egyptian god of war and divine vengeance,Sakhmet -General,What piece of land did France sell to America in 1803,Louisiana,General,The Beverley Hillbillies came from what Ozarks town,Hooterville,General,How was crystal palace destroyed,Fire -General,Which sporting event was won 5 times by Eddy Merckx,Tour de france,General,In Greek mythology who was Queen of the underworld,Persephone, History & Holidays,Which 50's Movie features the Line ' This is war. This is not a game of cricket'. ,The Bridge on the River Kwai  -General,What was casey jones's real name,John luther jones, History & Holidays,In which century was (The Black Death)? ,Fourteenth ,Sports & Leisure,Who Did Tiger Woods Replace As The World's Number One Ranked Golfer In 1998? ,Greg Norman  - History & Holidays,Which former Labour MP formed the New Party in 1931? ,Sir Oswald Mosley ,General,What is a group of this animal called: Sheep,Drove flock, History & Holidays,What 'SK' Do You Call A Quiet Armour Wearer ,Silent Knight  -General,What is the Capital of: Svalbard,Longyearbyen,Science & Nature,Prosthetics deals with the making of __________.,Artificial limbs,General,What is the only letter of the English alphabet with three syllables (no hints please),W -General,At what seaside resort did Britain’s first legal casino open on the 2nd June 1962?,Brighton,General,English ships carried limes protect scurvy what US ships carry,Cranberries,General,Who became king of Saudi Arabia in 1982?,King Fahd -General,Whose home was mount vernon,George washington,Music,What is Paul's middle name?,Paul,General,Juliet binoche won an academy award for best supporting actress in which film,The english patient -Food & Drink,What is the other ingredient in a pink gin? ,Angostora Bitters ,General,What happened to Laika first dog in space,Suffocated no air burned re-entry,General,Candlestick maker what is the capital of iran,Teheran -Music,Gerard Hugh Sayer Is Better Known As Whom,Leo Sayer,General,Paris born Philippe Pages changed his name to what,Richard Clayderman,General,What is the state bird of Alabama,Yellowhammer -General,"Who Is The Only Person To Hold The Post Office Of Prime Minister, Home Secretary, Foreign Secretary And Chancellor",James Callaghan,General,"What was first successfully tested in Alamogordo, New Mexico?",Atomic bomb, History & Holidays,From which country does the poinsettia plant originate? ,Mexico  -Science & Nature,Where Did Wilbur Wright Demonstrate Flight In Public For The First Time ,Northern France ,General,Vancover Island & British Columbia became one colony in,1866,Science & Nature,"Featured In The Film Jurassic Park, Which Creatures Name Means 'Quick Plunderer' ",Velociraptor  -Science & Nature,What Colour Is The Flower Of The Amazon Lily When It Opens ,White ,General,When does a full moon rise,Sunset,General,What is a dhoti,An Indian male loincloth -General,Which two countries' national anthem does not mention the country's name,United states and holland, History & Holidays,Which Sci-Fi Sitcom star like to eat cats? ,Alf ,Sports & Leisure,Jockey Lester Piggot Once Served 3 Years In Prison For What Crime ,Tax Evasion  -General,In which country would you find the towns of Lausanne and Locarno,Switzerland,General,What do ornithologists study,Birds,General,Who recorded as Dib Cochran and the Earwigs,Marc Bolan and David Bowie -General,Alphonso D'Abruzzo became famous as who,Alan Alda,General,A primate called a Galago has what more common name,Bush Baby,General,"In 1960, ray charles released the hit ""i can't stop _____""",Loving you -General,Who wrote the three act opera The Rakes Progress,Igor Stravinsky,General,Janis joplin started her career with which group backing her up,Big brother,Music,"What Is The Rest Of This James Brown Song Title ""Say It Loud_________""",I'm Black & I'm Proud -General,For which decoration do the letters C.G.M. stand,Conspicuous gallantry medal,General,Name the first ship from which Gulliver was shipwrecked in 'Gulliver's Travels',Antelope,General,Hans Christian Anderson had what job before writing,Actor -Sports & Leisure,With what sport is Gabriela Sabatini associated?,Tennis,General,"In 'dawson's creek', who does james van der beek play",Dawson leary,General,In which American State was the first atomic bomb test carried out in July 1945,New mexico -General,What's unusual about evangelist Amy Semple McPhersons coffin,Contains Telephone,General,What is The Southern most Point Of The English Mainland?,Lizard Point / The Lizard,General,Who wrote the music for Showboat,Jerome Kern -General,Basketball: the Chicago ______,Bulls,General,What was the name of the world's tallest man who still remains firmly entrenched in the Guinness Book of Records some 70 years plus after his death?,Robert Pershing Wadlow,General,Whom did Michael Portillo succeed as M.P. for Kensington and Chelsea in November 1999,Alan clark -General,What type of aircraft did the red baron fly during World War I,Fokker,General,What animal head appears on the badge of the RCMP,Bison,General,What year did Roger Maris hit 61 homeruns,1961 -General,What is another name for a tombstone inscription?,Epitaph,Science & Nature,How Many Colours Are The In A Rainbow ,7 ,General,What actor links Von Ryan's Express - Magnificent Seven,Brad Dexter -General,What is the active ingredient in oxy anti pimple cream,Benzoyl peroxide, Geography,Into what sea does the Mackenzie River flow?,Beaufort Sea,General,Nacre is more commonly known as what,Mother of Pearl -General,Who built the hurricane aircraft,Hawker,General,"In the 'twelve days of christmas', how many items in total are sent by 'my true love'",78,General,Which Band Had The Last UK Number One Hit Of The Millenium,Westlife -General,What does a carpophagus animal feed on,Fruit,General,"What boys' toy was introduced at the annual american international toy fair in new york on feb. 9, 1964",G.i joe,Sports & Leisure,What Is The Bed Of A Snooker Table Made From? ,Slate  -General,Narrow strip of cloth attached to a string round waist for covering genitals,G-string, History & Holidays,"Which 1978 film starring Roger Moore, Richard Burton and Richard Harris, is a bout a group of British mercenaries in Central Africa ",The Wild Geese ,General,Which composers third symphony is nicknamed the Polish,Pytor Illyich Tchaikovsky -Sports & Leisure,Who had the nickname 'Golden Bear'?,Jack Nicklaus,Art & Literature,Which Woman Had More Portarits Painted Of Her Thaan Anyone Else ,Queen Elizabeth II ,General,Where would you find line of Mars - Girdle of Venus,Palm - lines in Palmistry -General,In which novel does the character Quebec Bagnet appear,Bleak House,General,In which film did Elvis Presley sing the song 'Wooden Heart',G.i. blues,General,On 'southpark' what usually happens to kenny,He gets killed -Science & Nature,What Do You Use To Tell A Horses Age? ,Check Its Teeth ,General,By what name is Salicylic Acid better known as?,Aspirin,General,What was the first safety feature patented for an automobile and attached to a front fender,Safety net -General,A person learning a trade by working for an agreed period,Apprentice,General,"What creature can be Indian, white or broad lipped",Rhinoceros,General,Who invented false eyelashes,D.w griffith -General,"Rod, chain and furlong are all units of what",Length,General,Branch of mathematics that deals with the properties & relationships of numbers (number),Number theory,General,In what novel does Dr Hannibal Lecter first appear,Red Dragon -General,Which two fighting ships other than the 'utah' were sunk at pearl harbor,Arizona and oklahoma,General,What is the lowest title handed down from father to son,Baronet,General,"In 1927, the first words spoken in a film were ""Wait a minute, wait a minute!"" Which five words followed",You ain't heard nothing yet -General,Who wrote the novel Love Story (Both Names),Erich Segal,Music,"Cicane's 2000 No.1 Hit ""Dont Give Up"" Featured Which Rock Megastar",Bryan Adams,General,Who composed the Overture to the Wasps,Vaughan williams -General,Who was the Russian Foreign Minister from 1957 to 1985,Gromyko,People & Places,Which Former Python Traavlled Round The World ,Micheal Palin ,General,What's the Eskimo word for a moccasin type boot,Mukluk -Music,What Was The Title Of The UK No.1 Single Released By Enya In 1988,Orinocco Flow,General,Who Was The Very First Recipient Of The MALE Version Of The Rear Of The Year Award,Michael Barrymore,General,In South Carolina what's barred Fountain Inn without wear pants,Horses -Music,Who Died In The Same Air Crash As Cowboy Copas & Hawkshaw Hawkins,Patsy Cline,General,Who is the greek counterpart of mercury,Hermes,General,Who composed The Planets suit (both names),Gustav Holst -General,What was killed by the first bomb dropped by the allies on berlin during wwii,Elephant,Geography,What is the capital of Turkmenistan,Ashkhabad,General,Who followed up beetlejuice with clean and sober,Michael keaton -Geography,What island has Hamilton as its capital,Bermuda,Food & Drink,"Ireland, the UK and Turkey rank first, second and third in the world in the consumption of what? ",Tea ,General,What is a Lampyris Noctiluca better known as,A Glow-Worm ( European ) -General,Walter Wagers novel 58 minutes was the basis for which film,Die Hard 2,General,What is the second largest country in south america,Argentina,General,Who is married to eddie van halen,Valerie bertanelli -General,What city was originally called edo,Tokyo, History & Holidays,Which county cricket ground can be found at St Johns Wood in London ,Lords ,Science & Nature,What are the units of measurement for Energy ?,Joule -General,"Eastwood what are cocci, spirilla and streptococci",Bacteria,General,When is a crepuscular animal active,Twilight,General,Handel's Harmonious Blacksmith is played on what instrument,Harpsichord -General,Gary Boker Bobby Harrison Ray Rodger were in what pop group,Procul Harem,Sports & Leisure,What Did Eddie The Edwards Had To Have 2 Inches Taken Off His What When He Represented England At The 1988 Winter Olympics ,His Chin ,General,To what family does the hippopotamus belong,Pig -Geography,What is the capital of Israel,Jerusalem,Sports & Leisure,Which football team lost both the 1998 and 1999 FA Cup Finals? ,Newcastle United ,General,What is the longest river in Scotland,Tay -General,What do we call the study of fossils,Palaeontology,General,In which novel is Phoebe Caulfield the hero's younger sister,Catcher in the rye,General,"What palace was build by the sun king ,louis xiv in the previous century",Versailles -Science & Nature,The fins of which fish are made into a soup,Shark,General,A Vigule or Solidus is what character,Slash / - not backslash,Music,"Which Record Company Had It's First US Hit With Carl Perkins's ""Blue Suede Shoes""",Sun Records - Geography,Which is the Earth's fourth largest continent ?,South America,Food & Drink,What pastry is used to make Profittaroles ,Choux ,General,What is the highest mountain in North America,Mount mckinley -General,Which animal lives in a holt,Otter,General,What is a sun dried grape,Raisin,General,Which country is ruled by two Captains Regent,San marino -Music,Which song did Don McLean write about the death of Buddy Holly,American Pie,General,Rhett Butler of Gone With the Wind was born where,Charleston,General,What nursery rhyme character was arachnaphobic,Little miss muffet -Music,"Which song begins, “Heaven. I’m in Heaven”?",Cheek To Cheek,General,Where would one eat a taco,Mexico,Sports & Leisure,Name The 4 Stations In Monopoly ,"Fenchurch Street, Liverpool Street, Kings Cross, Marylebone " -General,"Which nation, on average, takes the longest time over its meals",France,General,"Who was the famous individual who originated the catch phrase ""Just Say No""",Nancy Reagan,General,Breakers footrace what does the irish 'dubh linn' mean,Blackpool - History & Holidays,A mysterious cloud of pesticide and radiation causes a disturbing reversal for Scott Carey in which classic 50s film ? ,The Incredible Shrinking Man ,Sports & Leisure,What Name Is Given To The Pitch On Which American Football Is Played ,The Gridiron ,General,Who wrote the poem 'Ozymandias'?,Percy Bysshe Shelley -General,Any sufficiently advanced technology indistinguishable from magic,Arthur C Clark – Report planet 3,General,In liquid measure a pipe is made up of two what,Hogsheads,General,There are 300 distinct different types of what food,Honey -Sports & Leisure,"In which game or sport is a ""Zamboni"" used",Hockey,Science & Nature,"Owing to the sound it makes, what is the alternative name for the Australian bird the Kookaburra? ",The Laughing Jackass ,General,"Which South American Country Has The ""Balboa"" As It's Currency",Panama -Science & Nature,What Is Trinitoluene Better Known As ,TNT ,General,What peter sellers movie did ringo starr appear in,Magic christian,Art & Literature,Edgar Allen Poe wrote a famous poem about his animal.,Raven -General,Which country occupies the horn of africa,Somalia,General,What was the title of the novel which won the 1998 Booker prize,Amsterdam,General,Name the first king to ever make an official visit to communist China,Juan -General,Who refereed the 1876 Sharky Fitzsimmons fight with a gun,Wyatt Earp,Entertainment,In which James Bond film does the villain cheat at golf?,Goldfinger,General,What was unique about all the mens foil winners 1952 Olympics,All Left Handed -People & Places,Which Comedian Is Maried To Caroline Quentin ,Paul Merton ,General,Who won best actress for her role in darling,Julie christie,General,What countries still have not signed a peace treaty for wwii,Russia and -General,Montpelier is the capital of what state,Vermont,General,Who played the scarecrow in the Wiz (all black wiz of oz),Michael Jackson,General,The is no known language without a word for this creature - what,Butterfly -General,What is a Godeminche,Penis dildo with balls, Geography,Vilnius is the capital of which country?,Lithuania,General,What sort of winds lie either side of the Doldrums,Trade -General,Who won the Superbowl in 1989,San Francisco 49 ers,General,What was the name of John Glens first orbiting craft,Friendship 7,Music,Which Queen album shares its name with a newspaper?,News Of The World -General,What is the fear of falling in love known as,Philophobia,General,"What are elementary particles originating in the sun and other stars, that continuously rain down on the earth",Cosmic rays,Music,According To The Lonny Donnegan Classic “The Cumberland Gap” How Many Miles Long Was The Cumberland Gap?,Fifteen -Music,Who Was The Front Man & Lead Vocalist For Dawn,Tony Orlando,General,What is the name of a device used to stem the flow of blood,Tourniquet,General,Which of the Wombles was named after a city in Russia?,Tomsk - Geography,In which city is the Colliseum located?,Rome,General,This country consumes more coca cola per capita than any other.,Iceland,Food & Drink,What colour is caffine?,White -General,The average Britain in their life consumes 1000 lb of what,Carrots,General,What is the currency of Venezuela?,Bolivar,General,What is the us city with the highest murder rate,Detroit -General,What is the Capital of: Equatorial Guinea,Malabo,General,Whos Woodstocks beagle buddy,Snoopy,Toys & Games,Which chess piece is usually valued as 5 points?,Rook -General,"In the film 'selena', who did jennifer lopez play",Selena,General,Who became a genius whenever he put on the fabulous kurwood derby,Bullwinkle,Science & Nature,Which Bird Was The Emblem Of Prussia ,The Eagle  -Music,"What Was The Cult Originally Known As ""Southern Death Cult"" Or ""Sudden Death""",Southern Death Cult,Entertainment,Who played the role of Richard Blaine in Casablanca?,Humphrey Bogart, History & Holidays,What is the collective name for a group of Angels ,A Host Of Angels  -Mathematics,What is the maximum number of integer degrees in an obtuse angle?,179,Art & Literature,Who wrote 'A Christmas Carol'?,Charles Dickens,Sports & Leisure,"What vehicles are involved in the ""Tour de France""?",Bicycles -General,What is the traditional theatrical greeting before a performance to wish 'good luck',Break a leg,Toys & Games,There are this many red_letter cubes in Perquackey.,3,General,Pentheraphobia is the fear of,Mother-in-law -Science & Nature, The __________ can travel up to 9 miles per hour.,Chicken,General,Which of Henry VIII Wives Was Elizabeth I Mother,Anne Boleyn,General,"Sirocco, mistral and chinook are all types of what",Winds -Sports & Leisure,Football: The Cincinnati _________.,Bengals,General,Sterling Holloway was original voice of which Disney character,Winnie the Pooh,Science & Nature,What has approximately 1/4 pound of salt in every gallon?,Seawater -General,In England what would you buy or get at a Mop Fair,Servants for Hire,General,"What shape is a crystal of table salt a cube, oval or sphere",Cube,General,"In the film Copycat , which entertainer played serial killer Daryll Lee",Harry connick jnr -General,What was the first grand slam tennis title won by steffi graf,French open,Entertainment,Which comic is drawn by Sam Keith?,The Maxx,General,Which is the most ancient walled city,Jericho -General,Who wrote Auld Lang Syne,Robert burns,Entertainment,Name Cathy's on again/off again boy friend,Irving,General,The German Opel family was known for the manufacture of what,Cars -Art & Literature,What Dance Is Associated With Vienna ,The Waltz ,Sports & Leisure,Which English Race Course Is Overlooked By Trundle Hill? ,Good Wood ,General,In what European country are the villages Vomitville and Fukking,Austria -General,In Greek mythology who was the husband of Helen of Troy,Menelaus,General,James Drury starred in which TV western series,The Virginian,General,"Other than pocahontas, which two women have been represented on u.s currency",Susan b anthony and martha washington -Science & Nature," Sheep will not drink from running water. Hence, the line in the Twenty_third Psalm: ""He leadeth me beside the __________",Still waters,General,Name the book - first line - It was a pleasure to burn,Fahrenheit 451 Ray Bradbury,General,Which group govern in a plutocracy,The most wealthy -General,Which fruit is the symbol of hospitality,Pineapple,General,What is the 'x' on a railroad crossing,Crossbuck, Geography,What is the capital of United Kingdom ?,London -General,Brand name was translated as Bite the wax tadpole in Russian,Coca Cola,Science & Nature,By what name is Lysergic acid diethylamide better known?,LSD,General,The British Mediterranean Fleet defeated Italian naval forces at which battle in May 1941,Cape matapan -General,From which station does the 'chattanooga choo choo leave,Pennsylvania,General,Who won the Tour de France 4 times 1961 to 1964,Jacques Anquetil,Music,"On Which Record Label Was ""Apache"" Released By The Shadows In 1960",EMI -General,Who invented the television?,John Logie Baird, History & Holidays,"""Which popular Christmas song was actually written for Thanksgiving? (White Christmas, Jingle Bells, Silent Night, Away In A Manger"""" "" ",Jingle Bells ,Science & Nature,What Was Joy Adamson's Lion Cub Called ,Elsa  -Entertainment,Who does the voice for Yoda in the Star Wars films?,Frank Oz,General,What are horseshoe crabs,Spiders and scorpions,General,From which alphabet do all western alphabets originate,Phoenician -General,How many peas grace the average pod,Eight,General,What musical direction comes from the Italian meaning cheerful,Allegro,General,"In the TV series ""The Beverley Hillbillies"", who played Jed Clampett",Buddy ebsen -Music,Name Three Mebers Of The Boy Band Five,"Scott Robinson, Rich Neville, Abs, Sean Conian, Jason Brown",General,Satanophobia is the fear of,Satan,Sports & Leisure,"What is the average viewing figure for The TV Show (A Question Of Sport) 7, 8, 9, or 10 Million ",8 Million  -Science & Nature,"In the 1940s George Gamow developed a theory that a giant explosion, 10-20,000 million years ago, began the expansion of the universe. What is the name given to this theory? ",The Big Band Theory ,General,What is the popular name for the drug 'drinamyl',Purple hearts,General,The arteries & veins surrounding the brain stem are called what,Circle of willis -General,"In terms of area, which is the largest city in Africa",Cairo, History & Holidays,What were men conscripted to work down mines in World War Two usually known as? ,Bevin Boys ,General,Woodwind Instrument size between Clarinet and Bassoon,Cor-anglais -Geography,What country has the world's most southerly city,Chile,Geography,Which rocky island group off the Northumberland coast is associated with Grace Darling and St Cuthbert ,The Farne Isles , Geography,What is the capital of Venezuela ?,Caracas -General,Aldeberan is the brightest star in which constellation,Taurus,General,The World's First Motorway Was Opened In 1929. In What Country Did This Take Place ?,Italy,General,What is a group of asses,Pace -General,Who is the Patron Saint of thieves,St Nicholas,General,Whats the worlds second most spoken language,English,Religion & Mythology,"Who was Ancient Egyptian goddess of fertility, love and beauty ?",Bastet -Music,Where In Mayfair Did A Nightingale Sing,Berkeley Square,General,What yellow fossilized resin was used in jewellery by the greeks and romans,Amber,General,What style of dancing was popularized with rap music?,Break Dancing -General,"In the field of entertainment, by what name is Emma Bunton better known",Baby spice,General,The average person has 1460 what each year,Dreams,Entertainment,"She played a Polish refugee in ""Sophie's Choice"".",Meryl Streep -General,In which country is the worlds longest road tunnel,Switzerland,General,What capital city does the liffey river flow through,Dublin,Science & Nature," 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 - History & Holidays,In which 1970's films does Dustin Hoffman play the character ' Babe Levy' ? ,Marathon Man ,Music,The Legend Of Xanadu Reached No.1 In 1968 Who Sang It,"Dave, Dee, Dozy , Mick & Tich", Geography,"Which country developed ""Tae-Kwan-Do""?",Korea -Music,"Whose Albums Included ""Notorious"" & ""Arena""",Duran Duran,General,"Who, in the Bible, was taken up to heaven in a fiery chariot",Elisha elias,General,"Who wrote the story of ""the nutcracker""",Eta hoffmann -Music,Which Of Marvin Gayes Singing Partners Died Of A Brain Tumour In 1970,Tammi Terrel,General,Edmonton is the capital of which province,Alberta, Geography,Yaounde is the capital of ______?,Cameroon -General,What does basic stand for,Beginner's all purpose symbolic instruction code,General,Who was the star of the film Bachelor Party?,Tom Hanks,General,Who hit a golf shot on the moon,Alan sheppard -Science & Nature,From What Was Aspirin Orginally Extracted ,Tree Bark , History & Holidays,What Is The Star Sign Of A Person Born On Christmas Day ,Capricorn ,General,The Rhine rises in which country,Switzerland -General,What do Beavis and Butt-head have on their T shirts,Metallica - AC/DC,General,Which middle eastern country's official name is Al-Lubnan,Lebanon,General,"Gibraltar Point, an area especially associated with wildlife is located south of which seaside resort?",Skegness -Music,Which Polish Composer Was Portrayed By Cornell Wilde In The Film A Song To Remember,Fryderyk Chop,General,Which of the Seven Wonders of the World was constructed by the sculptor Phidias about 430 B.C.,Statue of zeus, History & Holidays,"In 1951 Howard Hawks produced The Thing. Who directed the 1982 remake, which starred Kurt Russell ",John Carpenter  -General,"What candy bar was actually named after Grover Cleveland's baby daughter, Ruth",Baby ruth,Science & Nature,"What Was The Name Of The Java Born Dutch Aircraft Manufactuerer who, During World War I, Produced More Than 40 Types Of Airplanes For The German High Command ",Anthony Fokker ,Science & Nature," A male __________ that has been neutered is known as a ""wether.""",Goat -General,What was the first motion picture to have a synchronized musical score,Don,General,In Astrology what is the ruling planet of communication,Mercury,General,What are the more common terms for the maxilla and mandible,Upper and lower jaw -General,Why was turkey primarily barred from e.u entry,Human rights abuse,General,What is the provincial flower of Saskatchewan,Tiger lilly,General,Santiago is the capital of ______,Chile -General,What is the part of the nose that separates the two nostrils,Columella,General,In western palmistry the index finger is linked to which planet,Jupiter,Science & Nature,Who invented dynamite ?,Alfred Nobel -Sports & Leisure,Who Was The First Woman To Run A Mile In Under 5 Minutes ,Diane Leather ,General,What is the name of Beatrix Potter's fishing frog,Jeremy fisher,General,What is the fear of symbolism known as,Symbolophobia -General,Which comic is drawn by sam keith,The maxx,General,What waterway did Britain buy a share of in 1875,Suez canal, Geography,The Andaman Islands belong to which country?,India -Science & Nature,What is another term for a black leopard,Panther,General,What is the sacred river of hinduism,Ganges,General,Who was Jimmy Carter's Vice-President,Walter mondale -General,What is a group of this animal called: Elk,Gang,General,What event supposedly occurred in the Coenaculum or Cenacle,The Last Supper,Music,"Who Recorded The Album ""Reckless""",Bryan Adams -General,Who succeeded Georges Pompidou as President of France,Valery giscard d'estaing,General,"In a famous opera, what did siegfried understand after tasting dragon's blood",Bird's speech,Food & Drink,Which food crop does the Colorado beetle most often attack? ,Potato  -General,In Florida public singing is illegal if you are wearing what,Swimsuit, Geography,On what island is Honolulu?,Oahu,General,What word is given to a baby echidna?,Puggle -General,What is excessive enthusiasm or zeal for a cause,Fanaticism, Geography,What is the capital of Botswana ?,Gaborone,General,What did table tennis balls used to be made from,Cork -General,What future famous actors played Spicolli's sidekicks in Fast Times at Ridgemont High?,Eric Stolz and Anthony Edwards,General,"In the movie Office Space, what item did Peter pull from the rubble?",A red stapler,Science & Nature,In Which Year Was The Boeing 747 Put Into Regular Service ,1970  -General,Asian moon rat is the only animal smells like a veg which one,Onion,General,What is Kumiss made from in Asia,Fermented Cows Milk,Art & Literature,"This magazine features departments ""Picks & Pans"" and ""Chatter""",People -General,Which Russian word means openness,Glasnost,Science & Nature,Which Was The First International Airline To Launch A Sevice ,Klm (London To Amsterdam) ,Music,"On Which Label Was The Sex Pistols First Single ""Anarchy In The UK""",EMI -General,What is the escape velocity from the earth's gravity (mph),"25,000 mph",General,What is the fear of string known as,Linonophobia, History & Holidays,Little boy & fat man were the first ,Atomic bombs  -General,What is the Capital of: Israel,Jerusalem,General,Which song won first Oscar when the category was intro 1934,The Continental,General,"In the Bible, how is the Decalogue more commonly known",Ten commandments -General,Goddess sprang full grown from the forehead of her father Zeus,Athena,General,The average human produces how many quarts of spit in a lifetime,25000, Geography,What is the world's highest waterfall?,Angel Falls -Entertainment,Who is stationed at Camp Swampy in the comic strips?,Beetle Bailey,General,"Who composed the opera ""The Rake's Progress""",Stravinsky,General,What was the name of the first presidential aircraft,Sacred Cow -General,Find sources of light in the word spelled - psalm,Lamps,General,Who formed Microsoft with Bill Gates,Paul allen,General,"As who, was Lev Davidovitch Bronstein better known",Leon trotsky -General,How Is Thomas Mapother IV Better Known,Tom Cruise,General,What are the lime deposits hanging from the ceiling of a cave called,Stalactites, Geography,Kinshasa is the capital of ______?,Democratic Republic of the Congo -General,Where did Wolfe defeat the French under Montcalm,Quebec,General,What countries presidents Yusof Bin Ishak and Wee Kim Wee,Singapore,General,What sport do you throw bombs in,Football -General,Which mineral has the chemical formula FeS2,Iron pyrites,General,With what are toadstools often confused,Mushrooms,Science & Nature, All cows are females; the males are called __________,Bulls -General,"Who wrote, 'This is the way the world ends, not with a bang but with a whimper'",T s eliot,General,What is the concave dish shape of a liquid inside a glass or tube,Meniscus,General,What is a bone specialist,Osteopath -General,What instrument does an organ grinder play,Hurdy gurdy,General,Conventionally middle class materialist,Bourgeois,General,What does mel blanc's headstone say,That's all folks -Food & Drink,Agar-agar is often used in cooking. What is it? ,A type of gelatine ,General,What city is also known as beantown,Boston,General,In Which Country Was Cliff Richard Born,India -Entertainment,Who starred in the film 'The Man With Two Brains'?,Steve Martin,Science & Nature,"""Scotch pine"", ""Douglas fir"", ""Noble fir"", ""Fraser fir"" are all commonly used as what?",Christmas trees,General,What is the flower that stands for: affectation,Morning glory -Geography,What is the smallest independent state in the world,Vatican,General,Whose girlfriend was Virginia Hill - he killed her B Hills 1947,Bugsy Siegel,General,Small vegetable like a marrow,Courgette -General,What passenger train once ran between London and Edinburgh,Flying scotsman,General,What device converts alternating current into direct current,Rectifier,General,What girls name is a type of Australian throwing stick,Kylie -Music,What Was Mike Berry's Comeback Single Reaching No.9 In 1980,The Sunshine Of Your Smile,General,Gin Triple Sec (quantreau) and pineapple juice what cocktail,Aloha,General,Festival on January 6th commemorating the visit of the Magi to Christ,Epiphany -General,Which novelist gave their name to a slang word for 2000 pounds,Jeffrey archer,General,What is a low layer of cloud called,A nimbostratus,Geography,Which River Flows Through Paris ,The Seine  - History & Holidays,King Abdullah was assassinated in 1951. Of which country was he king? ,Jordan ,General,Brewers at what time did the hiroshima bomb detonate,8:15 AM,General, What does a brandophile collect,Cigar bands -General,What are the most commonly ordered item from sex catalogues,Novelty Condoms,General,Who had a number one hit in 1970 with In the Summertime,Mungo jerry,Music,Who recorded 'Blue Morning Blue Day' in 1978?,Foreigner -General,In 1957 which actress recorded 'tammy' from one of her films,Debbie reynolds,General,Tomography is a scanning technique which uses X-rays for photographing particular slices of the what,Body, History & Holidays,What was the name of the party dog that that was Budwiser's mascot in the late eighties? ,Spuds McKenzie  -Toys & Games,What is the tallest piece on a chessboard?,King,General,In Texas it's illegal for what profession to be communists,Pharmacists,General,Who recorded the album 'Hotel California',The eagles -General,"Greeks longest, Japans shortest and Saudi Arabia none what?",National Anthem,General,Americans use 16000 tons of what each year,Aspirin,General,With what is a diamond cut if it forms graphite dust,Laser -General,"What name is given to the blend of Black China and Darjeeling teas, flavoured with oil of Bergamot",Earl grey,Sports & Leisure,Which 2004 Darts Champion Is Known As The Viking? ,Andy Fordham ,General,"In which country are Cape Otway, Mount Gambier, and the Grampian Mountains",Australia -General,31% of people said what was the most disgusting personal habit,Spitting,General,What tennis star founded the magazine women's sports,Billie jean king,General,What is the Capital of: Kenya,Nairobi -General,What part of the body is most bitten by insects,The Foot,General,Lord Lovat was the last in England to do what,Be judicially beheaded, History & Holidays,"Complete the verse - 'Twas the night before christmas, when all through the house. Not a creature was stirring not even a ",Mouse  -General,Post boxes in the UK are red what colour are they in France,Yellow,Science & Nature,What is the symbol for silver,Ag,Music,"Who Released Their Debut ""The Prince"" On 2 Tone In 1979",Madness -General,What is the medical term for whooping cough,Pertussis,General,Someone with firmly fixed opinions is said to be dyed in what,The wool,General,Of what country is the monetary unit the rupee,India -General,70% people would stamp barefoot broken glass that watch what,Riverdance for 24 hours,General,Jimmy stewart is driven by revenge in the movie _____?,Man who shot liberty valence,General,Who said - Give us the tools and we will finish the job Feb 1941,Winston Churchill -Entertainment,"Which planet was the ""Planet of the Apes""?",Earth,General,"What completed a journey of 19,500 miles with only three stops in August 1929",The graf zeppelin,General,What does the distress signal SOS stand for?,Save our Souls -General,Steenburgen What sheriff claimed to be Walking Tall,Buford pusser,Science & Nature,What Is The Phenomenon Called In Which Light Bends When Passing Through A Lens ,Refraction ,Sports & Leisure,What is the regulation height for a pin in tenpin bowling? (in inches),Fifteen -General,Where did a shire have a reeve,England,General,What mythical scottish town appears for one day every 100 years,Brigadoon,General,How many apostles did Jesus choose,12 -General,"In the world of animals, where would you find a 'martingale'",On a horse,General,What was used for blood in the film 'psycho',Chocolate syrup,General,Bourbon Miss restaurant by law what must be served with water,One Small onion per glass -General,Who was the cause of the Trojan wars,Helen of troy,Geography,This country lost the largest percentage of its men in a single war (~70%).,Paraguay, History & Holidays,What historic event does the nursery rhyme (Ring-a-ring of roses) commemorate? ,The Great Plague  -General,In parts of Siberia wives threw what at men to show wanted sex,Worms or slugs,General,What colour is named after a battle fought in Italy in 1859,Magenta,General,What animal's penis is four feet long when erect,Giraffe -General,What was the name of the scandal that resulted in the resignation of president nixon,Watergate,General,"Who once told Playboy magazine he ""committed adultry in his heart""",Jimmy carter,General,Staurophobia is a fear of ______,Crosses -Music,"Which Famous Kenny Was ""Coward Of The County""",Kenny Rogers,General,"Any animal lacking a vertebral column, or backbone",Invertebrate,General,What's a microchip made of,Silicon - Geography,What is the capital of North Dakota?,Bismarck,General,What is the anatomical name for the bones of a human's fingers and toes,Phalanges,General,Who was the richest man to be vice president of the U.S.,Nelson rockefeller -General,In which 'james bond film does the villain cheat at golf,Goldfinger,General,Which country did Chiang Kai-shek found in 1949,Taiwan,General,In Friends where does Joey keep his favourite book,In the Freezer -General,In which country would you now find the site of the World War One Battle of Caporetto,Italy,General,What is the highest mountain in Canada called,Mount logan,General,In Massachusetts it is illegal to duel with what,Water Pistols - History & Holidays,"Churchill, F.D. Roosvelt and Stalin met here in 1945.",Yalta,General,Ferdinand is a story about a ____,Bull,General,"Tarsus, metatarsus, and phalanges are parts of a(n) _________.",Foot -Science & Nature," The Mojave ground __________, found mainly in the American West, hibernates for two_thirds of every year.",Squirrel, History & Holidays,"""What drink was adapted to become the American Christmas drink 'Egg Nog'? Scandanavian Drink Glogg , Austrian Drink Gluwein, French Drink """"Lait De Poule"""" The German Drink """"Biersuppe"""" "" ",The French Drink Lait De Poule ,General,"Dreams are good friends, when you're ______",Lonely -Music,"""Don't Forget Me When I'm Gone"" Was A Hit For Which Canadian Rockers",Glass Tiger,General,Traffic jam affecting a whole network of intersecting streets,Gridlock,General,In the world of computing what does the acronym P.D.F. stand for?,Portable Document File -Food & Drink, Which red jelly is a traditional accompaniment to lamb?,Redcurrant,General,In what Australian state would you find Moree,New south wales nsw,Music,What is Ozzy Osbourne's real first name?,John -General,On a prescription the Latin expression Ter in Die means what,Three times daily,General,"In the movie ""Mall Rats"", What famous author was signing comic books?",Stan Lee,General,Which actor used to sweep out lions cages for a living,Sylvester Stallone -General,"In the movie 'happy gilmore', who is bob barker's partner",Happy,Entertainment,Which actor won Oscars twice for 'best male performance' in the '90s?,Tom Hanks,General,Parthenophobia is the fear of,Virgins young girls -General,Where did dorothy's house land in 'the wizard of oz',On the wicked witch of,Entertainment,Who sang 'Jet Airliner'?,Steve Miller Band,Music,What did Rocky Racoon find in his room?,Gideon's Bible -General,How many sacraments are there in the roman catholic church,Seven,Music,What Was The Stage Name Of Kajagoogoo's Chris Hamill,Limahl,General,What phantom ship is said to haunt The Cape of Good Hope,The Flying Dutchman -Science & Nature,At what age does a filly become a mare?,Five,Food & Drink,"What is a vitamin D deficiency called ? Seven letters, fifth letter is an 'E' ",Rickets ,Sports & Leisure,On Tv's A Question Of Sport Who was the other Capt with Ian Botham? ,Bill Beaumont  -General,The music in Walt Disney's 'Sleeping Beauty' is based upon which composers version of the classic story,Tchaikovsky,General,St Helier Is The Capital Of Which Island,Jersey,General,What is the princess's name in the story The Sleeping Beauty,Aurora -General,"Norwegian Sigerson, Spy Altamont, Sea Captain Basil all who",Sherlock Holmes disguises, Geography,In which state is Cape Hatteras?,North Carolina,General,A small herring or sprat,Brisling -General,Which American Blues singer originally recorded 'Smokestack Lightning',Howlin' wolf,Science & Nature,For what did Pieter Zeeman receive the Nobel prize in Physics?,Zeeman effect,General,"In Which Country Is The Worlds Tallest Building (2005) Taipei 101 (509 Ft), Petronas (452 Ft), Sears (442 Ft)","Taipei 101,Petronas,Sears" -General,Which date starts the astrological year?,21-Mar, History & Holidays,Which 50's Movie features the Line 'I always get the fuzzy end of the lollipop' ,Some Like it Hot ,Music,What was the Shadows first hit without Cliff Richard,Apache -Entertainment,What was Eric Claptons Nick Name?,Slowhand,General,Who first used acupuncture,Emperor shen-nung,General,What is the largest exclusively indonesian island,Sumatra - History & Holidays,The first ever Olympic Games to be held south of the equator opened in which city in 1956 ,Melbourne , History & Holidays,How Old Was Margaret Thatcher When She Took Up The Role Of British Prime Minister In 1979 ,53 ,Food & Drink,Which drink was advertised with the slogan 'There's a Humphrey about'? ,Milk  -General,In British nobility which title is the highest,Duke,General,Which list did sarah ferguson make five times in people's magazine,Worst,Science & Nature,What Type Of Creature Is An Aardvark? ,An Anteater (Edentata)  -General,Who had a number one hit in 1969 with Something in the Air,Thunderclap newman,General,As what were 'The Supremes' originally known,Primettes,Music,William Michael Albert Broad Is The Real Name Of Which Singer,Billy Idol -Music,Formed In 1981 The Girl Band The Colours Charted & Had Success Under What Other Name,The Bangles,General,What is magma,Hot molten rock,General,In what country is Peter II of Yugoslavia buried,America only euro monarch there -General,Clark who is the smallest member of the european union,Luxembourg,Geography,What's the oldest capital city in the americas ,Mexico city ,General,Who invented the predecessor to today's computers,Charles babbage -Science & Nature,Which mammals fly?,Bats,General,What is the term for the area in front of a fireplace,Hearth,General,Who must you kill to be convicted of patricide,Your father -General,What ancient man's brain was larger than that of modern man,Neanderthal,General,By what more common name do we know Major Boothroyd,Q in the Bond films,General,Which country has the worlds biggest (on land) National Park,Canada – Wood Buffalo 17300s ml -General,"The 'stickman', 'boxer' and 'shooter' are three of the participants in which casino game",Craps or dice, Geography,Where is the Taj Mahal?,India,General,Packy Ease an amateur boxer - what name become famous,Bob Hope - History & Holidays,What toy was in short supply for the 1983 Chirstmas season? ,Cabbage Patch Kid ,Music,Which Band Went “Dizzy” With Vic Reeves In 1991,The Wonder Stuff, History & Holidays,What is the Roman numeral for fifty?,L -Toys & Games,How much does Park Place cost in Monopoly (in US Dollars)?,450,General,Who played the part of Sam Malone in TV 's 'Cheers',Ted danson,Science & Nature,If You Were On An Internet Chat Room And You Wrote The Letters BBIAM What Would You Mean ,Be Back In A Minute  -General,Of which country is Maseru the capital,Lesotho,General,Brussels is the capital of _______,Belgium,General,Greek mythology King Minos of Crete got what annual payment,7 men + Women to feed to Minator -Science & Nature," 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, History & Holidays,In which 1988 film remake of 'A Christmas Carol'' does Bill Murray play a cynically selfish TV executive ,Scrooged ,General,What was the war during Regan's first term that took place on an island in the carribean?,Grenada -General,Who made dance hits of Bizarre Love Triangle and True Faith,New order,General,What is the common name of the plant Pelargonium,Geranium, History & Holidays,What's fidel castro's brother's name ,Raoul  -General,Stasibasiphobia is the fear of,Standing walking,General,Which herb did the Romans eat top prevent drunkenness,Parsley,General,What is the Capital of: Bangladesh,Dhaka -Science & Nature,What is the stratosphere immediately above?,Troposphere,General,What is the fear of death or dying known as,Thanatophobia,General,Hymen in Greek Genius in Roman Gods of what,Fertility and Marriage -General,What is Admiral Sir Miles Messervy usually known as,M (Bond films),Sports & Leisure,Basketball: The Utah ________.,Jazz,General,Which quirky brunette was one of the first MTv VJ's?,Martha Quinn -Sports & Leisure,"With Which Sport Do You Associate Harvey Smith, Nick Skelton And Rob Hoekstra ",Show Jumping ,General,A dance involving high kicks,Cancan, History & Holidays,Who Pioneered Nursing Whilst Serving In The Crimean War? ,Florence Nightingale  -Science & Nature,Which Animal Has The Largest Eyes? ,The Giant Squid ,General,Aretha franklin sang 'Think' in which film,Blues Brothers,General,In what game/sport terms Bobble Boom Drop Giraffe Pique Twist,Real Tennis types of service -Geography,Which Rock Is On The South Coast Of Spain? ,Gibraltar ,General,"Who, alongside Frank Williams, was the co-founder of the Williams Formula One team?",Patrick Head, Geography,Which is the Earth's third largest continent ?,North America -General,What is the main ingredient of a moussaka,Aubergines,General,What is the architectural term for a representation of leaves at the top of a column?,Acanthus,General,Who invented the 'Spinning Jenny',James hargreaves -Sports & Leisure,Who Played The Part Of Muhammad Ali In The Bio-Pic Of His Life 'The Greatest''? ,Muhammad Ali!! ,Entertainment,What is the only X Rated film to have won the best film Oscar?,Midnight Cowboy,General,Iceland Glima Iran Kushti Turkey Yagli Russia Sambo what is it,Wrestling -Entertainment,What two words are normally at the end of most movies?,The End,Music,"Who directed the film ""Let It Be""?",Michael Lindsay-Hogg,General,What was the name of the first Wings album,Wild Life -Sports & Leisure,What number is by the side of the number 16 on a dart board? (either Side) ,8 or 7 ,General,Long What was Dorothy's aunt's name in The Wizard of Oz,Aunt em, Geography,What is the capital of Illinois?,Springfield -General,The Victorians began circumcision of male babies to stop what,Masturbation,General,Which film director described actors as cattle,Alfred Hitchcock, Language,Merging the words 'melt' and 'weld' created which word?,Meld -Music,Who Told Us Its Grim Up North,The KLF,Music,Prince & The Revolution Said Her Beret Was What Colour,Rasberry,General,In what Australian state would you find Horsham,Victoria -General,What is hulk hogan's real name,Terry bollea,General,What screen cowboy rode Tony the Wonder Horse,Tom Mix,General,In what country did the sepoy mutiny occur,India -Entertainment,What was the name given to the popular genre of rock that arose in the Pacific Northwest (Seattle) in the early 1990s.,Grunge,Music,In Which Year Did The Band Play A Free Concert In Londons Hyde Park,1969,General,Ebenezer HowaWhat does the musical term 'pesante' mean,Rd is most associated with the foundation of what garden cities -General,If you practice Encraty what are you doing,Abstinence or Self Restraint,General,What is the longest river in Italy,Po,General,Israel has the highest per capital consumption of ______,Turkey -General,Which Singer Was Born Natalie McIntyre?,Macy Gray, History & Holidays,In which 1970's films does Dustin Hoffman play the character ' Lenny Bruce' ? ,Lenny ,General,How long did it take god to create the universe,Seven days -General,What does a phobophobe fear,Fear,General,What type of bird is a 'Beltsville',Turkey,General,In what sport do women compete for the Uber cup,Badminton -General,What were the 1948 Olympic games known as,The austerity games,General,P L Travers created which famous character,Mary Poppins,General,"A silicate mineral, heat resistant and insulating",Asbestos -General,In Australia what is the second Sunday in May,Mothers day,Science & Nature,"Which Lays Blue Egg's , The Song Thrush Or The Mistle Thrush ",Song Thrush ,General,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 -Religion & Mythology,He was the father of Zeus,Cronus,General,The name Europe comes from where,Greek Mythology,General,What animals are on the australian coat of arms,Emu and kangaroo -Sports & Leisure,What Sport Are Torvill & Dean Famous For ,Ice Skating / Ice Dance ,General,Which 1997 Movie Held The Record For The Biggest Opening For A British Film At The US Box Office Taking 2.5m Dollars In Just 3 Days,Mr Bean (The Ultimate Disaster Movie),General,Originating In Mexico A “Pok Ta Pok” Is Known In Modern Times As What Sporting Item?,A Basketball -Science & Nature,"In the animal kingdom, if reptiles are in class reptilia, then birds are in class ____",Aves,General,After Paris which is the largest French speaking city in the world,Montreal,General,"Other than the U.K. and Eire, name a European country where cars are driven on the left hand side of the road.",Cyprus malta -General,Who was the first female to enter the billboard charts in 1985,Whitney,General,In Minneapolis what is the maximum penalty for double parking,The Chain Gang,General,What year was the first oreo sold in,1912 -General,Who wrote the classic novel' Anne of Green Gables',L m montgomery,General,Thomas Edison had a phobia what was it,The Dark,General,Which Italian composer's funeral in 1924 was said to have brought Rome to a standstill,Puccini -General,In Utah you can get a licence to hunt what,Dinosaurs,General,Who was British Prime Minister at the time of the General Strike in 1926,Stanley baldwin,General,-ologies: Study of the sound system of languages; the analysis and classification of phenomes,Phonology -General,Who was the dictator of Portugal from 1932 to 1968,Salazar,General,What instrument does Grumpy play in Disney's Snow White,Organ,Entertainment,Who were the 2 lead characters in the movie Life?,Eddie Murphy and Martin Lawrence -General,Who was the first American astronaut to orbit the Earth,John glenn,General,What is a Pygmy Blue,Smallest butterfly,General,What position do baseball's 'cy young award' winners play,Pitcher -General,The average Britain consumes 14571 what in their lifetime,Pints of beer,General,A hot spicy root used in cooking,Ginger,General,Vaduz is the capital of ______,Liechtenstein -General,What is the most commonly used condiment in the world,Mustard,General,What type of animal is a 'godwit',Bird,General,What's the smallest mammal,Shrew - Geography,What is the basic unit of currency for Yemen ?,Rial,General,Who was the male star when The Mousetrap first played,Richard Attenbourough,General,Which U.S. golfer was killed when his plane crashed in 1999,Payne stewart - History & Holidays,"Famed as a member of the Rat Pack, who died on Christmas day 1995 ",Dean Martin ,General,Where was/is the original Penthouse,In a Real Tennis Court,General,What is the fear of shadows known as,Sciophobia -General,What is the popular word for the umbilicus,Belly button, History & Holidays,Sir Stamford Raffles founded which minor Asian nation?,Singapore,Science & Nature, 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 - History & Holidays,Which novel opens and closes with the letters of Robert Walton ,Frankenstein ,General,Which sea on Earth has no beaches,Sargasso sea,General,What is a sorcerer who deals in black magic called?,Necromancer -General,Which chess piece could be a member of the church,Bishop,General,The longest key on your keyboard is the _____ bar,Space,General,Which Jane Austen novel was originally entitled First Impressions,Pride and prejudice -General,At which address will you find the White House,1600 pennsylvania avenue,General,Does sound travel faster in warmer or colder air,Warmer,General,Indians eat using which hand?,Right -General,A suspended bed of canvas or netting,Hammock,Geography,In which country is normandy ,France ,Music,What was Sam Cooke's only #1 song?,You Send Me -General,What is the world's deepest lake,Lake Baikal,General,Sinatra What are the primary colors,Red yellow blue blue red yellow blue yellow,General,The interior of what is called the paste,Cheese round -General,What is the name of the office used by the president in the whitehouse,Oval,General,The artist formerly known as prince had a both a hit song & movie by this title,Purple rain,Science & Nature," The word ""puppy"" comes from the French __________, meaning ""doll.""",Poupee -Science & Nature,In Computing What Does The Word Modem An Abbreviation Of ,Modulate Demodulate ,General,"The symbol on the ""pound"" key (#) is called a(n) _________",Octothorpe,General,Which oceanic plate lies off the Andes,Nazca -General,Who is the Patron Saint of dancers and actors,St Vitas, History & Holidays,Where Was The Only British Prime Minister To Be Assassinated Killed? ,The Lobby Of The House Of Commons ,General,"When a female horse & male donkey mate, the offspring is called a what",Mule -General,What are the sandals called that are worn in ceremonial japanese tradition,Tabi,Sports & Leisure,Which Former BBC Sports Presenter Gave Up His Career In Pursuit Of Spiritual & Religious Beliefs & Was Once Called (As Nutty As A Box Of Frogs) By A Talk Show Host ,David Icke , History & Holidays,Who took over from Kennedy after he was assassinated? ,Lyndon B Johnson  -General,Name the author of Gone with the Wind,Margaret mitchell, Geography,What is the capital of Singapore ?,Singapore,General,What takes place at Montlhery France and Zandvoort Holland,Motor car racing -General,What is the name of the Kellogg's cereal prefixed with the word 'Optima',Fruit and fibre,General,Dressed list who paid miss ussr four cartons of marlboro to be on his show,David,General,"In ballet, shifting weight from one foot to the other.",Dégagé -Science & Nature,For what is Na the chemical symbol? ,Sodium ,General,What does n.a.s.a stand for,National aeronautics and space administration,General,Who is the female presenter of the TV programme Fort Boyard,Melinda messenger -General,There's Something About Mary' starring Cameron Diaz was released in what year,1998, History & Holidays,Which Country Celebrates 'The Day Of The Dead' Instead Of Halloween Which Includes The Traditionn Of Paassing A Live Person In A Coffin Through The Streets ,Mexico ,General,"What award, founded in 1901, is funded with the help of the Bank of Sweden",The Nobel Prize -General,"Who, in literature, is eligible to be nominated for the annual award called the Carnegie Medal",Authors of children's books,General,Who wrote 'roll over beethoven',Chuck berry, History & Holidays,"""Who was the author of """"A Christmas Carol""""?"" ",Charles Dickens  -General,Trouw is a newspaper in what country,Netherlands,General,Who released the smash hit 'she drives me crazy',Fine young cannibals,General,"Who composed ""Sinfonia Antartica""",Ralph vaughan williama -General,What is the main use of tinder,Lighting a fire, History & Holidays,"The original Halloween film directed by John Carpenter in 1978 cost just $320,000 to make. It ended up making how much world wide was it A 40M, B 50M or was it C 60M ",B (50 Million) ,General,Nations What actor was married to Carole Lombard between 1939 to 1942,Clark gable -General,Dr Deidrich Knickerbocker invented which famous character,Rip Van Winkle,General,"Whose last words were ""Thomas Jefferson still survives""",John adams,Science & Nature,How Is Frozen Carbon Dioxide More Commonly Known? ,Dry Ice  -General,What have men played with for longer than anything else,Dice,General,What Planet Is Sometimes Refered To As Lucifer,Venus,Music,What Is The Barber Of Sevilles Name,Figaro -General,A university has a campus what does it literally mean,A Field,Music,What Is Bo Diddley's Real Name,Elias Bates (Elias McDaniel),General,What's the common name for hydrogen hydroxide,Water -General,Spain's equivalent to the dollar is the ______?,Peseta,General,"A polish national dance in triple time with an accent on the second beat, characterized by proud bearing, clicking of heels, and holubria, a special turning step.",Mazurka,General,"Magazine wrote ""Fighting for peace"" is like fucking for chastity",Knave March 1977 -General,What is the only Bible book referred to in a Shakespeare play,Numbers in Henry V, History & Holidays,"Beginning in the 1820s, who from the southeastern united states were relocated to indian territory over numerous routes ",The five civilized tribes ,General,What is the criminal number of sideshow bob in 'the simpsons',24601 - History & Holidays,Who was Cary Grant's female lead in the movie 'To catch a thief? ,Grace Kelly ,General,97% of all paper money in the USA has traces of what on it,Cocaine,General,Who was given a ticker tape parade in new york after his 1927 flight to Paris,Charles lindbergh -General,What is the official language of Mexico,Spanish,General,What TV show had a character named Potsie?,Happy Days,General,What Roman galley was Judah Ben Hur a slave oarsman on,Astrea -Food & Drink,Which village in Leicestershire gives its name to a hunt notorious among animal rights protesters and a food popular with vegetarians? ,Quorn ,General,A horse's hoof is also known by what grim term,Coffin,General,Graphite dust is formed when what is cut with a laser,Diamond - History & Holidays,Who Released The 70's Album Entitled Autobahn ,Kraftwerk ,General,Who wrote the musical The Desert Song,Sigmund Romberg,General,What would you be if you were a coryphée,Ballet Dancer - History & Holidays,Which Mother & Daughter Both Appeared In John Carpenters Film The Fog ,Janet Leigh & Jamie Lee Curtis ,Music,Herbie Mann Is Best Known For Playing Which Instrument,Flute,General,What is the Capital of: Mali,Bamako -General,In The World Of Sport Wendy Toms Was The First Woman To Do What?,First Female Referee,General,What are the sacred Hindu texts called,Vedas,General,What elaborate white marble tomb did India's shah Jahan build in memory of his favourite wife,Taj mahal -General,"What are Demy, Medium, Royal, Double Crown",Paper Sizes,General,What is the tallest piece on a chessboard,King,General,The Silkworm Lives On A Diet Of Leaves From Only One Type Of Plant What Is It,Mulberry -General,What is the name given to sole cooked in white wine and cream with grapes,Sole veronique,General,What is the fear of ants known as,Myrmecophobia,General,Whose flag has the national arms on one side and the treasury seal on the other?,Paraguay -General,Who did Vivian Vance play on 'the lucy show',Vivian Bagley,General,Who was the losing Democratic candidate when Dwight D Eisenhower was re-elected as U.S. President in 1956,Adlai stevenson,Science & Nature,Waves 'break' when their height is how much more than the depth of the water?,Seven tenths -General,On Scooby Doo what was Shaggys real name,Norville,General,Who wrote 'gone with the wind',Margaret mitchell,General,U.S. Captials - Idaho,Boise -General,Which former British colony is now called Ghana,Gold coast,General,Who is the largest builder of fire engines in the united states,Ward la,General,What was Adam Sandler's occupation in Big Daddy?,A tollbooth worker -General,What first appeared on the USA domestic market in 1960,Canned Coca Cola,General,Hydrargyophobia is the fear of,Mercurial medicines, History & Holidays,What country did the allies invade in world war ii's operation avalanche ,Italy  -General,What happend in the final episode of M.A.S.H. hence the theme tune?,They All Commited Suicide The Theme Is Called 'Suicide Is Painless',General,Psychrophobia is the fear of,Cold,General,Countries of the world:about 700 islands between Florida & Haiti,Bahamas -General,Implement for clearing up dog excretment,Pooper scooper,Entertainment,What is Dennis the Menace's surname?,Mitchell,General,When does the southern Autumn Equinox occur,42075 -General,French for until we meet again,Au revoir,General,What kind of clay can potters heat to a higher temperature earthenware or stoneware,Stoneware,General,Who killed goliath,David -General,SOS the distress message stands for what,Nothing - NOT save our souls,General,Piano Man' was which man's first successful album in 1974,Billy Joel,Music,What Song did david Bowie & Mick Jagger Have A Hit With As A Duo,Dancing In The Street -General,"Who played detective, Frank Cannon, in the TV series 'Cannon'",William conrad,General,"When solid substances in the blood are removed, what name is given to the remaining liquid",Plasma,Science & Nature,What Were Pterosaurs ,Warm Blooded Flying Reptiles Related To Dinosaurs  -General,"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,General,Who was the only person to win world titles on bikes and cars,John Surtees,General,Who wrote the opera 'tosca',Giacomo puccini -General,What is a Ha Ha,Sunken Fence,Art & Literature,What Is The Name Of The 7th And Final Harry Potter Book ,Harry Potter & The Deathly Hallows ,General,Darwin She starred in Broadcast News and The Piano.,Holly Hunter -General,Who played Tchaikovsky in the 1971 film The Music Lovers,Richard chamberlain,Science & Nature,Which Year Was The Orbiting Hubble Telescope Launched ,1990 ,Music,Which Song Gave The Group Hanson A Trans Atlantic Hit in 1997,MMM Bop -General,At what sport did Italian Giacomo Agostini compete,Motor cycling,General,What year was Picasso born,1881,General,"What does the typical man have 13,000 of",Whiskers -Music,Which Former Beatle Became A Travelling Wilbury?,George Harrison,General,Who is the norse god of lightning,Odin,General,Any member of a group of protozoa (single-celled animals) that are blood parasites,Trypanosome -Music,"Which Singer Has Appeared On Stage Acting As Jesus, CheGuevara, Lord Byron & Fletcher Christian",David Essex,Music,"From Her 1994 Hit When did Sheryl Crow ""Like A Good Beer Buzz""",Early In The Morning, History & Holidays,Who killed Jesse James?,Robert Ford -General,What does the name Dracula mean in Romanian,Son of the Devil,General,"What beach boys song blathers ""rah rah rah rah, sis boom bah""",Be true to,General,What is Ordune,Arousal by nude pics -Geography,What is the capital of Kiribati,Bairiki,General,As a performer what one thing would Elvis never do,An Encore,General,The Florida Martins won the World series baseball in this year,1997 -Music,Who Left Eastenders In 1998 To Pursue A Singing Career,Martine McCutcheon,General,"What was a big hit for the pipes, drums, and military band of the Royal Scots Dragoon Guards in 1972",Amazing grace,Music,"Who Said ""I Don't Wanna Fight"" Was The Ideal Theme For Her Autobiography",Tina Turner -General,Who was the first female prime minister of india,Indira gandhi,General,When was the resurrection,Easter,Science & Nature,What animal's milk is more than 54% fat?,Humpback whale -General,What former british colony's largest retailer was duty free shoppers,Hong,General,First Impressions was the original title of what classic novel,Pride and Prejudice,Music,Which Band Of The 1970's Got Their Name From Vital Elements In The Astrological Chart,"Earth, Wind & Fire" -General,What is the heaviest element,Uranium,General,Who climbed mount fuji at age 99,Teiichi igarashi,General,Which Great Lake has tides,Superior -General,With what city is alcatraz associated,San francisco,Science & Nature," The female king crab incubates as many as 400,000 young for 11 months in a brood pouch under her __________",Abdomen,General,Kenny Rogers sang Someone Who Cares for what film,Fools -Sports & Leisure,Which German Golfer Won The Us Masters In 1993 ,Benhard Langer ,Entertainment,"When Tweety exclaimed, ""I thought I saw a putty tat!"", who did he see?",Sylvester, Geography,What is the basic unit of currency for Greece ?,Drachma -General,"Who painted ""Big Raven""",Emily carr,General,What is the current vat rate in the uk,17.5%,General,Pali is the sacred language of who,Buddhists in India -General,What is dirty harry's surname,Callahan,Music,What Message Did Michael Ward Bring Us In His One And Only Chart Success,Let There Be Peace On Earth,General,"What is this sign called ""&""?",Ampersand -General,What is the biggest tourist attraction in Zambia,Victoria falls,General,By Winning The World Snooker Championship In 1998 Who Knocked Stephen Hendry Of The No.1 Spot,John Higgins,Geography,To Which Country Does Easter Island Belong ,Chile  -General,Catriona was a sequel to which famous novel,Kidnapped R L Stevenson,General,What was the top grossing film of the 60s,The Sound of Music,General,Venus and Adonis was whose first published work,William Shakespeare -General,"Pantelleria, Ustica and Lampedusa are all islands belonging to which country",Italy,General,In Norse mythology what is the name of the ultimate battle,Ragnarok,Art & Literature,"What Was The Famous Novel Written In Gaol, By John Bunyan ",Pilgim's Progress  -General,The basic ingredients of a ploughmans lunch is bread & what,Cheese,General,According to Hite report masturbating women like to use what,Candles,General,"Roald Amundsen Achieved A World First On ""Dec 14 th – 1911” What Was It?",First Person To Reach The South Pole -General,What city is April wine from,Montreal,General,"What Is The Only Spin Off To Date From The TV Show ""Coronation Street""",Pardon The Expression,Music,"Who Bounced Back To No.1 In 1999 With ""Maria""",Blondie -General,What does a catoptrophic narcissist fear,Mirrors,General,When Sharon Davis Appeared On Th TV Show Gladiators What Was Her Gladiator Name,Amazon,Art & Literature,Which Novel Was Originally Going To Be Titled Elinor And Marianne? ,Sense And Sensibility  -General,Hamburg lies on which river,The elbe,General,"Name Any Year In The Life Of Socrates, He Lived Til The Age Of 70",469-399 BC,General,The Windmills of your Mind was a theme song in what film,The Thomas Crown Affair -Entertainment,This was the Beatle's first film.,A Hard Day's Night,General,The automobile company that makes beetles,Volkswagon,General,"In which constellation in the night sky is there to be found the only confirmed ""Black Hole""",Cygnus -General,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,General,Who was the author of catcher in the rye,Jd salinger,Music,Where did Horst Jankowski Take His Piano For A Walk In 1965,For A Walk In the Black Forest -General,What is the English equivalent of the Spanish boob day,April fool's day,Science & Nature,Which meteor shower occurs on the 12th August ?,Perseids,General,For which film did Michael Caine win an Oscar in 2000,The cider house rules - History & Holidays,What was the name of the first ironclad warship ever launched?,HMS Warrior,General,What does LL Cool J.'s name stand for?,Ladies Love Cool James,General,Whose ghost appears in Shakespeare's Julius Caesar,Caesar's Ghost -General,The Wright brothers made aircraft but what was their other job,Bicycle manufacturers,General,Where were the ancient olympics held,Olympia,General,"According to Espen Lind when __________________ cries, she cries a rain storm, she cries a river she cries a hole in the ground",Susannah -General,How is the mathematically related structure of beads strung on parallel wires in a rectangular frame better known ?,Abacus,General,What city is known as The worlds chocolate capital,Hershey Pennsylvania,General,Name the implement that removes water from your windshield on your car?,Wiper -General,What countries monetary unit is also the bird on its flag,Guatemalan Quetzal,Entertainment,What instrument does an organ grinder play?,Hurdy gurdy,General,Who said Tis better to have loved and lost etc,Alfred Lord Tennyson In Memoriam -General,"In Astronomy What Are Pallas, Vesta & Davida?",Asteroids,Music,With Which Band Did Hugh Cornwell Sing Lead Vocals,The Stranglers,Science & Nature,What Is The Term Used For The Disintegration Of A Nuclear Reactor ,Meltdown  -General,Susseration is what,Whispering,Music,Which Band Did Peter Murphy Of Bauhaus & Mick Karn Of Japan Form,Dali's Car,General,"Which Poet Laureate declared 'I must go down to the sea again, to the lonely sea and sky'",John masefield -General,What is a very thin pastry used in Mediterranean cooking,Filo,General,Name the three children on Kate and Ali.,"Jenny,Chip and Emma",Religion & Mythology,"In English mythology, who caused the death of the Lady of Shallot?",Sir Lancelot -General,In WW2 the Graf Spee was forced into what harbour,Montevideo,General,Where could you see or do an Ollie and a McTwist,Skateboarding,General,What is Belleek,Type of Pottery -Art & Literature,Which Shakespeare play contains the line 'if music be the food of love play on''? ,Twelfth Night ,General,"Broadway 59 music Ordinary Couple, Preludium, Processional",The Sound of Music,Sports & Leisure,"According to Olympic rules, what number of feathers must a badminton bird (shuttlecock) have?",Fourteen -General,To what did john lennon change his middle name,Ono,Music,Name the 2 former Beatles who played with the band in their early tour of Germany?,Pete Best & Stuart Suttclife,Religion & Mythology,"In Greek mythology, who hired Daedalus to construct the labyrinth?",Minos -General,For what condition is the drug Mogadon prescribed,Sleeplessness,Food & Drink,What equivalent English course is antipasto? ,Starters or Hors D'Oeuvres ,Music,"Ever Glamorous She Died Aged 34, On 26th October 1966 Ian Dury Later Called Her The Best Popular Singer Britain Has Ever Had Who Was She",Alma Cogan -Food & Drink,"According to Harry Belafonte, what kind of water is 'good for your daughter' ? ",Coconut water ,General,What was the name of the sad faced clown portrayed by Emmett Kelly?,Weary Willie,General,Salix Alba produces which drug,Aspirin - from the willow -General,At the end of which siege in 1954 were the French finally beaten in Vietnam,Dien bien phu,General,"In Greek mythology, Pasiphae gave birth to which creature",Minotaur,General,How many hearts has an octopus,Three -Music,"Who Had A Hit In 1981 With ""I Surrender""",Tight Fit,People & Places,Which Famous London Landmark Was Designed by Sir Norman Foster ,The Millenium Bridge ,Science & Nature,What hormone is produced by the adrenal glands?,Adrenaline -General,Softball is a variation on which game,Baseball,General,What food was almost non-existent in ireland in the 1840's,Potatoes,General,Which Millais painting was later used in adverts for soap,Bubbles -General,What does blt stand for,"Bacon, lettuce, tomato",Science & Nature,What is the main component of air,Nitrogen,General,What was the first country to use TV as a mass info media,Germany -General,"Which song is used in the movie ""Loser""?",Teenage Dirt Bag,Music,What Was Pop Duo Jemini's “Famous Achievement” Of 2003?,Last In Eurovision Song Contest With No Points,General,What country is ruled by King Hans Adam II,Liechtenstein -General,Who wanted to play Brody in Jaws but Spielberg rejected him,Charlton Heston,Sports & Leisure,The Greek God Apollo Accidently Killed His Friend Hyacinthus While Practising For Which Sporting Event ,The Discus ,General,"It is commonly called the funny bone, where is it",Elbow -General,Who wrote the 'Unfinished Symphony',Wolfgang Amadeus Mozart Mozart,Science & Nature,Which meteor shower occurs on the 16th November ?,Leonids,General,Star which TV show really a programmer written 20 books on it,Buffy Vampire Slayer Sarah Michelle Geller -General,What is the capital city of the newly created country South Sudan?,Juba,General,The words 'coffee' and 'yoghurt' originate from which language,Turkish,General,What does an ichthyologist study,Fish -General,What is 7 days and 10 hours in minutes,10680,General,Which acid builds up in the body during excessive exercise,Lactic, History & Holidays,"""From the Christmas Carol """"Good King Wenceslas"""", where was Good King Wenceslas the King of?"" ",Bogemia  -General,What is the staple food of one third of the worlds population,Rice,General,White and the seven dwarfs Where is the Plumas National Forest,California,Science & Nature,What did North American Indians eat to dissolve gravel and stones in the bladder?,Watercress -General,Wine barrels - There are 83 gallons in a what,Puncheon,General,"Primrose, Montgomery, Petunia, Zinnia And Victoria Were 5 Of The 6 Children That Featured In Which TV Series",The Darling Buds Of Me,General,What ancient languages writing has no spaces between words,Ancient Greek - History & Holidays,"What did presidents Madison, Monroe, Polk, and Garfield have in common","The first name "" james """,General,Many ancient mayan ruins are located on which peninsula,Yucatan peninsula,General,Who was the Roman god of field boundaries,Terminus -General,What river did the Pied Piper drown the rats in,Weser,General,What was jane wyman reagan's birth name,Sarah jane fulks,General,What is anaemia,Iron deficiency -Music,"Name The Title Song From The Movie ""Back To The Future""",The Power Of Love,General,Who cut the US flag to pieces and was honoured for it,Robert Peary left bits at North Pole,General,U.S. captials Wisconsin,Madison -Science & Nature,Where & When Did People First Use Spectacles ,In China In The 1200's , Geography,Which country occupies the 'horn' of Africa?,Somalia,Geography,Ouagadougou Is The Capital Of Which Country ,Burkino Faso (Upper Volta)  -General,"What do scientists say would be the best ""space food"" for astronauts",Insects,General,In medieval Spain which city was noted for its quality steel,Toledo,Sports & Leisure,Baseball: The Kansas City ______?,Royals -General,Monophobia is a fear of ______,Solitude,General,"Who wrote the opera ""the Thieving Magpie'",Rossini,General,Which beatle song features sweet loretta,Get back -Art & Literature,"In Which Book Which Is Also A Film Has The Characters Pod, Arrietty, Homily & Peagreen? ",The Borrowers ,General,When The National Lottery First Introduced It's Midweek Draw Who Presented The Show,Carole Smille,General,"What sport is identified with the movie, ""kansas city bomber""",Roller derby -General,In which Gilbert and Sullivan opera did Col. Fairfax marry Elsie,Yeoman of the guard,General,What is armagnac,Brandy,General,Kimgazer is a newspaper in what country,Cyprus -General,The collection of poems called Barrack Room Ballads and Other Verses was written by whom in 1892,Rudyard kipling,General,Name actor fired as no star quality because of big Adams apple,Clint Eastwood,Art & Literature,"Who wrote the long religious epic, ""Paradise Lost""?",John Milton -Science & Nature, 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, Geography,What is the basic unit of currency for New Zealand ?,Dollar,General,In TS Elliot's book of practical cats name the mystery cat,Macavity -General,Which country first used the fountain pen,Egypt,Sports & Leisure,Where are the U.S. Tennis Open Championships held,"Flushing meadows, ny",General,"Which Invention Often Associated With Fashion Was Invented In 1906 By ""Karl Ludwig Nessler""",The Perm -General,What sport would you see at Arthur Park,Grand Prix Racing,Music,Name The Group That Linked With Motorhead On The St Valentines Day Massacre EP,Girlschool,General,What is the best selling personal computer game of all time,Myst -Music,"What Song Features The Lyric ""But I Didn't Shoot The Deputy""",I Shot The Sheriff,General,"The Olduvai Gorge, famous for its fossils, is in which country",Tanzania, Geography,Surfing is believed to have originated here.,Hawaii -General,In Georgia its illegal to do what with a fork,Eat fried chicken,Entertainment,Who was the first female to enter the Billboard charts in 1985?,Whitney Houston,Science & Nature,Which Sex Is The Only One To Suffer From Haemophilia ,Male  -General,What is the tribal african word for dowry,Lobola,Geography,What is the capital of Tonga,Nuku'alofa,General,What is Sekkusu in Japan,Sex -General,What are most of the solar system's planets named for,Roman gods,General,We have all heard Hari Krishna - what does Krishna mean,Dark as a cloud,Music,"When Elvis Presley Returned To Civilian Life After Army Duties, He Appeared In A ""Welcome Home Elvis"" Television Spectacular Who Hosted The Show",Frank Sinatra - History & Holidays,Which Country Was Awarded The George Cross For Civilian Bravery In 1942? ,Malta , Geography,What is the basic unit of currency for Sierra Leone ?,Leone, History & Holidays,What was Maggie Seaver's maiden name on Growing Pains? ,Maggie Malone  -General,Jewish boys have a Barmitsva at 13 what do girls get at 12,A Batmitsva,Music,"Paul wrote the song ""Hey Jude"" for:",Julian Lennon,General,A character named 'Spearchucker Jones' was deleted from this famous American television show's cast after only five episodes,MASH -General,The word puppy comes from the French poupee - literally what,Doll,Sports & Leisure,Which Martial Art Made It's Debut At The 2000 Olympic Games ,Tae Kwon Do ,General,What is the 1983 bryan adams album which features the hit 'cuts like a knife',Cuts like a knife -General,Thieves Liars Magicians and who were in Dantes 8th circle Hell,Politicians,General,"Slip, square and surgeon all types of what",Knot,General,What was Rizzo's real name in Grease?,Betty - Geography,What is the Southernmost country in continental Europe?,Spain,Music,What Is Kylie Minogues Middle Name,Ann,Sports & Leisure,In Which Game Might You Get A Royal Flush ,Poker  -General,Who was eaten by dogs in the Old Testament,Jezebel,General,Hurt driving: what country is identified by the letter h,Hungary,Music,"Which Group Were A One Hit Wonder With ""Danger Games""",The Pinkees -General,Who did patrick duffy portray in the tv series 'dallas',Bobby ewing,General,If something is coked en brochette how is it done,On a skewer,General,Which wood was traditionally used to make English longbows?,Yew - Language,Multiple Meanings: Drinking utensils or sight-enhancers.,Glasses,General,"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,General,Into which body of water does the river Danube flow,Blacksea -Music,Which Artist Spent Most Weeks On Chart In 1987,Madonna,General,Which is the only musical bird that can fly backwards,Hummingbird,General,For which team will Neil Hodgson be riding in the forthcoming World Superbike Motorcycling season,Ducatti -General,With what line of work was mandy rice-davies associated,Prostitution,General,What does the name of Computer giant Intel stand for in full?,Integrated Electronics,General,"To the nearest one million miles, how far is the Sun from the Earth",93 -General,A change in frequency observed when light is scattered in a transparent material,Raman effect,General,Who is anne mae bullock,Tina turner, History & Holidays,Who killed 5 london prostitutes in 1888 ,Jack the ripper  -Music,Which Type Of girls make the Beatles scream and shout?,Moscow girls,General,"Who said all things were made up of air, earth, fire, water",Aristotle,Music,"Who Sang With Michael Jackson On ""Say Say Say""",Paul McCartney -General,Which Welsh island is called the Isle of the Saints,Bardsey island, History & Holidays,"Born Florian Armstrong, on Christmas Day 1971, which female singer dueted with Eminem on the 2000 hit 'Stan'' ",Dido ,Music,"On What Label Was ""Sgt Peppers Lonely Hearts Club Band"" Released",Parlophone -General,What Form Of Transport Was Pioneered By Igor Sikorsky?,Helicopter,General,The city council of Chico California set a $500 fine for what,Exploding nuclear bomb in city,General,Which female name means worth of love,Amanda -Music,Which Beatle Divorced His Wife Cynthia In 1968,John Lennon,Sports & Leisure,What is the formula one course called in Canada ? ,Montreal ,General,In what Australian state would you find Coffs Harbour,New south wales nsw -General,What is the Capital of: Norfolk Island,Kingston,General,Which actor was Howard Hughes describing when he said 'His ears make him look like a taxi cab with both dooors open',Clarke gable,Science & Nature,Which Company Began Manufacturing The Jeep In 1943 ,Willys  -People & Places,Which British Director Attempted To Appear In All The Films He Directed ,Alfred Hitchcock ,Entertainment,In the 70s Hit Captain Scarlet and the Mysterons what is the name of the company Scralet works for?,Spectrum,General,Lome is the capital of ______,Togo -General,What was the name of the first space shuttle ever built?,Enterprise,General,Palmer From what is rum distilled,Sugar cane,General,What was the first publicly televised sporting event in Japan,A Baseball Match -General,Only three Angels are named in Bible Gabriel Michael and who,Lucifer,General,"What are Nissan, Av, Adar and Tishrei",Jewish months,Music,"Who recorded the Lennon/McCartney song ""World Without Love""?",Peter and Gordon -General,What in the wild west was known as The Peacemaker?,Colt 45,Music,"Whose 1998 ""Best Of"" Compilation Was Entitled ""Hatful Of Rain""",Del Amitri,General,The Teddy bear was named after which US president?,Theodore Roosevelt -Science & Nature, __________ can withstand water pressure of up to 850 pounds per square inch.,Seals,Music,"Which Band Leader/Composer/Producer Wrote The Score For The 1967 Movie ""In The Heat Of The Night"" Featuring Ray Charles On The Title Song",Quincy Jones,Science & Nature,Which Has The Longer Wavelength Xrays Or Microwaves ,Microwaves  -General,Sourj is Armenian for what,Coffee,General,What city is served by Narita Airport,Tokyo,General,Adolf Hitler took nude photos of Ava Brown - What part why,Arse - so she not recognised -Music,"""Edge Of Heaven"", ""Last Christmas"" & ""I'm Your Man"" Were Hits for Which 80's Duo",Wham,General,Diameter Who plays shortstop for Charlie Brown's baseball team,Snoopy,General,From where was ricky in 'i love lucy',Cuba -General,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,Entertainment,What was the name of George of the Jungle's pet elephant,Shep,Entertainment,Where did Mighty Mouse get his superpowers,The supermarket -General,What's the correct name for a male turkey,Tom,General,What does the name Tokyo mean,Eastern City,General,What is Cornelius Mcgillicuddy's stage name,Connie Mack -General,"Room for daddy What cat sniffed: ""Cute rots the intellect""",Garfield,General,"In the Bible, which ethnic group took Samson prisoner in Gaza, resulting in him pushing down the temple of Dagon",Philistines, Geography,What is the capital of Samoa ?,Apia -Science & Nature,What type of animal lives in a formicary?,Ant,General,The name for this semi precious stone comes from the latin for sea water,Aquamarine,Science & Nature,What word is used for a male deer,Buck -Music,Which Ex Member Of Televsion Fronted The Voidroids,Richard Hell,General,Collective nouns - a streak of what,Tigers,General,"According to his nazi dossier, what color are Rick's eyes in Casablanca",Brown -General,In what city would you find The Jacques Cartier bridge,Montreal,Music,Which Famous British Pair Could Be Found Dancing In The Street,Mick Jagger & David Bowie,General,A Gila monster is a type of what,Lizard -General,What Pope started the Inquisition,Gregory 9th,General,Which U.S. President ordered the dropping of the atom bombs on Hiroshima and Nagasaki,Truman,General,A catholic minister is known as a,Priest -General,What sport/game is chris evert associated with,Tennis,Entertainment,Who played 'Johnny Mnemonic'?,Keanu Reeves,General,Where is the septum linguae,Tongue -General,What is an ornithorhynchus,Platypus,General,U.S. captials Oregon,Salem,General,A typical American eats how many pigs in his/her lifetime,28 -General,After what were the B52 bombers named?,A fifties hairdo,General,Who was barney rubble's best friend,Fred flintstone,General,Who had a job as a Grave Digger,Rod Stuart -General,At which town did Livingstone and Stanley meet in 1871,Ujiji,Music,Whose ballet music includes Petrushka and The Rite of Spring?,Stravinsky,General,An Intravenuspylorigram is used to detect the presence of what in the human body?,Kidney Stones -General,What is the drug that is used to treat Parkinson's disease,Dopamine,General,An anemometer measures _________,Wind velocity,General,"Because the emu and the kangaroo cannot walk backwards, they are on the Australian ______?",Coat of arms -Tech & Video Games,What did the letters in ROB (the old NES peripheral) stand for? ,Robotic Operating Buddy,Science & Nature,Of what did Aristotle say all things were made up?,"Air, earth, fire, and water",General,Mary Kelly was the last known who,Victim Jack Ripper -General,David Cornwell is better known as which author,John Le Carr,General,Whose portrait appeared on the reverse of the last £1 note,Isaac newton,General,"In The World Of Sport How Did ""Guenter Parche"" Hit The Headlines In 1993",Fan Who Stabbed Monica Seles -General,70% of Americans have done what,Visited Disneyland / world,General,What social insects are the favourite food of numbats,Termites,Sports & Leisure,What Is The Name Of The Player In Baseball Who Is Positioned Behind The Home Plate ,The Catcher  - History & Holidays,What Was Formerly Called Stingray Harbour? ,Botany Bay ,General,How many days can a cockroach live without water,30,General,A mirliton is another name for what musical instrument,A Kazoo - Geography,What is the capital of Hungary ?,Budapest,General,What is a group of hogs,Passel,Music,Under What Name Had Punk Band PVS-2 Previously Had A No.1 Hit,Silk (Forever & Ever) -General,Character in a movie series named Sanskrit word warrior what,Yoda from Yoddha,General,What is the Chinese practice of treating illness by inserting needles into the body called,Acupuncture,General,What Philippine volcano erupted in 1991,Mt pinatubo -Music,Number of weeks Beatles albums have spent at No. 1,147,Sports & Leisure,How is British sportsman Francis Thompson more usually known? ,Daley Thompson ,General,"The greyhound, along with this smaller relative, is used in the sport of coursing?",Whippet -General,In Which European City Will You Find The Headquarters Of Interpol,Leon, Geography,What is the basic unit of currency for Ghana ?,Cedi,Geography,What country is Phnom Penh the capital of,Cambodia -General,And who wrote the song,Cat Stephens,General,What colour is the cap given to an England cricket player,Blue,General,What is the word for hallucinations & delusions,Schizophrenia -Sports & Leisure,"Liverpool Won Champions League , Who Scored The First 3 Liverpool Goals (PFE)? ","Stephen Gerrard, Vladimar Smicer & Xabi Alonsco ",General,"In The World Of Music How Is ""Saul Hudson"" More Commonly Known",Slash / Guns n Roses,General,What letter ends all Japanese words not ending with a vowel,N -General,Libya achieved independence from which country in 1951?,Italy,General,What country has the worlds most vending machines per capita,Japan,Food & Drink,What B Is A Mexican Dish That Translates Into English As Little Donkey? ,Burrito  -General,A flat bottomed boat on canal or river,Barge,General,Brian Warner is better known as who,Marilyn Manson,General,"What did Einstein call ""the most difficult thing to understand""",Income Taxes -General,What kills 100000 Americans each year,Reactions to meds,Art & Literature,What other name does Stephen King write under,Richard bachman,General,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 -People & Places,Which Publisher Was Known As Cap' N Bob ,Robert Maxwell ,General,Saint Lidwina is the Patron Saint of who,Skaters,General,Reverend Marcus Morris founded which UK comic in the 50s,Eagle -Science & Nature,What is a male swine called,Boar,Food & Drink,Who released the following 'edible' album 'Moldy peaches' ,The Moldy Peaches ,General,In the Dickens' novel 'Great Expectations' what was the Christian name of the convict 'Magwitch',Abel -General,"In ballet, a position with one leg extended at an oblique angle while the body is also at an oblique angle.",Écarté,General,A Canadian person loyal to the british crown in the 1780's,Loyalist,General,The largest sundial was constructed in which year,1724 -General,Who sang 'respect',Aretha franklin,General,Which city is on the east coast of australia,Sydney,General,Who taught George Harrison to play the sitar,Ravi Shankar -Geography,What English city does the Prime Meridian pass through,Greenwich,General,In Oxford Ohio its illegal for a woman to disrobe where,Before a mans picture,General,How many pints will the 27 inch Americas cup hold,None - its bottomless -General,The Stoner Case was a Sherlock Holmes play - later what story,The Speckled Band,General,What is the term for a painting of a person,Portrait,General,What is the former name of the Russian city Volgograd,Stalingrad -Food & Drink,Where were fortune cookies invented?,United States,General,What does Good Friday mark? ,The crucifixion of Jesus ,General,A napiform thing is shaped like what,A turnip -General,In MASH who planted the vegetable garden,Father Mulcahy,General,In which city were the 1932 Summer Olympic Games held,Los angeles,General,What is the world's oldest song ?,Shadouf chant -General,What's the capital of western samoa,Apia,General,"As a result of their wearing high leather collars to protect their necks from sabres, as what were the first US marines known?",Leathernecks,General,Give either first name of the author P.G.Wodehouse,Pelham grenville -General,"What 1991 film won best film, actor, actress, director Oscars",Silence of the Lambs,General,What amateur Reached Wimbledon Semi final in 1977,John McEnroe (aged 18),Entertainment,"Fifties rock ""n"" roll was revived by what greased hair, T-shirted, TV frequenting group?",Sha Na Na -Music,What Was The Name Of Bruce Springsteens Backing Group In The 1970's & 1980's,The E Street Band,General,Issac and Willian Fuld invented and patented what in 1892,Oiuja Board French German Oui Ya,Science & Nature,When light waves pass from one medium into another they change direction. This is called _________.,Refraction -General,"Anthropoid (ape) of equatorial Africa that, physically & genetically, is the animal most closely related to humans",Chimpanzee,General,"On British & Us Television How Is ""Jo Frost"" More Commonly Known",Super Nanny,General,An average American consumes 600 what a year,Cans of Soda -General,Traditionally what should be given on a 20th anniversary,China,General,"What is the fibre from the husk of the coconut, now used in soil-less composts, called",Coir,General,Who was lancelot's son in arthurian legend,Galahad - Geography,This Canadian island is the world's fifth largest.,Baffin,Religion & Mythology,Who was the Greek god of prophecy and archery?,Apollo,General,Which portuguese colony reverts to china in december 1999,Macau -General,"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,General,Who is the greek counterpart of venus,Aphrodite,General,This Tony Award-winning musical is actually a thinly veiled biography of Diana Ross and the Supremes.,Dreamgirls -Entertainment,What do the initials of the band NIN stand for?,Nine Inch Nails,General,Which magazine always features an obituary on its last page?,Rolling Stone,General,What is the pH value of a neutral solution,Seven -General,"In Which 1985 Movie Did Arnold Schwarzenegger"" Play The Character ""Kalidor""",Red Sonja,Music,"In Which Film Does Julie London Sing ""Cry Me A River""",The Girl Can't Help It,General,Which English name produces the most nicknames,Elizabeth -General,Who invented mass car production,Henry ford,General,"The 100 Acre Wood, a fictional place in the 'Winnie the Pooh' stories, is actually inspired from a real place known as 500 Acre Wood in which English forest?",Ashdown Forest,General,Who is popeye's adopted son,Swee'pea -Music,"Which Band Sang Britney Spears ""Baby One More Time"" At Glastonbury 2000",Travis,General,Who is the prime Minister of France,Lionel jospin,General,Who wrote the best selling book on which the film 'Jurassic Park was based',Michael crichton -Entertainment,Which Beatle wrote The Octopus's song?,Ringo Starr,General,Which world saving puppets lived on 'Tracy Island',Thunderbirds,Science & Nature, The __________ is one of the few land animals that does not need water to supplement its food.,Koala -General,Which author created The Saint (both names),Leslie Charteris,General,What do the STP Corporation's initials stand for,Scientifically Tested,Music,Which Singer Made His First Appearance On Adamski's Killer In 1992,Seal -General,"What would be kept in an ""aviary""?",Birds,General,Surrounding or blocking of a place by an enemy,Blockade,General,In medicine what is an Anomaloscope used for,Test for colour blindness -General,What would a car have if its specification included P.A.S.,Power assisted steering,General,Whats another name for tetanus,Lockjaw,General,What is the most unbelievable part of the warren report,Magic bullet theory -General,Where did Napoleon die,St. helena,Music,Who had a hit in Jul 1975 with 'Blanket on the Ground' ?,Billy Joe Spears,General,What is the birthstone for September?,Sapphire -General,Which company brewed harp lager,Guinness,General,What is the traditional gift for a 13th wedding anniversary,Lace,General,45% of wives say husbands do it 5% husbands admit it - what,Snoring -General,6000 American teenagers do it daily - what,Lose their virginity,General,Bibendum is whose real name,Michelin Tyre Man,General,Silent movie star Ben Turpin insured his what for $500000,His Squint -General,"In January 1997, who survived for five days in an upturned boat, in the south Pacific Ocean",Tony bullimore,General,Muscatel literally means what in Italian,With Flies on it,General,What is the cure of disease by faith in divine power,Faith healing -Science & Nature," The fastest of all fish in the sea is the __________, streaming forward at speeds near 68 miles per hour.",Swordfish,Science & Nature, A __________ in the wild usually makes no more than 20 kills a year.,Lion,Science & Nature,Which Bone Is The Scapula ,The Shoulder Blade  -General,What European country has no rail lines,San Marino,General,The opera The Tsar Sultan contains what famous musical piece,The Flight of the Bumblebee, History & Holidays,"Who was the composer of 'The Nutcracker' ballet? (Handel, Bach, Tchaikovsky, Schubert) ",Tchaikovsky  -General,"The Chrysler Concorde, Dodge Intrepid, and Eagle Vision are known as___",Lh sedans,General,"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,Science & Nature,Who Were Chang And Eng Bunker ,The First Documented Siamese Twins  -Music,"What Nationality Was Sylvia Who Had A 1974 Hit With ""Y Viva Espania",Swedish,General,How many one legged popes have there been,None,General,Which Graham Green book and film had Pinky as the star,Brighton Rock -General,What is Warren Beatty's first name,Henry,General,What is the fear of trains known as,Siderodromophobia,General,What's the capital of Montana,Helena -General,How many seconds are in a day ?,86400,General,What is the tibia,Shin bone,Geography,Who Accidently Sailed Around The Cape Of Good Hope In 1488 ,Bartolomeu Dias  -Geography,Which city is known as the Windy City,Chicago,General,What is tatooed on John Bon Jovi`s arm?,Superman, History & Holidays,Which city did Crocket and Tubbs spend most of their time in? ,Miami Vice  -Music,"Who had a UK top twenty hit in 1990 with ""No More Mr Nice Guy""?",Megadeath,General,"The spinning wheel, introduced to Europe in the middle ages, was invented where",India,General,Albrecht Durer drew what - without ever seeing one,Rhinoceros -General, What is the name for a branch of a river,Tributary,General,The name of which plant comes from the Greek meaning 'earth-apple',Camomile,Science & Nature,Who discovered Uranus?,Friedrich Wilhelm Herschel -Entertainment,Who wrote the opera 'Tosca'?,Giacomo Puccini,Music,Chris Montez Had 2 Hits In The 60's What Were They (PFE),"Let's Dance, The More I See You",General,What is the traditional trade of aspiring bullfighters,Bricklaying -Music,By What Archetypal Punk Name Was Drummer Chris Miller Known,Rat Scabies,Music,In Which Year Did Phil Collins Join Genesis,1970,General,Who was the first Canadian woman to swim across Lake Ontario,Marilyn bell -Sports & Leisure,"In which sport is a ""hole_in_one"" possible",Golf,General,How long is the Danube River,"1,750 miles",General,What is a young pigeon called,Squab -General,In the Muppet band Zoot plays which instrument,Saxophone,Sports & Leisure,"What sport do the following terms belong to - ""Jerk & Snatch""?",Weightlifting,General,What is the product for the slogan 'silly rabbit',Trix cereal -General,"What actor said, ""love means never having to say you're sorry""",Ryan o'neal,Music,What Was Talking Heads First Top Ten Album,Little Creatures,General,How many gallons of diesel does the cruise liner 'queen elizabeth ii' use for each six inches it moves,One gallon - History & Holidays,In which 1998 remake did Matthew Broderick play Dr.Niko Tatopoulos (Pronounced Tat-Oh-Pool-Loss) ,`Godzilla' ,General,"During supersonic flight, what temperature does the skin on the nose of a concorde reach",260 degrees fahrenheit,General,The term warts and all comes from a portrait of who,Oliver Cromwell -General,Who told the evil king Schahriah stories,Sheherazade,General,What does a road sign showing the rear of a car & wavy lines mean,Slippery when wet,General,Who only author to have a book in every Dewy-Decimal category,Isaac Asimov -Music,What Prince Single Was Also The Name Of His Semi Autobiographical Film,Purple Rain,Geography,How many avenues radiate from the arc de triomphe ,Twelve ,General,"In the tv series 'seinfeld', who plays kramer",Michael richards -General,What is the fear of bearing a deformed child known as,Teratophobia,General,"If venus is the second planet from the sun, what is jupiter",Fifth,General,Which comet struck Jupiter in July 1994,Shoemaker-levy - Geography,What is the capital of Chile?,Santiago,General,"What was the name of the robot girl on ""Small Wonder""?",Vicki,Entertainment,What did Peppermint Patty always call Charlie Brown,Chuck -General,Beethoven's fifth piano concerto is nicknamed what,The Emperor,Art & Literature,Who Wrote The Barsetshire Novels? ,Anthony Trollope ,Music,Who Celebrated His 50th Birthday In 1997 In New York With Lou Reed And The Cure,David Bowie -Sports & Leisure,"What sport do the following terms belong to - ""Pull & Lolly""?",Cricket,Music,Number of Beatles songs with a woman's name in the title,18,Sports & Leisure,In Which Sport Is The Brit (Mucky Maureen) From Barnsley The Current World Champion ,Mud Wrestling  -General,By law in China to go to school you must be what,Intelligent,Entertainment,What was George of the Jungle always running in to?,A tree,General,Which other left wing faction did the Bolsheviks defeat to take control after the Russian revolution,Mensheviks -Music,"Which British Female Singers Real Name Is ""Gaynor Hopkins""",Bonnie Tyler,Science & Nature,What Is A Red Admiral? ,Butterfly ,Geography,Frankfort is the capital of which state,Kentucky -General,Who was bruce lee's son,Jason lee, Geography,What is the capital of Laos ?,Vientiane,General,If you saw Cave Canem written what would you know,Beware of the Dog -Sports & Leisure,What Did Both Arsenal & Chelsea Have In 1928 That No Other Team Had? ,Numbered Shirts ,General,Saturday is named for which planet,Saturn,General,What is the latin Olympic motto?,Citius Altius Fortius -Music,Three Stars A Hit For Runy Wright In Britain And Tommy Dee In The States Relates To The Death Of Which Singers,"Buddy Holly, Big Bopper, Richie Valens",Art & Literature,Where Would You Find The Elgin Marbles ,The British Museum ,General,Who spoiled Muhammand Ali's 1980 comeback,Larry holmes -Geography,Which Is The Largest Country In Africa ,Sudan ,General,In China its 19 grams but in Denmark 42 grams average what,Weight of mans testicles,General,Who is the roman counterpart of aphrodite,Venus -General,Which film covers the life of John Reed,Reds,Music,What Fact Of Life Did Jewel Akens Tell Us About In 1965,The Birds And The Bees, History & Holidays,What computer game featured a disco leftover looking for love? ,Leisure Suit Larry  -General,Of what is keratitis an inflammation,Cornea,General,A small hound used for hunting hares,Beagle, History & Holidays,In 1969 Richard Cawston Made A Documentary For The BBC About Which Famous Family ,The Royal Family  -General,Djibouti is the capital of ______,Djibouti,Music,"Which American Band Had Their Biggest UK Success With A Spiky Version Of The Rolling Stones ""Satisfaction""",Devo,General,"What song from Bambi begins"" ""Drip, drip, drop""",Little april showers -General,"What group's top selling lp was ""rumors""?",Fleetwood mac,General,"Because Moses felt he was ""slow of speech and slow of tongue"", who often acted as his spokesperson",Aaron,General,What typewriter brand was invented by a man whose father made a well known flintlock rifle,Remington -General,What do all the seven dwarfs except dopey have,Beard,General,Someone who talks too much is said to 'talk the hind legs,Off a donkey,General,Ignoring obvious what links Minotaur Harpy Centaur and Sphinx,All part human -General,Gondolas in Venice are traditionally what colour,Black, History & Holidays,When is the 'Feast of Stephen'? ,December 26th ,General,Greek mythology what underground river souls drink and forget,Lethe -General,What is the deepest lake in the world,Lake baikal,Science & Nature,What is the hardest bone in the human body?,Jawbone,General,"After she recorded ""the nitty gritty"" this lady released the rhyming ""name game""?",Shirley ellis -General,Whose only novel was The Cardinals Mistress,Benito Mussolini,Music,The Singer Song Writer Damon Gough Performs Under What Name?,Badly Drawn Boy,Music,"In The Scorsese Movie Of The Same Name Who Sang ""New York New York""",Liza Minelli -General,With what are mushrooms often confused,Toadstools,General,Who entered a contest to find his own look-alike and came 3rd,Charlie Chaplin,General,Which lawyer broke the law by refusing to be finger-printed in the Transvaal during 1907,Gandhi -General,Victoria Australia law illegal wear pink what after noon Sunday,Pink Hot Pants,General,What TV did 44 million USA watch while 27m Eisenhower sworn in,I Love Lucy,General,Which female name means bright or illustrious,Clare or Clara -General,What sort of ship has a runway on its deck,Aircraft carrier,Music,"Name 2 Of The Three Artists Who Had ""Rubber Ball"" In The Charts In 1961","Bobby Vee, The Avons, Marty Wilde",General,In Helsinki Finland what's the police alternative to parking tickets,Deflate cars tyres -General,"The literal translation for the swedish word 'smorgasbord' is ""board for ______________(two words)",Buttered bread,General,Who painted The Night Watch and The Mill,Rembrandt,Music,"Which singer has appeared in films playing characters called ""Danny Fisher"", ""Glenn Tyler"" and ""Lucky Jackson""?",Elvis Presley -General,At the Alamo its illegal to drop what nut shells on the ground,Pecan,Music,In which American City did Motown music begin?,Detroit,Sports & Leisure,In 2006 Who Was Named As The Highest Paid Female In The World Of Sport? ,Maria Sharapova  -Music,"Who Recorded The Albums ""Toys In The Attic"" & ""Draw The Line""",Aerosmith,General,Name first female top US single / album charts simultaneously,The Singing Nun Sis Luc Gabrielle,General,What do airplane mechanics refer to as 'pickle juice',Motor oil -General,Which element is extracted from the ore Sphalerite,Zinc,General,"A bell tower, usually not actually attached to a church.",Campanile,Science & Nature,What Flower Is Depicted On The Flag On India ,The Lotus  -Tech & Video Games,"In the original Contra, what gun would ""S"" get you? ",Spread Gun,General,"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,General,St Boniface is the Saint of what,Sodomy -General,What was the worlds highest structure until 1930,Eiffel Tower,General,What U.S. state has the worlds champion chili cookoff every year,Texas,General,What was the name of inn in Treasure Island,Admiral Benbow -General,Lahnaphophobia is the fear of what,Vegetables,Music,In The World Of Music Ziggy Stardust Is Otherwise Known As Who?,David Bowie, History & Holidays,Which famous Arab / Israeli war took place in 1973? ,Yom Kippur war  -Entertainment,Who was always trying to get rent from Andy Capp?,Percy,General,What was the first ready-to-eat breakfast cereal,Shredded cereal,General,In Norse mythology Tyr is the god of what,War -General,What does i.r.c stand for,Internet relay chat,General,A giraffes eyelashes are what colour,Black,General,A game in which small balls are struck into holes on inclined board,Bagatelle -Tech & Video Games,Samus Aran is the femme-fatale of which series of games? ,Metroid,General,What term is used to describe the process of extracting poison from snakes,Milking,Sports & Leisure,What is the final event in a decathlon? ,1500 metres  -General,What is the oldest known alcoholic beverage,Mead,General,"A ""cameleopard"" is an archaic term for what animal",Giraffe,General,Who did general francisco franco designate as his successor in spain in 1969,King juan carlos -General,Which Gilbert and Sullivan opera is subtitled 'The Merryman and His Maid'?,The Yeoman of the Guard,Geography,Which British County Has The Longest Coastline ,Cornwall ,General,In ancient Athens every third man worked with what,Marble -General,What caused the Crab nebula,Supernova,Geography,What is the capital of Saudi Arabia,Riyadh,General,What was the name of the helicopter on Riptide?,The Mimi -General,The only place in the world where one can see the sun rise on the Pacific Ocean and set on the Atlantic is in which country?,Panama,General,Carter what do goldfish lose if kept in dimly lit or running water,Colour,General,"What's the international radio code word for the letter ""P""",Papa -General,Who played Commodious in the Oscar winning Gladiator,Joaquin Phoenix,General,The only McDonald’s restaurant in the world built on a horse-racing course is in?,Hong Kong,Religion & Mythology,Who was Ancient Egyptian moon god ?,Khonsu -General,"Of which country was Faisal, assassinated in 1975, king",Saudi arabia,Music,Amount of time photographer Iain Macmillan was given to shoot the cover of Abbey Road,10 Mins,General,We have used a cassette but what does it literally mean,Small Box -General,Where are the crown jewels kept,Tower of london,General,"In mythology, who was turned into a laurel bush",Daphne,General,Prescribed as cure Beri Beri it cured scrotal dermatitis - what,Marmite -General,"A style of English architecture prevalent from 1485-1558 transitional between Gothic and Palladian, with emphasis on country manors.",Tudor,General,After the US civil war what was known as the soldiers disease,Morphine addiction,Geography,"The town of Hamilton, Ontario, Canada, is closer to the equator than it is to the _____________",North pole -General,Which film starring Julie Andrews and Christopher Plummer won the Oscar for best picture in 1965?,The Sound Of Music, History & Holidays,What was the name of Plato's school?,Academy,General,What is the captain of a yacht usually called,Skipper -General,In the original version of the fly what was the fly saying as the movie ended,Help me,Science & Nature,What is the scientific name for earth's outer layer of surface soil or crust?,Lithosphere, Geography,In which state is Walla Walla?,Washington -Geography,In which state is Mount St. Helens,Washington,General, What is the tombstone inscription called,Epitaph,General,How many Wimbledon titles does Billie-Jean King possess,20 -General,What coverted Greek items lie in the British Museum,The elgin marbles,General,The Spanish abbreviation for ufo is what,Ovnis,General,Which childrens classic was written by Anna Sewell,Black beauty -General,Which Cartoon Character Made Their Tv Debut In 1935,Porky The Pig,General,"In 1877, Edison demonstrated his first gramophone with a recording of himself reciting which nursery rhyme",Mary had a little lamb,Science & Nature," __________ 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 -General,What is the name for a male ferret,Jack,General,In North Africa a mouflon is a wild what,Sheep,General,Large wicker en-cased bottle,Demijohn -General,What was the name for british military aviation during world war i,Royal,General,What were the 3 Chipettes names on Alvin and the Chipmunks?,"Brittney,Jeanette,and Eleanor",General,"Amnesic, Diarrhetic and Paralytic main types of what poisoning",Shellfish -General,What does the name Stephen mean - from the Greek,Crown,General,Name only non electrical musical instrument invented 20th cent,Steel Drums,General,On what common item would you find a harp,Lamp metal part supporting shade -General,"Hathor Egyptian, Branwen Celtic, Frigga Norse Goddess of what",Love,General,What title to the Ambassadors of Britian Get given?,Ambassador to the Court of Saint James,Science & Nature,Which element is also known as Quicksilver ?,Mercury -General,In Greek what does the word climax mean,Ladder,Food & Drink,Petit Fours means literally 'little ovens'. What are they? ,Small french cakes or biscuits ,General,"On which river is linz, austria a leading port",Danube -Science & Nature,A mouth-like opening into the body; also the porous openings on the surface of leaves.,Stomata,Food & Drink,What Is Tofu Also Known As ,Bean Curd ,Sports & Leisure,What Number Lies Between 15 & 6 On A Dartboard ,10  -General,What Is The English Equivalent Of OVNI In Both France And Spain,UFO,General,Who is the Jolly Green Giant's helper,Little green sprout,General,Which German town hosts the annual Wagner Festival,Bayreuth -General,What did the acronym VHS stand for in the former standard system used for TV video recording equipment?,Video Home System,Music,Monica & Gabriella Make Up Which Pop Duo,The Cheeky Girls,General,When Yuri Gagarin Became The First Man In Space What Was The Name Of His Spacecraft,Vostok 1 -Science & Nature,The Word Ophidian Refers To What Sort Of Animal ,Snake ,Food & Drink,Which two popular fruits are anagrams of each other? ,Lemon and Melon ,General,What Popular Artist In 2004 Released The Album Slicker Than Your Average?,Craig David -Science & Nature, Only tom turkeys __________. Hen turkeys make a clicking noise.,Gobble,General,Camille Pizarro the impressionist was born in which country,West Indies,General,In which county would you find Fuqing,A port in Taiwan -General,Who did author leslie charteris create,The saint,Geography,In which state are gettysburg and the liberty bell ,Pennsylvania ,General,Pocahontas was baptised and given what English name,Rebecca -General,Which british leader was born in a ladies' room during a dance?,Winston Churchill,Science & Nature," A woodchuck breathes only ten times per hour while __________, while an active woodchuck breathes 2,100 times an hour.",Hibernating,Music,Who played stand-up bass on Elvis' songs for Sun Records?,Bill Black -Sports & Leisure,How Many Straight Lines Will You Find On An English Football Pitch? ,17 ,General,What city has the most canals,Birmingham,General,What symbol appears on the tails of Qantas jets,Flying kangaroo -General,"Which Labour politician, according to Harold Wilson, ""immatures with age""",Tony benn,Music,"Which Jamaican Band Rose To Brief Fame With ""Black & White"" & ""Moon River""",Greyhound,General,What does a crapulent person suffer from,Drunkenness -Music,"Who Recorded The Albums ""Nevermind"", ""Incesticide"", An ""In Utero""",Nirvana, History & Holidays,Ritchie Valens and The Big Bopper were killed in a plane crash in 1959. Which other famous singer was killed in that crash?,Buddy Holly,General,"What kind of music does an ""MOR"" radio station play",Middle of the road - History & Holidays,In What Year Did Neil Armstrong First Step Foot On The Moon ,1969 ,Music,Who had 90's hits with 'Julia Says' & 'If I Never See You Again',Wet Wet Wet,General,Who made wings for himself & his son to escape from the island of Crete,Daedalus -General,What kind of animal has a tail pinned on it in a birthday party game,Donkey,General,"Part of a womans dress, above the waist",Bodice,General,Who became World Speedway Champion in 2013?,Tai Woofinden -General,"In The Harry Potter Movies What Is ""Ron Weesley's"" Middle Name",Bilius,General,John Wayne was nicknamed duke - but after what,His favourite dog, History & Holidays,In 1974 who was sacked from his position of England football manager? ,Alf Ramsey  -General,Which is the world's largest monolith,Mount augustus,General,In what Australian state would you find Wangaratta,Victoria,Food & Drink,"In Australia, what are a 'middy' and a 'schooner'? ",Glasses of beer  -General,In what film did alec guinness play eight parts?,Kind hearts & coronets,Food & Drink,"If I'm mixing you a drink using ginger ale, grenadine and a cherry, what am I making? ",Shirley Temple ,Geography,_____________ itself was formed by the activity of undersea volcanoes.,Hawaii -General,Gene Hackman starred in the French Connection what was the name of the character he played,Popeye doyle,General,"Bauxite is the principal ore of Aluminium, which other element is combined with the metal in this ore",Oxygen,General,"Mlb: he said ""if i ain't startin' i ain't departin'"" when named an all-star",Garry templeton -General,Name the actor who plays the police pathologist Quincy,Jack klugman,General,In the comic Fantastic Four what was Things character name,Benjamin Grimm,General,In ancient Rome what was the triclinium?,Dining Room -General,Which game was illegal in Elizabethan England,Bowls,General,Where is frostbite falls,Minnesota,General,Who starred in 'conan the barbarian',Arnold schwarzenegger -General,What is used to make a classic wiener schnitzel,Veal, Geography,Near what major city is Mount Fuji?,Tokyo,Music,Who Also Succeeded Under The Name Shane Fenton,Alvin Stardust -General,National drink of Peru,Pisco,General,1994 Christies sold what piece of Elvis memorabilia for $41400,Amex credit card,General,What do the locals call the cloud that covers Table Mountain in Cape Town,Tablecloth -General,What is the name of an animal that can pass on bacteria without being affected by the disease itself,Vector,General,Phoebe Anne Mozee better known as who,Annie Oakley,General,What peninsula does Denmark occupy,Jutland -Music,Which Is The Most Broadcast Record Ever And Has Held This Record Since 1977 And Why,"The Carpenters / Calling Occupants, Because It's Broadcast By N.A.S.A Every 3 Minutes",General,Bambi Woods Was The Central Character In Which Classic Movie Of The 1970's,Debbie Does Dallas,General,A person refusing to join a strike,Blackleg -Science & Nature,What Frightened Miss Muffet Away ,A Spider ,General,The Newbery Medal is given annually for what,Best Children's book,General,"Countries of the world: western coast of Africa, the capital is Porto-novo",Benin -General,What medical treatment was first used by chinese emperor shen-nung in 2700 bc,Acupuncture,General,Which of the seven hills of Rome gives its name to the Italian presidential palace,Quirinal hill,General,Which principality has been ruled by the Grimaldi family since the 15th century,Monaco -General,Liam Devlin often appears in novels by which author,Jack Higgins,General,What does a phyllophagus animal eat,Leaves,General,What is a group of coots called,Covert -General,"Who claimed that, in the Garden of Eden, God spoke Swedish, Adam spoke Danish, & the serpent spoke French",Swedish philologist,General,How many times was johnny carson married,Four,General,What is the international cry for help,Mayday -General,Seattle which is the largest theme resort hotel,Lost city,General,What is a group of this animal called: Goldfince,Charm,General,"The Song “ Don't Go Breakin My Heart ” Was Performed By Elton John & Kiki Dee But Can You Tell Me What Was Kiki Dee's Profession, Before She Became Famous",Prostitute -General,Urea is essentially made up of carbon dioxide and which other chemical,Ammonia, Geography,What is the basic unit of currency for Niger ?,Franc,General,International dialling codes what county is 20,Egypt -General,Ranma's father in Ranma 1/2 is transformed into this animal,Panda,General,What is earth's galaxy called,Milky way,General,What is the legal term for a formal agreement enforceable by law,Contract -General,Name either of the last men on the Moon (last name only),Cernan schmitt,General,Whats the name of Jacques Cousteaus research ship,Calypso, History & Holidays,What volcano destroyed Pompeii,Vesuvius -Science & Nature,What Is A CarCinogen ,A Cancer Producing Substance ,General,What product sells best in US supermarkets 98.2% of shoppers,Toilet paper,General,The French call it The Casserole what do we call it,The Big Dipper - History & Holidays,Who directed the 1976 movie 'The Omen' - The first part of the omen trilogy ,Richard Donner ,General,The Muses were the goddesses of poetry and song. How many of them were there,Nine,Science & Nature,"A shallow dish with a cover, used for science specimens is a(n) ________.",Petri dish -General,What is an arras,A wall hanging e.g. tapestry,General,What did composer Berlioz originally study,Medicine,General,"What was the nickname of bank robber Charles Floyd, killed in a shoot-out in 1934",Pretty boy -General,In what country did the rumba originate,Cuba,General,In which 1960 film did Elvis Presley play a mixed race character,Flaming Star,General,Van Gogh started to draw at the age of?,27 -Geography,_________________ has two official national anthems.,South africa,General,"The song ""Trail of the Lonesome Pine"" appears in which Laurel and Hardy film",Way out west,General,Who won the Nobel peace prize in 1964,Martin luther king jr -Science & Nature,What term is applied to ethyl alcohol that has been treated with poison to make it unfit for human consumption?,Denatured,General,______ is the brand name of morphine once marketed by bayer?,Heroin,General,Lazy Susans are named after who,Thomas Edison's daughter -General,Which film links Harrison Ford and novelist Scott Turon,Presumed innocent,General,Who's current album is entitled 'Sing when you're winning',Robbie williams,General,Where did Hamlet send his girlfriend Ophelia,A Nunnery -General,Us Captials - Texas,Austin,General,Mussolini invaded this country in 1935,Ethiopia,General,What eighties TV show starred Bruce Willis in a detective agency?,Moonlighting -General,"What are banon, mimolette and samosoe types of",Cheese,General,"Football Team, wolverhampton ______",Wanderers,General,Who speaks romany,Gypsies - History & Holidays,"In 1978 which famous comedy returned for a second series, four years after the first had been shown? ",Fawlty Towers ,General,What word is given to the distance within which a sound can be heard,Earshot,General,Which Biblical heroes name meant splendid sun,Samson -General,In 2001 Boy George Performed On A Celebrity Edition Of Stars In Their Eyes But Who Did He Impersonate,David Bowie,General,"Beethoven, Brahms, Chopin, Handel, Liszt, Ravel what in common",Bachelors,Religion & Mythology,"In Greek mythology, who did Minos hire to construct the labyrinth?",Daedalus -Music,Give The Full 8 Word title Of The 1975 Classic From Steve Harley & Cockney Rebel,Come Up And See Me Make Me Smile,General,What is the world's warmest sea,The Red Sea, History & Holidays,What Was The Goverment Of Oliver Cromwell Called? ,The Commenwealth Goverment  -Music,"In The World Of Music Who Am I ""Gergios Kyriacos Panayiotou""",George Michael,General,What is the flower that stands for: education,Cherry tree,Geography,What is the capital of Denmark,Copenhagen -General,Which worlds city is known as The Golden City,Prague Czech,Science & Nature,What Does WYSIWYG Mean In The Field Of Computing? ,What You See Is What You Get , History & Holidays,"""In Charles Dickens' """"A Christmas Carol"""", how many different ghosts visited Scrooge?"" ",4  -General,Richard Attenbourough and wife were the first leads in what play,The Mousetrap,General,What kind of nuts were originally used in the old shell game,Walnuts,General,Trismus is a muscular spasm where in the body,Jaw - like lockjaw - History & Holidays,Name The British Liner That Sunk On Its Maiden Voyage In 1912? ,The Titanic ,Music,"""Kiss From A Rose"" Was A Hit In 1994 And 1995 For Whom",Seal,Sports & Leisure,Which Sport Is Played Over 4 Periods Of 15 Minutes Where Only Two Of The Seven Players Can Score? ,Net Ball  -General,"The still of the nite what's the location of the ""circus hall of fame""",Sarasota florida,Sports & Leisure,The Ski Resort Of Zermatt Stands At The Foot Of Which Swiss Mountain ,The Matterhorn ,General,Which two man series of space missions preceded the Apollo missions,Gemini -General,In Britain pool and snooker players call it side - what USA name,English,Food & Drink,The Commercial distribution of which meat was banned by law in Germany in 1986? ,Dog meat - (allowed since 1941) ,General,"Who was the American millionaire, given an honorary knighthood in 1980",John paul getty jnr -General,What is the latin name for the top set of vertebrae,Cervical,General,As what is the north star also known,Polaris,General,Who was the director of the cult film 'Casablanca'?,Michael Curtiz - History & Holidays,"What was The poem A night before christmas originally called (The Night Visitor, Santa Claus Is Coming To Town, A Visit From St Nicholas, A Christmas Visit) ",A Visit From St Nicholas ,Music,Who Was The First Non British Act To Perform A “James Bond Theme”,Nancy Sinatra / You Only Live Twice,General,Egg beaters operate on what type of gear,Bevel -General,Satori is a term in which religion,Zen Buddhism,General,How did Buddy Holly die,Aeroplane crash,General,In Bali they observe noebi a day of what,Silence -General,What name is given to the abominable snowman ?,Yeti,Entertainment,Miss Buckley is secretary to what commanding officer?,General Halftrack,General,What is the world's longest tunnel?,The Water Supply Tunnel -General,What is the current vat rate in south africa,14%,Geography,What country is known as the Hellenic Republic,Greece,General,In boxing what comes between bantam and light weight,Feather weight -General,In which traditional pantomime does Dandini appear,Cinderella,General,What is the name of the people's car,Volkswagen,General,Seen on Egyptian rivers what is a Shadoof used for,Water bucket on pole -General,Which singer is the son of former bandleader and singer Ross McManus,Elvis costello, Geography,What is capital of Ukraine?,Kiev,Music,Which Queen Album Went Straight To No.1 In The Charts In 1995,Made In Heaven -General,In which 1916 film did seena owen play,Intolerance,General,"What was the original title of the ""let it be"" documentary movie",Get back, History & Holidays,Who was the mother of James I of England (VI of Scotland )? ,Mary Queen Of Scots  -General,What book was banned in Ireland in 1932,Brave New World – Aldus Huxley,General,"The karyotype describes the number, shape and size of which structures within a cell",Chromosomes,General," This instrument is used for measuring the distance between two points, on a curved surface.",Calliper -General,Mother Carey's Chickens sailors slang for what bird(s),Storm Petrels,Food & Drink,If you ordered a dish of Mountain Oysters or Cape Cod Turkey what would you receive? ,Sheep's testicles ,General,What river provided water to feed the Hanging Gardens of Babylon,The -General,In what part of New York did the Great Gatsby live,West Egg,General,Cary Grant and Noel Coward both rejected which famous role,James Bond,General,Where in London is Rotten Row,Hyde park -General,What product ranks number one in consumer brand loyalty,Cigarettes,General,The French musical instrument The Viola has what other name,The Alto,General,Where was the 1999 rugby world cup held,Wales - History & Holidays,John F. Kennedy Airport in New York used to be called __________.,Idlewind,General,37% of women prefer what to sex,Shoe shopping,General,What was the former name of Burkina Faso in Africa,Upper volta -General,Where was Salman Rushdie born,Bombay,Music,"How Old Was Smokey Robinson When The Miracles Released ""Got a Job""",It Was Released On His 18th Birthday,General,What year was DNA first determined,1953 -General,Who was the villain in 'star wars',Darth vader,General,Which King was the intended target of the Gunpowder plot,James 1st,Sports & Leisure,"In Rhythmic Gymnastics Competitors Have Five Pieces Of Apparatus The Rope, Hoop, Ball, Club And What Else? ",Ribbon  -General,Who was shot as he left the Washington Hilton in 1981,Ronald reagan,Entertainment,"Which actress won the 2002 Academy Award for best actress in a leading role, for her part in the movie, 'Monster's Ball'?",Halle Berry,General,Who is the original master of the Shakespearean jester Lancelot Gobbo,Shylock -Music,What Was Elton John's Uk Hit Single,Your Song,General,If you were misocapnic what do you hate,Tobacco Smoke, History & Holidays,How Old Was Playboy Founder Hugh Hefner When He Launched The First Edition Of 'Playboy'' ,27  -Geography,By How Many Degrees Does True North Vary To Magnetic North In Britain ,8 Degrees West ,Science & Nature,What gland secretes fluid that washes the eyes?,Tear gland,General,What is the chemical symbol for oxygen,O -General,Who was known as the 'Peekaboo Girl'?   ,Veronica Lake,General,An empelomaniac has a desire to do what,Hold public office,General,"Who appears on the 5,000 dollar (US) note?",James Madison -Sports & Leisure,Which British athlete's autobiography is entitled (A Time To Jump)? ,Jonathan Edwards , History & Holidays,In The Song 'The Twelve Days Of Christmas' My True Love Brought Me Nine What ,Ladies Dancing ,General,What was Norman Bates hobby in Psycho,Stuffing birds -General,Who produces the male fragrance EaU.S.auvage,Christian dior,General,"Which actor played 'Marcus Welby, MD'",Robert young,Music,"Which Eastender Reached No 10 In 1975 With ""The Ugly Duckling""",Mike Reid -General,According To Experts In Evolution Should The Human Rave Become Extinct What Creatures Do They Think Will Be The Next To Rule The Planet,Bumble Bee's, Geography,What is the capital of Marshall Islands ?,Dalap-Uliga-Davrit,General,Which author wrote 'The Cruel Sea'?,Nicholas Monsarrat - History & Holidays,General Sherman burned this city in 1864.,Atlanta,Music,Which 3 Classic Tracks Appeared On Free's 1978 EP,"All Right Now, My Brother Jake, Wishing Well",General,Who wrote the opera La Traviata,Verdi -General,What does v.i.r.c stand for,Visual internet relay chat,General,Until 1990 what was still legal tender in East Germany,Sausages,Music,Name Micks First Solo Album,She's The Boss -Music,"What Was The Name Of The Band Formed By Sisters ""Ann & Nancy"" Wilson",Heart,Sports & Leisure,Which first division football team has been promoted to play in the Premiership next season? ,Sunderland ,General,Name Clint Eastwoods first film made in 1955,Francis in the Navy -1955 -Food & Drink,Who released the following 'edible' album 'Flaming pie' ,Paul McCartney ,General,Who was the people's commissar of foreign affairs (foreign minister) before Vyacheslav Molotov,Maxim litvinov, History & Holidays,Who was the cult leader of the Waco Siege in 1993? ,David Koresh  -General,What are the names of the two cats in Disney's Lady + Tramp,Si and Am,Food & Drink,"Booze Name: 1 ounce of light rum and the juice of 1/2 lime, top with cola.",Cuba libre,General,In the US what was the first TV test symbol,Dollar sign -Sports & Leisure,What is a GS in netball ,Goal Shooter ,General,The force that brings moving bodies to a halt is ___________.,Friction,General,An artist supports his canvas on a(n) _____.,Easel - Geography,Lome is the capital of ______?,Togo,General,What is blackpool in irish,Dubh linn,General,Who is Eric Twinge better known as?,Bananaman -Mathematics,What is the square root of one quarter?,One half,General,"In The World Of Music How Is ""David Howell Evans"" More Commonly Known",The Edge (U2),General,What do you call the underground systems in both paris and newcastle,Metro -Art & Literature,Who Wrote The Gothic Novel Dracula ,Bram Stoker ,General,What is the fear of bad men or burglars known as,Scelerophibia,Food & Drink,In which country did chocolate originate? ,Mexico  -General,"Who recorded the album ""never a dull moment"" in 1972",Rod stewart,Science & Nature,Which Is The Largest Muscle In The Human Body ,The Buttocks (Gluteus) ,General,What animal lives in a warren,Rabbits -General,A 12 ounce can of soda pop contains the equivalent of 9 teaspoons of what,Sugar,Geography,"Which European Country has a name that literally means, lower lands? ",Netherlands ,General,The name of which of the seven hills of Rome is the origin of the word 'palace',Palatine hill -Sports & Leisure,What Is A Mashie ,A Type Of Golf Club , History & Holidays,Who is the only one who understands John Shaft ? ,His woman ,General,Which car make has a double diamond as its logo,Renault - Geography,What is the capital of Trinidad and Tobago ?,Port-of-Spain,General,What is the flower that stands for: beware of excess,Saffron,Food & Drink,Which mammal appears on the Bacardi Logo? ,Bat  -General,France Chevalier Germany Ritter Spain Caballero what English,Knight,General,What is the common name for lysergic acid diethylamide,Lsd,Geography,Where is Euston Station,London -General,Who is Charlie Browns favourite baseball player (fictional),Joe Shlabotnik,Music,What was the first place the Beatles worked in Hamburg?,The Indra Club,General,What is the name of the tar like substance derived from petroleum,Bitumen -General,A person with a strong desire to steal is a(n) ________,Kleptomaniac,General,What is the Capital of: Reunion,Saint-denis,General,Where does the embryo implant itself in a tubal pregnancy,A fallopian tube fallopian tube the fallopian tube -Music,"In What Year Were Stock, Aitken & Waterman Taking A Ferry Crosss The Mersey",1989,General,In the Bible Jael murdered Sisera using what weapon,Tent Peg,General,What was Babe Ruth's uniform number,Three -Music,Who was Jesus on the LP version of 'Jesus Christ Superstar'?,Ian Gillan,Music,Who Was The First Female DJ On Radio One,Anne Nightingale,General,What bird is the offspring of a cob and a pen,Swan -General,What did john glenn name the first mercury capsule to orbit the earth,Friendship 7,Music,What Was The Name On The Front Of The First Motown Office And Studio Building In Detroit,Hitsville USA,General,Pertussis has what more common name,Whooping Cough -General,Who is the lead singer of 'the doors',Jim morrison,Sports & Leisure,In Which Sport Might You Come Across A Boston Crab ,Wrestling ,General,"What was the name of the guy who couldn't enunciate on ""The Fat Albert Show?""",Mushmouth -General,In 1939 which countries invaded Poland,Germany - Russia,Music,In Which Year Was Roy Orbison The Only American Solo Artist to Be No.1 In The UK,1964,General,"Which European Country Did The Romans Call ""Lusitania""",Portugal -General,What are lime deposits growing up from the floor of a cave called,Stalacmites,General,American Literary Association gives Caldicott medal for what,Illustration,General,What Country As Of 2005 Has The Highest Per Capita (Par Head) Wine Consumption In The World,The Vatican City -Music,"Who Wrote The Songs ""Oh Lonesome Me, Sweet Dreams, & I Can't Stop Loving You""",Don Gibson,General,What oath do doctors take,Hippocratic,General,What word do British people use to describe that which an American would call a 'teeter-totter',Seesaw -People & Places,Where was Albert Einstein Born ,Germany ,General,Which country introduced the worlds first diesel loco in 1912,Germany,General,The French call it pomplamouse what do we call it,Grapefruit -Science & Nature,What name is given to a female calf,Heifer,General,What is the technical name for a jigger of grain alcohol,A Pony,People & Places,"What nationality was the film legend Greta Garbo, Swedish, German or Polish ",Swedish  -General,All my Yesterdays is which actors autobiography,Edward G Robinson,Science & Nature,What Is The Positive Particle In An Atom Called ,A Proton ,General,Name the month in the French Republican calendar which is also the title of a novel by Emile Zola,Germinal -Science & Nature,"Which Creature Had 2 Rows Of Plates Running Down It's Neck, Back & Tail Culminating In Large Spikes At The End ",Stegosaurus ,Food & Drink,What cooking term is given to a garnish of spinach? ,Florentine ,People & Places,What was Madam Tussaud's First name ? ,Marie  -Science & Nature,"In The Food Processing Industry , What Do The Initials MRM Stand For? ",Mechanically Recovered Meat ,General,In which American state is the 'Hamptons' resort area located?,New York,General,Synonymous with obituary; a list of recently deceased.?,Necrology -General,Whose cat was sold for $153000 in an Arizona auction,Adolf Hitler's,General,What is the fear of swallowing known as,Phagophobia,Geography,"The world's biggest meteor crater is located in New Quebec, ______________",Canada - History & Holidays,Where did the Bay Of Pigs take place?,Cuba,Food & Drink,What cocktail is based on rum and lemon?,Daiquiri,General,Why did the state of Indiana ban Robin Hood in 1953,Communist – rob rich -Geography,____________ is one_quarter the size of the state of Maine.,Israel,General,In December 1999 which was the last foreign colony to revert to Chinese rule,Macao,General,What are the two largest cities in scotland,Glasgow edinburgh -General,Teutophobia is a fear of ______,Anything german,General,Denver is the capital of ______,Colorado,General,In 1779 Abraham Darby built the worlds first what,Metal Bridge -Science & Nature,How many large holes are in your head,7,General,In the body where would you find your diverticula,Large Intestine,General,Azote was the original name of what element,Nitrogen -Sports & Leisure,How Many Players In A Rugby League Team ,13 Players ,General,What do you have plenty of if you are hirsute,Hair,General,Where are the Luxemburg gardens,Paris -Toys & Games,"In pool, what color is the eight ball",Black,General,What is the name of the tree of the world in Norse mythology,Yggdrasil,Music,"1976 Proved To Be The Year For This Group With The Song ""Now Is The Time""",Jimmy James & The Vagabonds -General,How does a male koala attract a mate,Belching,General,Boreas is the Greek God of what,North Wind,General,What tennis player had trials with Bayern Munich soccer club,Boris Becker -Science & Nature," 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, Geography,What is the capital of Djibouti ?,Djibouti,General,What pop group were dedicated followers of fashion,The Kinks -General,What did Dr John S. Pemberton concoct in a three-legged pot in his backyard in 1886?,Coca Cola,General,From what country does soave wine originally come,Italy,General,Of what did Sigmund Freud have a morbid fear?,Ferns -General,What name from the French to quibble means a no trump hand,Chicane,General,Miso a basic ingredient in Japanese cooking is made of what,Soybean paste,General,It's impossible to sneeze with your eyes ___.?,Open -General,Whats the official language of Morocco,Arabic,Geography,In what country is Lahore,Pakistan,General,"Who sings 'the moon may be high, but i can't see a thing in the sky, i only have eyes for you'",Flamingos -General,Where is the bridge of san luis rey,Peru,General,U.S. Captials - Tennessee,Nashville,Science & Nature," Ostriches are such fast runners, they can outrun a horse. Male ostriches can _________",Roar like a lion -Art & Literature,"What Irish playwright and author, wrote ""The Importance of Being Ernest"" and ""A Picture of Dorian Grey"" among others?",Oscar Wilde,General,Which travel company cater exclusively for the over 50s,Saga,General,Who was the first premier of russia and served from 1917 to 1924?,Nikolai lenin -General,Collective nouns - a hedge of what,Herons,Geography,What country was once known as Gaul,France,General,Which spicy soup literally means 'pepper water',Mulligatawny - History & Holidays,""" Which of the following was not one of the Three Kings? """"Balthazar"""" - """"Melchior"""" - """"Soloman"""" - """"Caspar"""" "" ",Soloman ,General,If you were eating Olea Europea what would it be,Olive,Geography,What is the capital of Cyprus,Nicosia -General,Capital cities: Zambia,Lusaka,General,What was the name of the dog which featured in the Jerome K. Jerome novel 'Three Men in a Boat'?,Montgomery, History & Holidays,"In the 1855 Russian War, what were used to transport Torpedos ?",Kites -Geography,What is the capital of Maldives,Male,General,DNA stands for what,Deoxyribonucleic acid,General,"In 1974, whose first album featured 'can't get enough' and 'ready for love'",Bad company - History & Holidays,What did the person chained to wall in Goonies want? ,A Baby Ruth candy bar ,Science & Nature,What are the only other animals on which the pill works?,Gorillas,Art & Literature,"In 'Romeo and Juliet', who says 'what must be must be'?",Juliet -General,Who wrote Brave New World (full name),Aldus Huxley,General,What 19th century novelist spent his last days as an inspector at New York's Customs House?,Herman Melville,General,In what book is jean valjean,Les miserables - History & Holidays,What Chinese dynasty was overthrown in 1911,Manchu,General,What rivers name translates as river of hate,Styx in Hades,General,"According to mens health magazine, what does the average man do 12 to 20 times a day",Break wind fart -General,What is a group of rooks,Building,General,Which nineteenth century author is buried in Samoa,Robert louis stevenson,General,Pentagon doublespeak what is combat emplacement evacuator,A shovel -General,"In romeo and juliet', who gave a long monologue about queen mab",Mercutio,General,Houston who sang 'rescue me',Fontella bass,General,In the Superman comics name the shrunken city in a bottle,Kandor -Geography,What Nationality Was Vasco Da Gama ,Portugese ,General,Who is said to have brought the Holy Grail from Palestine to England,Joseph of arimathea,General,The ore pitchblende is the major source of which element,Uranium radium -General,"These rabbits are prized for their long, soft fur, used to make very expensive sweaters",Angorra, History & Holidays,What product was the first TV advert advertising ?,Toothpaste,General,"With whom do you associate: ""mom always liked you best""",Tommy smothers -General,Gotcha Was A Headline In The Sun Newspaper On May 4 th 1982 Relating To Which “ Specific ” Event,Sinking Of The General Belgrano,General,What name is given to a circular coral reef,Atoll,Music,"Who Is Regarded As ""The Godfather Of Soul""",James Brown -General,"Which country, per capita, uses the most umbrellas",England,General,"What are Acheron, Cocytus and Phlegethon",Rivers of Hell,General,What is the russian equivalent of the name john,Ivan -General,What is the capital of Belize?,Belmopan,General,"Which composer, born in Russia in 1882, became a French citizen in 1934, and died in New York in 1971",Stravinsky,General,What was the profession of our man higgins,Butler -Music,"The Film ""The Ryan White Story"" Featured A Song Called ""I'm Still Standing"" By Which Male Singer",Elton John,General,Which word describes 2 lines which are always the same distance apart,Parallel,General,What is Ben Matlock's trademark outfit?,A grey suit -General,What was the former name of the Southern African country of Zambia,Northern rhodesia,General,"What was Massachusetts' logical choice for an official state dessert, in 1996",Boston cream pie,General,Why was convict 2599 unusual in Pen State prison 1924,Dog doing life for killing cat -Music,In Which Year Did The Stranglers Achieve Three Top Ten Hits,1977,General,What form of execution did St Stephen the Martyr suffer,Stoning,Sports & Leisure,How many sides does a home-plate have?,Five -General,Who invented fortune cookies,Charles jung, Geography,Where is Lake Maracaibo?,Venezuela,General,The Charleston was indroduced in which year,1925 -General,Phalacrophobia is the fear of what,Going Bald,General,Who was Mallory Keaton's fiance?,Nick Moore, Geography,What is the basic unit of currency for Czech Republic ?,Koruna -Entertainment,"Which band included rock greats Roy Orbison, Tom Petty, George Harrison, and Bob Dylan?",The Travelling Wilburys,General,What license plate number is on the volkswagon on the cover of the beatles' 'abbey road' album,281f,General,What pop singer was born in Lucknow India,Cliff Richard -General,Who is the only man to have been both chief justice and president of the u.s,Taft,General,Name Glen Millers signature tune,Moonlight Serenade,Toys & Games,What would you buy from a Gibbons' catalogue,Stamps -General,"According to Dr. Johnson, what should be well sliced, dressed with pepper and vinegar, and then thrown out as good for nothing",Cucumber,General,Who Appeared In A Series Of Ads For Tesco's In Which He Was Chasing Chickens Round France,Dudley Moore,General,Which western entertainments name literally means go round,Rodeo -Science & Nature, The horned lizard of the American southwest may squirt a thin stream of __________ from the corners of its eyes when frightened.,Blood,General,Who created 'dennis the menace',Hank ketcham,General,In which country is Zug,Switzerland – smallest Canton -General,Of what are xenophobics afraid?,Strangers,Art & Literature,Who Is Noted For His (Nonsense Verse) ,Edward Lear ,Science & Nature,Who Developed The First Aautomatic Telephone Exchange ,Strowger  -General,Who was the last King of Italy,Humbertii umberto ii,General,Which acid dissolves glass,Hydrofluoric Acid,General,In Japan what is Seppuku,Hari Kari - suicide -Mathematics,"If you count from 1 to 100, how many 7's will you come across?",20,Sports & Leisure,Which Country Turned The Five Nations Into Six In Rugby? ,Italy ,General,How many species of frogs are there in the UK,Three -Music,"Who Duetted With Steve Harley On The 1986 Hit ""Phantom Of The Opera""?",Sarah Brightman, History & Holidays,Who banned Christmas in 1647 ,Oliver Cromwell ,General,The second piller of Islam Salah involves what,Daily prayers -General,What product was introduced as a cure for urinatary problems,Pepsi,Science & Nature,Which is the most sensitive finger?,Forefinger,General,Oliver was fed gruel - its made from water and what,Oatmeal -General,Which prime minister's wife created a scandal with her antics,Margaret,General,Name of the road system links 17 capitals in South America,Pan American Highway,Music,"Who Shot Into The Charts In 1983 With Their ""68 Guns""",The Alarm -General,Who played the title role in the film 'The Outlaw Josey Wales',Clint eastwood, History & Holidays,"Which U.S. president said, ""The buck stops here""",Truman,Music,Ma! (He’s Making Eyes At Me) Was A Hit For Which Child Prodigy,Lena Zavaroni -General,Ceres was the Roman goddess of what,Agriculture,Geography,What mountain range separates Europe from Asia,Urals,General,What kind of cat is used in purina(tm) commercials,White persian -General,What is the largest soviet republic,Russian republic,General,Bird with characteristic cry and the habit of laying eggs in other birds nests,Cuckoo,General,What 2 countries share the Khyber pass,Afghanistan and pakistan - Geography,What is the basic unit of currency for Suriname ?,Guilder,General,Whose autobiography was entitled My Wicked Wicked Ways,Errol flynn,General,"In relation to its size, which bird has, understandably, the thickest skull",Woodpecker -General,0191 is the telephone dialling code of which British region?,Tyne and Wear,General,"Name the French artist who died in 1863, famous for his painting Liberty Guiding the People",Delacroix,General,"The compound of this sect was under siege in Waco, Texas.",Branch Davidians -General,"What term was given to the taxing policy brought in by Henry VII's chief advisor, which forced taxes on people regardless of their wealth?",Morton's Fork,General,"What band sang the theme song to ""The Breakfast Club?""",Simple Minds,General,"""Tashkent"" Is The Capital City Of Which Country",Uzbekistan -General,In what film did Bruce Willis play a time travelling criminal,Twelve Monkeys,General,"What kind of pie does ""snow white"" start to bake for the dwarfs",Gooseberry,Entertainment,Who is Donald Duck's uncle,Scrooge -General,What is unusual about a Racoons penis,Contains a bone,General,Where did edam cheese originate,Holland,General,What was the first motion picture to have a synchronized musical score?,Don Juan -General,"Countries of the world:south eastern Europe, major cities include Thessaloniki & Piraeus",Greece,Music,In Which Year Did Procol Harum Open Pandora's Box,1975,General,When Virginia Wade Won The 1977 Wimbledon Singles Final Who Was Her Opponent,Betty Stove -General,In his will who left his wife his second best bed,William Shakespeare, History & Holidays,"Currently the world's longest serving leader, he ousted General Batista in January 1959 - who is he ",Fidel Castro , Geography,What is the capital of South Korea ?,Seoul -General,"Translate into English the opera title ""Die Dreigroschenoper""",The threepenny opera,Science & Nature," __________ 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,General,"Which dwarf is the leader of the dwarf's in ""snow white""",Doc -Music,Which Country Did Canadian Born Celine Dion Represent At the Eurovision Song Contest,Switzerland,Sports & Leisure,With which sport is Bjorn Borg associated ?,Tennis,General,Nomadic Arab of the desert,Bedouin -General,What position does a sloth spend its day in,Upside down,General,What Classic Tv Show Had A Tv Theme Entitled “ Make A Difference ” ?,Knight Rider,General,The elevated stronghold in ancient Greek cities.,Acropolis -General,The 900 Days' is a chronicle about what group's siege of Leningrad,Nazi,Music,According To The Beatles What did Rocky Racoon find in his room?,Gideon's Bible,Technology & Video Games,As what was Sony's video recorder known?,Betamax -General,What was 1990s most populous U.S. state,California,General,Mandarin and Peter Pan are which parts of a garment,Collars,General,Names Cook Baker obvious what did a Chandler do,Make Candles -General,What does VAX stand for,Virtual Access eXtension,Music,Which Instrument did Dave Of The Dave Clark Five Play,The Drums,General,Rickenbacker who gave millions of dollars to britain in 1930,Edward s harkness -General,The girls'll go crazy for a___.' what is the name of this ZZ-Top tune,Sharp,Science & Nature,What did Lewis E. Waterman invent in 1884?,Fountain pen,Geography,What is the capital of Armenia,Yerevan -General,Impaired normal blood clotting is the main symptom of which disease,Haemophilia,General,What is an example of a totally untraceable poison,Acetylcholine,General,Pete Sampras Became The First Wimbledon Winner Of The Millenium But Who Dod He Beat In The Final,Pat Rafter -General,What is the name of the eating disorder where binging is followed by deliberate vomiting and purging,Bulimia, History & Holidays,What percentage of pumpkins grown are used on halloween is it A 97% B 98% or is it C 99% ,C 99% ,General,Who coached president eisenhower for tv,Robert montgomery -Sports & Leisure,Where were the 1920 Olympics held ?,"Antwerp, Belgium",General,Broccoli belongs to what family of plants,Cabbage,General,In Gone With the Wind name Ashley Wilkes plantation,Twelve Oaks -Science & Nature,Chemical Element Pa?,Protactinium,General,Who did Babe the pig work for,Farmer Hoggett,General,In The Man with the Golden Gun name Scaramangas assistant,Nick Nack -General,In a Rugby League team which player wears the number nine shirt,The hooker,General,What is the study of whales,Cetology,General,Mitsibushi - now cars - planes during war - literally means what,Three Diamonds -General,Every person has a unique _____ print,Finger,General,Mass murder especially among a particular race or nation,Genocide,General,How Did Susan Brown Make Sporting History In 1981,First Female In The Boat Race -General,Who played the lead role in charlie varrick,Walter matthau,General,What fruit is used to flavour Southern Comfort,Peach,General,Who is the Greek Goddess of the moon,Selene -General,What is the heart rate of the blue whale,Nine beats per minute,General,"In the 'james bond' books, who is m's secretary",Miss moneypenny,General,Who is the spokesperson for the exercise tapes 'Tae Bo'?,Billy Blanks -General,66% of Americans reading on the toilet read what,Readers Digest,General,From Which Country Do Chinese Gooseberries Come From,New Zealand,General,What is the name of the large resort lake in the center of Disneyworld,Buena vista lake -Entertainment,"What movie starred Nicholas Cage and John Travolta, one as a police officer, the other as a villain?",Face Off,General,What is an SUV to off roaders,Sports utility vehicle,General,Who composed 'peter and the wolf',Sergei prokofiev -General,Who takes the starring role in the 1970's TV medical drama Quincy,Jack klugman,General,Siamese Dream' was which chicago-based group's breakthrough second album,Smashing Pumpkins, History & Holidays,"In the 'Twelve days of christmas', how many items in total are sent by 'my true love'?",78 -General,What was Doris Lessing's first novel,The grass is singing,Sports & Leisure,At which venue did Steve Redgrave win his first gold? ,Los Angeles ,General,Thomas Edison demonstrated the electric light for the first time in what year,1879 -Music,"Who Had A Massive Hit With Her 3rd Album Entitled ""Jagged Little Pill""",Alanis Morissette,Geography,What u.s state is the home of the headwaters of the mississippi river ,Minnesota ,General,Greek gods of mythology: which goddess personified the earth,Gaea -Music,The Dickies Sung The Theme Tune To Which Crazy Cult American Childrens Show,The Banana Splits,Sports & Leisure,What is Linford Christies best time for the 100 Metres ,9.87 ,Science & Nature,In Which Country Did Polythene Plastic Go Into Commercial Production In 1939 ,Britain  -Science & Nature,How Many Sides Does A Heptagon Have ,Seven ,General,What is 'grandmother' in yiddish,Bobba,General,In San Jose California where is it illegal to sleep without permit,Neighbour's Outhouse - Geography,What is the capital of Finland ?,Helsinki,General,What was Charlemagne also known as,Charles the great,General,A series of 15 radioactive elements in the periodic table (periodic law) with atomic numbers 89 through 103,Actinide series -General,Who was the jeweller to the Russian Court famous Easter eggs,Faberge, History & Holidays,This word describes the Nazi annihilation of Jews.,Holocaust,General,Who was known as the maid of orleans,Joan of arc -General,Scotch mist is a type of what,Rain, History & Holidays,She was the first woman to swim the English channel.,Gertrude Caroline Ederle,General,What books does me jane read,Tarzan -General,Most people bob for apples what do Adams family bob for,Crabs,Music,"He Was Born In Cologne But Shocked Paris With His Rollicking Music Including The Famous Can Can From His Orpheus In The Underworld, What Was His Name",Jacques Offenbach, History & Holidays,"Bruce Willis spends Christmas fighting terrorists in the 1988 film 'Die Hard'', which American city is this set in ",Los Angeles  -Science & Nature,What does breaking the sound barrier cause?,A sonic boom,General,On a prescription what does PO mean,By mouth,Geography,How Tall Is Everest To The Nearest Thousand Feet ,"29,000 Feet " -General,The King of Barataria alternative name what G&S operetta,The Gondoliers,General,What is an angle called if it is less than 90 degrees,Acute,General,"Who's first book was ""Down and Out in Paris and London""",George Orwell -Science & Nature,How many pints of blood does the average human have in his/her body?,12,General,In Okalahoma City its illegal for a prisoner to wear what,Pink Bikini Underwear,General,In which city is the European Court of Justice located,Luxembourg -General,Who lived in Honalee,Puff the magic dragon,General,Who was born michael bolotin,Michael bolton,General,For what did robert montgomery coach president eisenhower,Television -General,"Every finalest in the 100-meter dash of the last four olympics, has been of what descent",West african, Geography,Which is the smallest independent country?,Vatican City,Science & Nature,What planet boasts the Great Red Spot?,Jupiter -General,Charles Portis wrote the novel of the film John Wayne's Oscar,True Grit,General,Which food item contains the most residual pesticides,Peaches,Food & Drink,Blanket And Honeycomb Are Both Varieties Of Which Food Stuff? ,Tripe  -General,A snake has two penises but only one what other organ,Lung,General,What countries women are most likely to have sex daily,Russia 20% 74% satisfactory,General,Which Fundamental Part Of Computer Technology Was Patented In The Usa In 1961?,Silicone Chip -General,Which bird is the symbol of the RSPB?,Avocet,Music,A spinet is a variation of which instrument?,Harpsichord,General,"Who sang of their ""magic carpet ride""",Steppenwolf -General,If you were indulging in Sciomanchy what are you doing,Imaginary Combat,Sports & Leisure,"In which sport is the term, ""Hang ten"" used",Surfing,General,Who Was The First Ever Presenter Of ITV's World Of Sport,Eamonn Andrews -Science & Nature,What is the study of insects called ?,Entomology, History & Holidays,What seasonal name was given to Bart Simpson's dog ,Santa's Little Helper ,Music,On Whose Short Stories Was Guys And Dolls Based,Damon Runyan's -General,Name for an idler in fashionable society,Lounge lizard,General,What play marked marlon brando's last broadway appearance?,A streetcar named desire,Food & Drink,Which spice is obtained from crocuses? ,Saffron  -General,"In roulette, what number is green",Zero,Music,Whose Album Songbird Became A Posthumous Hit In 2001,Eva Cassidy,General,As what is Polaris also known,North Star -Music,"What Is On The Screen Featured On The Album Cover Of 10cc's ""The Original Soundtrack""",A Cowboy,General,What is the flower that stands for: austerity,Common thistle,Sports & Leisure,Which motorcyclist is known as (Foggy)? ,Carl Foggarty  -General,Phengophobia is the fear of,Daylight sunshine,General,What are young herrings,Sardines,General,Food served nivernaise has what ingredient,Carrots - History & Holidays,What did Sir Howard Carter discover in 1922? ,Tutankhamens Tomb ,General,Who was the bully who terrorized Arnold on Different Strokes?,The Gooch,General,"A ""light year"" measures",Distance - History & Holidays,"What was the nationality of the prisoners in the ""Black hole of Calcutta""?",British,General,"Books who wrote the book ""The Wives of Henry VII""",Antonia fraser,General,Helena is the capital of ______,Montana -General,What is 'mpd',Multiple personality disorder,General,In what epic film did charles laughton play quasimodo,The hunchback of notre,General,What was the name of the South African Prime Minister murdered in 1966,Hendrik verwoerd -General,Florence Nightingale Graham better known as who,Elizabeth Arden,General,From Which Tree Or Shrub Do Pecan Nuts Come?,Hickory,Music,"Which Girl Group Consisted Of ""Esther Bennett, Vernie Bennett, Louise Nurding, Kelle Bryan""",Eternal -General,How many days long is a year on the planet Mercury,Eighty eight,Music,Which 80's Hit Was Dedicated By Her Boyfriend To Christie Brickley,Uptown Girl,General,Can Anyone Tell Me What The Sexual Act Of Felching Involves ,Sticking Rodents Up Your Arse  -Music,Name The Album That Resulted From A 1972 Jam Session With Ry Cooder & Nicky Hopkins,Jammin With Edward,General,What animal can get the disease heaves,Horse,General,Fill in the blank: I'm a little _____ short & stout,Teapot -General,The opera Falstaff was written by whom,Verdi,Science & Nature,What is the meaning of the name of the constellation Cepheus ?,Cepheus,General,Christopher Jones was the captain of which famous ship?,Mayflower -General,Karl Lienstater discovered which medical breakthrough in 1901,ABO Blood Groups, History & Holidays,David Hasselhof spent most of his time driving a car on which eighties tv show? ,Knight Rider ,Science & Nature,What is the troposphere immediately lower than?,Stratosphere -General,Rosencrantz and Guilderstern are dead - name playwright,Tom Stoppard,General,"Brandy, decoy and landscape all come from which language",Dutch,General,In Franz Kafkas Metamorphosis Gregor Samsa wakes up as?,An Insect - History & Holidays,Who Released The 70's Album Entitled Out of the Blue ,ELO ,General,Psellismophobia is the fear of,Stuttering,General,Which island do the nationalist chinese occupy,Taiwan -General,Who wrote the nonsense poem The Jabberwocky,Lewis carroll,General,What is a group of hounds,Cry,Geography,What Does A Dotted Line Represent On An Ordinance Survey Map ,A Footpath  -General,Through what do insects breathe,Spiracles,General,Concordia is the roman goddess of ______,Harmonious relations,General,What are the two cities in charles dickens' 1859 novel a tale of two cities,London and paris -General,What size ball is used in an official Table Tennis match?,40mm,General,Which ship canal by-passes the Niagara Fails,Welland canal,General,What do you have to break to make omelettes,Eggs -General,I what year was Britains' general strike,1926,General,What common item in India are Round,Playing Cards,General,What is the largest inhabited castle,Windsor castle -General,Which dyeing process originated in Indonesia & involves the use of wax masking techniques?,Batik,General,40% of Americans have never been where,To a Dentist,General,How many VCs were awarded in the Falklands War,Two -Music,Which artist produced the Velvet Underground's debut album?,Andy Warhol,Sports & Leisure,Who Quit As Liverpool's Manager On February 22 nd 1991? ,Kenny Dalglish ,Music,Who Had A Number One Hit With Puppy Love In 1972?,Donny Osmond -Science & Nature,How Many Chambers Are There In Your Heart ,4 Chambers ,General,Which character in TV's Red Dwarf is obsessed with fashion,Cat,General,Where did the exxon valdez oil spill occur,Prince william sound -General,Any comparatively small body of land completely surrounded by water,Island,General,Antimacassars were fitted to chairs - what is macasser,Hair oil,General,A cat is feline but what's leporine,Rabbit -General,What is the name of Toys R Us Giraffe,Geoffrey,General,In which 1975 film does Richard Dreyfuss paly a marine biologist called 'Hooper',Jaws,General,In Total There Were 17 Apollo Mission Only One Of Which Resulted In The Loss Of Human Life Which Was It,Apollo 01 (First Mission) -Food & Drink,What is a cross between a blackberry and a raspberry?,Tayberry,General,"What is the only English word that ends in the letters ""mt""",Dreamt,General,Name the first US president to serve ice cream at a state dinner,Thomas Jefferson - Language,What does 'A&W' (of root beer fame) stand for ?,Allen & Wright,Food & Drink,With which flavour is the liqueur Cr?me de Cassis associated? ,Blackcurrant ,Music,Which German composer's best known work is the opera Hansel and Gretel?,Engelbert Humperdinck's -General,Sam Barraclough owned which film star,Lassie,General,Nancy Astor Became The first British What On The 28th November 1919,Member Of Parliament,General,What's the apparent gap between saturn's a and b rings called,Cassini -General,"What is the Capital of: Congo, Dem. Rep. of the",Kinshasa,Food & Drink,What Does 'OG' Stand For In The Brewing Industry ,Original Gravity ,General,The human body has about sixty thousand miles of ______,Blood vessels -General,As what did Kotex first manufactured in WWI,Bandages,General,"What george harrison lp featured the single ""give me love""?",Living in the material world,General,"Segmental, Primitive, Doucine, Elliptical are types of what",Arch (in construction) -Food & Drink,"I belong to the same family as the potato, and more of me are canned than any other fruit or vegetable. What am I? ",Tomato ,General,What imaginary line encircling the earth is 90 degrees from both poles at every point,Equator,Music,Who Had A Hit With The Song Come On Eileen,Dexy's Midnight Runners -General,Organ of the digestive system,Stomach,General,What is the white semicircle on a fingernail,Lunula,General,What battle cry inspired Texas troops after the Alamo fell,Remember the alamo -General,What would you do at a table in Greece,Banking it’s a bank,General,Who refused to shake Jessie Owens' hand at the 1936 summer olympics,Adolf hitler, History & Holidays,What is the nickname of the ship's computer in the 1979 film _Alien_? ,Mother  -General,What is the national flower of scotland,Thistle,General,"Time magazine named what its ""Man of the Year"" in 1982?",Computer,Music,Poor Me Topped The charts For Which Uk Artists In The 1960's,Adam Faith -Science & Nature,Which substance has the chemical formula H2SO4?,Sulfuric acid,General,Where did Indian ink originally come from,China,Music,"Who Is The Lead Singer Of The Band ""Destiny's Child""",Beyonce Knowles -General,Whats the symbol of the zodiacal sign Gemini,Twins,General,"Who wrote ""titus groan""",Mervyn peake,General,What is the world's most popular non-alcoholic organic beverage,Coffee -Geography,What is the capital of Chechnya? ,Grozny ,General,What did denmark sell to the u.s,Virgin islands,General,Is wholemeal bread brown or white,Brown -General,What is a triangle with a 90 degree angle in it called,Right angled triangle,General,On TV what was the name of the Beverly Hillbillies bank manager,Mr drysdale,General,In the Batman comics what is the full real identity of the Riddler,Edward Enigma E Enigma -General,What other common name is given to a rook in chess,Castle,General,What do the initials DIY usually stand for,Do it yourself,General,"1996 3 highest earning sportsman Michael's Jordan, Tyson and who",Schumacher -General,Inciticus was a horse (and Senator) owned by whom,Caligula,Science & Nature,What word is used for a male duck?,Drake,General,A breed of black and white dairy cattle,Friesian -Food & Drink,To What Plant Family Do The Radish & Turnip Belong ,Mustard ,General,Magnetic field Comics: What color suit does Clark Kent always wear,Blue,Geography,What is the capital of Dominica,Roseau -General,Who was the first premier of russia and served from 1917 to 1924,Nikolai, History & Holidays,Who Was The 4th Wife Of Henry Viii ,Anne Of Cleeves ,Science & Nature," 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 -General,"Dragoon, Antwerp, Poulter, Tumbler, Horseman types of what",Pigeon,General,Andrea Hollen was the first woman in US to do what,Graduate West Point,General,"Recycling one glass jar, saves enough energy to watch t.v for _____",Three -Music,Which Small Faces album originally came in a circular sleeve and later in a round tin?,Ogden's Nut Gone Flake,General,"In Which Tv Show Will You Frequently Hear The Voice Of ""John Briggs""",The Weakest Link,Sports & Leisure,Over What Distance Is A Steeple Chase Run? ,"3,000 Metres " -General,"If you flew due west from portugal, what is the first place you would reach",New york city, Geography,Springfield is the capital of ______?,Illinois,General,"On Happy Days,what animal did Fonzie jump his motorcycle over?",A shark -General,A small computer introduced in 1975 by micro instrumentation telemetry systems of new mexico,Altair 8800,General,By what name is the 2nd day of February called in the U.S.A.,Ground hog day,Music,On Which Interstate Highway Did Chuck Berry Get His Kicks,Route 66 -General,"In ""Innerspace"", what did the license plate on Igoe's BMW say?",SNAPON,General,A Bohemian folk dance in duple time with a hop on the fouth beat. It became a popular ballroom dance in the mid-nineteenth century.,Polka, Geography,What is the basic unit of currency for Yugoslavia ?,Dinar - Geography,What is the capital of Swaziland ?,Mbabane,General,"On Wings,what were the names of the 2 airlines at the airport?",Sandpiper Air and AeroMass,General,"Countries of the world:equatorial country in central Africa, Kinshasa is the capital",Congo -General,What holiday islands have no rivers or lakes - rain water only,Bermuda,General,Who was hebert c hoover's vice president,Charles curtis,General,"Martial Arts Masters ""Ray Park"" Played Which Well Known Movie Character In 1999",Darth Maul (Star Wars Episode I) -General,A pork product that's often served for breakfast,Bacon,General,"Rising about 100 miles northwest of Valencia and flowing east to the Atlantic, which is the longest river of the Iberian peninsula",The tagus,General,Wild marjoram is also known as what,Oregano -General,In Greek legend what was eaten on the Island of Jerba,Lotuses,Art & Literature,"In a general sense, refers to objective representation. More specifically, a nineteenth century movement, especially in France, that rejected idealized academic styles in favor of everyday subjects. ",Realism,Toys & Games,How many balls are used in a game of snooker including the cue ball?,22 -General,In which German city does the annual 'Oktoberfest' beer festival take place,Munich,General,What is the flower that stands for: beautiful eyes,Variegated tulip,Music,"What Song Features The Lyric ""He's Got Crazy Flipper Fingers Never Seen Him Fall""",Pinball Wizard -General,"In computing terminology, what does D.P.I. stand for",Dots per inch,General,The name of which animal means does not drink,Koala,General,What does the latin Olympic motto - Citius Altius Fortius stand for?,Faster Higher Stronger -General,George Jung of Los Angeles in 1916 invented what,Fortune Cookies,General,What does 'karate' mean,Open hand,General,When was Braille printing invented,1829 -Art & Literature,What is the name of Gandalf's horse,Shadowfax,General,A latin American dance usually performed in single file,Conga, History & Holidays,The Cranberries song 'Zombie' was released in which year ,1994  -General,"What cocktail is made from rum, lime and cola",Cuba libre,General,Le Poireau is what type of vegetables,Leek,General,In the Dictionary of Vulgar Tongue 1811 what is a wasp,An infected prostitute sting in tail -General,Tartuffo in Spain Kartoffel in Germany and Russia what is,Potato,General,Out of what did the ancient celts make the jack-o-lantern,Turnips,General, The weight at the end of a pendulum is a(n) ________.,Bob -General,What is the Curia,Administration of the Catholic Church,General,What is the atomic mass of platinum,195.09,Music,Released In 1975 By EMI Name This Monster Hit Written & Performed By An Ex Beatle,Imagine -General,What protruded from the rocks at the end of the film 'planet of the apes',Statue of liberty,General,"Which company claimed to be ""one step ahead of the rest""",Panasonic, History & Holidays,Why did Richard John Bingham make the news in the 1970s? ,Lord Lucan  -General,The typical American eats 263 _____ in a year,Eggs,General,This team won their first world series in 1969,New york mets,General,What would Americans call a spring onion,Scallion -General,What is a group of puppies,Litter,General,What fruits are usually served 'belle helene',Pears,General,Tiger beer is brewed in which Commonwealth country,Singapore -Geography,In which city is Saint Paul's Cathedral,London,General,In the UK today 16000 people die annually from what,Illness caught in hospital,Science & Nature, Adélie __________ employ yawning as part of their courtship ritual.,Penguins -General,In what country would you buy Kingfisher lager,India,General,Cents in a Dollar Pennies in a Pound what in a French Franc,Centimes, History & Holidays,What did Regan due to the striking air traffic controllers? ,Fired them  -General,The addition of what turns a Welsh rarebit into a Buck rarebit,Poached egg,General,Bat Masterson was a sportswriter for what paper,Morning telegraph,General,What was the first film to team jack lemmon and walter matthau,Fortune -General,Who was the mascot of Kellogg's Sugar Frosted Flakes when they were launched in 1942,Tony the tiger,Music,"Who Sang ""Neutron Dance"" From The Movie Beverly Hills Cop""",The Pointer Sisters,Geography,In which Asian country is the Hindu Kush? ,Afghanistan  -General,What did Joseph Gayetty invent in 1857,Toilet Rolls, History & Holidays,Name Queen Elizabeth I's Mother? ,Anne Boleyn ,General,"Which Football Club Founded In 1874 Were Originally Called ""Christchurch FC""",Bolton Wanderers - Geography,What is the capital of Qatar ?,Doha,General,"What country's note pictures 6 eskimos, 2 kayaks and 2 harpoons",Canada,General,Which famous canine cartoon character was created by Hanna-Barbera in 1958 for the first all-animated television series,Huckleberry hound -General,Who links a western gambler and a private eye,James Garner Maverick Rockfort,General,What very lightweight wood is often used for rafts & model aeroplanes,Balsa,General,What are the two official languages of Finland,Finnish and Swedish -General,What tv cowboy taught president sukarno's son how to twirl a six-shooter,Roy,General,What was Hitchcock's last film made in 1976,The Family Plot,General,Where is normandy,France -General,Who became the first Prime Minister of Malawi in 1964,Hastings banda,General,What product orginally sold as 'the esteemed brain tonic & intellectual beverage',Coca cola,General,Roosevelt won the 1932 election - who lost it,Herbert Hoover -General,What was the first team sport played in the modern Olympics,Water Polo,General,Mouselike desert rodent with long hind legs,Gerbil,General,What was the nickname of the basketball player Earvin Johnson,Magic -General,"What literary character pokes fun at his most prominent feature with: ""When it bleeds, the Red Sea""",Cyrano de bergerac,General,Which US state flag is triangular in shape,Ohio,Music,Length of shortest Beatles track,23 Secs / Her Majesty / from Abbey Road -General,Hyelophobia is the fear of,Glass,General,Eppie Cass is a central character in which |novel by George Eliot,Silas marner,Science & Nature,Our galaxy is commonly known called _________.,Milky way -General,What is classified by the A B O system,Blood Groups,General,"The middle part of an entablature, often decorated with sculpture. ",Frieze,Sports & Leisure,Who In 1968 Made What Is Known As 'The Jump Into The 21 st Century'' ,Bob Beamon  - History & Holidays,"He was assassinated on Dec. 8, 1980 in New York City.",John lennon,Music,Which Dance Is Frequently Mentioned In The Wham Song Wake Me Up Before You Go Go,The Jitterbug,Music,What function did the composer Franz Schubert perform at Beethoven's funeral?,He Was A Pallbearer - History & Holidays,Name the U.S.S.R. leader with a birthmark on his forehead? ,Gorbachev ,General,What year were the two atomic bombs dropped on Japan,1945, History & Holidays,In Which Year Was Joan Of Arc Burned At The Stake? ,1431  -General,In the Bible John the Baptist lived on wild honey and what,Locusts,General,What is Milan's opera house called,La Scala,General,Which size of paper measures 210 x 297mm,A4 -General,Tamarack Idaho can't buy what after dark without sheriff permit,Onions,Science & Nature,"To The Nearest Half Pint, How Much Gastric Juice Do You Have ",2.5 Pints ,General,"The tips of fingers & the soles of feet are covered by a thick, tough layer of skin called the what",Stratum corneum -General,The native inhabitants of Australia are called _____,Aborigines,General,Fill in the blank: old Mother _____,Hubbard, History & Holidays,Which comedy trio made a 'Daft Noise For Christmas'' ,The Goodies  -Science & Nature,There are _ planets in this solar system.,9,General,What does a numismatist collect,Coins,Sports & Leisure,How many sides does a baseball homeplate have?,Five -General,Where in the body would you find your olfactory lobes,Nose,Geography,This is the port city serving Tokyo.,Yokohama,General,What was the Statue Of Liberty originally named?,Liberty Enlightening The World -General,"What name is given to the giant American transport plane, the C5",Galaxy,People & Places,Which Hollywood Actress Was Convicted Of Shop Lifting In 2002? ,Winona Ryder ,General,What sense is most closely linked to memory,Smell -General,The national flag of which South American country bears a circle depicting stars in the night sky,Brazil,General,How long was the marquis de sade in prison for sexual offences,27,Science & Nature,Which Stage Of An Insects Life Cycle Comes Between Egg And Pupa ,Larva  -General,"What cartoon characters catchphrase was ""Exit stage left""",Snagglepuss,General,The system of racial segregation in south africa was called _____,Apartheid,General,In 1979 who sang about Walking on the Moon,Police -General,Physics: The color white is the absence or presence of all color?,Presence, History & Holidays,Who directed the 1946 classic 'It's A Wonderful Life'' ,Frank Capra ,Sports & Leisure,Which Wrestler Got His Name From A Tennessee Williams Character ,Big Daddy  -Music,When Did The Beatles First Release Strawberry Fields,1967,General,"What Movie Earned Composer ""John Williams"" His First Oscar For Best Muiscal Score",Fiddler On The Roof,General,Chocolate crisp introduced in 1935 was renamed what 1937,Kit Kat -General,Mario first appeared in which video game,Donkey Kong,General,Which French artist designed ballet sets for Diaghilev,Henri Matisse,General,Which country was the first to introduce old age pensions,Germany -General,What is a group of lions,Pride,General,Which crime fiction writer created Inspector Lynley?,Elizabeth George,General,Which is the largest city of the Balearic Islands,Palma -Geography,Which is the Earth's largest continent,Asia,General,What is Foghorn Leghorn's favourite song,Camptown Races, History & Holidays,Who Made The First Non-Stop Transatlantic Crossing In An Aeroplane? ,Alcock & Brown  - History & Holidays,How many wise men where there? ,3 ,General,"In 1848 Mexico sells U.S. Texas, California, New Mexico and",Arizona,General,Who or what was Black Betsy,Babe Ruth's 44oz Baseball Bat -General,What was pegasus in greek mythology,Winged horse,General,In 1829 Walter Hunt invented what common item,Safety Pin,General,What soft white sweets can be roasted over a fire,Marshmallows -General,Disney's Sleeping Beauty what is the name of the Queen witch,Maleficent, History & Holidays,What did 'DMZ' stand for in the vietnam war?,Demilitarized Zone,Science & Nature," An __________ is nearly 6 feet long, yet its mouth is only an inch wide.",Anteater -Music,"Which British Band Had Hits In 1974, With ""Minuetto Allegretto"" & ""Banana Rock""",The Wombles,General,"The Palio, held in Siena, is what kind of race",Horse,General,Who was dictator of Spain from 1937 to 1975,Francisco franco -General,What is the national airline of Brazil called,Varig,General,What is the flower that stands for: satire,Prickly pear, Food & Drink,What nut is used to make marzipan?,Almond -General,What is the world's most popular spice,Pepper,General,From which musical does the song Surrey With the Fringe on Top come,Oklahoma,Music,"Who Had A 2002 Hit With ""Take Down The Union Jack""?",Billy Bragg -General,Star Wars - Who is C3-PO's sidekick,R2 D2,General,What was the fat boy's nickname in Lord of the Flies,Piggy,General,David kills Goliath in which book of the Bible,Samuel -General,"Who recorded the album ""Get Lucky"" in 1982",Loverboy,General,What country calls themselves Cymru?,Wales,General,What U.S. state includes the telephone area code 517,Michigan - Geography,What is the capital of Togo?,Lome,General,What is the most abundant mineral in the human body,Calcium,General,"Island, southern Indonesia, one of the Lesser Sunda Islands, in the Indian Ocean?",Bali -General,Dickinson where was emily dickinson's home,Massachusetts,General,In what subject did artist George Stubbs specialize,Horses,General,In what film did Sean Connery sing Pretty Irish Girl,Darby O Gill and the Little People -General,What instrument on a car measures distance,Odometer,General,What is a group of monkeys,Troop,Sports & Leisure,Why was Matthew Simmons in the news in 1995? ,He was kung fu kicked by Eric Cantona  -General,In which film did Frank Sinatra win his only Oscar in an acting role,From here to eternity,General,What colour was Ian Flemming's typewriter,Gold,General,In what month did the Russian October revolution take place,November -Science & Nature,In which decade was the Breathalyzer invented? ,1930's ,General,"Which Comedian Owned The 1994 Grand National Winner ""Minnehoma""",Freddie Star,General,What job does Charlie Browns father do,Barber -General,Cagliari is the capital of which mediterranean island,Sardinia,General,Which famous university is in paris,Sorbonne,General,Which African country was founded by Americans,Liberia -Music,Which Single Charted At No.2 For Terence Trent D'Arby In 1988,Sign Your Name,General,Who was the father of Alexander the Great,Philip II of Macedon,Science & Nature," Between the mid_1860's and 1883, the __________ population in North America was reduced from an estimated 13 million to a few hundred.",Bison -Food & Drink,What is the Swedish name for hot or cold dishes served as a buffet? ,Smorgasboard ,General,Who often solved a three pipe problem,Sherlock Holmes,General,In 1983 a Japanese artist copied the Mona Lisa in what material,Toast -Science & Nature,What is a death cap ,Toadstool ,General,What planet does the moon charon orbit,Pluto,General,"If yoU.S.aw a segment of ""Mathnet,"" what show were you watching?",Square One -General,What is the top layer of a wedding cake,Groom's cake,General,"Which Actress Released Her Own Brand Of Perfume In 2008 Entitled ""Lovely""",Sarah Jessica Parker,General,What is the largest city in Texas,Houston -Science & Nature,Whose Job As A Book Binder On An Edition Of The Encyclopedia Britannica Led To The Discovery Of Electricity ,Michael Farraday ,General,"In ballet, a bend from the waist to the side or to the back.",Cambré, History & Holidays,Who Released The 70's Album Entitled Arrival ,ABBA  -General,Which sport is derived from the Indian game of Poona?,Badminton,Entertainment,Savage Garden took 13 nominations and 10 wins at which awards?,ARIA awards,General,How many dots are on a twister mat,30 -Food & Drink,Six ounces of orange juice contains the minimum daily requirement for which vitamin?,Vitamin C,General,From which French word does the 'mayday' distress signal come,M'aidez,General,Which man has the most monuments erected in his honour,Buddha -Toys & Games,"This is the game that ""Ties you up in knots"".",Twister,General,Which French revolutionary was stabbed in his bath by Charlotte Corday,Jean paul marat, History & Holidays,Who was the first man to reach the North Pole ?,Robert Edwin Peary -General,Antanananarivo is the capitol of where,Madagascar,General,The word nylon is made up from what,New York - London,General,"Who wrote the opera ""pagliacci""",Ruggiero leoncavallo -Music,When Did Ike & Tina Turner Split,1976,General,What is the thing that wives do that annoy most husbands,Nag,General,Half the population of China is what,Short Sighted -General,Arab terrorists hijack Italian ocean liner _____ & kill an American passenger,Achille lauro,General,The Foudrinier machine is used to manufacture what,Paper,Sports & Leisure,Which American Heavyweight Boxer Nicknamed 'The Atomic Bull'' Gained The WBC World Title In 1994? ,Oliver McCall  -General,House on what part of the body is an 'ltk procedure' performed,Eyes,General,At the borders of reality is French translation what TV show,The X Files,Science & Nature,The largest pure gold nugget (weighing 70.92kg) ever discovered was called___?,The Welcome Stranger -Sports & Leisure,"What sport do the following terms belong to - ""Toucher & Dead Length""?",Lawn or Indoor Bowls,General,"A total of 1,670 people died in a theatre fire in China in what year",1845,Music,Which Beatle Who wore the pink uniform on the cover of Sgt. Pepper's?,Ringo -General,What wood was the cross supposed to be made of,Mistletoe,General,The Air Canada Silver Broom is won in which sport,Curling,General,What is the largest species of flatfish,Halibut -Art & Literature,"He penned the founding novel of the utopian genre, ""Utopia.""?",Sir Thomas More,General,Quart bottle or vessel for wine,Flagon,Sports & Leisure,In 2005 Who Was Named BBC Sport Personality Of The Year? ,Andrew Murray  -General,Batrachophobia is a fear of what,Frogs and Toads,General,Which Greek Philosopher taught at the lyceum,Aristotle,General,Name the traditional Jewish dish of stuffed fish cooked in a broth,Gefilte fish -Music,Which Future Star Once Won A Hayley Mills Lookalike Contest,Olivia Newton John,General,"Before Becoming President Of The USA ""Bill Clinton"" Was Governor Of Which State",Arkansas,Geography,Which Canadian province extends farthest north,Quebec -Art & Literature,Who is karen Blixen better known as?,Isaak Dinesen,General,What do Fromologists collect,Cheese labels,General,Which tennis player was sued by his fan club,Jimmy Connors - History & Holidays,When Was The Abolition Of The Death Penalty Made Permanent In Great Britain ,1969 , History & Holidays,"In Finland Santa traditionally doesn't use his sleigh what does he ride instead, is it, Rudolph, Santa's servant Black Peter, A goat named Ukko or Thirteen Elves ",A goat named Ukko , History & Holidays,Who Wrote 'Auld Lang Syne' ,Robery Burn / Henry Viii  -Sports & Leisure,In Which Weight Category = Did The Boxer Barry McGuigan Become A World Champion ,Featherweight ,General,In Haifa Israel its illegal to take what to the beach,A Bear,Technology & Video Games,What is the name of the Playstation controller that uses two analog joysticks? ,Dual Shock -Food & Drink,What Is The Main Ingrediant Of Guacamole? ,Avacados ,Geography,In Which Sea Is The Country Of Cuba Located ,Caribbean ,General,What is the flower that stands for: distrust,Lavender -General,In 1949 the Thought Police first appeared in what novel,1984 George Orwell, History & Holidays,Who was Scrooge's dead business partner in 'A Christmas Carol' ,Jacob Marley , Geography,Where is Westminster Abbey located?,London -General,"Belly, Block, Blout, Nut, Rib and waist are all parts of what",A Violin, Geography,What is the largest island in the world?,Greenland,General,What is a group of this animal called: Rattlesnake,Rhumba -Geography,In which continent would you find the yellow river ,Asia ,Music,Which Childrens author appears on the cover of the beatles album Sgt Peppers Lonely Hearts Club Band,Lewis Carol,General,"Which comic actor who died in 1977 entered a competition to find his look alike, anonymously, and only came third",Charlie chaplin -General,What operating system in used on an ibm as400,Os400,General,"Who said ""I disapprove of what yoU.S.ay, but defend to the death your right to say it."" and ""If God did not exist, it would be necessary to invent Him""",Voltaire,General,Through what canadian city does the red river run,Winnipeg -General,What is SAD,Seasonal affective disorder,General,Apart from a compass what is always found in a ships binnacle,Magnets,General,Which author published 59 new books in 1955,Enid Blyton -General,Which classical composer wrote Hark the Herald Angels Sing,Felix Mendelssohn,Food & Drink,What was the first ever chocolate bar produced by the Mars Company? ,Milky Way ,General,"In art, what is impasto",Laying paint on thickly -Food & Drink,What is another name for the carambula?,Star fruit,Music,Which Singer Was Discovered In The 1930's After Winning A Singing Contest At Harlem's Apollo Theatre,Ella Fitzgerald,General,"What does ""papillion"" mean",Butterfly -General,What rare metal melts at 86 degress Fahrenheit,Gallium,General,“Oh What A Beautiful Morning” Is The Opening Song To Which Famous Musical,Oklahoma,General,Where is capitol hill,Washington dc -General,What was neil young's first film,Journey through the past,General,What do breeders and trainers use to identify dogs,Nose prints,Music,Five Members Of The Pearson Family Formed Which Band In 1983,Five Star - History & Holidays,"In Halloween, what is the middle name of Michael Myers ",Audrey ,General,"What is made in shapes called finger, petticoat and thistle",Scottish Shortbread,General,Who wrote 'the female eunuch',Germaine greer -General,Which actor played Alain Chanier in The French Connection,Fernando rey,Sports & Leisure,Soccer: The New York _________.,Cosmos,Food & Drink,Which stout is Dublin world-famous for? ,Guiness  -General,"Because metal was scarce during world war ii, of what were the oscars made",Wood,Science & Nature,What is name applied to the study of soil?,Paedology, History & Holidays,In Which Year Did The Falklands Conflict Begin ,1982  -Entertainment,Who was the oldest member of The Beatles?,Ringo Starr,General,What Was The Last Carry On Movie In The Series Which Was Released In 1992,Carry On Columbus,General,What is the main unit of currency in Saudi Arabia,Riyal -General,What type of creature lives in a sett,Badger,General,Who is the only greek god in greek mythology with a mortal mother and an immortal father,Dionysus,General,"Who sang the song Raindrops keep falling on my Head"" in the film Butch Cassidy and the Sundance Kid""",B.j. thomas - History & Holidays,The St. Valentine's Day massacre took place in this city.,Chicago,General,John F. Kennedy Airport used to be called __________,Idlewild, History & Holidays,Who led the mongols?,Genghis Khan -Music,Which knight is conductor with the Berlin Philharmonic Orchestra?,Sir Simon Rattle,General,What license must Californians acquire before they can legally set up a mousetrap,A hunting license hunting license,General,A golfer can only do it for five minutes - what,Look for his lost balls -Science & Nature,For What Is Sn The Chemical Notation ,Tin ,General,Dimitri Mendeleyev is credited with the discover of what,Periodic Table, History & Holidays,How Old Was John F Kennedy When He Was Assassinated ,46  -General,If you travel by 'Shanks's pony' how do you go,On foot,General,Who Composed The Music To The Movies Jaws And Starwars,John Williams,General,What U.S. town was the site of the last battle between Britain and the US,New orleans -General,Collective nouns - An obstinacy of what,Buffalos,General,Which is the only animal other than humans that can get leprosy,Armadillos,Music,"Who Played Lead Guitar On George's ""While My Guitar Gently Weeps""",Eric Clapton - History & Holidays,In which country do people wear white clothes in order to have good luck during the new year? ,Brazil ,General,What is the capital of the Canadian province of British Columbia,Victor1a,General,By What Name Is Patrick Clifton Better Known?,Postman Pat -General,What metal in it's purest state is so soft that it can be molded with the hands,Gold,General,What is the tympanic membrane,Eardrum, Geography,In which country is Angel Falls?,Venezuela -General,What are the four colours of croquet balls,"Red, yellow, blue, black",Religion & Mythology,In China why were kites flown on the ninth day of every month ?,To banish evil,General,What does a traveler suffer from if he has Nostomania?,Intense homesickness -People & Places,Who was elected as MP for Belfast West in 1997? ,Gerry Adams ,General,What system do the blind use for reading?,Braille,General,What animal is represented by the constellation Monoceros,Unicorn -General,Which British prime minister said 'You never had it so good',Harold macmillan,General,In the opera Tosca what was Tosca's profession,Opera Singer,General,Dover is the capital of which U.S. state,Delaware -General,"In Greek mythology, who was the sister of Apollo",Artemis,General,"Arborio, patna and basmati are all types of what",Rice,General,What plants name means wild growing by the Volga,Rhubarb - Rha – Volga Barb - Wild -General,Dismus and Gestas were who,Robbers next to Jesus,Music,Which Track Did Charles Aznavour Re-Issue Three Times In The 1970's,The Old Fashioned Way,General,Who built The Flamingo hotel in Las Vegas,Bugsy Siegel -Science & Nature," The Dalmatian dog is named for the Dalmatian Coast of __________, where it is believed to have been originally bred.",Croatia,General,In what Australian state would you find Bunbury,Western australia,Music,Gloria Maria Fajardo Is The Real Name Of Which Singer,Gloria Estefan -General,What is 'sapodilla' a type of,Fruit,General,Who got his name because of a yellow-and-black striped shirt he wore until it literally fell apart,Sting,People & Places,For Which Club Does Paul Merson Now Play ,Aston Villa  -General,In Nicholas Nickleby name the headmaster of Dotheboys Hall,Wackford Squeers,General,What is the biggest criterion for prospective astronauts,Eyesight,General,"Who composed the opera, ""The Queen of Spades""",Tchaikovsky -General,Who sang 'friends in low places' and 'thunder rolls',Garth brooks,General,What is the larynx,Voice box,Food & Drink,From what is mead made? ,Honey  -General,What is a group of frogs,Army,General,What's the most common Christian name of U.S. presidents,James,General,If You Suffer From Cynanthropy What Do You Think You Are,A Dog -General,What is the fear of blindness in visual field known as,Scotomaphobia,Music,He Was Born Robert Walden Cassotto & Suffered From A Week Heart All His Life And Died Aged 37 Who Was He,Bobby Darin,Science & Nature,Which woman scientist was awarded two nobel prizes in the early part of the 20th century ,Marie curie  -General,Which Country Was Formally Known As Formosa?,Taiwan,General,"In the U.S.A., this food is known as 'granola'",How is it known in europe muesli,General,"A plotless work composed of pure dance movements, although the composition may suggest a mood or subject.",Abstract dance -People & Places,Which establishments don't have windows or watches?,Casino's,General,"Specifically, what is the westernmost point in the contiguous u.s",Cape,General,Who pulls Wayne over in Wayne's World?,Robert Patrick -General,"Who recorded ""Ferry 'Cross the Mersey"" in 1965",Gerry and the,General,By what name was the American William Cody better known,Buffalo bill,Art & Literature,"Captain Hook, Tiger Lily, and Tinker Bell are characters in what story",Peter pan -Religion & Mythology,Who is the greek equivalent of the roman god Pluto ?,Hades,General,What office supply item does Dilbert count,Staples,General,Collective nouns - a tribe or trip of what,Goats -General,In 1904 May Sutton Brandy was the first US woman to do what,Win Wimbledon singles,General,"Which Trilogy Of Movies 3rd Part Had The Title ""The Final Insult""",The Naked Gun,General,What is the approximate speed of light,"186,000 miles per second" -General,Who penned five of the ten best-selling children's books in u.s history by 1994,Dr seuss,General,"What Does The Letter ""P"" Stand For With Regard To The Medical Organisation ""BUPA""",British United Provident Association,General,Who sings the theme song to the television series Friends,Rembrandts -General,What is Indiana's state bird,Cardinal,Science & Nature,From which language does the term eureka come ,Greek ,General,Name the Belgian crime writer who created 'Inspector Maigret',Georges simenon -People & Places,Who Resigned After His Affair With Christine Keeler ,John Profumo ,General,"What, according the Mark Twain, is a stomach Steinway",Accordion,General,What takes a human 17 muscles to do,Smile -General,Who was the 4th U.S. president to be assassinated in office,John f. kennedy,Music,What record label issued the first Beatles LP in the US?,VeeJay Records,General,Give Me Any Year In The Life Of Joan Of Arc,1412-1431 -Tech & Video Games,Which brothers built a home-made supercomputer to calculate the digits of Pi ?,Chudnovsky,General,The site of Troy is in which modern country,Turkey,General,A meaningless distraction is a ___ herring.,Red -General,What former us vice president was the title star of meet the veep,Alben w,Food & Drink,"In Shakespear's Hamlet, which herb is said to be 'for rememberance' ? ",Rosemary ,General,The presence of greater than five digits on the hands or feet is called,Polydactylia -Music,What Inflatable Animal Featured In Pink Floys Famous 1977 Tour,A Pig,General,In the sport of archery what are the arrows usually made from,Aluminium tubes,General,Elba Island is located in what sea,Tyrrhenian sea -Music,"Who Sang On The Chemical Brothers Hit ""Setting Sun""?",Noel Gallagher,General,International dialling codes - What country has 33 as its code,France,General,Team a maryland t-shirt slogan that parodied 'virginia is for lovers' read what,Maryland is for crabs -General,"Named after a European country, which strait lies between Iceland and Greenland",Denmark strait,General,Sailors round the horn - off which country are they doing it,Chile,General,"""Broom"" Bromden an Indian narrates which famous book",One Flew over the Cuckoos Nest -General,What is the sum of 2741 + 3562,6303,General,Who was king arthur's wife,Guinevere, History & Holidays,Where Was The German Fleet Scuppered At The End Of World War I? ,Scapa Flow  -Music,"Who Sang To ""All The Young Dudes"" In 1972",Mott The Hoople,Religion & Mythology,Who is the greek equivalent of the roman god Discordia ?,Eris,Sports & Leisure,What nationality is Gabriela Sabatini?,Argentinian -General,What disease's sufferers were required to carry rattles to warn people of their approach in 15th century England,Leprosy's leprosy,General,"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.,Science & Nature,Who Was The First Woman To Fly Solo Across The Atlantic Ocean ,Beryl Markham  -General,Who sang the hit 'mister bass man',Johnny cymbal,Geography,What Is An Isthmus ,A Narrow Neck Of Land Connecting 2 Pieces Of Land ,Music,"Which group had three consecutive UK Christmas number ones in 1996, 97 and 98?",Spice Girls -General,"In Magnum PI,what was the name of the charter service that TC ran?",Island Hoppers, History & Holidays,"""Who wrote the Christmas story, """"The Snowman""""?"" ",Raymond Briggs ,General,Misophobia is the fear of,Being contaminated with germs -General,RCA and what other company launched the first vinyl records,Columbia,General,What Sidney Sheldon novel included nuns among its main characters,Sands of time,Music,David Robert Jones Is The Real Name Of Which Singer,David Bowie -General,Valentine Michael Smith is the central character in which book,Heinlein stranger in a strange land,General,Spirits of Salt is an alternative name for which acid?,Hydrochloric Acid,General,What is the worlds oldest snack food - 610 AD,The Pretzel -Geography,Before The Discovery Of Mount Everest What Was The Tallest Mountain In The World ,Mount Everest , History & Holidays,What Was Launched In 1960 & Was Closely Linked With The Sexual Attitudes Of The Swinging 60's ,The Pill ,General,On a pencil what do the initials HB stand for,Hard Black -Science & Nature, There are __________ that nest in trees. These creatures may spend their whole life without ever touching the ground.,Mice,Toys & Games,"In which game might a person have a ""full house""",Poker,General,What are the annual awards for the best billboards (obies) named after,Obelisks -General,According to English Church what's legal only tween 8 am 6 pm,Getting Married Canonical Law,General,What is another name for the beak of a bird,Bill,General,Do the bones of a pigeon weigh more or less than its feathers,Less -General,What was the name of Haile Salassie before he was crowned,Ras Tafarri,Music,Steve Jones Was Guitarist With Which Punk Band,The Sex Pistols,General,"From Which Plant Does ""Vanilla"" Come From",Orchid -General,In Australia what is it considered rude to do?,Wink,General,A young what is called a squeaker,Pigeon,Sports & Leisure,Which Athlete Was Known As The Buckeye Bullet ,Jesse Owens  -General,A semicircular area at the end of a church; in most churches it contains the altar. ,Apse,General,The worlds first opened in Los Angles April 2nd 1902 - what,Motion picture theatre,General,What is a group of storks,Mustering - History & Holidays,Who Released The 70's Album Entitled Hunky Dory ,David Bowie ,General,"Who was the male lead in ""Key Largo""",Humphrey bogart,General,What film introduced the song 'the first time ever i saw your face',Play -General,When was the photoelectric cell invented,1895,Geography,What country is directly west of Spain,Portugal,General,What product did farfel the dog advertise,Nestle's chocolate -Food & Drink,Spice that a bartender would dust your Brandy Flip with,Nutmeg,Sports & Leisure,Name The 4 Cities Beginning With The Letter A That Have Hosted The Summer Olympics? (PFE) ,"Athens , Amsterdam , Antwerp & Atlanta ",Religion & Mythology,He led the Mormons to the Great Salt Lake.,Young -Sports & Leisure,In Horse Racing What Is A 'Ringer''? ,Illegally Replacing A Horse ,General,What sport uses clowns to protect the competitors,Rodeo,General,Which French philosopher hid in alleys mooning passers by,Rousseau - History & Holidays,"""Which Oscar Winning Actor Played Scrooge In """"The Muppet Christmas Carol"""""" ",Michael Caine ,Art & Literature,What was the name of Mother Goose's son?,Jack,Science & Nature,Which Bird Is Renowned For Taking Over The Nests Of Other Species ,Cuckoo  - Geography,Which European country has the lowest population density?,Iceland,General,In which decade was Mohandas Karamchand Gandhi born,1860s (1869),General,What is the literal English translation for China’s Tiananmen Square?,Heavenly Peace -General,On which temperature scale does water freeze at 0 degrees and boil at 80 degrees,Reaumur,General,"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,General,Where were the 1980 Olympic games held,Moscow -General,Which British scientist invented a safety lamp for miners,Davy,General,Who did hank ketcham create,Dennis the menace,General,Jason sailed in the Argo but who steered the ship,Argus -General,Whats the third most common language in the world,Spanish,General,Which Dickens novel features Waxford Squears,Nicholas Nickleby,General,Annuit Coeptis - Novis ordo seclorum - mottos on what item,Reverse Great Seal USA -General,What country had the highest investments in china in 1937,Britain,General,Which U.S. President won the Nobel Peace Prize in 1906 for his mediation in the Russo-Japanese War,Theodore ROOSEVELT,Geography,Madrid and Lisbon are both located near this river.,Tagus -General,How many gloves did Michael Jackson wear?,One,General,September 22 is National what appreciation day,Elephants,General,What probably caused the craters on the moon,Meteors -General,"Common name for flightless, aquatic birds of the southern hemisphere",Penguin,Geography,In which state is mount st. helens ,Washington ,People & Places,Where is the biggest mosque in the world?,"Madina, Saudi Arabia" -General,"What holiday do spaniards celebrate with cries of ""feliz ano nuevo""",New,Food & Drink,A Skillet Is A Pan Generally Made From Which Material ,Cast Iron ,Music,Who Is The Lead Singer With REM?,Michael Stipe -General,"Whose motto is ""we learn by doing""",The 4 h club,Sports & Leisure,The Rockets Basketball Team & The Astros Baseball Team Both Hail From Which US City ,Houston ,General,What zodiacal sign is represented by a bull,Taurus -General,In which Fox TV show did Johnny Dep play an undercover cop in high school?,21 Jump Street,Science & Nature, A garter snake can give birth to __________,85 babies,Science & Nature,What Is An Angle Of Less Than 90 Degrees Known As ,An Acute Angle  -General,What is the flower that stands for: mature elegance,Pomegranate flower,Music,Name All 3 Andrews Sisters,"Patti, Maxine & La Verne",Science & Nature,"What are these: Ceres, Juno, Iris, and Flora?",Asteroids -General,Who got a gold single for the song Daniel in 1973,Elton John,General,"In 1960 Francis Gary Powers, flew into a row with Russia and was shot down allegedly for what",Spying,General,Whats the capital of Texas,Austin -General,"Whose first published book, in 1961, was 'Call for the Dead'",John le carre,General,Who played Julie's best friend in I still know what you did last summer?,Brandy, History & Holidays,The 1954 movie White Christmas was the first to be made using what new Paramount film format? ,VistaVision  -General,What is the product for the slogan 'the quicker-picker-upper',Bounty,General,Jimmy stewart is driven by revenge in the movie _____,Man who shot liberty,Science & Nature,"What vitamin complex includes thiamine, niacin and riboflavin ",Vitamin b  -General,Dilbert: Which test does the Gruntmaster 6000 fail,Armageddon,General,Which heraldic term means sleeping,Dormant,General,What did God create on the fifth day (both),Sea creatures and birds - History & Holidays,How many days after john f. kennedy's assassination was lee harvey oswald shot ,Two ,Geography,Where is the Holy Kaaba,Mecca,General,What is the common name of the disease Varicella,Chicken pox -Entertainment,What is Smokey Stover's job,Fireman,Food & Drink,What causes baker's itch? ,Yeast ,General,Which sea is sometimes called the Euxine Sea,Black Sea -General,What colour is viridian,Green,Music,"Who Had Their Only UK Top 10Hit With ""Love Missile F1-11""",Sigue Sigue Sputnik, Geography,Which river contains the most fresh water?,Amazon -General,"What was the Oscar-winning theme song for ""Breakfast at Tiffany's""",Moon,Music,"In Which Musical Would You Hear The Song ""Edelweiss""",The Sound Of Music,Sports & Leisure,Whats the main feature of a speedway motorbike?,No Brakes - Geography,What is the basic unit of currency for Latvia ?,Lats,General,If you suffered Harpaxophillia what turns you on,Being Robbed,Music,Which Group Were “All Out Of Love” In 1980?,Air Supply -General,What word may be used to refer to a group of gnats,Horde,General,Which dinosaurs name translates as double beam,Diplodocus,General,"The Steps Singer Lisa Scott Lee Is Married To Johnny Shentall"" Of Which Reality TV Show Band Was He A Member",Hear Say -Food & Drink,"Which citrus fruit, possibly a combination of sweet lime and sour orange, grows predominantly in Italy and is used in Earl Grey tea and eau de Cologne ? ",Bergamot ,General,Which Nigerian won the Booker Prize in 1991 with 'The Famished Road',Ben okri,General,Maniaphobia is the fear of,Insanity -General,"The city of Mt. Vernon, Washington grows more ______ than the entire country of Holland",Tulips,General,What is the name of the belief in the existence of many gods or divine beings,Polytheism,Music,Gary Numan Sang An 80's Hit About Which Mode Of Transport,Cars -General,Who wrote the book The Amazing Mr Ripley,Patricia Highsmith,General,"What time would you watch ""Late Night With David Letterman"" on NBC?",12:30-1:30,General,What is a mamba,A snake -General,"In 1965, lyndon b johnson enacted a law requiring cigarette manufacturers to put what on their packages",Health warnings,General,What was the statue of liberty originally named,Liberty enlightening the,General,What do the letters 's.a.m' mean in sam missiles,Surface to air missiles -General,Who controlled canada's hudson bay company,British,General,Whose latest album is G.O.A.T. (Greatest of all time),L l cool j,General,The word Matrix in the Bible means what,Womb -General,What singer's February 6th birthday is a national holiday in Jamaica?,Bob Marley,General,Complete the name of the 1970s group Bachman Turner ___,Overdrive,Science & Nature,Deoxyribonucleic acid is better known as __________.,DNA -General,This band was named band of the year in America in 1969?,Creedence Clearwater Revival,Music,"Who Had A Hit With ""Kiss On My List""",Hall & Oats,General,Who is the egyptian goddess of love,Isis -Music,"Which Band Had Hits With ""These Dreams"" & ""What About Love""",Heart, History & Holidays,In 1911 Roald Amundsen became the first person to reach where ?,South Pole,General,"Roy orbison says 'you have to pick up your feet, you've got a deadline to meet, because you're ______'",Working for the man -General,Sir Walter Raleigh found what odd lake in Trinidad,Lake of Tar or Asphalt,General,"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,Music,How many keys are on a standard concert piano?,88 -General,The sale of what counterfeit delicacy outranged the French,Truffles - White dyed Black,General,Who was candice bergen's father,Edgar bergen,General,Ariztid Olt was what early name used by a famed actor,Bela Lugosi -General,Which Band Took Their Name From The Villan In The Film Barbarella,Duran Duran,General,What is the flower that stands for: death,Cypress,Food & Drink,From what German region do Hock wines come? ,The Rhine  -General,Beverly Hillbillies Bank managers secretary - full name,Jane Hathaway,Entertainment,"Name the singer - songs include ""Me & Bobby McGee, Mercedes Benz""?",Janis Joplin,General,Who is known as the high priest of revenge,Philip seldon -General,Who did Richard Nixon call the ayatollah of the press corps,Sam donaldson,Music,On Which Street Did Elvis Take A Walk According To The Lyrics Of  “Heartbreak Hotel”,Lonely,Geography,What Is The Capital Of China ,Beijing  -General,Any of several soft metal alloys used to line bearings and bushings in order to reduce friction,Babbitt Metal,General,"""The Coffee Cantata"" was written by who?",Johann Sebastian Bach,General,It's now the Birmingham Royal Ballet but it used to be what,Saddlers Wells Opera -General,What principality has the house of grimaldi ruled since the middle ages,Monaco,General,What do the quarters of a hot cross bun symbolise,Four Seasons,General,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 -Music,"Which Musical Features The Song ""Sixteen Going On Seventeen""",The Sound Of Music,General,Is the product of Greece and the Greek colonies from about 1100B bc to the 1st century bc,Greek Art and Architecture,General,What is the sum of 32 + 49 + 765,846 -General,As A Child Jonathan Ross Appeared In A TV Ad Advertising What Product,Rice Krispies,General,FITA are the governing body of what sport,Archery,General,Which West Indies and Hampshire fast bowler died of cancer in 1999,Malcolm marshall -Music,"What Have The Singles Relax, God Save The Queen , I Want Your Sex All Got In Common",They Were All Banned By The BBC,General,Fill in the blank: birds of a ______,Feather,General,Felix Salten wrote which Disney cartoon,Bambi -Religion & Mythology,Who founded the Salvation Army?,William Booth,General,Of what country is Tripoli capital,Libya,General,Which country grows the most potatoes,Russia -General,Whose legs were shown in place of julia roberts' legs in 'pretty woman',Goldie hawn,General,In which country is the importation of bubble gum illegal?,Singapore,Music,What Was Diana Ross's Last Hit With The Supremes?,Someday We'll Be Together -Science & Nature,PC World Have Announced That They Will No longer Be Selling What Due To Lack Of Demand ,Floppy Disks ,General,What was a ducat,Coin,General,Gregorys powder is a type of what,Laxative -General,What would a Scotsman do with a spurtle,Eat porridge (it’s a spoon),General,"In 1962, for what did britain and france sign an agreement to build together",Concorde,General,In what U.S. state is Fort Knox,Kentucky -General,Who ran through the streets naked crying Eureka,Archimedes,General,British Standard BS2724 might protect what body part,Eyes - Sunglasses,People & Places,Which Is The Only US State That Has A Name Ending With Three Vowels? ,Hawaii  -Music,What Did Susan Maughan Yearn To Be According To Her 1962 Hit,Bobbys Girl,General,Helena Rollason Was The First Female PresenterOf Which Long Running Tv Show?,Grandstand,Science & Nature,Rimsky Korsakov Composed A Short Piece Of Music About Whose Flight ,The Bumblebee  -General,What was the only nation to register zero births in 1983?,Vatican City, History & Holidays,What organization was founded by the rev. jerry falwell ,Moral majority ,General,Where did De Gaulle flee to after France surrendered to germany,Britain -General,Who created the comic strip 'Doonesbury',Garry trudeau,Food & Drink,Individual bananas are called ?,Fingers,General,The Selenas Valley was the rejected title what Steinbeck book,East of Eden -General,"The numbat, quokka and yapok are all types of what",Marsupials,General,What do you call a person whose iq is between 110-120,Superior,General,What was the title of the first album by U2?,Boy -General,What is a dwile,A Dishcloth,General,According to the proverb which fruit tastes sweetest,Forbidden,General,"He produced the Beatles ""Sgt. Peppers Lonely Hearts Club Band""",George martin -General,How many semihemidemisemiquavers are there in a breve,256,General,The Eiffel Tower is how many feet high,984 feet,General,A thin pancake with savoury or sweet filling,Crepe -Music,Which South coast Town Do The Levellers Come From,Brighton, Geography,What is the capital of Spain ?,Madrid,Art & Literature,Who Composed The Ballet (Romeo & Juliet) ,Prokofiev  - Geography,In what state is Concord?,New Hampshire,General,Hypsiphobia is the fear of,Height,General,Who is the greek counterpart of jupiter,Zeus -Music,"Who was ""Giving It All Away""",Roger Daltrey,General,Which album released on august 11 1969 was a collaboration between donovan and jeff beck,Barabajagal,General,"In 1865, Nathan Forrest became the first leader of which American secret society",Ku klux klan -General,Who wrote the novel Tom Jones in 1749,Henry Fielding,General,"Who is the anti-heroine of Thackeray's ""novel without a hero""",Becky sharp,General,What is a female calf called?,Heifer -General,Who painted the portrait La Gioconda,Leonardo da vinci,General,"Who said ""The hunger for love is much more difficult to remove than the hunger for bread.""?",Mother Teresa, History & Holidays,Who Released The 70's Album Entitled Aja ,Steely Dan  -Science & Nature,By what chemical process do plants manufacture food,Photosynthesis,General,The name of the underworld in Greek mythology,Tartarus,General,Name the first automobile racetrack in america,Indianapolis motor speedway -Sports & Leisure,Which Football Team Was The First To Install An Artifcial Pitch ,Queens Park Rangers ,General,"Who wrote ""Farwell to Arms""",Ernest hemingway,Entertainment,Which German duo have sold over 85 million records?,Modern Talking -Music,Who Declared In 1989 That They Would Rather Jack Than Fleetwood Mac,The Reynolds Girls,General,Philip K Dick's novel 'Do Androids Dream of Electric Sleep was made into what film,Blade runner,General,What tv show did john lennon and yoko ono co-host in 1972,Mike douglas show -Art & Literature,What book is the film Blade Runner based on ?,Do Androids Dream of Electric Sheep,General,The Dick Test Is Used To Test A Persons Immunity Against Which Disease?,Scarlet Fever,Sports & Leisure,Where is Capitol Hill?,Washington DC -General,Who wrote Catch 22 (both names),Joseph Heller,General,Kleenex tissues were originally intended as what in 1915,WW1 Gas mask filters,General,What is the element symbol for hydrogen,H -People & Places,After Whom Is The Teddy Bear Named ,Theodore Roosevelt ,General,What sort of creature is a tarantula hawk,Wasp,Geography,In Which London Park Would You Find Birdcage Walk? ,St James's Park  -General,Who owned and lived in the castle Joyous Guard,Lancelot,General,What is the more popular name for the plant convallaria majalis,Lily of the valley,General,The 1st U.S. minimum wage law was instituted in what year,1938 - Geography,What is also known as Amundsen Scott Station?,South Pole,General,When is Superman's birthday,29th February,General,Pal Hewson became more famous as who,Bono - singer in U2 -General,In what field of study are 'flying buttresses',Architecture,General,V.O. and Pedigree whiskeys made by what Canadian company,Seagrams,Music,"OMD's ""Enola Gay"" Was About A Famous World War 2 ""Peace Activist"" Or ""Bomber""",Bomber -Music,Who Hammered Out A Classic Animated Video In 86 And Got All Steamed Up In 93,Peter Gabriel,General,Ejaculation comes from the Latin meaning what,Throwing Out,General,"""Erse"" is another name for which language",Gaelic -Mathematics,An integer that is greater than 1 and is divisible only by itself and 1 is known as a(n) _______.,Prime,General,Who was the governor of New South Wales in 1808,Captain William Bligh,Science & Nature,What Do The Initials E.C.G Stand For ,Electrocardiograph  -Mathematics,Approximately how many inches are there in one meter,39,General,What is the only bird that can swim but can't fly,Penguin,General,What's the last name of the most famous ornithologist,Audubon -General,How fast does the tip of a rotary mower travel,200 km/hr,General,What did victorian women bathe in to try to enlarge their breasts,Strawberries,General,What is the main ingredient of the French dish cassoulet,Haricot beans -General,Who founded the boy scouts,Lord baden powell,General,The Pampero blows over which mountains,Andes,Entertainment,What was Daffy Duck's favorite insult?,You're dispicable! - History & Holidays,"The three wise men allegedly brought gifts of Gold, Frankincense and Myrrh, spell Myrrh ",Myrrh ,General,"In poker, what are five cards of the same suit",Flush,General,The word gospel from Anglo Saxon literally means what,Good Tidings -General,In Chicago it is illegal to eat in a restaurant that is what,On Fire,Music,Which Group Was Formed In The 1980's & 90's By Evan Dando,The Lemonheads,General,"Who was the Egyptian god of the Nile, depicted in human form with a beard, large belly, & a crown of aquatic",Hapi - Geography,What is the capital of Guyana ?,Georgetown,Music,"Which Video From David Bowies ""Lets Dance"" Was Censored For Nudity",China Girl,General,Rhabdophobia is the fear of,Being severely punished beaten by a rod -Food & Drink,Hazelnut liqueur named for the mysterious monk that made it 300 years ago,Frangelico,Entertainment,"With which period in music do we associate with composers such as Bach, Handel and Vivaldi?",Baroque Period,General,At which sport do Oxford and Cambridge Universities compete for the Bowring Bowl,Rugbyunion - Geography,What is the basic unit of currency for Israel ?,Sheqel,General,"In the old Dick and Jane 'Primary Reader' school books, what was the name of the little sister",Sally,General,What is Lygeristia (a limiting thing),Arousal in darkness -General,Tom hallick was the first male host of which show,Entertainment tonight,General,What U.S. state includes the telephone area code 603,New hampshire,General,What is the Capital of: Luxembourg,Luxembourg -General,Who received the first ever Gold Disc,Glen Miller – Chatanooga cho cho, History & Holidays,What was the gift from the gods in the movie The Gods Must Be Crazy? ,A coke bottle , History & Holidays,What Tax Was Levied Between 1695 & 1851? ,Window Tax  -General,Clamart means what food will be used in the dish,Peas,General,From what material is the ring made in Sumo Wrestling,Clay,Science & Nature," The ring_tailed __________, a primate found only in Madagascar, meows like a cat.",Lemur -General,What is the fear of technology known as,Technophobia,General,Rolf Harris was Australian junior champion at what,Swimming – Backstroke, History & Holidays,Which country was first to operate an old age pension scheme? ,Germany (1891)  -General,"Who was born when pluto, the astrological sign for death, was directly above dallas, texas",John f kennedy,Music,Taco Were Putting On The What,Ritz,General,"Who originally recorded ""friday on my mind""",Easybeats -People & Places,Which Argentinean General Ordered The Invasion Of The Falkland Islands ,General Galtieri ,General,Fish: what is morone mississippiensis,Yellow bass,General,In The Italian Job Noel Coward played what character in prison,Mr Bridger -Science & Nature," Pigs, walruses, and light_colored horses can be __________",Sunburned,General,Where are the deepest mines?,South Africa,General,To what type of animal does the adjective 'ovine' refer,Sheep -Science & Nature,What russian physiologist went to the dogs to write conditioned reflexes ,Ivan pavlov ,General,What colour is a crabÆs blood?,Blue,General,Who's head did Courtney Cox say was on her body in Scream 2?,Jennifer Aniston -General,Walter Gropius founded what art / design movement,Bauerhus in Germany,General,Which German town is called Aix-la-Chapelle by the French,Aachen,General,The US eat most ice cream per capita what country second,New Zealand -Tech & 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",General,Which cricketer played in 52 test matches and averaged 99.94 runs,Sir don bradman,General,Any of various viruses that are parasites of bacteria,Bacteriophage -People & Places,Which Cricketer wenbt by the Name of Beefy ,Ian Botham (Beefy Botham) ,General,What did Simon of Cyrene do in The Bible,Carry Christ's cross, History & Holidays,Which best selling American writer wrote and directed the sci-fi film Westworld ? ,Michael Crichton  -General,Smell of lavender liquorice chocolate doughnuts increase what,Blood flow to penis,General,What percentage of Antarctica is ice?,98%,General,Which people invented the compass,Chinese -General,"In '64, whom did J Edgar Hoover call America's ""most notorious liar""",Martin luther king jr,General,What religious elements is voodoo a mixture of,Roman catholicism,General,What product was originally called drybak,Duct Tape -General,What was the first fighting vehicle,War chariot, Geography,What is the world's highest city?,Lhasa,General,Soundman Who was the king of England during the American Revolution,George iii -General,Name the Shakespeare play with a city in Greece in name,Timon of Athens,General,Who invented the ferris wheel,Ferris, History & Holidays,Who Was Ousted By Corazon Aquino In 1986 ,Ferdinand Marcos  -General,If a wine is described as alcooleux what has it got,Overwhelming alcohol,General,Ixchel is the mayan goddess of ______,Earth and moon,General,What nationality is the singer Celine Dion,Canadian -General,What did the word hussy originally mean,Housekeeper,General,What does a librettist do,Write words to opera,Music,What Did Corey Hart Wear At Night,Sunglasses -General,What fish can hold objects in its tail,Sea Horse,General,An analgesic and anti-inflammatory drug,Iburofen, History & Holidays,"Who Had An 80's Hit With The Song 'Paranomia,' ",Art of Noise feat Max Headroom  -General,Jupiter was the roman god of ______,Light and sky,Music,What was the title of the album by the Woodpeckers?,Emmerdance,General,Oenophobia is the fear of,Wines -General,For how much did an american urologist buy napoleon's penis,Three thousand,General,What's excision of the breast called,Mastectomy,General,"""The Voyage of The Beagle"" told of which scientist's discoveries",Charles Darwin Darwin -General,In the Modern 1896 Olympics what was the first event decided,Triple Jump,General,Onassis driving: what country is identified by the letters ma,Morocco,General,What was the name of the declaration in 1981 which created the SDP political party?,Limehouse Declaration -Sports & Leisure,Which former British world boxing champion has the middle name Livingstone? ,Chris Eubank ,General,A lump of pure gold the size of a matchbox can be flattened into a sheet the size of what,A tennis court, History & Holidays,"""On the Single """" Do They Know It's Christmas """" Only One Person Performed On Both The Original And The 20 Year Remake Band Aid 20, Who Was It?"" ",Bono / U2  -Music,What Was The Name Of Singer Charlotte Church's Debut Album,Voice Of An Angel, History & Holidays,Who was crowned King of England at Westminster Abbey on Christmas day 1066 ,William The Conqueror ,General,What pop star served a football apprenticeship with Brentford,Rod Stuart -General,What was the Beatles first UK top ten single,Please-please me,Entertainment,Which movie is the highest grossing movie of all time?,Titanic,General,209 Popes have been Italian which country has the 2nd highest,France - Geography,"What country was the setting for ""Casablanca""?",Morocco, Geography,What is the basic unit of currency for Tajikistan ?,Rouble,General,A golden _____ removed from King Tut's tomb was still sharp enough to be used,Razor -Music,Did Elvis Presley Ever Tour The Uk,No,Science & Nature,What is the symbol for iron in chemistry,Fe,General,What's the Cray-2 immersed in,Subzero flurocarbon fluid -General,Krusty the Clown and Chandler in Friends have an extra what,Nipple,General,Hugh O'Brian played the lead in what Old Western series,Wyatt Earp, History & Holidays,Who died three days before Groucho Marx?,Elvis Presley - Geography,Which is the only sea below sea level?,Dead Sea,General,In Greek mythology who created man,The demigod Promethus,General,Who speak a language called Mudderschproch,Amish (Pennsylvania Dutch) -Sports & Leisure,Ryan gigs's dad was a professional in which sport ,Rugby League ,Music,Which 3 ZZ Top Music Videos Featured The Infamous Trio Of Highly Sexed Vamps,"Gimme All Your Lovin, Sharp Dressed Man, Legs",General,Which instrument did the Jazz musician Dizzy Gillespie play,Trumpet -General,"It's a mystery to me, the game commences for the usual fee ___"" What's the Dire Straits song title",Private Investigations,General,With which 17th century plot was Francis Tresham associated,Gunpowder plot,General,"Who were the famous feuding hillbilly families in Pike County, Kentucky",Hatfields & mccoys -General,According to The Beano Comic Strip Who Is Dennis The Menace's Favourite TV Hero?,The Lone Ranger, History & Holidays,"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? ",ZZ Top,General,What plant is sometimes called the poor mans weatherglass,Scarlet Pimpernel -General,"What is 9 metres high, 7 metres wide and 2,500 kilometres long?",Great Wall of China,General,Which 1963 Film Musical Was Inspired By The Hysteria Of Elvis Fans Following His Induction Into The Army,Bye Bye Birdie, History & Holidays,What was rudolf hess' sentence at the nuremburg trials ,Life Imprisonment  -General,"Which product used the slogan: ""keep that schoolgirl complexion""",Palmolive,General,If you were studying Iatrology what would you be studying,Science of Medicine,General,Who wrote the post nuclear war novel On the Beach,Neville Schute -General,What colour is the bull on an archery target,Gold,Science & Nature,A thread used in surgery to tie a bleeding blood vessel is called a(n) _________.,Ligature,General,Who played william wallace in 'braveheart',Mel gibson -General,Mexico's equivalant to the dollar is ______,Peso,General,"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,Sports & Leisure,How Many Hurdles Are There In The Men's 110metres Hurdles? ,10  -General,What was first sold as a cold cure - not what we use it for now,Alka-Seltzer,General,Where did venetian blinds originate,Japan,General,What is a female sheep,Ewe -General,According to a survey what people have the most hated job UK,Double Glazing Salesmen,General,"According to the proverb, what should not be washed in public",Dirty linen,Music,Which 2 Motown Artists Recorded Duets With Paul McCartney,Stevie Wonder & Michael Jackson -General,What is the medical term for the cartilage in the nose,Septum,General,In what film were Aldeberan Antares Atair Rigel seen,Ben Hur - horses on his chariot,Entertainment,Miss Buckley is secretary to what commanding officer,General halftrack -General,Acinonyx Jubatus is what big pussy,Cheetah,Geography,What southern u.s. city was named for king charles ii ,Charleston , Geography,Which English county has the smallest perimeter?,Isle of Wight -Entertainment,About which family are the Godfather films?,Corleone,General,Where do love birds Tom Hanks and Meg Ryan Have their fateful meeting at the end of the film Sleepless in Seattle ,The Empire State Building , Geography,What is the basic unit of currency for Malawi ?,Kwacha -General,A P Herbert editor of Punch once wrote a cheque on what,Side of a cow,General,Advocating or practising total abstinence from alcohol,Teetotal,General,What is the fear of surgical operations known as,Tomophobia -General,"Krone, yuan and ringgit are all units of what",Currency,General,When were bank holidays first indroduced into Britain,1871,Music,From Which Band Did The Beatles Recruit Ringo Starr,Rory Storm & The Hurricanes -General,Which Country Was The First To Produce Steel?,India,General,What animal is the symbol of long life in Korea,Deer,General,What movie actor was (among other jobs) a bridge painter,Paul Hogan -Food & Drink,Which countrys does one associate with the following foods or drinks: 'Kvass' ,Russia ,General,What disney film stars bette davis,Watcher in the woods,General,This world leader was born in 1870?,Lenin -General,Methyphobia is the fear of what,Alcohol,General,What film marked james cagney's return to the screen after 20 years,Ragtime,General,How many toes does the rhea have,Three -Science & Nature,What is the most essential tool in astronomy?,Telescope,General,This is the Southeast Asian method of dying fabric using wax to create designs.,Batik,General,"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 -Art & Literature,"Meaning 'fool the eye' in french. In painting, the fine, detailed rendering of objects to convey the illusion that the painted forms are real and three-dimensional.",Trompe l'oeil,General,Why did pirate wear earrings,Improve their eyesight, History & Holidays,In 1979 which English art historian was exposed as a one-time Soviet spy and stripped of his knighthood? ,Anthony Blunt  -General,Something arousing sexual desire,Aphrodisiac,General,Pedophobia is the fear of,Children,Entertainment,"Crosby, Stills and Nash's debut album included a song about a girl and the colour of her eyes. Name that song.",Sweet Judy Blue Eyes - Geography,Santiago is the capital of ______?,Chile,General,Which century saw the construction of the Taj Mahal,Seventeenth,General,What nationality is gabriela sabatini,Argentinian -General,"Princess Victoria, Duchess of Vastergotland, is the heir presumptive to the throne of which European country",Sweden, History & Holidays,"Who as Lord Protector of England, banned Christmas in 1647 ",Oliver Cromwell ,General,A kind of expanded polystyrene,Styrofoam -General,What cities gothic cathedral started 1386 was completed 1805,Milan,General,What's a natatorium,Swimming pool,General,Introduced in 1964 name Barbie's sister,Skipper -General,What began 24 Jan 1848 thanks to John Marshall at Sutters mill,The Gold Rush in California,Geography,Name the largest river forming part of the U.S. _ Mexican border.,Rio grande,General,In Britain since 1300 gold and silver hallmarked what in 1975,Platinum -General,"Decorations what shadow team driver was killed testing, prior to the 1974 south african grand prix",Peter revson,General,In Britain Stanstead airport was formally opened in which year,1991,Sports & Leisure,Which was the second club to win the English Premier League? ,Blackburn Rovers  -Entertainment,Current leader of Justice League America,Wonder woman,General,What colour is a Grasshoppers blood,White,General,Christian Commercial Travellers' Association of America are who,Gideons -General,What does it mean in the UK if a telephone number starts 0800,It’s a free call - toll free,General,How many consecutive years was the ed sullivan show on tv,23,General,What is the proper name for a watch pocket,Fob pocket -People & Places,"10 Matthew Street, Liverpool is the address of which famous venue? ",The Cavern ,Food & Drink,What Is Borsch ,A Russion Soup Including Beetroot ,General,Phil Collins appeared in which Spielberg film with Robin Williams?,Hook -Sports & Leisure,"Steve Davis reached every final of the Snooker World Championship between 1983 and 1989, but who were the two players who beat him (PFE) ? ",Dennis Taylor & Joe Johnson ,Music,"What Song Features The Lyric ""Please Please Tell Me Now""",Is There Something I Should Know,Religion & Mythology,"In Egyptian mythology, what is the life force called?",Ka -General,Which stretch of water separates Sardinia and Corsica,Strait of bonifaccio,General,"Who was kidnaped on the night of March 1, 1932?",Charles Lindbergh Jr,Geography,Which is the most northerly town in the British Isles? ,Lerwick  -General,"Countries of the world:north eastern South America, the capital is Georgetown",Guyana,Toys & Games,What bowling term means three straight strikes,Turkey,General,"In the nursery rhyme, Simple Simon met a pieman going where",To the fair -General,February 1999 what was the fastest growing religion in the US,Sikh,General,In which English county is Tolpuddle,Dorset,General,Who plays 'Norman Bates' in Hitchcock's classic thriller Psycho,Anthony perkins -General,Emerald is the birth stone for which month,May,General,Who had a No. 1 hit record in 1964 with 'Don't Throw Your Love Away',The searchers,General,Morris Frank brought Buddy from Swiss in 1928 what was Buddy,First Seeing eye dog in USA -General,What make of car is a carrera,Porsche,Food & Drink,Cognac (brandy) and white creme de menthe make up which type of cocktail ,A Stinger ,General,-ologies: Study of the history and development of words?,Etymology -General,What was h.g wells' first novel,The time machine,Geography,Which state has the most hospitals,California,Music,Silk & Steel Went To No.1 In 1986 For Which Family Act,Five Star -General,The square root of 1 is,1, History & Holidays,What employment did patricia hearst claim when booked ,Urban terrorist ,General,What 17th century explorer was buried with a pipe and a box of tobacco,Sir -Science & Nature,Which Gland Produces Insulin ,The Pancreas ,General,Who owns the licensing rights to all star wars merchandise,George lucas,General,"What country is bounded in part by the Indian Ocean, Coral and Tasmen seas",Australia -Sports & Leisure,Which Super Bike Champion Acquired The Nickname 'The Lion King''? ,Carl Fogarty ,General,What recently independent country was formerly known as greenland,Kalaalit,Music,Which Superstar Was Subject To Child Abuse Allegations In 1994,Micheal Jackson -General,"What don't Gary and Wyatt do when they take a shower with Lisa in ""Weird Science?""",Take off their pants,General,"In 1964, who recorded ""baby love""",Supremes,General,"In Greek mythology, who defeated atlanta in a footrace",Melanion -General,The study of angles & their properties is called,Trigonometry,General,A dance with a fast or moderate tempo.,Allegro,General,What Was The First Single To Sell Over A Million Copies In The UK,Bill Haley / Rock Around The Clock - Geography,In what country is the currency named after the water being called the Pula?,Botswana,General,What was Potsie's last name on Happy Days,Weber,Music,Which Pop Duo Featured In All 3 Of Tottenham Hotspur’s UK Top Ten Hits,Chas & Dave -Music,"Dion DiMucci Headed A Group Named After An Avenue In The Bronx, What Was The Group Called",The Belmonts,General,What does a phillumenist collect,Matchbox labels,General,In The Classic 1969 Blue Peter Clip An Elephant Decides To Relieve Itself On Live TV What Was It's Name?,Lulu -General,All hospitals in Singapore use what brand name product,Pampers,General,What is the most common name for Playboy centrefolds,Susan,General,Which insect is the most eaten as a delicacy,Grasshopper -General,"Ernest Hemmingway, Oscar Wilde, Ranier Maria Rilke - Common",Mothers made them Crossdress,Science & Nature,What Animals Name Literally Means 'Man Of The Forest'? ,Orang-utan ,General,Which of Henry the Eights wives was the widow of elder brother,Catherine of Aragon -General,How many squares on shogi (japanese chess) board,81,Science & Nature, The mudskipper is a fish that can actually __________,Walk on land,Technology & Video Games,What does the acronym HTML stand for?,Hyper Text Markup Language -Sports & Leisure,What Sport Do The Harlem Globetrotters Play ,Basketball ,General,"Americans spend more than how much a year on cosmetics, toiletries, beauty parlors & barber shops",52 million,Geography,What is the most populous city in North America,Mexico -Food & Drink,What kind of nuts are used in marzipan ,Almonds ,General,In Star Wars what is the Emperors last name,Palpatine,General,Where did george harrison discover gold,Witwatersrand -General,Which Actor's Auto Biography Was Called “The Moon's A Balloon?,David Niven,General,What is canis lupus,Wolf,Entertainment,"Bugs always finds himself at the wrong end of a gun, usually toted by either Elmer Fudd or who?",Yosemite Sam -General,Writing with light is the literal meaning of what word from Greek,Photography,General,Who were the twin sons of zeus and leda,Castor and pollux,Music,Men At Work Came From A Land Down Where,Under - History & Holidays,How did John Belushi die? ,Drug and Alcohol overdose ,Music,In 2000 Oxide & Nautrina Had A Hit With The Theme To Which Saturday Night TV Series?,Casualty,General,Which silent film actor was known as 'The Great Stone Face',Buster keaton -General,What Ferrari model was named after the makers son,Ferrari Dino,Geography,The Auckland Islands belong to which country,New zealand,General,What is the chemical symbol for silicon,Si -General,Who wrote the famous poem daffodils,William wordsworth, History & Holidays,Who was responsible for the infamous assination attempt on then President Reagan? ,John Hinkley Jr. ,Music,"Who Had A Hit With The Song ""Forever Now"" In 1984",Level 42 -General,Arthur Flegenheimer became notorious under what name,Dutch Schultz,General,In superstition if you marry on Saturday you will have what,No luck at all,General,Who is married to valerie bertanelli,Eddie van halen -General,What is the term for the brain's nerve cells,Neurons neuron,General,"Football Team, cleveland ______",Browns,General,In a church what is a galilee,Porch -General,What is a group of this animal called: Pheasant,Nest nide bouquet,General,What is Supergirls Kryptonian name,Kara,General,The cortex & medulla are parts of what organ,Kidney -General,A brown crayon is what color,Brown,General,"Who said ""The die is cast"" (on crossing the Rubicon)",Julius Caesar,General,Microphobia is the fear of,Small things -General,Which waterfall has the highest drop in the world,Angel falls,General,Born January 21st to February 19th what star sign are you,Aquarius,General,"Who portrayed the uncle on tv's ""family affair""",Brian keith -General,How many strigs can have a banjo,Four five,General,What's the capital of the central african empire,Bangui,General,What date was V E day,May 8 1945 -Geography,"Which country administers South Georgia, a last stop before Antarctica?",Great britain,General,Which group believes in The Great Architect of the Universe,Freemasons,Science & Nature,What chemical element gets is name from the greek word meaning 'stranger'?,Xenon -General,Who featured on the cover of the first Rolling Stone magazine,John Lennon,General,The worship of a material image that is held to be the abode of a superhuman personality,Idolatry,General,Who Was The First Ever Person Ever To Sing A James Bond Theme,Matt Munroe -General,What is a Charollais,Type of Cattle,General,What is specifically defined as 1/48th of an inch,A Hairsbreadth,General,Which cereal diseases can cause food poisoning and gangrene of the fingers if consumed,Ergot -General,Who played Miss Marple in 6 films (both names),Margaret Rutherford,General,What part of las vegas has been designated an official scenic byway,The, History & Holidays,"Three of Santa's reindeers have a name beginning with the letter D, Dasher, Dancer and who else ",Donner  -General,Old Arabic word for palm of the hand is what in modern sport,Racket,General,Who drove the McLaren to its first grand prix victory in 1968,Bruce McLaren himself,Music,Who Wrote White Christmas While Sunning Himself In Californa,Irving Berlin -General,What's the term for the geographical dividing line N/S Korea,38th Parallel,General,What is the literal meaning of Cenotaph,Empty Tomb,General,In what month is Bastille Day,July -General,"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,General,An IVP is used to detect what medical condition,Kidney Stones Intravenuspylorigram, History & Holidays,Which Islands In The Indian Ocean Gained Their Independence From Britain In 1976 ,The Seychelles  -General,This poisonous gas is in the exhaust fumes from cars,Carbon monoxide,General,What country has the third most satellites in orbit,France,Art & Literature,Which is the largest museum in the world?,Louvre -General,Marilyn Louis born 1922 changed her name to what star of 40s,Rhonda Fleming,General,What is switching letters (e.g saying jag of flapan instead of flag of japan),Spoonerism,General,The Blue Mountains can be found on which Caribbean island,Jamaica -General,In the Beatles White Album who was Martha my Dear,Paul McCartney's Sheepdog,General,"Which French artist, in 1883, gave up his job as a stockbroker to paint full time",Paul gauguin,General,What is keranothenatophobia,Fear of artificial satellites falling on one's head -Music,Which ex-Animal was Jimi Hendrix's manager?,Chas Chandler,General,A bantling is a(n)___.,Young child, History & Holidays,When does Santa deliver presents? ,Christmas Day  -Entertainment,What is the name of Duddley Do-Right's horse?,Horse,Geography,"The _______________ comprises an area as large as Europe. Its total land mass is some 3,565,565 square miles.",Sahara desert,Science & Nature,What Is The Scientific Study Of Birds Called? ,Ornithology  -General,"Who was the authorship of ""Jogfree of Canada"" credited to",Charlie farquharson,General,In the original Star Trek series name Spock's mother,Amanda,Music,"Who Recorded The Albums ""Cats Without Claws"" & ""Another Place In Time""",Donan Summer -General,The French army were the first to use this type of communication,Semaphore,General,What is India's National Flower,Lotus, Geography,What is the capital of Cuba ?,Havana -General,Which country was the proposed target for the German 'Operation Ikarus' in World War II?,Iceland,Food & Drink,What Is The Name Of The Baked Batter Portions Traditionally Served With Roast Beef In Britain ,Yorkshire Pudding ,General,Alkaloid derived from morphine and used as a pain killer,Codeine -General,What was the name of the newspaper published by charles foster kane,Enquirer,Science & Nature, __________ can travel up to 40 miles per hour.,Sharks,General,What country had the first banknotes,Sweden China paper not banknotes -General,In Charleston by law carriage horses must have what,Diapers on,Science & Nature,Hydrogen Hydroxide is more commonly known as what?,Water,General,Which Very Famous Person In World History Married “Clementine Ogilvy Hozier” In 1908?,Sir Winston Churchill -Music,What Is The Very First Word To The Tammy Wynette Classic “Stand By Your Man”,Sometimes,General,"After Russia and Kazakhstan, what is the third largest of the former Soviet republics",Ukraine,General,What agency began as a group of mercenary guards,Texas Rangers -General,In Odessa Texas Star of David and Peace symbol are what,Banned satanic symbols,General,What building defect was the title of along running TV comedy series,Rising damp,General,The marimba is a deeper toned form of which instrument,Xylophone -General,What utopian community in Florida experienced its first armed robbery in 1998,Celebration,Music,Who Sang The Title Track To The Blockbuster Movie Ghostbusters,Ray Parker Jnr,General,Musa acuminata is what favourite food item,Banana - Geography,What country is located between Panama and Nicaragua?,Costa Rica,Science & Nature," 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,General,Which Roman Emperor made Sunday a religious holiday,Constantine -General,What kind of floor covering is 'lino' a short form for,Linoleum,General,What sort of animal is an anopheles,Mosquito,Music,Which Nenry Mancini Song Does Andy Williams Employ As His Theme Song,Moon River -General,Hockey: what divides the rink laterally into three equal areas,Blue line,General,What is the fear of specters or ghosts known as,Spectrophobia,General,The Irawaddy runs through which country,Myanmar -General,If you suffered from pruritus - what would be wrong,Itching,Music,"Which 2 Groups Combined On The 1969 Hit ""I'm Gonna Make You Love Me""",Diana Ross & The Supremes & The Temptations,General,Only 15% of French wines have what on the label,Appellation Controlee -General,Who said 'eureka',Archimedes,General,Who presents the ITV show 'Fool Britannia'?,Dom Jolly,Technology & Video Games,"Nintendo's mascot, Mario, has a last name. What is it? ",Mario -General,"The biggest beer selling establishment in the world is the Mathaser. In what city, the capital of Bavaria, is the Malthaser located",Munich, History & Holidays,What was the name given to the atom bomb that was dropped on Hiroshima?,Fat Man,General,According to one estimate Benjamin Franklin had 24 what,Bastards – Illegitimate children - History & Holidays,What snack food was portrayed in claymation dancing to 'Heard it Through the Grapevine'? ,Raisins ,General,What's the zodiacal symbol for Virgo,Virgin,General,What is the common name for a hammer with a wooden head,Mallet -General,Enterprise Alabama they erected a monument to which insect,Boll weevil no cotton better cash crops,General,Who was the first American in space - twice,Gus Grissom,General,Whose last words were 'thank god i have done my duty',Horatio nelson -General,The pyramids are built of which rock,Limestone,General,Epaminondas was the general of which ancient state,Thebes,Sports & Leisure,In which sport does Lee Westwood play? ,Golf  -General,What planet was Spock brought back to life on?,Genesis,Food & Drink,If you were eating escargots in a French restaurant what would you be eating? ,Snails ,General,Stalingrad who was the only sister on petticoat junction to marry,Betty jo -General,"In what sport do the participants compete in the ""grand nationals""",Auto,General,In what country did the word plonk meaning wine originate,Australia,General,The Bronte sisters had a brother name him,Branwell -General,What was the name of the school mistress in The facts of Life?,Mrs. Edna Garrett,General,A web site with sa in the name is in what country,Saudi Arabia,Music,Who were Dancing Naked In The Rain In 1990,Blue Pearl -General,Which Argentinian politician commanded the invasion of the Falkland Islands,General galtieri,Science & Nature," In Alaska, it is legal to shoot __________. However, waking a sleeping bear for the purpose of taking a photograph is prohibited.",Bears,General,What game show had people dressed up funny?,Let's Make A Deal -Science & Nature,How Frequently Are Twins Born In The UK ,About Every 80 Births ,General,What is the nickname for Oregon,Beaver state,General,Who was the father of King Richard 1,Henry ii -General,What year was the dental drill invented,1790,Science & Nature,A baby doctor is a _________.,Pediatrician,General,"The protection & improvement of the health of the public through community action, primarily by governmental agencies",Public health -Music,"Til Tuesday Had A Hit With The Song ""Voices Carry "" Or ""Carry Me Home""",Voices Carry,General,In Which US Statet Was The Classic TV Show The Dukes Of Hazzard Actually Set,Georgia,Geography,Rabat is the capital of which country,Morocco -General,What is measured by a chronometer?,Time,General,A Rafter is a collection of what creatures,Turkeys,General,What colour was diana spencer's engagement photograph suit,Blue -General,What are the 2 background colours of the Welsh flag?,Green and White,Sports & Leisure,Who Was the First Britain To Hold A World Javelin Record ,Fatima Whitbread ,General,In 1951 which (of two) car companies introduced power steering,Buick - Chrysler -General,A calander usually withastronomical data is called ..,Almanac,General,The Valentine Brothers had a 1983 US hit with `Money's too tight (to mention)' but who took the song to number 13 in the UK 2 years later ,Simply Red ,Music,What Nationality Is Tina Arena,Australian -General,What is The Daily Planet in Australia,Biggest Brothel – Listed company,Music,"Which Songwriting Duo Wrote A String Of Rock N Roll Classics Including ""Hound Dog, Stand By Me, Up On The Roof & Broadway""",Jerry Leiber & Mike Stoller,General,Johnny and the Moondogs was the original name of which pop group,The beatles -General,Jacqueline du Pre was a soloist on which instrument,Cello,General,Name Captain Nemo's pet seal,Esmeralda,General,"What do you call an emasculated ram, whether or not he wears a bell",Wether -General,Which character was portrayed by Meryl Streep in the film Out of Africa,Karen blixen,Entertainment,"What is the name of the Volkswagen in the film, ""The Love Bug""?",Herbie,General,What creature is depicted on the Welsh Flag?,A Red Dragon - History & Holidays,Who Released The 70's Album Entitled Oxygene ,Jean Michel Jarre ,Science & Nature,"Who said all things were made up of air, earth, fire, and water?",Aristotle, History & Holidays,In which Hitchcock classic does James Stewart play a man hired to follow Kim Novak? ,Vertigo  -General,Which author sold most books in the first half of 20th century,Edgar Rice Burroughs,General,The Egg and I was whose first film,Marilyn Munroe,General,When were film audiences treated to a flushing toilet for the first time,Psycho -General,In squash what colour dot indicates the slowest ball used,Yellow,General,What was Roscoe's dogs name on the Dukes of Hazzard?,Flash, History & Holidays,*What was the name of the computer in TV's Wonder Woman?* ,IRAC  -General,Who invented the air brake,George westinghouse,Music,Name The 2 Mebers Of The Eurythmics,Dave Stewart & Annie Lennox,General,Which part of the human body contains the most gold,Toenails -General,Flying fish is the national dish of which country,Barbados,General,"Founded in the 6th Century B.C., which religion has two schools - the Hinayana, or Lesser Vehicle, and the Mahayana, or Greater Vehicle",Buddhism,General,What is a group of this animal called: Parrot,Company - History & Holidays,What is the only national spectator sport originating entirely in the united states ,Rodeos ,General,1937 saw the first BBC TV broadcast of which event,Wimbledon Tennis,Science & Nature,Of what is keratitis an inflammation?,Cornea -General,Which is the second largest city in england,Birmingham,General,Singapore lies at the end of which peninsula,Malayan,General,What is the fear of menstruation known as,Menophobia -General,What is the most common street name in the cities of the USA,Park street,General,"General ""Choi Hong Hi"" Is Responsible For Developing Which Martial Art",Taekwondo,General,The pH scale is a logarithmic scales used to measure acidity in solutions. What does pH stand for?,Potential of hydrogen -General,In legend what did Cleopatra have her mattress stuffed with,Fresh rose petals nightly,General,What is the motto of the rolling stone magazine,All the news that fits,General,"In 1967, which airline became the first all-jet airline",TWA -General,New delhi is the capital of ______,India,General,Who founded the Samaritans in 1953 (both names),Chad Varah, Geography,What is the basic unit of currency for Macao ?,Pataca -Geography,What south American country has both a Pacific and Atlantic coastline,Colombia,Geography,Name the capital of brazil. ,Brazilia ,General,James Doohan became famous playing what character,Montgomery Scott -General,Strasbourg is the administrative centre of which French region,Alsace,General,Who turned down the TV role of Doctor Kildare,William Shatner, History & Holidays,Name the author of The Novel Frankenstein ,Mary Shelly  -General,Which country is reputed to have the world's oldest flag design?,Denmark,General,What links Sergeant Joe Friday and Babe Ruth,714 - Fridays badge no Ruth record,Science & Nature,For What Is NaCI The Chemical Formula ,Salt  -General,What should be given on the 9th wedding anniversary,Pottery - some say willow,General,What is a male deer,Buck,Music,Crimson & Clover Or Crimson & Lace Was A Hit For Joan Jett,Crimson & Clover -General,Calamine is the ore what is the product,Zinc, History & Holidays,"Designed By Robert Fulton, Which Weapon Was Tested In The Seine In 1801? ",The Submarine ,General,Which American city is served by Logan International Airport,Boston -General,Who was jason lee's father,Bruce lee,Entertainment,"This term means to play crisply, with the notes separated?",Staccato,General,"Who wrote ""alexander's ragtime band""",Irving berlin -General,What is a group of elk,Gang,General,All methods used to prevent or reduce detrimental effects of floods,Flood control,General,Apart from eggs what is in an Arnold Bennett omelette,Smoked Haddock -General,US Fed laws specify what colour underwear for Crash Dummies,Tea Rose,General,What is the fear of penis known as,Phallophobia, History & Holidays,Who rode naked through the streets of Coventry?,Lady Godiva -General,What are you doing if you 'yarn over' or 'pop corn',Knitting,Toys & Games,"In which game might a person have a ""full house""?",Poker,Music,How Many Years Were There Between Blondies Fifth & Sixth No.1 Hits,17 - History & Holidays,Where was the Rosetta stone found ?,Cairo,General,"Apart from milk, what is the chief ingredient of Lyonnaise sauce",Onions,Entertainment,"Who plays many voices, such as Dr Nick, and Moe on 'The Simpsons'?",Hank Azaria -General,"Vodka, Orange juice and Cranberry juice make which cocktail",Madras,General,Where did 'paella' originate,Spain,General,What's the only insect that produces food humans eat,The honeybee honeybee -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,General,Which ocean lies north of Guyana,Atlantic,Geography,What Is The Currency Of Israel ,The Shekel  -General,What james dickey novel tells the story of an ill-fated canoe trip,Deliverance,General,Valence when did the first man walk on the moon,1968,Art & Literature,In which John Steinbeck story features the slow-witted Lennie and his friend George? ,Of Mice & Men  - History & Holidays,What was the sister ship of the olympic ,The titanic ,General,Where is the worlds oldest university,Fez Morocco – founded 859,Music,"Who In The World Of Music Was Born With The Name ""Declan McManus""",Elvis Costello -General,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,General,Chili peppers he worked in a factory making toilets for airplanes before he recorded 'aint no sunshine when shes gone',Bill withers,General,Which European country is ruled jointly by the Spanish Bishop of Urgel and the President of France,Andorra -General,Smetana in what novel do we find winston smith living in the nation of oceania and battling doublespeak and the thought police,1984,Music,"What was launched on September 30th , 1967?",Radio One,General,"In cookery, what does the term ""Macedoine"" mean",Diced - History & Holidays,Name The Queen Of England Who Ruled For Nine Days? ,Lady Jane Grey ,General,Who rode a horse called Copenhagen,Duke of wellington,General,What is the flower that stands for: elevation,Scotch fir -General,Cernan and Scmitt were the last men to do what,Walk on the moon,General, What is a dried plum called,Prune,Food & Drink,Which fish is smoked and cured and called 'finnan'? ,Haddock  -General,Every human has one of these on their tummies,Navel,General,"Whose epitaph says ""If you seek his monument look around you""",Sir Christopher Wren,General,Which country has won the most Nobel Prizes for Literature,France -General,Mafalde is what shaped pasta,Corrugated Strips,Entertainment,Who sang 'Born In The USA'?,Bruce Springsteen,General,Who created the round table,Merlin -Entertainment,"The two rival gangs in ""West Side Story"" were the Sharks and the _________.",Jets,Science & Nature,"What bird is an excellent swimmer, but can't fly?",Penguin,General,"Flying corps what word comes from latin ""monachus"", meaning ""one who lives alone""",Monk -General,Sildenafil Citrate Is the Chemical Name For What,Viagra,General,When was the first black mayor of chicago elected,1983,General,Whats the first book of the Old Testament,Genesis -General,How was uther pendragon killed,Ambush,General,What is a lipid,Fat,General,In Heraldry what is a mullet,A Star -General,If a flower is described as 'stellate' what shape would it be,Star shaped,General,"What one word may be added to news, carbon & wall",Paper,General,In Pennsylvania it is illegal to sell fireworks to who,Pennsylvania residents -General,Jonathan Buttall is well known in art by what name,Gainsborough's Blue Boy,General,Which skill uses things called chain singles and doubles,Crocheting,General,Where was rory gallagher born,Ireland -General,What island is due south of Corsica,Sardinia,Music,"What Was The Christian Name Of ""Moon The Loon""",Keith,Art & Literature,What is an Icelandic epic called?,Saga -General,Jacques Cousteau made his name in underwater exploration. What was the name of his scientific survey ship,Calypso,General,What is the highest mountain in Romania,Mt moldoveanu,General,What is the Capital of: Saint Kitts and Nevis,Basseterre -General,What was the police chiefs name in the first two Jaws films,Martin Brody,Sports & Leisure,Which female tearful athlete was BBC Sports Personality of the Year in 1987? ,Fatima Whitbread ,General,If someone Inpissates a soup what have they done,Thickened it -Music,Which Instruments Were Played By Motown Session Men James Jamerson & Benny Benjamin Respectively,Bass & Drums,General,Kenophobia is the fear of,Voids,General,What's the middle day of a non-leap year,July 2nd -General,What is the english for umbrella,Little shaded area,General,What is the flower that stands for: esteem but not love,Spiderwort,General,Name the hardest substance in the human body.,Enamel -General,What is a group of this animal called: Whale,School gam pod,Sports & Leisure,Why is September 28 th 1996 a famous date in horse racing? ,Frankie Dettori won 7 races in one day at Ascot ,General,Long billed wading bird with a musical cry,Curlew -Music,"Who Had Hits With ""It's The End Of The World As We Know It"" & ""Orange Crush""",REM,General,"Which entertainer has the nickname ""Slowhand""",Eric clapton,Art & Literature,Who Composed The Opera (Oedipus Rex) ,Stravinsky  -General,Suomi is the name the natives give to what country,Finland,General,In the Middle Ages people threw what at the Bride and Groom,Eggs,Food & Drink,Which fruit is traditionally covered with toffee at a fairground? ,Apple  -General,Alexey Pajitnov Created A Very Famous Video Game During 1985-1986 What Was It Called.,Tetris,Music,"Who Had A Hit In 1983 With ""Ziggy Stardust""",Bauhaus,General,What is the flower that stands for: belle,Orchis - History & Holidays,Of which ship was Miles Standish captain?,The Mayflower,General,What author was the first published by Bantam paperbacks,Mark Twain Life on the Mississippi,General,The Emperors cup is awarded in what sport,Sumo wrestling -General,What new england state would be home if you laid down roots in 'bald head',Maine,General,What state is 'the garden state',New jersey,General,From which musical does the song Getting to Know You come,The king and i -General,What is a cyclonic tropical storm with winds at the centre in excess of 74 miles per hour,Hurricane,Music,How Many UK Number Ones Has Britney Spears Had,3,General,What is the most chemically complex food - over 300 chemicals,Chocolate -Toys & Games,In this game players take turns placing disks on an 8x8 board.,Othello,General,Three hundred million ofwhat die in the human body every minute,Celles,General,President six u.s presidents never had ______,Children -General,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,General,The U.S. patent was issued to Samuel Hopkins for what,Potash,General,Omphalitis is an infection of what part of the body,Navel -Science & Nature, A dog's __________ has over 200 scent receiving cells.,Nose,General,Which British driver won five British Grand Prix races in the 1960s,Jim clark, History & Holidays,"Who was ""The Mad Monk""",Rasputin -General,Who 'schusses' down a piste,Snow skiers,General,Jazz Trumpeter John Birks was better known as who,Dizzy Gillespie,General,In what sport did Prince Leopold of Bavaria compete,Motor Racing -Music,Which Funny Girl Sang About A Re-Cycled Flower In 1966,Barbara Striesand (Secondhand Rose),General,What remarkable record was set in 1997 by Jeanne Calment in France,Oldest ever person,General,"Which architect designed the Royal Observatory in Greenwich, UK",Sir christopher wren -General,What year did the first nudist colony open,1903,General,In cooking what does MSG stand for,Monosodium glutamate,Science & Nature,In which branch of science are monocotyledon and dicotyledon terms?,Botany -Food & Drink,Which sweet treat could be found at the Ambassador's parties? ,Ferraro Rocher , Geography,What two US states are rectangular?,Colorado and Wyoming,General,What country is the largest Spanish-speaking country in the world?,Mexico -Music,Which Song Has Spent The Most Weeks In The Singles Chart Regardless Of Artist,My Way,General,Whats the common name for the drug acetaminophen,Paracetamol,General,Who was the only prophet that never died,Elijah -Food & Drink,What nationality is the lager giant 'Grolsch'? ,Dutch ,General,What is the tail fin of a fish called,Caudal Fin,General,Which Italian seaport city is called 'La Superba',"It's not venice, as you might think.genoa" -General,Who wrote The Sign of Four and The Valley of Fear,Conan doyle,General,What is penicillin made of,Cheese mould,General,What was gangsters George Nelsons nickname,Baby Face -General,"What are Blue Professor, Bottle Imp and Rat Faced McDougal",Fishing Flies, History & Holidays,What is a Witches Familiar ,A Black Cat ,General,What Is The Study Of Very Low Temperatutes Called,Cryogenics -General,Phobos and Deimos are moons of Mars - what do names mean,Fear and Terror,General,What is the heaviest breed of domestic dog,St. bernard,General,The Belcher Islands are in what bay,Hudson - Language,What is the official language of Senegal?,French,General,What was the name of the vehicle driven by the Anthill Mob in the Wacky Races series of cartoons??,Bulletproof Bomb,Music,Which British Prime Ministers Are Mentioned In A Beatles Song,Mr Wilson & Mr Heath In Taxman -General,Madam Hooch teaches what at Hogwarts school,Quidditch,General,Mickey Mouse's Pluto had what name when he first appeared,Rover,General,What fruit is missing seeds,Navel orange -General,Triomphe what is the pope's pontificial ring,Fisherman's ring,General,On average the French eat 20 million what a year,Frogs,General,What is Australia's Barossa valley known for,Wine production -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, History & Holidays,"In March 1979, where did a major nuclear accident occur ?",Three Mile Island,General,What translates as The fist foot way,Taekwondo -Food & Drink,What words do SPAM take its name from? ,Shoulder Pork And Ham ,Music,"Who Had Hits With ""I'm Walking Backwards For Christmas"" & ""The Ying Tong Song""",The Goons,Geography,Which Bridge Features On The Poster To The Woody Allen Film Manhattan ,Queensboro Bridge  -General,How long did the israelites wander in the desert after the exodus,Forty,General,Which country has the juno awards,Canada,General,What are the two basic aids in orienteering,Map and compass -General,Fingal O'Flaherty Wills is better knows as who,Oscar Wilde,Science & Nature,"From what animal is ""ambergis"" obtained",Sperm whale,General,Pteronophobia is the fear of,Being tickled by feathers - Geography,What is the capital of Nigeria ?,Abuja,Sports & Leisure,Baseball: The Houston ______?,Astros, Geography,What is the capital of California?,Sacramento -General,The universe what steve martin film had him go from rags to riches to rags,The jerk,General,What is the ancient religious language of india,Sanskrit,General,Who was the last Roman Emperor of the Julio-Claudian family,Nero -General,Andr'e Gide the writer was expelled from school for what crime,Masturbating during lessons,General,Which animal always grows new teeth to replace the old,Crocodile, History & Holidays,Xavier Roberts was the name associated with which eighties toy? ,Cabbage Patch Kids  -Entertainment,"What is the title of the 1996 sequel to ""Terms of Endearment""?",Morning Star,General,At what does Singapore use the colours blue & yellow to ward off evil spirits,Funerals,General,"Stan laurel, Mickey Rooney, Lana Turner what in common",8 marriages -General,Which film starring julie andrews and christopher plummer won the oscar for best picture in 1965,Sound of music,General,What is the worlds most widely used vegetable,Onion,General,Who was assasinated by Gavrilo Princip to spark the beginning of World War I,Archduke Ferdinand -General,"The upper horizontal part of a classical order, between a capital and the roof; it consists of the architrave, frieze, and cornice.",Entablature,Entertainment,Russian modernist Igor _________,Stravinsky,General,Stronger how many legs does a crab have,Ten -People & Places,What Nationalaty Was Hans Christian Andersen ? ,Danish ,General,What Saint said - Lord grant me Chastity - but not ye t,St Augustine,People & Places,Which Hollywood Star Sparked Outraged In 2006 When They He Declared That He Planned To Eat The Placenta Of His Then Unborn Child ,Tom Cruise  - History & Holidays,"How many sides does a snowflake have? 6,8,10,12 ",6 ,Sports & Leisure,Who was the first unseeded man to win Wimbledon? ,Boris Becker ,General,Termites eat wood twice as fast if what is happening,Heavy Metal Music Playing -General,"Jon Ansell, Matt Stiff, Michael Christie & Ben Thapa Are Better Known As What",G4 (The Pop Group),Music,Which Members Of The Royal Family Attended The Opening Of The Live Aid Concert,The Prince & Princess Of Wales,General,What hobby was developed by the Palmer Paint Company?,Painting by numbers -General,Which movie about a TV news show won Peter Finch a posthumous Oscar,Network,General,What's the northernmost scandinavian country,Norway,General,Who first starred in the film The Boy in the Plastic Bubble,John Travolta - History & Holidays,Who Led A 125 Mile March Of Child Worker To Theodore Roosevelt's Vacation Home On Long Island ,Mary Harris Jones ,Science & Nature,The Perfection Of Which Invention Led To The Industrial Revolution ,The Watt Steam Engine ,General,The praying mantis is the only insect that can do what,Turn its head -Science & Nature,What Does Mass Multiplied By Velocity Give You ,Momentum ,Entertainment,Which instruments is used to tune the orchestra?,Oboe,General,The Templeton prize is awarded annually for progress in what,Religion -General,"How does the mermaid buy the gift for tom hanks in ""splash""",Her necklace,Science & Nature, Wildlife biologists estimate that as many as five out of six fawns starve to death during a hard winter in __________,Vermont,General,Whose nose grew when he told a lie,Pinocchio -General,What's Prince Charles' favorite cereal,Cornflakes,General,Naval escort vessel,Frigate,Geography,Which Carthaginian Navigator Founded 6 Colonies Along The African Coast & Reach The Bight Of Benin ,"Admiral Hanno, Who Set Sail In 425 Bc " -Entertainment,Who was Daisy the dog's owners,Blond,Art & Literature,Who Was William Shakespear's Wife ,Anne Hathaway ,Food & Drink,Where is the best brandy bottled?,Cognac -Science & Nature,"During pregnancy, how many times its normal size does the human uterus expand?",Five hundred,Music,"Which Band Had Hits With ""Goody Two Shoes"" & ""Stand And Deliver""",Adam And The Ants, Geography,What is the world's largest sea?,Mediterranean -Food & Drink,What Is Black & Tan ,A Mixture Of Beer & Stout ,General,Which three words complete the full title of Shakespeare's play Hamlet - - -,Prince of denmark,General,Who would use a Syllabary,Arabs - their alphabet - Geography,In which country is the largest active volcano in the world?,Ecuador,General,What is the proper term for a guinea-pig,Cavy,Music,"Name The Band: Wyclef Jean, Lauryn Hill, Pras MKichel",The Fugees -General,What is the flower that stands for: menatl beauty,Clematis,General,Which herb is traditonally associated with forgetfulness?,Rue,General,What is the most populous city in the US state of Missouri?,Kansas City -General,When Saigon fell the signal for all Americans to evacuate was what song by Bing Crosby being played on the radio,White christmas, History & Holidays,"Which 50's Movie features the Line ' I'll follow him around the Horn, and around the Norway Maelstrom, and around perditions flames' ",Moby Dick ,General,Where is taipei,Taiwan - Geography,What is the world's highest mountain ?,Mount Everest,Music,What Is Beethoven's Third Symphony Entitled,Erocia,General,"In The TV Show ""Birds Of A Feather"" What Is Doriens Husband Called",Marcus -General,What is a group of this animal called: Marten,Richness, History & Holidays,Which reindeer isn't mentioned in the poem 'The Night Before Christmas'' ,Rudolph ,Geography,"The ________ river has frozen over at least twice, in 829 and 1010 A.D.",Nile -General,In Oct 1992 Bernard Lavery of Wales grew an 18lb 3oz what,Brussels Sprout,General,February 1865 only month ever not to have what,Full Moon,General,In which field was Maria Montessori famous,Education -General, This instrument measures atmospheric pressure.,Barometer,General,"Which ""Shakespearean"" horse won the Champion Hurdle in 1973 and 1975",Comedy of errors, History & Holidays,For what country did Columbus make his historic voyage,Spain -General,In which county in the UK are the Heights of Abraham,Derbyshire,Music,"Who Was Lead Singer With Harold Melvin & The Bluenotes On Such Songs As ""The Love I Lost"" & ""If You Don't Know Me By Now""",Teddy Pendergrass, Geography,What is the largest island in the Mediterranean?,Sicily -General,What Is The Only Country With A Bible On It's Flag,Dominican Republic,General,"Mortuary custom, the art of preserving bodies after death, generally by the use of chemical substances",Embalming,General,What is the common name given to the larvae of a crane fly,Leatherjackets -General,In what country is the Penina golf course,Portugal,General,"In London what links Lambeth, St James and Westminster",All Palaces,Food & Drink,What Type Of Drink Lended Itself To The Title Of A Number One Single For All Saints? ,Black Coffee  -General,In the film Jumping Jack Flash what is Jack's code key,B Flat,Science & Nature," The hides of mature female blue __________ are more than twice as thick as those of males, probably as a protection against courtship bites.",Sharks,General,Which Classic Cartton Character Had A Sidekick Named Dum Dum,Touche Turtle -General,"Who recorded the album ""zoot allures"" in 1976",Frank zappa,Geography,"In 1932, Porto Rico was renamed ______________",Puerto rico,General,"Who sang ""help me i think i'm falling""",Joni mitchell -General,How many islands make up hawaii,20,General,Name Stephen King's first published novel,Carrie,General,How many chambers does the human heart have,Four - History & Holidays,Which popular poem was alternatively known as A Visit from St Nicholas? ' ,Twas The Night before Christmas ,General,Who are Patience and Fortitude at New Yorks Public Library,Stone Lions Outside, Geography,In what country is the Jutland peninsula?,Denmark -General,The sequel to which famous novel was called 20 years after,The Three Musketeers,General,What is the name given to a chemical that is used when a dye will not fix directly on to the fabric,Mordant,General,"Who, in 1889, painted the picture called The Starry Sky",Vincent van gogh -Music,Who Plays Drums For Fleetwood Mac,Mick Fleetwood,General,Which Football Team Held On To The FA Cup For 7 Years Despite Only Winning It Once,Portsmouth,Sports & Leisure,What is the only Swimming Stroke not Started by a dive? ,BackStroke  -Entertainment,Who recorded 'A Boy Named Sue'?,Johnny Cash,General,"One Tin Soldier' recorded by Coven, was the theme song for what movie",Billy Jack,Science & Nature, Komodo dragons eat deer and wild __________,Boar -General,Where was the 'Australian' swimmer John Konrads born,Latvia,General,What TV show was set in Wentworth Detention Centre,Prisoner Cell Block H,General,Which athletic event requires five judges,Triple Jump -General,The world's longest tunnel connects Delaware and ______?,New York,General,In The World Of Literature “Oliver Mellors” Is Better Known As Who?,Lady Chaterlys Lover,General,Who was the only civil war soldier executed for war crimes,Major henry -General,What is the correct name for a castrated pig,Barrow,General,Who played Axel Foley's best friend in Detroit?,Paul Riser,Music,Whose real name is Robert Zimmerman?,Bob Dylan -General,Homophobia is a fear of ______,Monotony,Food & Drink,"Cocktails: Whiskey, hot coffee, and whipped cream make a(n) _________.",Irish coffee,General,Chrissie Hynde was in which early eighties group?,The Pretenders -General,Where Will You Find The Character “ Jake The Jailbird ”?,On A Monopoly Board,General,The detective Miss Marple was created by which writer,Agatha christie,General,Knock-Knock was the first cartoon starring what character 1940,Woody Woodpecker -General,A Myologist studies what,Muscles,General,Traditional Advent candles are two colours pink and what,Purple,General,"In To Kill a Mockingbird, who played the role of Boo Radley",Robert duvall -General,What did John Montague invent,The sandwich – He was 4th Earl,Science & Nature,Who first used antiseptics ?,Joseph Lister,General,"Which writer's first novel, published in 1948, was Never Love a Stranger - his 23rd and latest, published in 1997, is Tycoon",Harold robbins -General,Lorne Green has only one what (an alligator ate the other),Nipple,General,Who made his screen debut in Mad Dog Col 1961 as a cop,Gene Hackman,General,What song links Little Eva and Kylie Minogue,The Locomotion -General,What is a half of a half of a half of a half,A Sixteenth, Geography,What is the capital of Congo ?,Brazzaville,General,Which cosmetics giant began in 1886 as the California Perfume company,Avon -Tech & Video Games,When was the first 'Final Fantasy' created? ,1987,General,Where does the American flag fly 24 / 7 never taken down,Moon,General,The second space shuttle is named __________,Challenger -Music,What were the Beatles billed as when they recorded with Tony Sheridan?,The Beat Brothers,General,"In The Tv Show ""The Simpson's"" Who Provides The Voice Of Homers Mother",Glen Close,General,What does cat stand for,Computerised axial tomography -General,Who was the star of 'riverdance' and 'lord of the dance',Michael flatly,Religion & Mythology,"Of the 266 popes, how many died violently?",Thirty three,General,With what day does a month start if it has a Friday the 13th?,Sunday -General,"Lb What was the nationality of the abstract artist, Mondrian",Dutch,Music,Who Did The Byrds Ask To “Play A Song For Me” In 1965,Mr Tambourine Man,Music,Who Was The Owner Of Manchesters Hacienda Club & Factory Records,Tony Wilson -General,Which mythical UK creature becomes an evil boggart if annoyed,Brownie,Sports & Leisure,Who's the current womens world darts champion? ,Trina Gulliver ,General,"Administrative division of the kingdom of great britain, occupying the northern third of the island of great britain",Scotland -General,Who wrote the song 'do they know it's christmas' with bob geldof,Midge ure,General,What was Capability Brown's real first name,Launcelot,General,Where is Judge Dread a judge,Mega City -Science & Nature,What's the more familiar name of the himalayas' yeti ,The abominable snowman ,Geography,What is the world's third largest sea? ,Mediterranean ,General,What does cobol stand for,Common business oriented language -Food & Drink,Which is Britain's top selling fruit flavoured soup? ,Tomato ,Art & Literature,"In 'Romeo and Juliet', who says 'make the bridal bed in that dim monument where Tybalt lies?",Juliet,General,What food was regarded as an aphrodisiac in the Middle Ages,Chicken Soup -Science & Nature," Tunas will suffocate if they ever stop __________. They need a continual flow of water across their gills to breathe, even while they rest.",Swimming,General,What Hollywood actress was the Laurence Olivier of Orgasms,Hedy Lamarr,General,What was the first LP record to sell over 1 million copies,Calypso by Harry Belafonte -Music,Of Which Rock Group Is Bono A Member,U2,Food & Drink,What is the main flavour in the following alcohols 'Curacao' ? ,Orange ,General,Where were the Toltecs from?,Mexico -General,Capital cities: Ghana,Accra,General,What is the national flower of Mexico,Dahlia,General,"Who was the guitarist in the 70's and 80's band, Be-Bop Deluxe",Bill nelson -Food & Drink,For What Drink Was Chicory A War Time Substitue ,Coffee , Geography,What is the capital of Guinea ?,Conakry,General,Which explores trip was sponsored by Ferdinand and Isabella,Christopher columbus -Geography,In Which Country Is The Suez Canal ,Egypt ,General,By what nickname is the well-known American singer Bruce Springsteen often referred,The boss,General,Who was the founder of Lotus cars?,Colin Chapman -Sports & Leisure,The white marks intersecting each five yard line are called ________.,Hash marks,Sports & Leisure,Hockey: The Calgary _______?,Flames,General,What Roman soldier defeated and destroyed Spartacus,Crassus - not Pompey -General,"What links Pacer Burton, Chad Gates, Walter Gulik",Elvis film characters,General,Which Top Hollywood Actor Was Responsible For Directing The Movie “ Stayin Alive ” The Sequel To Saturday Night Fever,Sylvester Stallone, Geography,What country is situated between Panama and Nicaragua?,Costa Rica -General,What is cl the chemical symbol for,Chlorine,General,What is the official language of austria,German,Food & Drink," Often eaten for breakfast, bacon is actually the flesh of what barnyard animal",Pig -General,Tinkerbelle ( A Chihuahua ) Is The Famous Pet Of Which Party Animal,Paris Hilton,General,In Norse mythology who was Odin's wife,Frigga,General,Collective nouns a bask of what creatures,Crocodiles -General,"Anatomically speaking, what is your hallux'",Big toe,General,What is the worlds tallest grass,Bamboo,General,"Treatment of disease & correction of deformity or defect by manual & operative procedures, with or without the use of drugs",Surgery -General,What animals are on the Australian coat of arms?,Emu and kangaroo,General,80% of household dust is actually what material,Dead skin,Science & Nature,What is the second largest bone in the foot?,Talus -General,Indian dish of of fried vegetables,Bhaji,General,What's the Swiss Family Robinson's destination when shipwrecked,America,Music,"Name The Band: Vince clark, Andy Bell",Erasure -General,On what was the declaration of independence written,Hemp paper,General,"Greek mythology monster with lions head, goats body and serpents tail",Chimera,General,Which literary traveller was accompanied by Passepartout,Phileas fogg -Science & Nature,As what is minus forty fahrenheit the same?,Minus forty celcius,General,Are barnacles plant life or animals,Animals,Music,James Todd Smith Is The Real Name Of Which Rap Artist,LL Cool J -Music,Telstar By The Tornadoes Is Said To Be The Favourite Song Of Which Former Prime Minister,Margaret Thatcher,General,"""Boy"", as in Tallboy and Lowboy, is derived from the French word for what",Wood, Geography,Which country administers Christmas Island?,Australia -General,Circuits can be wired in parallel or ______,Series,Music,Which 1984 musical was created by Tim Rice and the male members of ABBA?,Chess,Music,"""Beaucoup Fish"" In 1999 Was Underworlds 3rd Album Name One Of The Previous Two","""Dubnobasswithmyheadman"" & 2nd Toughest In The Infants" -Geography,What is built on the former home of the Earl of Shrewsbury? ,Alton Towers ,General,At the request of EMI who was painted out Sarge Peppers cover,Mahatma Gandhi,General,"On clothing, what does the symbol of a circle crossed-out indicate",Do not dry clean -General,What is a crime worse than a misdemeanor,Felony,General,Why is St. Paul's cathedral unique amongst English cathedrals,Only one with a dome,Entertainment,How old was Leann Rhimes when she became a country music star?,Fourteen -Music,What Was Robbie Williams First Solo UK Number One,Millenium,General,"In the movie ""One Crazy Summer"" what was the movie that was being made on the island called?",Foam 2,General,What colour is iridium,Steel Grey -General,Which tennis player defected to the west in 1975,Martina navratilova,General,What country is the world leader in Cobalt Mining,Zaire,General,What did Beethoven do before composing,Put head in cold water -General,Who wrote 'la traviata',Guiseppe verdi,General,"Who directed the film, fame",Alan parker,General,What is the main ingredient of tahini used in the Middle East,Sesame seed (paste) -General,Buffalo Bill's real name was___.,William f cody,General,Capital cities: Iceland,Reykjavik,General,In Australian slang what is underground Mutton,Cooked Rabbit -General,Distinguished Information Cross is whose highest bravery award,The CIA,General,A Dorset shop sells bookends made from 140 mill year old what,Fossil Dinosaur Shit,General,What's the cause of surface ocean currents,Winds -General,Russian triangular musical instrument,Balalaika, History & Holidays,What was the name of the host of Double Dare? ,Mark Summers ,General,"In Which Book Of The Bible Will You Find The Quote ""The Love Of Money Is The Root Of All Evil""",Timothy -Geography,"Filled with water, gas, electric, telephone, cable, steam, and sewer lines, _____________ is the most dense underground site in the United States.",Manhattan,General,Herbert Charles Angelo Kuchacevich ze Schluderpacheri - who,Herbert Lom,General,"Field of science concerned with the origin of the planet earth, its history, its shape, the materials forming it, & the processes that are acting & have acted on it",Geology -Science & Nature," Strange creatures, jellyfish are comprised mostly of water _ more than 95 percent _ and have no brain, heart, or bones, and no actual __________",Eyes,General,"In 1984 Los Angeles hosted the Summer Games, which city hosted the Winter Games that year",Sarajevo,General,Name the first Alsatian dog film star 1921,Strongheart - Rin Tin Tin 1922 -Geography,In which country is Normandy,France,General,What is another name for the card game 'twenty one',Blackjack,General,The Battle of Inkerman took place in which war,Crimean -Geography,"What country was the setting for ""Doctor Zhivago""",Russia,General,Alfred Nobel invented dynamite what did father Immanuel invent,Plywood,General,How long does a game of ice hockey last,60 minutes -Sports & Leisure,In What Year did Steve Redgrave Win His First Gold Medal At The Olympics? ,1984 ,General,After who was Mickey Mouse named,Mickey Rooney,Entertainment,Orson Wells was nominated for four oscars for which legendary movie?,Citizen Kane -Music,Which Band Named Themselves After A Milk Drink Featured In A Clockwork Orange,Moloko,Entertainment,For which cartoon character was Beethoven a favourite composer?,Shroeder,Science & Nature,Meningitis affects the _________.,Brain - Geography,In which state is Mount St. Helens?,Washington,Music,What is Morrisseys Christian name?,Stephen,General,What is a resident of manchester,Mancunian -General,What is the standard time for boiling a soft boiled egg,3 minutes,General,In North Carolina its against the law for who / what to fight,Cats and Dogs,General,What is the act of founding settlements abroad,Colonisation -General,Where in the south pacific did the u.s do nuclear bomb tests in 1946,Bikini,Science & Nature," The sound a __________ makes is called ""nuzzing"".",Camel,General,What Game Was Invented By William G Morgan?,Volleyball -Science & Nature," Mussels can thrive in __________ because of an inborn ability to purify bacteria, fungi, and viruses.",Polluted water,Science & Nature,What Is Nyctophobia The Fear Of ,The Dark ,General,What is the atomic weight of arsenic,75 -General,What is a young otter called,Whelp,Sports & Leisure,"At The 1976 Olympics, Only One Competitor Was Excused The Compulsory Sex Test. Who Was That Competitor? ",Princess Anne ,Music,"Who Recorded The Albums ""Maon On The Line"", ""Crusader"" & Flying Colours",Chris De Burgh -General,Who was the last New Zealander to win the Olympic 1500 metres track race,John walker, History & Holidays,What was the first ship to reach the Titanic after it sank?,Carpathia,General,Which European city was the bride of the sea,Venice - History & Holidays,"Who was, ""First in war, first in peace and first in the hearts of his countrymen""",George washington,Science & Nature," __________ can swim for a 1/2 mile without resting, and they can tread water for 3 days straight.",Rats,General,Of which country is the flame flower a native,South africa -General,What invention was nicknamed the Noisy Serpent in 1902,Vacuum Cleaner,Entertainment,Secret Identities: Boston Brand,Deadman,General,What is the fear of poison known as,Toxiphobia -Science & Nature,What does the lack of iodine in the diet cause?,Goitre,General,Which actress was jailed in 1982 for tax evasion,Sophia Loren,General,Which principal conductor of both the New York Philharmonic Orchestra and the Halle Orchestra died in 1970,Sir john barbirolli -General,Bahina de los Cochinos is better known as what,Bay of Pigs,Food & Drink,What Foodstuff Is The Most Advertised In The UK ,Breakfast Cereals ,General,The average Britain in their life consumes 18 lb of what,Dirt bad washed food -General,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,General,Where does queen elizabeth live when she's in london,Buckingham palace,General,What job would regularly use kerfs,Carpenter - first cut to guide saw -General,What is a sound below 20 cycles a second called,A Woof,Geography,In which country is brest (not breast) ,France ,General,What is the largest lake that is entirely within Canada,Great bear lake -General,Where were the 1960 summer olympics held,Rome,General,What is growing plants in liquids rather than soil,Hydroponics,Music,"Who Had A Hit In 1986 With ""In The Army Now""",Status Quo -General,On whose death did Shelley write his elegy Adonais,Keats,General,What sort of lines never meet,Parallel,General,In Dick Dastardly's Vulture squadron name the mechanic,Clunk he did not talk but whistled -General,What food Scots once refuse to eat cos it was not in the Bible,Potato,General,Bunc was the first name for what product,Coffee,Sports & Leisure,Which Golfer Is Nicknamed El Ninio ,Sergio Garcia  -Science & Nature,Which Is The Brighest Star Visible From Earth? ,The Dog Star ,General,"There is a word in the english language with only one vowel, which occurs six times. What is it",Indivisibility,General,To which bird family does the canary belong,Finch -General,"What are fallows, lutinos and opalines",Budgerigars,General,What is a baby oyster,Spat,General,What does the word Grizzly mean - as in Grizzly bear,Grey - but they are yellow brown -General,What did Marie Antoinette and Jayne Mansfield have in common,Bust size,General,What nationality was actress Greta Garbo,Swedish,Sports & Leisure,Which brothers represented England in the 1995 rugby union World Cup? ,Rory and Tony Underwood  -General,Which Scent Was Advertised In Posters Featuring The Naked Sophie Dahl?,Opium,General,What do the letters in the name of the technology company EE stand for?,Everything Everywhere,General,"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 -Food & Drink,What Is The Main Ingredient Of The Spanish Dish Paella? ,Aniseed ,General,The locals call it Kaapstad what do we call it,Capetown,Music,How Many Movements Traditionally Make Up A Concerto,3 -General,What was Alfred Hitchcock's first sound film,Blackmail,Geography,What is the most air polluted city in the United States?,Los Angeles,General,The man known as the Red baron was famous in which field,Aviation -General,La Picardy is a region of which European country,France,General,With which group is Keith Flint the lead singer,Prodigy,General,Which term describes the divisions of a lobster or crab's gills?,Dead Man's Fingers -General,This is the main food of the blue whale,Plankton,Food & Drink,Which two stouts are brewed in cork? ,Murphy's and Beamish ,General,In which city was Gianni Versace shot dead,Miami -General,Edith Knight wrote which classic story (later filmed),Lassie come home,General,Who was king of macedonia from 336 to 323 b.c,Alexander the great,Music,What Chauvinistic Comment Was A Hit For The Monks,Nice Legs Shame About The Face - History & Holidays,Who was the last of the apache warrior chiefs ,Geronimo , History & Holidays,In What Year Did The American Civil War End ,1865 ,Science & Nature," When a __________ exerts itself, gets angry, or stays out of the water for too long, it exudes red, sweatlike mucus through its skin.",Hippopotamus -General,Who was tommy lee jones' freshman roommate at harvard,Al gore,General,"Barrel, breech and stock are all parts of a what",Gun,General,Phobophobia is the fear of,One's own fears -General,"Who Directed The 1973 Film ""American Graffiti""",George Lucas, Geography,What is the capital of Vietnam ?,Hanoi, History & Holidays,"At Christmas, it is customary to exchange kisses beneath a sprig of which plant? ",Missletoe  -General,What weapon is known as the gun that won the west,Winchester rifle,General,"Which science fiction writer is credited with ""inventing"" communication satellites",Arthur c clarke,General,What is the longest river in the u.s,Mississippi -Food & Drink,"Cocktails: Vodka, orange juice and Galliano make a(n) ___________.",Harvey Wallbanger,General,International Aircraft Registration what country is SU,Egypt,Geography,Which is the Earth's second smallest continent,Europe -General,What's bottled in jeroboams,Champagne,General,In 1956 16 tons topped the UK charts who was the singer,Tennessee Ernie Ford, Geography,What is the capital of Gabon ?,Libreville -Science & Nature, __________ eat only moving prey.,Toads, Geography,What is the capital of Haiti ?,Port-au-Prince,General,How is the cucurbita pepo better known,Marrow -General,Brian Connolly was the lead singer of which 70s group,The Sweet,Science & Nature,This membrane controls the amount of light entering the eye.,Iris,Music,"Which Country Singer Had A Song Named After Him On Prefab Sprouts 1985 Album ""Steve Mcqueen""",Faron Young -Sports & Leisure,Which Grade Follows A Yellow Belt In Judo ,Orange ,Geography,Where can you find the first iron bridge ever built? ,"Ironbridge, near Telford in Shropshire, England ",General,"The Good Friday agreement, signed on Good Friday 1998, is also known as what ",The Belfast agreement  -General,This normally has 4 legs & your butt is parked in it right now,Chair,Science & Nature, A pregnant goldfish is called a __________,Twit,General,What university would you find in the city of Palo Alto in western California,Stanford -General,What is a pinto a type of,Piebald horse,General,What do Mcdonalds & Burger King do to their fries so they will turn golden brown,They sugar coat them,Science & Nature,Who Was Dubbed 'Queen Of The Air' By The British Press In The 1930's After Her Solo Flight From England To Australia ,Amy Johnson  -General,If you landed at Hanedi airport where are you,Tokyo,General,A soft smooth cheese similar to yoghurt is known as,Fromage frais,General,In which ship did Captain Scott sail to the Antarctic on his ill-fated expedition of 1910 to 1912,Terra nova -General,Where can you drive your car on the Nippon Clip On,Auckland Harbour Bridge,General,In which country would you find the River Meander,Turkey,Sports & Leisure,With which sport would you have associated Jocky Wilson ,Darts  -General,How Long's The Course Is An Autobiography Written By Which Athlete,Roger Black,General,Where is cape hatteras,North carolina,General,Fried fish lettuce spinach is a traditional Xmas eve meal where,Armenia -General,Disney question - who are Daisy Ducks three nieces,April May June, History & Holidays,Which country donates the Christmas tree in Trafalgar Square ,Norway ,General,What is the biggest bay on the north American continent,Hudson bay -General,"Mayfair, london is a district of little streets near ______",Hyde park,Music,Name The 3 Middle Of The Road Hits From 1971 Which All Had Repeated Words In Their Titles,"Chirpy Chirpy Cheep Cheep, Tweedle Dee Tweedle Dum, Soley Soley",General,What is an unfledged pigeon called,Squab -General,Who flew the rocket-powered bell x-ia at a record mach 2.5,Chuck yaeger,General,Who was Tasmania's famous swashbuckler,Errol flynn, History & Holidays,Who popularized the Christmas tree in Britain and the U.S.? ,Queen Victoria  -General,In medicine what is procaine used for,Anaesthetic,Music,What group did Steve Howe join in 1982?,Asia,General,What is the Capital of: Gabon,Libreville -General,Name Bilbo Baggins mother,Belladonna Took,Music,Which Band Had A 1985 Number One Hit With The Single “I Wanna Know What Love Is”?,Foreigner,General,The Tv Show Mork & Mindy Was Actually A Spin Off From Which Otther US Sitcom,Happy Days -General,These teeth grow especially long in vampires.,Incisors,General,Name the Hong Kong stock exchange,Hang Seng,General,With which musical instrument is Julian Bream chiefly associated,Guitar - Geography,Santo Domingo is the capital of ______?,Dominican Republic,Science & Nature,What Value Is PI To 6 Significant Figures ,3.141592 ,General,Which Eastender Provided The Voice Of Dipsy In The Teletubbies,Rudolph Walker (Patrick Trueman) -General,What is a doucet,A Stags Testicle,Music,Mick Hucknall Is The Lead Singer With Which Group,Simply Red,General,Who wrote the novel ' Anna of the Five Towns',Arnold bennett -General,Who left his five day tenure as West Point's superintendent to lead the Confederate army,Tavern,General,What is the young of this animal called: Hawk,Eyas,General,Which Creature Lays The Largest Eggs,A Shark -General,"Who said ""In future, everyone will be famous for 15 minutes""",Andy warhol,General,Caroline of Ansbach was the wife of which British King?,George II,General,Whose alphabet was called the Futhark,Vikings -Geography,What is the capital of Haiti,Port_au_prince,Food & Drink,From Which Fruit Is The Liqueur Kirsch ,Cherries ,Science & Nature, A Holstein cow's spots are like a __________ or a snowflake; no two cows have exactly the same pattern of spots.,Fingerprint -Music,"Which Birmingham Band Previosly Known As Earth Made Their Single Debut With ""Evil Woman Don't Play Your Games With Me""",Black Sabbath,Music,Which actor Was The Narrator On Michael Jacksons Thriller,Vincent Price,Science & Nature,Name The SI Unit Of Pressure ,Pascal  -General,Beaufort - the wind scale man - had what job,Sailor (Admiral),General,Which Australian city is known as 'The City of Light',Adelaide,General,In which state would you find the Jack Daniels distillery,Tennessee -General,What are the ridges on corduroy called,Wales,General,What kind of steak is named after a French writer and statesman,Chateaubriand,General,Name the hummingbird in Disney's Pocahontas,Flit -General,Last Words I am Dying with the help of too many Physicians,Alexander the Great,Music,"Which football team Had A Top 5 Record With ""Ossies Dream""",Tottenham Hotspur,Food & Drink,What Is The Country Of Origin Of Red Stripe Lager? ,Jamaica  - History & Holidays,Oklahoma statehood in 1907 became a sure thing. in part due to the discovery of what ,Oil ,General,"Which Actor Played The Role Of ""Danny Zuco"" In the Musical Grease When It Opened On The London Stage In 1973",Richard Gere,General,Who wrote A Town Like Alice,Nevil Shute -Science & Nature,Who Invented The Gramophone ,Thomas Edison ,General,If a Ghanian says Afishapa what have you been told,Merry Christmas,General,These establishments don't have windows or clocks?,Casinos -General,Which famous person invented the cat flap,Isaac Newton,General,Baseball: the kansas city ______,Royals,General,"What kind of creature is a redpoll, other than a kind of cattle",Bird -General,"The last line of which document is 'working men of all countries, unite'",Communist manifesto,General,"In Greek mythology, who did ariadne help to escape the labyrinth",Theseus,General,The first nude Playboy centerfold was,Marilyn monroe -General,"Hurricane, typhoon and tornado are all types of what",Fighter aircraft,General,Someone abstaining from sexual relations,Celibate,General,What famous bird first appeared on tv september 1957,Nbc peacock -General,What did alexander graham bell invent,Telephone,Science & Nature,"What are romney marsh, suffolk and swaledale ",Sheep ,General,"Who was in the charts in 1992 with ""Be My Baby'",Vanessa paradis -Music,"Who Recorded The Classic 1987 Song ""If I Was Your Girlfriend""",Prince,General,To which group of islands does Rhodes belong,Dodecanese,Science & Nature,The Tenrec Is A Small Insectivore That Is Only Found On Which Large Island ,Madagascar  -General,In what does a rhinologist specialise,Human nose,Music,Which Jackson Left To Turn The Jackson 5 Into The Jacksons,Jermaine,General,What are the snaffle Pelham and Weymouth,Horse bits -General,Columbus is the capital of ______,Ohio,General,"Although it doesn't sound like a dog, ____dust is ornamental wood chips often placed in flowerbeds.",Bark, History & Holidays,Who proclaimed thanksgiving a national holiday in 1863 ,Abraham lincoln  -General,What nation has had a monarchy the longest,Japan,General,Hundred and nine whose official neutral name is 'the helvetic confederation',Switzerland,General,What is a cancer causing substance,Carcinogen -General,Who played the lead role in the first Tarzan movie,Elmo lincoln,General,What is the first day of lent called,Ash wednesday,General,What do we call the noise made by a sudden spasm closing the windpipe,Hiccup -General,First public supply in Britain from river Wey in 1881 what,Electricity,General,"Lake Tana, the source of the Blue Nile, lies in which country",Ethiopia,General,What are the deepest parts of the oceans,Ocean trenches - History & Holidays,What Colour Are The Berries Of The Mistletoe Plant ,White ,General,What is the correct name of bangkok,Krung thep,Music,Which Group Has An Exclusive Range Of Clothing Available Through The K-9 Club,East 17 -General,Shepherd's pie is meat hash covered with a layer of this (2 wds),Mashed potatoes,General,Toheroa Soup' is a traditional dish from which country,New zealand,General,Which animal floats in water,Porcupine -General,In which city were the 1928 Summer Olympic Games held,Amsterdam,General,What is the science that deals with the motion of projectiles,Ballistics,General,Israel Beer Josaphat founded what famous service in 1851,Reuters -Food & Drink,Which Bewer Produces Owd Roger ,Marstons ,General,"In Italy, as what is mickey mouse known",Topolino,General,What year did the 'The Bay of Pigs' take place,1961 -General,"Who was the first cricketer to score 10,000 Test match runs",Sunil gavaskar,Food & Drink,"Whiskey, hot coffee, and whipped cream make up which type of drink ",Irish Coffee ,Geography,In what island group is Corregidor,Philippine -General,What country boasts the Chrysanthemum Dynasty,Japan,General,What hobby was developed by the palmer paint company,Painting by numbers,General,Where are gettysburg and the liberty bell,Pennsylvania -General,A doromaniac had a compulsion to do what,Give gifts,Music,"""I Love My Radio (My Dee Jays Radio) Was A One Hit Wonder For Which Female Singer",Taffy,General,What U.S. state includes the telephone area code 509,Washington -Sports & Leisure,How many feet high is a basketball net?,Ten,General,In 1959 Able Baker first put out in space by USA what were A/B,Spider Monkeys,General,What type of food is tortellini,Pasta -Geography,What's the longest river in the americas ,The amazon ,General,"In the Breakfast Club, What did Brian try to kill himself with?",A flare gun,Art & Literature,In Which Book Would You Find The Characters Desinov & Dolokhov ,Tolstoy's War & Peace  -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,General,What is the main ingredient of a Maron glace,Chestnuts,General,Homonyms: To burn or char/a prophet or diviner. (answer in the form of word1/word2),Sear/Seer -General,Put the worlds most common forename and surname together,Mohammed Chen,General,"What guitar company created the ""flying v"" guitar in the late 1950's",Gibson,Science & Nature,To which family does the coffee plant belong?,Madder -Music,Who Had A Hit With “Run To The Hills” And “The Evil Men Do”?,Iron Maiden,General,"What game challenges you to ""double in"" & ""double out""",Darts,Science & Nature, The hummingbird is the only bird that can __________,Fly backwards -Food & Drink,In Regard To Food What Do The Initials 'GM'' Actually Stand For ,Genetically Modified ,Music,"Who Had A Massive Hit In 1993 With ""Im Easy / Be Aggressive""",Faith No More,Science & Nature,What is the name of sugar found in fruit ,Fructose  - History & Holidays,The fear of halloween is known by which other name (Fourteen letters) ,Samhainophobia ,Music,Name The Lead Singer Of Dire Straits,Mark Knopfler,Science & Nature, The __________ eats nothing but eucalyptus leaves.,Koala -General,In which John le Carre novel does George Smiley first appear,Call for the dead,Science & Nature," Male cockatoos can be taught to speak, but females can only chirp and __________",Sing,Food & Drink,Which American Chef Wrote 'Kitchen Confidential' ,Anthony Bourdain  -General,How many days were the american hostages held in iran,444,General,Who would use a plessor,Doctor reflex hammer,General,Who sang Shattered Dreams in 1987,Johnny Hates Jazz -General,What kind of peach has a smooth skin,Nectarine,General,In Greek mythology who did athena turn into a spider,Arachne,General,It's not over till the _____ sings,Fat lady -General,Which novelist created pathologist Kay Scarpetta,Patricia cornwell,Food & Drink,What Ingredient Is Added To Gin To Make It Pink ,Angostura Bitters ,General,What is the fear of returning home known as,Nostophobia -General,"What's the international radio code word for the letter ""J""",Juliet,General,"Which archangel is the patron of television and radio workers, messengers and postal workers",Gabriel,Science & Nature,Which Piece of science history was created at the Roslin Institute in Scotland on 5th July 1996? ,Dolly The Sheep Was Created  -Science & Nature," The three_toed __________ of tropical America can swim easily, but it can only drag itself across bare ground.",Sloth,General,18% of USA coins 7% of notes have what on them,Dangerous Bacteria,General,An organisation of business and professional men was founded in Chicago in 1905 out of a weekly luncheon club. What is it called,Rotary - History & Holidays,Who Was The Mother Of James 1st Of England? ,Mary Queen Of Scots ,General,"What islands get their name from the Spanish word ""cayo"", meaning rock or islet",Florida keys,Music,What song by Frankie Avalon went to #1 in 1959?,Venus -Sports & Leisure,Whose record did Brian Lara beat when he scored 400 not out in a test match in April 2004? ,Matthew Hayden's ,Science & Nature,What is a word for a castrated ram?,Wether, History & Holidays,"According to 'A Christmas Song'', what would you find roasting over an open fire ",Chestnuts  -General,"In Greek mythology, which goddess was Apollo's sister",Arte'mis,General,What country was formerly called Ceylon,Sri lanka,Music,Who Were The Only Band To Have 2 Records Named By Melody Maker As Album Of The Year During Th 80's,The Cure -General,What was Napoleons mothers name,Laticia,Geography,In which English county is Dartmoor? ,Devon ,Food & Drink,What was the name of the highly diluted rum that was once given to British sailors? ,Grog  - History & Holidays,Who ruled rome when Christ was born?,Augustus Caesar,General,What does 'faux pas' mean,Mistake,General,What instrument measures walking distance?,Pedometer -General,In Braille which letter uses the least number of raised dots,S,General,Who took out a $5000 life insurance before dying in battle,George Armstrong Custer,General,Evelyn Glennie is the world's first full time soloist on which part of the orchestra,Drums -General,Who was the egyptian god of the dead,Anubis,General,"This quiz show, emceed by allen ludden, featured a 60 second ""lightning",Password,General,Uncle what is the name of the cord joining a mother and her unborn child,Umbilical -General,What is the unit of currency in Bulgaria?,Lev,General,In Greek myth who was the first woman,Pandora,Sports & Leisure,In What Year was (come on you reds) a no.1 single for Man Utd ,1994  -General,The average human has seven what each day,Sex Fantasies,General,Juliet Gordon Low founded what in Savannah Georgia 1912,Girl Guides,Science & Nature,What is considered to be the least nutritious fruit or vegetable ,Cucumber  -General,What physical disability is also known as nanism,The condition of being a dwarf,Entertainment,"Name the band - songs include ""Sex & Drugs & Rock & Roll, I Want To Be Straight""?",Ian Drury and The Blockheads,General,Relating to food of what is 'lollo biondo' a variety,Lettuce -General,Who was albert einstein's father,Hermann einstein,General,What is consumption,Tuberculosis,General,What one metallic element could critically harm superman,Kryptonite -General,In 982 eric the red discovered _____,Greenland,General,By law In Washington State a concealed weapon must be what,Under 6 foot long –,Entertainment,Who invented James Bond ?,Ian Fleming -General,What is the closest relative of the manatee,Elephant,General,Santa Clause works in USA but who delivers gifts in Syria,A Wise mans Camel,General,Which pop duo had a hit in 1983 with 'Club Tropicana',Wham -Science & Nature,"He wrote ""Sexual Behaviour in the Human Male"" in 1948.",Kinsey,General,"Which actor/singer wrote the autobiography 'Parcel Arrived Safely, Tied With String'",Michael crawford,General,This is the lowest ranking suit in bridge,Clubs -General,Dik Browne is the author of which cartoon strip,Hagar the Horrible,General,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,General,What shape is Millerighi pasta,Tubes -Art & Literature,"In what field of study would you find ""flying buttresses""?",Architecture,General,"During WW I, what day of the week was the recommended meatless day",Tuesday,Science & Nature," The largest order of mammals, with about 1,700 species, is __________. Bats are second with about 950 species.",Rodents -General,In English superstition what bird should you wish good day,Magpie else bad luck,Religion & Mythology,This Greek mountain was known as the home of the gods.,Olympus,Science & Nature,What Is The Study Of Earthquakes Called ,Seismology  -General,What is a group of hippopotamuses,Bloat,General,What is a group of this animal called: Turkey,Rafter,General,What is the national game of the basques,Pelota -General,"In music, what does the term legato mean",One note leading smoothly to the next,Entertainment,From which station does the 'Chattanooga Choo Choo' leave?,Pennsylvania station,General,Who was he last Tudor monarch of England,Elizabeth I -General,"What is the common term for a ""somnambulist""?",Sleepwalker,General,What is the flower that stands for: concealed merit,Coriander,General,A baby oyster is called a(n) ____,Spat -Food & Drink,Which sweets were reintroduced to Britain in1994 after a 10-year gap? ,Spangles ,General,In 1908 A'Ecu d'Or became the worlds first what,Pornographic film,General,Cucullus' is the latin word for what part of a monk's robe or a woman's sweater,Cowl -General,"Which jazz cornettist composed and recorded ""Davenport Blues"" in 1925",B1x beiderbecke,General,Ben Hur won most Oscars 11 what film comes second with 10,West Side Story,General,In which month of the year is is the Lord Mayor's Show in London traditionally held?,November -General,The Moluccas are better known as where,Spice Islands,General,What are the only two commonly ingested items pure enough to be absorbed into the bloodstream directly through the stomach walls,Honey and alcohol,General,The New Testament originally written in what language,Greek -General,In New Jersey it is illegal to frown at who,Police Officers,General,An ahuehuete is a,Tree,General,What Globally Successful Product What Invented By Dr John Pemberton,Coca Cola -Science & Nature,What Were The Four Elements Proposed By The Ancient Greeks ,"Earth, Water, Fire & Air ",Music,On Which Label Was The Human Leagues Greatest Hits Released In 1988,Virgin,General,"Who said ""For every action there is an equal and opposite reaction""?",Albert Eienstein -Toys & Games,Personal merry_go_round guaranteed to make you dizzy.,Sit n spin,General,What was Alka-Seltzer first marketed as,Cold Cure,Music,"On their first visit to the US, at which hotel in New York City did the Beatles stay?",The Plaza Hotel -General,Zen is the form of Buddhism in which country,Japan,General,"Scalene, isosceles and equilateral are all types of what",Triangles,General,If the skin under someone's finger nails turned blue this would be the first symptom of what,Cyanide poisoning -General,What character in the Jungle Books name means frog,Mougli,General,Nevada means what when translated from Indian,Snow,General,On average it takes 1.5 hours to do what,Fully cremate a corpse -General,"Who was the inventor of the ""stop sign""",William phelps eno,General,What was French frigate Isere's most famous cargo,Statue of Liberty,Entertainment,"What was Dorothy's last name in ""The Wizard of Oz""?",Gale -General,Pope John Paul II played for the Polish national team what sport,Rugby,General,Dendrochronology is better known as __________.,Ring dating,General,Who was the future political pair to star in Hellcats of the Navy?,Ronald Reagan and Nancy Davis -Geography,What American state is 'The Golden State'?,California,General,Which singer famously said 'You aint heard nothing yet',Al jolson,General,What country has the worst roads averaging 10 deaths per mile,Portugal -General,Capability Brown was a famous Landscape Gardener 1st name,Lancelot,Sports & Leisure,Which two London clubs did Bobby Moore play for? ,West Ham & Fulham , Geography,Which island country lies immediately to the West of Mauritius?,Réunion -Entertainment,What was the name of George of the Jungle's pet elephant?,Shep,General,In money circles what does ERM mean,Exchange rate mechanism,General,"Who was assassinated on december 8, 1980 in new york city",John lennon -General,The George Cross was awarded to the entire population of which island,Malta,General,What city stands on the Hooghly river,Calcutta,General,What Northeastern European country's capital is Tallinn,Estonia -General,What is the name of the source of the Nile,Ripon falls,General,What is the only borough of new york city that is not on an island,Bronx,General,Nyctophobia is the fear of,The dark night -General,Which city was the first with one million inhabitants,London,General,Who makes Pringles,Proctor and Gamble,General,Where is the natchez trail,Mississippi -General,What company used to be called The Haloid Company,Xerox,General,What is a vein or fissure in a rock containing mineral deposits called,Lode,General,"In Scandinavian mythology, which was the 'Tree of Life'",Ash -General,What did plato found in 387 bc,The academy,Music,"Which Band Featured Among It's Members Joe Sample , Wayne Henderson, & Wilton Felder",The Crusaders,Music,Only You Was A Hit Was For Whome,Yazoo/ The Flying Pickets -General,What are dense seawater swamps along coasts of hot countries,Mangroves,General,Ocean is NOT recognised International Hydrographic Bureau,Antarctic Ocean,General,What is the Capital of: Cote d'Ivoire,Yamoussoukro -Entertainment,What kind of dog is Scooby Doo,Great dane,General,What country has the worlds highest golf course,Peru,General,Who was the hero of the old TV cop series Dragnet,Sergeant Joe Friday -Music,3 Singers Have Sung The Opening Line The Christmas Favourite Do They Know Its Christmas (PFE),Paul Young,General,What country celebrates its National Day on 17th June?,Iceland,General,In literature who married Mary Morstan,Dr John Watson -Art & Literature,"Who wrote the novel ""The Strange Case of Dr. Jekyll and Mr Hyde"" ?",Stevenson,General,You ordered nem in Vietnamese restaurant what would you get,Spring Roll,General,What famous battle was fought on 4th June 1942?,The Battle of Midway -General,David Stirling was the founder of which organisation,S a s,General,What Was The First Country Ever To Issue A Bank Note,Sweden,General,"Who said ""let them eat cake""",Marie antoinette -General,San jose is the capital of ______,Costa rica,Science & Nature," 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,General,Scolionophobia is the fear of,School -Entertainment,"Name the band - songs include ""Baby I Don't Care, I Want Your Love""?",Transvision Vamp,Geography,Which Country Has The longest Individual Railway ,Canada ,General,An Arab/Israeli band Abu Hafla - record called Humping meaning,Enjoyable Gathering -General,Six verified copies of his signature survive - who is he,William Shakespeare,General,"Who wrote the sonnet, ""Much have I travell'd in the realms of gold""",John,General,"In area, which is the largest country in Africa",Sudan -Geography,Name the capital of Italy.,Rome,General,What actor played the title role in monsignor,Christopher reeve,General,Parsley is a member of which family,Carrot -General,Corduroy literally translated means what,Cloth of the King, Geography,What is the basic unit of currency for Guatemala ?,Quetzal,Science & Nature,Where Do Yaks Live? ,Tibet  -General,Of what metal are meteorites composed,Iron,Sports & Leisure,Over How Many Laps Is The Indianapolis 500 Contested ,200 ,Music,"Whose 1976 debut hit was ""You To Me Are Everything""?",The Real Thing -Sports & Leisure,With which sport is Jack Nicklaus associated ?,Golf,Geography,What is the capital of Belize,Belmopan,General,Which constellation is the water-bearer,Aquarius -General,"Who used the statement: ""my fellow americans""",Lyndon johnson,General,"In which sport would you find, in a team of ten, a cover point, a goalkeeper, and a third home",Lacrosse,General,Dr. Hermann Rorschach is credited with developing what kind of tests,Inkblot -Food & Drink,How many teaspoons in a tablespoon (UK) ? ,3 ,General,Which shellfish is sometimes called a Queenie,Scallop,Sports & Leisure,"What sport do the following terms belong to - ""Behind & Banana Kick""?",Australian Football League -Music,Gordon Matthew Sumner Is The Real first Name Of Which Singer,Sting,General,What gives onions their distinctive smell,Sulphur - taken in when growing,General,What translates high-level languages into machine language,A compiler -General,Gus Grissom Was The First Man In History To Do What Twice,Go Into Space,General,What U.S. state's marijuana fields were busted most often in 1987,Hawaii,General,What are fungal remains in coal,Sclerotinite -Sports & Leisure,What game might you use a (Flick Serve)? ,Badminton ,General,"What can come in types Blue, Spear, Couch and Arrow",Grass,General,Persephone was the greek goddess of ______,Spring -General,Which of the twelve largest islands in the World lies directly between Borneo and New Guinea,Celebes,General,What would you do with a hispano-suiza,Drive it,Music,"What Was On The Other Side Of Boney M's Double A Side ""Brown Girl In The Rain""?",Rivers Of Babylon -General,If you had distrix what condition would you have,Hair - split ends, History & Holidays,What were 'Little Boy' and 'Fat Man'?,Atom Bombs,Science & Nature,What Is The Significance Of The Megalosaurus ,It Was The First Recognised Dinosaur To Be Named  -General,What was the first James Bond book,Casino Royal,General,The only river that flows both north and south of the equator is the?,Congo,General,Waves 'break' when their height is how much more than the depth of the water,Seven tenths -General,"In the film 'dragonheart', who did the voice of the dragon",Sean connery,General,What kind of music is Struss's 'Die Fledermaus',Operetta,General,What South American country produces the most coffee,Brazil -General,In 19th century Florence it was illegal for women to wear what,Buttons,General,With which natural phenomena are Baily's Beads associated,Solar eclipse,General,What other relative of Travolta's made a cameo in Saturday Night Fever,His sister -General,Joseph Levitch became famous as who,Jerry Lewis,General,What is a one-party system of government in which control is maintained by force and regimentation,Fascism,General,What do Christians celebrate on Easter Sunday? ,The resurrection of Jesus Christ  -General,Who was Prime Minister at the start of World War One,Asquith,General,What is the flower that stands for: bury me amid nature's beauties,Persimmon,General,"Who, in 1655, discovered Saturn's rings",Christiaan huygens -General,In which literary work does Mrs Do-As-You-Would-Be-Done-By appear,Water babies,General,What is the birthstone for February?,Amethyst,General,In India in 1994 who were finally allowed to vote,Eunuchs -General,"The word 'boondocks' comes from the tagalog (filipino) word 'bundok,' which means",Mountain,Music,"""Words"" Was A No.1 Hit In 1996 For Whom",Boyzone,General,These are the two highest valued letters in scrabble,Q and z - Geography,What is the basic unit of currency for Vanuatu ?,Vatu,Geography,In which city is wembley stadium ,London ,General,Dallol Ethiopia has what claim to fame,Worlds hottest average place 94 -General,Which best-selling author writes novels featuring the pathologist Dr. Kay Scarpetta,Patricia cornwell,Food & Drink,How many bottles of champagne are in a magnum? ,Two ,Music,What Was Stevie Wonders First Album On Gaining Artistic Control Of His Own Output In 1972,Music On My Mind -Music,In The Beatles Song “ Ob Lah Di Ob Lah Dah “What Did Desmond Say To Molly,Girl I Like Your Face,General,What companies cars are nicknamed mopars,Chrysler,Music,Who Was The First Black Singer To Host His Own TV Programme,Nat King Cole -Tech & Video Games,Circuits can be wired in parallel or ______?,Series, Geography,What is the basic unit of currency for Armenia ?,Dram,General,A biographical film,Biopic -General,What do butchers call the edible internal part of an animal,Offal,General,The scientific word 'quark' was first used in which novel,Finnigans wake,General,Ignoring obvious what links Venus and Mercury,No Moons -General,A Hop Low is the world smallest - what,Mushroom, History & Holidays,Which Surrey cricketer made history at Old Trafford in 1956 when he took 19 wickets in the test match against Australia ,Jim Laker ,General,On what street did dennis the menace live,Elm street - History & Holidays,Who Moved Into His Factory On New Yorks East 47th Street In 1963 ,Andy Warhol ,General,Wolfram is the alternative name for which element,Tungsten,Entertainment,This film was an ambitious concert sequence of cartoons by Walt Disney.,Fantasia - Geography,On what river is the capital city of Canada?,Ottawa,General,"What government issue item did sensitive G I's dub ""sandpaper""",Toilet paper,General,Who did dick van dyke play on the 'dick van dyke show',Rob petrie -General,What was Martin Frobisher looking for,North west passage,General,What is generally thought to be the oldest breed of dog,Chow-Chow,General,"What yellow, fossilized resin did the Greeks and Romans use in jewelry",Amber -General,What happens if you get pepper in your proboscis,YoU.S.neeze sneeze,General,Licking what uses one tenth of a calorie,Stamp,General,If a doctor says you have ecchymosis what have you got,A Bruise -General,What kind of person would have had a twat on,A Nun part of habit,General,Who was the first black mayor of chicago,Harold washington,General,Who was 'hooked on a feeling',Blue suede -General,What is the correct name for the Union Jack Flag?,The Union Flag,General,Ra is the chemical symbol for which element,Radium,General,"Which spirit is the characteristic ingredient of ""Planter's Punch""",Rum -General,What was the first Olympic sport to include women,Tennis - Paris 1900,General,Acrotomphillia is having sex with who or what,Amputees,Music,Where was Tony Christie asking directions to in 1971,Amarillo (Is this the way to Amarillo) -General,Which Beatles song is associated with the Manson family,Helter Skelter,Geography,Which Instrument Measures Atmospheric Pressure ,A Barometer ,General,What does the acronym CIA stand for,Central intelligence agency -General,What do dieters say is the most difficult food to give up,Cheese,General,What does an agrostologist study,Grass,General,Henry Ford used assembly line in 1908 but someone before 1901,Ransome Olds -Entertainment,Which actor played the role of Chewbacca in the Star Wars trilogy?,Peter Mayhew,General,What is the name of the bone at the base of the human spine,Coccyx,General,Who is the greek god of shepherds and flocks,Pan -General,What are knackers to a Norwegian,Crisp bread,General,An infant whale is called a what,Calf,General,"Who wrote ""Stardust""",Hoagy carmichael -General,What in Dickensian London was the Marshalsea,Debtors prison,General,How long can it take for the insecticide DDT to break down in nature,Eight years,General,The bite from which insect caused the death of the poet Rupert Brook,"Mosquito," -General,"Which group sang the song ""Unforgiven""?",Metallica,People & Places,Where Do Sinhalese People Come Frome ,Sri Lanka ,General,In sport what is exactly 5 foot 8 inches off he ground,Bullseye on Dartboard -Art & Literature,Who wrote 'The Canterbury Tales'?,Geoffrey Chaucer,General,Anthony Pratt invented what in the 1940s,Cluedo,General,"Which fiberous, sulphur-rich protein occurs naturally in hair, horns, hooves and feathers",Keratin -General,What Is The Most Wideley Eaten Fruit In The World,A Banana,Music,What Are Maracas,Shaken Latin Percussion Instruments Made From Gourds With Beans Or Peas Inside,General,"What is the missing word in english with the letter combination 'uu' vacuum, muumuu, continuum, duumvirate, residuum",Duumvir -General,What Was The First Bond Movie NOT To Star Sean Connery In The Leading Role,On Her Majestys Secret Service,General,What is bed-wetting,Enuresis,Food & Drink,What is the most expensive type of Bottled Brandy ,Cognac  -Geography,"What river is called ""Old Man River""",Mississippi,General,The northern part of north america lies within the ______,Arctic circle, History & Holidays,Who was the second to set foot on the moon,Buz aldrin -General,In song who is the man who made Eastwood such a star,The fall guy – unknown stuntman,General,When is St Swithens day,15th July,General,Which of Jesus disciples was the treasurer,Judas Escariot -General,An 18th century elegant style of furniture,Chippendale, History & Holidays,Which Comedian Hit The Front Page Of The Sun On March 13 th 1986 For Allegedly Eating A Hamster ,Freddie Star ,Geography,To The Nearest 500 Million How Many People Are Alive Today ,"5,5 Billion People " -Science & Nature,What Does The BCG Vaccine Immunise Against ,Tuberculosis , History & Holidays,How Many Days After Hiroshima Did Nagasaki Receive The Second Atom Bomb ,Three , History & Holidays,Who received the nobel peace prize in 1964 for civil rights leadership?,Martin Luther King Jr - Geography,What is the basic unit of currency for Monaco ?,Franc,General,"Hamlet, Macbeth Othello which Shakespeare tragedy is missing",King Lear,General,"If you had some gentles, jig, gag and coop what are you doing",Fishing - History & Holidays,Who Was The Last King To Sit On The English Throne ,George VI ,General,Who wrote Das Kapital,Karl marx,General,What's the Spanish word for cottonwood tree,Alamo -Science & Nature,What element is represented by the symbol W?,Tungsten,General,Pediophobia is the fear of,Dolls,Music,Which Singer Did Diana Ross Play In The Movie “Lady Sings The Blues”,Billie Holliday -General,"What age of exploration began october 4, 1957",Space age,Science & Nature,Which astronomer first observed 4 moons of Jupiter in 1610?,Galileo Galilei,Sports & Leisure,Which Premiership footballer has the real name of Sulzeer? ,Sol Campbell  -Science & Nature,Which Metal Expands The Most When Heated ,Caesium ,General,Who fought the 100 years war?,France and England,General,Cockney Rhyming Slang: apples and pears,Stairs -General,Zelda Sayre was the wife of which U.S. novelist,F scott fitzgerald,Science & Nature,Who Did Jean De Brunhoff Create ,Babar The Elephant ,Food & Drink,What were the two major crops used by the Aztecs ? ,Maize (corn) and Amaranth  -General,What animal is thought to have inspired the myth of the unicorn,Rhinocerous,General,What does o.p.e.c stand for,Organisation of petroleum exporting countries,General,What is Charles E Chuck Yeagers Claim To Fame In The Field Of Aviation,First Man To Fly At Speed Of Sound -General,"Dorethy Parker said ""Scratch an actor and you will find"" what",An Actress,General,Where in the world would you find Adelie Land,Antarctica,General,What city in the USA means First People in Indian,Biloxi -Music,"""Epic"", ""From Out Of Nowhere"" And ""Falling To Pieces"" Were Early 90's Tracks From Which US Band",Faith No More,General,What is improved if yoU.S.leep on your right side,Digestion,Toys & Games,"If you ""peg out"" what game are you playing",Cribbage -Science & Nature,What Were Dachsunds Originally Bred To Hunt? ,Badgers ,General,Who was the final mayflower survivor,Mary allerton cushman,General,"A member of the Commonwealth, which is the most southerly African country through which the Greenwich meridian passes",Ghana -Sports & Leisure,"In the 1983 Wimbledon men's final who did John McEnroe beat 6-2,6-2,6-2? ",Chris Lewis ,General,In what religion are the Vedas a central part,Hindu,Science & Nature,Name the largest planet in the solar system.,Jupiter -Sports & Leisure,"When England Won The Five Nations Grand Slam In 1980, Who Was The Captain? ",Bill Beaumont ,General,"What insect family has the most varieties, making up 290,000 of the 751,000 insect classes",Beetle the beetle,General,What U.S. state includes the telephone area code 317,Indiana -General,Which word literally meaning sweet paste is a breakfast item,Marmalade,Music,What Was The Name Of Sean Ryder Post Happy Mondays Group,Black Grape,General,In the song who killed Cock Robin,Sparrow -Food & Drink,"Booze Name: A manhattan, but with scotch whiskey.",Rob roy,Sports & Leisure,Why Was Mathew Simmons In The News in 1995? ,Eric Cantona Kung Fu Kick ,General,"Which Band That Had Just One No.1 Hit In The 1980's Were Originally Called ""The Nightmares In Wax""",Dead Or Alive -Geography,What Record Does The 2nd Lake Pontchartrain Causeway Hold ,It Is The Longest Bridge In The World 23.9 M / 38.4 KM ,General,Cognac must be at least 5 years old before it's labelled what,Napoleon,General,What part of Britain is St. David the patron saint of,Wales -Geography,Which North Yorkshire village is famous for both its Racecourse and its Barracks ,Catterick ,General,A spectacular movement in which the dancer propels himself or herself around a supporting leg with rapid movements of the other leg while remaining in a fixed spot.,Fouetté en tournant,Food & Drink,Coquille St Jaques is a fancy name for what? ,Scallops  -General,What is the only place on earth that does not have a time zone?,Antarctica,Art & Literature,Whose Autobiography Was Entitled (Dear Me) ,Peter Ustinov's ,General,"In 1975, what re-opened after an 8 year closure",Suez canal -General,What country invented Phonecards,Italy,General,What does the German word Panzer literally mean,Armour,General,What sport's umpire sat in a padded rocking chair before 1859,Baseball -General,The first official baseball hat was made of what,Straw,Sports & Leisure,In 1998 Which ManUtd Player Became The Worlds Most Expensive Defender ,Jaap Stam ,General,Mendavoy and Martinez are characters in which TV show,NYPD Blue -General,Who is the Patron Saint of Young Virgins,St Agnes,General,What Sex Are Responsible For The Sales Of The Most Valentines Day Cards Is It Men Or Woman ,Woman,General,Joe Yule became famous as who,Mickey Rooney -General,Thief what hospital established the first us school of nursing,Bellevue,General,Name any of the demonstration sports at the Sydney Olympics,Ballroom Dancing – Snooker,General,Who wrote the original sherlock holmes stories,Sir arthur conan doyle -General,"Who recorded ""yakkety yak"" in 1958",Coasters,General,What show did Claire Danes get her start on?,My So-Called Life,General,How many members make up the House of Represetatives in the USA?,435 -Geography,What is the capital of Ukraine,Kiev,Science & Nature,The fourth planet from the sun is ____.,Mars,General,Who was hercules' father,Zeus -General,A persuasive or flattering person is said to have the gift of what,The gab,General,"In the Gasden Purchase, the USA bought territory from which country",Mexico,General,Where were the first books printed,China -General,What would a rhinotillexomaniac be doing,Picking their nose,General,From where do alsatians originate,Alsace-lorraine,General,"In Wallace and Grommit's 'The Wrong Trousers', what is the name of the penguin who steals the trousers",Feathers mcgraw -General,Silver hallmarks - what object is stamped on Birmingham items,Anchor,Music,"Which Band Had Hits With ""Dance Hall Days"" & ""Everybody Have Fun Tonight""",Wang Chung,General,"Which Country Has Won The Eurovision Song Contest The Most Times Behind ""Ireland""",France -Geography,In 1904 Danish Biologist Johannes Schmidt Discovered The Sargasso Sea In The North Atlantic To Be The Breeding Ground Of Which Fish ,European Eel ,Music,"Which Of The Gold Diggers Movies Contains The Song ""We're In The Money""",Gold Diggers Of 1933,General,"Name actor Von Ryan's Express, The Third Man, Brief Encounter",Trevor Howard -General,"Which country had the hottest temparture ever recorded in Sept. 13, 1922, at 136 F / 58 C",Libya (El Azizia),General,"What kind of music imitates the fanfares, drum rolls, & commotion of a battle?",Battaglia,Music,"With Which Singer Is ""Get Up I Feel Like A Sex Machine Associated""",James Brown -General,U.S. Captials - New Jersey,Trenton,General,Ferdinand Magellan Was The First Person In History Wo Do What,Sail Around The World,Music,Which Lennon & McCartney Tune Was A 1966 Hit For Cliff Bennett & The Rebel Rousers,Got To Get You Into My Life -General,Depeche Mode the 80s groups name translates as what,Fast Fashion,Entertainment,"In 'Coronation Street', who is Ken and Denise's son?",Daniel,General,Who danced with Gene Kelly in Anchors Aweigh in 1945,Jerry Mouse -General,The study of word origins is called what,Etymology,General,David Harold Mayer became famous as who,David Janssen,General,How is the Olympic torch lit,By the sun in Greece -General,What was voted the best monopoly piece in 1998,The Car,General,Who was the voice of Scooby Doo,Mickey Dolenz,General,What did J Edgar Hoover call home of disease bribery rape,Motels -General,What game tiles were first made with a pocket knife,Scrabble,Music,Who Were Guilty In 1980,Barbara Streisand & Barry Gibb,General,In the Bible what is the first mentioned colour,Green -General,The asteroidea are which order of creatures,Starfish,General,What is a peruke,A wig,General,What links Yul Bryner Burt Lancaster WC Fields Joe E Brown,Circus Performers -General,University Western Australia developed a robot to do what,Shear Sheep,General,Mo Moreland Was The Most Recognisable Member Of Which Dance Troupe Seen On UK TV In The 1970's & 1980's?,The Roly Polys,General,Where was president kennedy assassinated,"Dallas, texas" -Food & Drink,"Which drink, invented in 1886, was first marketed as the 'Esteemed Brain Tonic and Intellectual Beverage'? ",Coca Cola ,General,Johnny Depp is afraid of what,Clowns, Geography,What is the capital of Gambia?,Banjul -General,A stone slab at the top of a classical column aiding the support of the architecture. ,Abacus,General,What year was Walt Disney born,1901,Music,What's The Connection Between Robert Palmer & Duran Duran,The Power Station -Religion & Mythology,Who is the Norse god of the sky and thunder,Thor,Sports & Leisure,Who was first to win the US Masters five times? ,Jack Nicklaus , Geography,What is the basic unit of currency for Swaziland ?,Lilangeni -General,Film - who played sue snell in carrie,Amy irving, History & Holidays,Who introduced Xmas trees to England in 1841 ,Prince Albert ,General,What inventor said Genious is 1 percent inspiration and 99 percent perspiration,Thomas edison -Food & Drink,What name is given to the aniseed flavoured spirit drunk in Turkey? ,Raki ,General,Which spice gives curry its colour,Turmeric,General,Who wrote the novel 'The Picture of Dorian Grey',Oscar wilde -General,What country consumes the most tea per capita,Ireland,General,The Three Stars is the national ice hockey team which country,Sweden,General,What does a mosque's mihrab indicate the direction to,Mecca -Food & Drink,How many bottles of Champagne are there in a Magnum? ,Two Bottles ,General,Mail old trek: the providers live on what planet,Triskelion,General,Which Japanese picture-puzzle game is based on an initially blank grid of squares?,Hanjie -General,"In one of donald horne's novels, as what was australia dubbed",Lucky country,Music,Which Singer Was The Father Of Linda Womack,Sam Cooke,General,What is the sum of 99 - 33 - 33 - 33,Zero 0 -General,In the Balanta tribe women stayed married until what happened,Wedding dress wore out,General,Which literary character lives at 4 Privet Road,Harry Potter,General,"In Greek mythology, europa was the mother of ______",Minos - Geography,What is the largest of the countries in Central America?,Nicaragua, Geography,In which state is the source of the Mississippi River?,Minnesota,General,How many of the u.s states have similar names (like virginia and west virginia),Six -General,Who Did Andre Agassi Defeat When He Won His First Ever Wimbledon Singles Title,Goran Ivanisevic,General,In Indiana it's illegal for liquor stores to sell what,Cold milk/soft drinks warm ok,Science & Nature,What Is A Number Called That Is Equal To The Sum Of All The Numbers By Which It Is Divisible ,A Perfect Number  -Music,Who Was Tommy Steele's Original Backing Group,The Steelmen,Music,Who Did Sid Vicious Replace In The Sex Pistols,Glen Matlock,General,The Color of Money starring Paul Newman was released in this year,1986 - History & Holidays,"""In the Christmas song 'Rudolph the Red Nosed Reindeer' how is his nose described? """"You would even say it ___"""" "" ",Glows ,Sports & Leisure,Who Won The 2007 Masters Snooker Final On Sunday Night? ,Ronnie O''Sullivan ,General,"On ""Sesame Street,"" what is the name of Big Bird's teddy bear",Radar -General,The word 'bandit' comes from which language,Italian,General,Which group of Marvel superheroes fought Doctor Doom,Fantastic Four,General,Who was the narrator in Herman Melville's Moby Dick,Ishmael -Food & Drink," Even though it tastes nothing like grapes, a __________ is often eaten for breakfast.",Grapefruit,General,In what Australian state would you find Shellharbour,New south wales nsw,General,If you suffer from epistaxis what is wrong,Nosebleed - Geography,What is the basic unit of currency for Iceland ?,Krona,General,Which country (capital Luanda) lies just south of Zaire,Angola,General,What woman is thought of as the greatest trick shot artist of all time,Annie oakley -General,Stephanie Powers was Girl from UNCLE characters name,April Dancer, History & Holidays,Who was the female star of 'Bewitched' ,Elizabeth Montgomery ,General,The Bosphorus links which two seas,Black and marmara -General,In what language is the Magna Carta written,Latin,General,"What Was Designed In 1997 By Art Teacher ""Bruce Rushin"" To Symbolise The Progress Of Technology Within British Industry",The £2 Coin,Art & Literature,Who wrote the 'Noddy' books?,Enid Blyton -General,What is a group of this animal called: Swan,Bevy herd lamentation wedge,General,What did Sir Rowland Hill introduce in Britain in 1840,Envelopes,General,When did Brazil move its capital from Rio de Janeiro to Brasilia,1960 -General,Who wrote the book Billy Budd also Moby Dick,Herman Melville,General,What is the proper name for a falling star,Meteor,General,On what continent did the Incas live,South america -General,"Which disease is also known as ""Hansen's Disease""",Leprosy,General,What is the name of the horse in the black stallion,The black,General,In 19th century England what was a Snickerdoddle,Cookie -General,He gave us malted milk,William horlick, History & Holidays,What made Michael Milken famous and rich? ,Junk Bonds ,Music,Which instrument is principally used in Boogie-Woogie?,Piano -Science & Nature,What Colour Are A Puffin's Feet In Summer? ,Red ,General,What is the punishment for drunk driving in Norway,Three months of Government lectures,General,What extends from the Arctic to the Aral Sea in Russia,Ural mountains -General,Who succeeded Pompidou as French president,Valery giscard d'estaing,Music,In 1981 Who Was Arrested By The Indian Army On Suspicion Of Spying During A Round The World Flight,Gary Numan,General,Mother maybelle and the carter family were regulars in this variety show,Johnny cash show -General,Dolores Ibarruri was better known under what name during the Spanish Civil War,La passionaria,General,What is a non-cancerous tumour,Benign, Geography,Where are the Nazca Lines?,Peru -General,In what country was John McEnroe born,Germany,General,"What is an example of a notable ""football stadium""",Wembley stadium,General,Whose headstone reads 'that's all folks',Mel blanc -General,What is the currency of Guatemala?,Quetzal,General,From Which Movie Did The Pop Group “Duran Duran” Get Their Name?,Barbarella,General,The Swiss Royal Exchange building is commonly known by what epiphet?,Gherkin -General,What is the botanical name of the flower known as 'Autumn Crocus',Colchicum,General,Actor Larry Hagman Is Actually The Son Of Which Very Famous Actress,Mary Martin,General,Persian Sultan Selim hanged 2 doctors - advised him stop what,Drinking Coffee -General,In which constellation is the star cluster Pleiades,Taurus,General,In sailing ship days who often acted as the ships doctor,Cook,General,"In telephony, what do the initials ADSL stand for",Asymmetric digital subscriber line -General,"With age, what organ shrinks faster in males than in females",Brain,Geography,On what mountain are four presidents' faces carved,Rushmore, History & Holidays,"How many witches were burned at the state in salem, massachusetts ",None  -General,"Who recorded ""why"" in 1960",Frankie avalon,Science & Nature,What Is A Common Name For The Trachea ,The Windpipe ,General,"Quakers Natural, Prewetts Honey, California Revival - types what",Museli - History & Holidays,What Was The Name Given To Those Who Campaigned For Social Reform In England Between 1836 & 1858? ,The Chartists ,Religion & Mythology,Whose name did God change to Israel?,Jacob,General,Which two countries formed tanzania,Tanganyika and zanzibar - History & Holidays,In which 1944 film were Trick and Treat children to be seen ,Meet me in St. Louis. ,General,What do you give on the third wedding anniversary,Leather, History & Holidays,What does the name Dracula mean in Romanian,Son of the Devil  -General,Where did bagpipes originate,Middle east,Science & Nature,Who is known as the father of genetics,Gregor mendel, Geography,Nassau is the capital of which country?,Bahamas -General,Which country has the most southerly city,Chile,General,In which of Goldsmith's Comedies does Kate Hardcastle appear,She stoops to conquer,General,What is the modern name of the Roman town of Lutetia,Paris - History & Holidays,Approximately how many children did pharaoh Ramses II father?,160,General,Where can Americans always see the time as 4.10,$100 bill Independence hall clock, History & Holidays,Who developed the first nuclear submarine?,Soviet Union -General,In Which Classic 80's Tv Show Would You Find A Sheppard and His Lost Sheep?,The Dukes Of Hazzard,General,Zipporah was the wife of who in the Bible,Moses,General,The busiest muscles in the body are found where,Eyelids -General,"A row of columns, usually equidistant, supporting a beam or entablature. ",Colonnade,Sports & Leisure,Which football team plays it's home games at The Dell? ,Southampton ,General,What does 180 degrees make,Straight line -General,In Life of Brian what name does Stan want to be known as now,Loretta,General,Who is the Norse god of thunder & war,Thor,General,What is the Capital of: Mongolia,Ulaanbaatar -General,Which spirit is added to sugar and egg yolks to make Advocaat,Brandy, History & Holidays,In the Christmas song who 'are getting fat'? ,Geese/Goose ,General,What was invented by Dr Edward Land in 1947,Polaroid -General,What gets nine inches longer when its up,Concord – heat expansion,General,"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,General,What country eats the most cereal per capita,Turkey - History & Holidays,Who Was The First Roman Emperor ,Augustus (Gaius Julius Octavianus) ,General,What is the tube that carries urine from the kidneys to the bladder,Ureter,General,Who wrote A History of English Speaking Peoples,Winston churchill -General,Where could you spend a Lempira,Honduras,General,Name the ruling family of the Austro-Hungarian Empire in 1914.,Habsburg,General,In 1982 San Francisco became the first US city to do what,Ban sale possession of handguns -General,What is the state tree of Idaho,White Pine,General,Two door car with a hard roof and slopping back,Coupe,General,Who directed the film 'bowfinger',Frank oz -General,If food has been 'devilled' how would you expect it to taste,Hot,General,What common word comes from Knights after the Crusades,Freelance,General,Which Pope died on today's date in 1978,John paul 1 -General,What island group is off the east coast of southern South America,Falkland islands,General,"Which film, directed by Oliver Stone, won Best Film Oscar in 1986",Platoon,General,Which UK punk group had hits White Riot and London Calling,The Clash -General,Which country was split into two zones by the Yalta agreement,Germany,General,"Who wrote ""the french lieutenant's woman""",John fowles,General,Relating to food what is 'halloumi',Cypriot cheese -Religion & Mythology,"According to the Bible, who were the brothers of Jesus?",James and John,Music,"Whose Hit Singles Album Was Entitled ""Around The World"" The Journey So Far",East 17,General,"Which soldier, the last-surviving British soldier of World War I, is immortalised in a song by Radiohead?",Harry Patch -General,There are how many miles of nerves in the skin of a human being,45,Music,"""Seven And The Ragged Tiger"" Was An Album By Which 80's Band",Duran Duran,Science & Nature,What element has the periodic table name Au ?,Gold -General,What did the 1980 U.S. naval academy class have for the first time in history,Women graduates,General,In Disney's 1973 animated Robin Hood what creature was Robin,A Fox like Marion,Science & Nature,How Many Bones Are There In The Adult Human Body ,206 Bones  -Food & Drink,Who is McDonald's mascot(full name),Ronald mcdonald,Music,"Which Solo Artist Won A Brit For Best Single At The 2005 Brits For The Song ""Your Game""",Will Young,General,In thermodynamics what word describes the disorder of a system,Entropy -General,Who was the director of 'terminator and titanic',James cameron,Music,"Rleased By Island In 1984 ""Legend"" Was A Collection Of Whose Singles",Bob Marley, Language,What is the literal meaning of 'pince-nez'?,Pinch nose -Science & Nature,What material was invented by Belgian-born US chemist Leo Baekeland in 1905? ,Bakelite ,Mathematics,2 + 5 x 6 = ?,32,General,Sameer Bhatia from Bangalore began what service,Hotmail -General,In what Australian state would you find Hobart,Tasmania,General,Blackburn Manager (2008) Paul Ince Has A Very Famous Sporting Cousin Who Is It,Nigel Benn,General,Which singer was given the nickname 'The Killer',Jerry lee lewis -General,How many legs does a spider have,Eight,Geography,What Is The Largest Island In The Mediterranean ,Sicily ,General,Istanbul and Constantinople what else was it called,Byzantium - History & Holidays,Who helps Santa make toys? ,Elves ,General,What is a group of ducks on the water,Raft,General,What gas in the blood of divers can cause the bends,Nitrogen -General,Picasso was almost left for dead when he was born. who saved his life,An,General,The ghost of Anne Boleyn might be expected to walk in which London palace,Hampton court,General,What's the basic unit for measuring electric energy,Joule -General,Who created the muppets,Jim henson,General,"Whose work is never done, according to a popular saying",A woman's,General,What happened to women who tried to watch original Olympics,Thrown off cliff -Art & Literature,"A group of English painters formed in 1848. These artists attempted to recapture the style of painting preceding Raphael. They rejected industrialized England and focused on painting from nature, producing detailed, colorful works.",Pre-Raphaelite Brotherhood,Toys & Games,Eva Gabor and Johnny Carson popularized this game by climbing over each other.,Twister,Music,Number of permutations of the band Wings,6 -General,Who wrote the novel The Betsy,Harold Robbins,Art & Literature,What was sherlock holmes most famous novel?,The Hound of The Baskervilles,General,What is the violet variety of quartz,Amethyst -Food & Drink,What Is A Bouquet Garni ,Mixed Herbs In A Perforated Sac ,General,Who married shania twain,John lange,General,Who wrote 'sexual behavior in the human male' in 1948,Alfred kinsey -General,Star wars: what was the name of the planet destroyed by the death star,Alderaan,Music,Which 60's Tv Comedy Show is Mentioned On The Sargeant Peppers Lonely Hearts Club Band Album,Meet The Wife On (Goo Morning Good Morning), History & Holidays,Which 1976 Movie features the character 'Travis Bickle'' ,Taxi Driver  -General,Where did guinevere retire to die,Amesbury,General,In which country do the Indri and Sifaka Lemurs live,Madagascar,General,Who went on to become an Eastern Communist leader after working as a pastry chef at London's Carlton Hotel,Ho Chi Minh -Science & Nature," Bats are the only mammals that are able to fly. The ""flying squirrel"" can only do what the gliding opposum does _ glide for short __________",Distances,Science & Nature,Myositis affects the _________.,Muscles,General,How Many Claws Does A Domestic Cat Have,18 - History & Holidays,"""When visiting Finland, Santa leaves his sleigh behind and rides on a: """"BroomStick, Rudolph, A Goat Named Ukko, A White Goose"""" "" ",A Goat Named Ukko ,General,What designation denotes the hardest type of pencil lead?,9H,Science & Nature,What is the fastest breed of dog ?,Greyhound -Science & Nature,"This animal is normally measured in ""hands"".",Horse,General,Which tube line goes to Brixton,Victoria,General,Whose legs were banned from metro posters too distracting,Marlene Dietrich -Music,Which Song That Has A Drink Mentioned In The Title Was A Xmas No.1 Way Back In 1988,Missletoe & Wine,General,Aretha Franklin sang this song in the original Blues Brothers movie?,Think,General,"Which word, associated with Nuclear Physics, is a variation of a Greek word meaning 'final cut'",Atom -Geography,"What Is Common To The Republic Of Ireland, Northern Ireland, Scotland, Wales, Monaco, Denmark & Portugal ",They All Have A Coastline And A Land Border With Only 1 Other Country ,General,In which English city is the Martyr's Memorial,Oxford,General,What did William the Conqueror regard as a sign of victory in the battle of Hastings and also appears on the Bayeux Tapestry?,Halley's Comet -Science & Nature, The poison_arrow frog has enough poison to kill about __________,"2,200 people",General,"Who produced the album In My Life, featuring covers of Beatles' songs by various artists",Sir george martin,General,Which part of a boar is called a wreath,Its tail -General,The Mercedes Benz car company is based in which German city,Stuttgart,Entertainment,"Mel Blanc, the voice of Bugs Bunny, was allergic to what?",Carrots,General,Navy ranks: stars a 'commodore' has,1 -General,What Olympic event was dropped in 1920,Tug of War -1900 to 1920,General,Who was the first woman to receive The Order of Merit 1907,Florence Nightingale,General,Who wrote The Rights of Man - and The Age of Reason,Thomas Paine -General,Who composed the Christmas Oratorio,J S Bach,General,Which Magazine Was Founded In 1979 By “Chris & Simon Donald”,Viz,Music,According To Barry Manilow What Is The Name Of The Showgirl At The Copacabana?,Lola -Music,Which Rock Star Took His Stage Name From An Anagram of Oral Sex?,Axl Rose,General,In what film was line A mans gotta do what a mans gotta do,Alan Ladd Shane,General,What are the Buckingham Palace guards commonly known as,Beefeaters -General,Which Former Radio Luxembourg DJ Found Lasting TV Fame In 1966 In The Person Of A Memorable Comic Creation,Warren Mitchell As Alf Garnett,General,What is 'murgh' in an Indian restaurant?,Chicken,General,"The 'Three Graces' in Liverpool consist of the Liver Building, Port of Liverpool building and which other?",Cunard Building - Geography,What is the basic unit of currency for Belize ?,Dollar,Entertainment,"Which native of Flint, Michigan, once advised us to ""drive your Chevrolet through the USA""?",Pat Boone,General,"This song by the Shirelles, fought its way to the top of the pop chart",Soldier boy -General,What is an angle greater than 90 degrees,Obtuse,General,From which village did the pop group 'The Village People' hail,Greenwich village,General,Which Bonn musician left for Vienna in 1792 to study Haydn,Beethoven -Music,Roland Gift Was The Lead Singer Of Which British Group,Fine Young Cannibals,Science & Nature,What toe is the foot reflexology pressure point for the head?,Big toe,Entertainment,What license plate number is on the Volkswagon on the cover of The Beatles' 'Abbey Road' Album?,281F -General,Which creature has a carapace and a plastron,Turtles shell up low,General,A connoisseur of good food,Gourmet,Science & Nature,Which meteor shower occurs on the 21st April ?,Lyrids -General,"Which Greek did Cicero call ""The Father of History""",Herodotus,General,The Aphrodite of Melos has a more famous name - what,Venus de Milo,General,"Whats the computer term ""bit"" short for",Binary digit -Music,"Who Had A Hit With ""(Ive Had) The Time Of My Life""",Bill Medley & Jennifer Warnes,General,So far 11 US presidents have been what,Generals,General,In the UK 9 out of 10 people live within walking distance of what,A Bus Stop -General,Sofia is the capital of ______,Bulgaria,People & Places,"Who Wrote A personal cheque for $23,000,000 when buying RKO ? ",Howard Hughes ,General,What saint is the huge church in the Vatican named after,St peter -General,What was the name of the first space shuttle ever built,Enterprise,Music,Which Influential Electro Band Were Founded In Sheffield In The 1970's By Stephen Mallinder & Richard H Kirk,Cabaret Voltaire,Music,Which Record Went Top 10 For Roy Orbison In This Decade,I Drove All Night -General,3 chemical elements most % human body O 65% C 18% and ?,Hydrogen 10%,Science & Nature,These animals were once used to bleed the sick.,Leeches,General,Gossima was the original name of what game,Table Tennis -Science & Nature,In The 19th Century Who Was The Railway King ,The Financier George Hudson ,General,"What was Paul Tibbett's claim to fame, established on August 6th 1945",Pilot of the plane which dropped atom bomb on hiroshima,General,What is the fastest land animal,Cheetah -General,"Which comedian's catch phrase was I won't take my coat oft, I'm not stopping",Ken platt,General,Which is the U.S. Mormon State,Utah,Food & Drink,"What did Queen Elizabeth I, most Popes and Adolf Hitler all insist on having at their dinner table ? ",Taster  - History & Holidays,Which two words are inscribed on a Victoria Cross? ,For Valour ,General,What expression did clark kent's newspaper boss like to use,Great caesar's,General,The tenth part of a Roman legion consisting of 600 men was known as what,A cohort -General,With what sport is jack nicklaus associated,Golf,General,"In the Star Trek: Voyager series, name the ex-Borg who is a member of the 'Voyager' crew",Seven of nine,General,What insect in Spain is known as La Cucaracha,The Cockroach -General,What name is given to the volcano that broods over Catania,Mount etna,Music,Which Beatles movie won the Oscar for Best Original Score?,Let It Be,General,What movie memorabilia sold at Christies in 1987 for £82500,Chaplains Hat Cane -General, The study of religion is _________.,Theology,General,Which group of people first used gold fillings,Incas of Peru, History & Holidays,What Office Did Churchill Hold For The Longest Continous Period? ,Prime Minister  -General,The study of the composition of substances & the changes that they undergo is __________,Chemistry,General,A cholecyst is more commonly known as a(n)___.,Gallbladder, History & Holidays,"U.S. President, John Quincy ________.",Adams -General,What do the cheeses Gruyere and Emmenthal have in common,Holes,Music,What Is The First Word Of The Classic Gloria Gaynor Hit “I Will Survive”,At (First I Was Afraid),General,What is the highest mountain in the world,Mt everest -General,Which Danish philosopher's name translates as 'churchyard',Kierkegaard,General,"What in London are the Whitechaple, Courtald and Heywood",Art Galleries,Entertainment,Who did Vivian Vance play on 'The Lucy Show'?,Vivian Bagley -Food & Drink,"If you ordered Cherries Jubilee, how would you expect them to be cooked? ",Flambeed (in kirsch) ,General,What is the decimal equivalent of binary 1111,Fifteen,General,Who won an Oscar for the African Queen,Bogart -Art & Literature,Who Wrote The Tin Tin Stories ,(Georges Remi ) Herge ,General,"After leaving 'The Belmonts', which was Dion's first hit on the Laurie label in October 1960",Lonely Teenager,General,What is the crime of embracery,Jury Bribing -General,39% of women admit doing this to their boyfriend,Throwing a shoe at him,General,Which is the last of the four Grand Slam tennis tournaments to be played in the year,Us open,Music,"In 1967, Who Became The First Singer To Win The Eurovision Song Contest For The UK?",Sandie Shaw -General,Who invented the chair,Egyptians, Geography,What river is Liverpool on?,Mersey,Sports & Leisure,What are the only two colours a table tennis ball is allowed to be in competitions?,White and Yellow -General,The main circle and trilithons at Stonehenge are built of which rock,Sandstone,General,"Particularly fond of dahlias and chrysanthemums, which garden insect has the scientific name forficula auricularia",Earwig,General,What name is given to the bonds which link amino acid molecules together to form proteins,Peptide bond -General,Who sang the song 'Ironic'?,Alanis Morisette, History & Holidays,What Was The Name Of The Film Which First Featured Bing Crosby's Song 'White Christmas'' ,Holiday Inn ,General,Who was the first British SF author to win a Hugo award,Eric Frank Russell Allamagoosa -Science & Nature, __________ 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.,11,General,Whose character name was also the title of the show?,Punky Brewster,General,There are 12 bottles of champagne in a what,Salmanazar -General,Who was nicknamed The First Lady of Song,Ella Fitzgerald,General,Who introduced bagpipes to the british isles,Romans,General,Which ocean has an area of approximately 166 sq km,Pacific ocean -General,Which English actress was most famous for her role in Wilde's The Importance of Being Earnest,Dame edith evans,General,Where could you spend a Markka,Finland,General,What is the size of each angle in an equilateral triangle,Sixty degrees -Music,"Who Did Paul McCartney write the song ""Hey Jude"" For",Julian Lennon,Sports & Leisure,"He Wears a No.10 Jersey, I Thought It Was His Position But It Turns Out To Be His IQ Who Was George Best Describing ",Paul Gascoigne ,General,What sea is situated between Vietnam & the Philippines,South china sea -Science & Nature," A rodent's teeth never stop growing. They are worn down by the animal's constant gnawing on bark, leaves, and other __________",Vegetable matter,Science & Nature,Which star is nearest the Earth ?,Sun, History & Holidays,Which Queen Of England Was Known As Bloody Mary? ,Mary I  -General,What are the three main types of Greek columns,"Doric, ionic & corinthian",General,What is a group of this animal called: Geese,Flock gaggle skein,Entertainment,"Who played Dorothy in ""The Wizard of Oz""?",Judy Garland -Sports & Leisure,What Did The Inter Cities Fairs Cup Change It's Name To ,UEFA Cup ,General,In the film Gremlins what is the true name for Gizmos race,Mogwi,General,"What theme park is located in buena park, california",Knotts berry farm -General,How much water would a human drink in a lifetime,500 million litres,General,Why do Tibetans grow long nails on little fingers,To pick noses efficiently,Music,What Is The Pop Star Darius's Sir Name,Danesh -General,Rene Lalique - Art Nouveau designer worked what material,Glass,General,"Dire straits sings 'here i am again in this mean old town, and you're ______'",So far away from me, History & Holidays,In Which Scary Movie Will You Find The Character 'Dr Egon Spengler' ,Ghostbusters  -General,The famous last words: 'go away___ I'm alright' were uttered by whom,H.g. wells wells,Science & Nature,In 1997 There Was A Mid Air Collision Between A Saudi Boeing 747 And A Kazak Airliner That Claimed The Lives Of All 349 People On Board Near Which City Did It Occur ,New Delhi ,General,A road known as a corniche would be located where?,On the Coast -General,"Which single didn't get banned by the BBC despite the line, ""Candy never lost her head even when she was giving head""",Walk on the wild side,General,Which chenical element has the highest melting point?,Carbon,General,Quarter oz whiskey half ounce sloe gin makes a black what,Hawk -General,Who was the first trapeze artist to perform without a net,Jules Leotard,Music,In What Year Did Wet Wet Wet Top The UK Singles Chart For 15 Weeks With “Love Is All Around”?,1994,General,Who signed the USA for Africa poster with his thumbprint,Stevie wonder - Geography,What is the capital of Nepal ?,Kathmandu,General,“ Gracie Fields ” Was Born In A Fish N Chip Shop On January 9 th 1898 In Which North West Town,Rochdale,General,"Who is famous for writing 'interview with the vampire', the first book in the vampire chronicles",Anne rice -Religion & Mythology,Which Norse god had the Valkyries as handmaidens?,Odin,Entertainment,Name Alley Oop's girl friend,Oola,General,What is the third book of the Old Testament,Leviticus -General,What's the average number of murders a child has seen on tv by the age 16,"18,000",General,From what language does the word alphabet come,Greek -alpha beta,General,Ennisophobia is fear of what,Criticism -General,Who would use a barny to reduce noise,Film Cameraman cosy over cam,General,What character did robert urich play in SWAT,Jim street,Music,Guess The Band From These Initials VA / MB / MC / EB / GH,The Spice Girls -General,On Monday Morning July 16th 1945 The World Was Changed Forever When The Worlds First Atomic Bomb Was Tested In An Isolated Area Of Where,New Mexico,Science & Nature," __________ sea otters spend almost all of their time in the water. Alaska sea otters often sleep, groom, and nurse on land.",California,Music,Who Wrote The Score To West Side Story,Leonard Bernstein -General,What is the medical term for 'loss of memory',Amnesia,General,Books original title 4.5 years struggle against lies stupidity & co,Mein Kampf,General,What actor dropped out university to be a dishwasher,Warren Beaty -General,Who won an Oscar posthumously,Peter Finch – for Network,General,Which Is The Only English Football Team To Play In The Welsh Football League,Owestry FC,General,Colgate (the toothpaste) translates to what in Spanish,Go hang yourself -General,What was the name of richard dawson's character on 'hogan's heroes',Peter,General,Who performed the worlds first human heart transpant,Dr christian barnard,General,Who was the leader of the wolf pack in The Jungle Book,Akala -General,Who wrote the novel 'Little Women',Louisa may alcott,Sports & Leisure,What number wood is a driver in golf?,One,Music,Who Directed The Stage Version Of The Lion King,Julia Taymor -Music,What Was The Beatles Best Selling Single In Britain,She Loves You,Music,What Was The Bangles Only Number One Hit In The UK?,Eternal Flame,Food & Drink,What Is The Hemispherical Pan Used In Chinese Cooking ,A Wok  -General,In astrology what was the age before Aquarius,Age of Pisces,General,What was the club house of the Get Along Gang?,A red Caboose,Science & Nature,The process of removing salt from sea water is known as ___________.,Desalination -General,What country must import river sand from Scotland for construction & camels from North Africa,Saudi arabia, History & Holidays,What was Brenda Lee doing Around The Christmas tree in 1958 ,Rocking ,Music,_______ Rain Was A Minor Hit For Bruce Hornsby In 1987,Mandolin -General,A study of physics and chemistry of celestial bodies,Astrophysics,General,The hardy boys and ______,Nancy drew,Music,Which Famous Composer Did Falco Sing About,Amadeus -General,What year was Archduke Ferdinand assassinated,1914,General,What is the closest planet to the sun,Mercury,Music,"Which Tv Detective Sang About A ""Silver Lady"" In 1977",David Soul -Art & Literature,Who Wrote The Gulag Archipelago ,Alexander Solzhenitsyn ,General,What was Rocky Balboa's nickname in the ring,The italian stallion,General,In 1896 the speed limit for horseless carriages was raised from 4 mph to what,14 mph -General,In what city was the worlds first blood bank opened 1940,New York – Richard Charles Drew,General,"Who said ""sex older women best they think its their last time""",Ian Fleming,Entertainment,Who wrote 'Roll Over Beethoven'?,Chuck Berry -Science & Nature,What Vitamin is Thiamine?,Vitamin B1,General,What is the Capital of: Dominican Republic,Santo domingo,General,Peniaphobia fear of what,Being Penniless -General,What Beatle is left handed,Paul mccartney,General,Which song was Britain's first Eurovision Song Contest winner,Puppet on a string,Science & Nature," Zebus are humped cattle found in India, China, and northern Africa. Zebubs are tsetse_like flies found in __________",Ethiopia -General,"A flattened, shallow column or pier projecting from a wall. It usually has a base, shaft, and capital but is decorative rather than structural. ",Pilaster, History & Holidays,What 'MBC'' Was A Christmas Number One In December 1978 ,Mary's Boy Child ,General,What is the name of Mighty Mouse's girl friend,Pearl Pureheart -General,Wadi al Muli is better known as where,Valley of the Kings,General,How many tail feathers has a Kiwi,None,General,A coffee pot with a plunger that pushes the grounds to the bottom,Cafetiere -General,International Phonetice Alphabet: F,Foxtrot,General,What is a group of this animal called: Kangaroo,Troop mob,General,In ancient Greece young brides had to sacrifice what,Their Dolls – show they were grown up -General,What was the name of King Arthur's sword,Excalibur,Music,"Who Wrote The Songs Manic Monday, Nothing Compares To You And I Feel For You",Prince,General,As what is a camelopard also known,Giraffe -Music,"Now Immensely Famous ""She's A Superstar"" Was The First Chart Entry For Who In 1992",The Verve,General,"In which movie, in 1962, did Muhammad Ali appear",Requiem for heavyweight,General,Country and Western music star Harold Jenkins is better know as what,Conway twitty -General,Ichthyology is a study of ______,Fish,General,Whose middle names are Charles Linton,Tony blair,General,Fredericton is the capital of which Canadian province,New brunswick -General,Robert Brown M Caroline Bliss Moneypenny who was Bond,Timothy Dalton,General,How long did the hundred years war last,116 years,General,In which of the world's continents would you find Mount Erebus,Antarctica -Geography,What is the capital of Switzerland,Bern,General,Who created Tarzan (all names) in 1914,Edgar Rice Burroughs,General,"A male dancer who performs the 'princely' roles of the classical ballet, such as the Prince in Swan Lake.",Danseur noble -General,Maoni Vi of Capetown has the world longest what at 28 inches,Pubic Hair,General,Poland has a coastline along which sea,Adriatic,Science & Nature,What is the scientific name for a turkey's wishbone?,Furcula - History & Holidays,Which Comedien started Writing For Private Eye Magazine Ensuring Its Success ,Peter Cook ,General,Where is the world's largest restaurant,Bangkok,Sports & Leisure,"What goes to the F.A. cup final every year but never gets used, and never will get used? ",The Losers Ribbons  -General,What does 'i.o.u' mean,I owe unto,Science & Nature,Whose Report Led To A Much Reduced British National Rail system The 1960's ,Dr Beeching ,General,What is the young of this animal called: Elephant,Calf -General,What is a group of this animal called: Crocodile,Float,Science & Nature,The green variety of beryl is called ________.,Emerald,General,What did marie curie die of on 4th july 1934,Radiation poisoning -General,"What 1945 film won best picture, actor, director Oscars",The Lost Weekend,General,"When the students in 'dead poets' society' stood on their desks and said 'o captain! my captain', who were they quoting",Walt whitman,General,What's the process of splitting atoms called,Fission -General,"Which word is used to mean, malicious enjoyment at the misfortunes of others ?",Schadenfreude,General,"Plus fours, the type of trousers much loved by golfers, are an example of which type of men's fashion",Knickerbockers,General,He Marquis of Blandford is heir to which British Peerage,Duke of marlborough -Science & Nature,What Part Of The Body Is The Axilla ,The Armpit ,General,Chuck McKinley was the only American to do what in the 60s,Win Wimbledon,General,In England placing what upside down is considered treason,A Postage stamp Monarchs head -General,Who sells turbo c++,Borland,General,What kind of animal is named after the botanist PeterPallas,Cat,General,"Who said ""More people would be alive if we had a death penalty""",Nancy Reagan -General,67% of dog owners do what at holiday time,Buy a present for dog,Music,What was Tom Jones' first UK number one single,It's Not Unusual,General,When did Levi Strauss produce the first jeans,1850 -General,What is the most common atom,Hydrogen,General,What is the fear of changes known as,Metathesiophobia,General,Who was executed in 1936 for the kidnapping and murder of Charles Lindbergh Junior,Bruno hauptman -General,What city was named for it's mining and trading of salt,Salzburg,General,The Canadian air force won the 1948 olympic gold medal for what sport,Hockey, History & Holidays,Who Released The 70's Album Entitled Cosmo's Factory ,Creedence Clearwater Revival  -General,What sea creature uses its chest as a table while floating on its back,Sea,General,What lollies are named after the safety devices they look like,Life savers,General,Homilophobia is the fear of,Sermons -General,Who was the last Roman Catholic monarch of England,James the second,General,What year did Neil Armstrong land on the moon,1969,General,Hanoi is the capital of ______,North vietnam - History & Holidays,"With two words, complete this BBC radio signal to the French Resistance in the film The Longest Day. The long sobs of autumns violins wound my heart with _____ ",Monotonous langour ,General,What is the common name for Sturnus vulgaris,Starling,General,"Name the character played by John Cleese in ""A Fish called Wanda""",Archie leach -General,"Ares, Thor and Mars are all what",Gods of war,General,What do you put on bread & butter to make fairy bread,Hundreds & thousands,General,James O'Barr authored this graphic novel which was made into a movie,The crow -General,American indians used beads as currency. What was it called,Wampum,Science & Nature,What Colour Does Litmus Paper Become If It Is In Contact With An Alkaline? ,Blue ,General,What is 6 inches bigger in Summer,Eiffel tower -General,Live Aid was to benefit which starving country?,Ethopia,General,Alexandria MN if wife asks man must do what before sex by law,Brush Teeth,General,What was the Roman name for Colchester?,Camulodunum -Food & Drink,What do you call the Irish dish of Mashed Potato's with chopped Spring Onions ,Champ ,General,Which is the largest aquatic bird,Albatross,General,All of the officers in the confederate army were given copies of what book,Les Miserables - History & Holidays,"Since 1923, the National Christmas Tree on the White House lawn has been lit every year _except _ one. What year was that, and why wasn't it lit? ",John F Kennedy ,General,"What is the most widely spoken member of the Iranian branch of the Indo-Iranian languages, a subfamily of the Indo-European languages",Persian,General,"Any dance to slow music; also, part of the classical pas-de-deux in ballet.",Adagio -General,"What German siren sang ""99 Luftballons"" (known in the U.S. as ""99 Red Balloons"")?",Nena,General,What U.S. city is called the Gateway to the West,St louis,General,Which aromatic rice is traditionally used in Indian cookery,Basmati -Science & Nature,What is the horn of a rhinoceros made of?,Hair, History & Holidays,"Who Uttered The Immortal lines 'They Think It's All Over, It Is Now'' ",Kenneth Wolstenholme ,General,Kallium is the old name for which element,Potassium - History & Holidays,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 ,General,What Connecticut town introduced the first telephone directory in 1878,New,General,A Philargyrist Is A Person Who Falls In Love With & Obsesses About What,Money -General,Of what were 500 million printed with elvis presley on the face,Stamps, History & Holidays,Calpurnia Was The 3rd Wife Of Which Roman Emperor ,Julias Caesar ,General,"Boxing, Wrestling and which Olympic event still exclude women",Weight Lifting -Music,"Which Singer Had A Worldwide Hit In 1991 With His Solo Debut ""Crazy""",Seal,General,In a bar in which European country might you be served 'tapas',Spain,General,Who Was The 1st American Actor To Be Nominated For 3 Emmy Awards For Playing The Same Character In 3 Different Shows,Kelsey Grammer -General,In the Bible who did God appear to on Mount Horab,Moses, Language,"What does ""c'est la vie"" mean?",That's life,General,Who composed Appalachian Spring,Aaron Copeland -General,Process of printing developed in 1798 by the german map inspector aloys senefelder,Lithography,General,"The cocktail ""Daiquiri"" contains limejuice and which spirit",Rum,General,What is a toque,A Canadian winter hat -General,"What's the name of the cat in the ""Nine Lives"" TV commercials",Morris,Music,Who Is The Lead Singer And Prolific Songwriter Of Babybird,Stephen Jones,Music,"What was the on flip side of the 45 of Beatles track ""She Loves You""?",I'll Get You -General,"Which German film director made the film M, in 1951",Fritz lang,General,China 300 bc you could not speak to the Emperor without what,Clove in your mouth,Music,"Phil Collins First Name Is Actually A) Eddie, B) Phil, C) George",Phil -General,A Klazomaniac cant stop doing what,Shouting,General,A flea can jump how many times its own length,100, History & Holidays,In the 17th century which country started taxing beards ?,Russia -General,What do chickens do during a total solar eclipse,Sleep,General,In which film did we meet Baron Numpsi as the villain,Eddie Murphy's The Golden Child, History & Holidays,"Which Australian cricketer, playing for New South Wales against Queensland, scored a then world record first-class innings of 452 not out? ",Donald Bradman  -General,What now famous painter was once so impoverished that he kept warm by burning his own paintings?,Pablo Picasso,General,What film did the Beatles make for television?,Magical Mystery Tour,Toys & Games,Mundane toy that involved sticking plastic pieces on scenes.,Colorforms -Sports & Leisure,Which Yorkshire football team plays at home at oakwell ,Barnsley ,Entertainment,Which british group recorded the 1983 hit 'Owner Of A Lonely Heart'?,Yes,General,Morrissey was the lead singer of which band,The Smiths -Science & Nature," Cats, not dogs, are now the most common pets in America. Approximately 66 million cats to 58 million dogs are family pets, with parakeets ""flying"" a distant third at __________","14,000,000",General,"In musical notation, what is the term for the symbol at the beginning of a staff",Clef,Music,"""Kimono My House"" Was The Debut Album For Which Group",Sparks -General,Tosca is the heroine of the opera but what is her first name,Floria,Music,What Is The First Name Of The Pop Superstar Known As Prince,Prince,General,Eric Claudin is better known by which eponymous title,The Phantom of the Opera -General,Which gas is the most abundant in the atmosphere,Nitrogen,General,Abracadabra comes from what language,Hebrew,General,Russophobia is a fear of ______,Anything russian -General,To who did father damien minister from 1873 to his death,Molokai lepers,Music,Which Famous Band Were Formed In 1977 & Took Their Name From Their Current Financial Situation,Dire Straits,General,What sea does the Danube river flow into,Black sea -General,Which drink was designed as a malaria cure,Benedictine,General,"In egyptian mythology, who was horus' mother",Isis,Food & Drink,How Did Garam Masala Get It's Name ,It Is Hindi For 'Hot Spice'  -General,Triskadeccaphobia is the fear of what,Number 13,Music,Which Legendary Reggae Artist Died In 1981,Bob Marley,General,Who led the mormons to the great salt lake,Brigham young -General,What part of the body is affected by conjunctivitis,The eye,General,Who wrote the children's novel The Story of Doctor Doolittle,Hugh lofting,Music,Which Former Yes Member Recorded Journey to The Center Of The Earth,Rick Wakeman -Music,"Cheryl, Mike, Bobby & Jay Are Collectively Known As Which Successful 80's Band?",Bucks Fizz,General,What was the name of the ruling house of France at the time of the French Revolution,Bourbon,Entertainment,Who advised us to 'break on through to the other side'?,Jim Morrison (of The Doors) -General,"In alphabet radio code, what word is used for 'h'",Hotel,General,What is the Capital of: Namibia,Windhoek,General,What does punch do for a living,Boxer -Music,"Who Had A Hit In 1988 With ""I Saw Him Standing There""",Tiffany,General,"Deadly nightshade, drug obtained from this",Belladonna,General,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 -General,Steps performed on the floor. It is the opposite of en l'air.,Par terre,General,An omniscient person has unlimited ______,Knowledge,General,What is measured on the Gay-Lussac scale,Alcohol strength -General,Where were Belgian waffles invented,Luxembourg,General,The Old Aztecs played ollamalitzi what game does it resemble,Basketball,General,What Egyptian word means life force was on title Wheatly novel,Ka -General,What word means to go to a party uninvited,Gatecrash,General,In which modern country is Mesopotamia,Iraq, Geography,What is the capital of Tonga ?,Nuku'alofa -General,"On ""Out of This World"" what planet was Troy from?",Anterrius,General,If you are using Prime Tierce and Octave what are you doing,Fencing, History & Holidays,Who had a 1970 No 1 with 'I Hear You Knockin'. '' ,Dave Edmunds  -General,What key is music written in if it has five flats,D flat,Sports & Leisure,The two tire manufacturers in F1 are Bridgestone and ________?,Michelin,General,In Arkansas it is illegal to keep what in your bathtub,Alligator -General,What famously happened on 7th December 1941,Japanese attack on pearl harbour,General,"In chess, what name is given to the only move involving two pieces",Castling,Science & Nature,Which fruit has the latin name of malus oumila ,Apple  -General,What do four quadrant make,A circle,General,Ops was the wife of which Roman God,Saturn,Food & Drink,What Is A Roux ,A Basic White Sauce  -General,The cast iron plant is another name for which pot plant,Aspidistra,General,Hormephobia is the fear of,Shock,General,For which country is the lotus flower the national symbol?,India -General,"These fighters always began a bout by saying, ""Hail Emperor, those about to die salute you!""?",Gladiators,General,What city do the Italians call the Monaco of bavaria?,Munich,General,"What are Cats tail, Cocks foot and Sheep's fescue",Types of grass -Science & Nature,Absolute zero (zero degrees kelvin) is only theoretical. The lowest laboratory temperature achieved is 280 picoKelvin. In which Scandinavian country was this produced?,Finland,General,It is the English Channel but what do the French call it,La Manche,General,What was the name of the exclusive dress store that the clampetts bought,The house of renee -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,General,What does 'The Monument' in London commemorate?,Great Fire of London,General,Who is President of the European Central Bank,Wim duisenberg - History & Holidays,"If you attended a Swedish Christmas Party and were given 'Glogg'' what would you do with it, eat it, drink it or put it on your head ","Drink it, it's a hot spiced drink made from wine or spirit ",General,"What year was the film ""The Abyss"" released",1989,Food & Drink, Rum is made from this plant.,Sugar cane -Music,"Who Sang The James Bond Theme ""For Your Eyes Only""",Sheena Easton,General,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,Music,What Was Madonna's First Uk Number One Single,Get Into The Groove -Food & Drink,The Stomach Of A Cow Or Sheep Is Known As What ,Tripe ,Food & Drink, What type of food is pitta (pita)?,Bread,General,Who is the roman goddess of peace,Pax -Science & Nature,In Computing Especially Concering The Internet What Does The Acronym 'BLOG'' Actually Stand For ,Weblog ,General,In 1860 Napoleon III banquet - serving dishes dearer gold - what,Aluminium,General,Owls are the only birds that can see what colour,Blue -General,What literary prize ( worth £30000 ) is for women authors only,Orange Award,General,What is the first word sung in Queens Bohemian Rhapsody,Is ( Is this the real life),General,Into which bay does the ganges river flow,Bay of bengal -General,"Helsinki 52, Melbourne 56 , Rome 60 what comes next",Tokyo 64 - venues Olympics,General,What is the astrological sign for death,Pluto, History & Holidays,When The Conservative Party Were Known As Tories Who Were Their Chief Opponents? ,The Whigs  -General,How was the mausoleum at Halicarnassus destroyed,Earthquake,General,Which French revolutionary said 'The surest way to remain poor is to be honest',Napoleon bonaparte, Geography,What is the basic unit of currency for United Arab Emirates ?,Dirham -General,In Hindu mythology Meru is equal to what Greek site,Olympus,General,What is the longest canal in the world,Grand canal of china,General,Which country in Africa has the largest area,Sudan -General,In 1988 there was a shortage of what exotic food fish,Swordfish,General,What was the working title of the TV series Dallas,Houston,Food & Drink,In An American Restaurant What Are Home Fries? ,Potatoes Cooked In Bacon Fat  -Music,Which Label Is Associated With A Palm Tree Logo,Island,General,What is the condensed water vapour in the sky left behind jets,Contrail,Music,Who Has The Christian Names Christina Ciminella,Wynonna Judd -General,What Texan slammed back more bourbon and branch water than any character in TV history,J. r. ewing,General,What is a sixty year anniversary,Emerald anniversary,General,If you suffered from acronyx what have you got,Ingrown Toenail -General,In to what substance is barley converted before it can be made into beer,Malt,General,George Formby ” Singer Of The Classic “ When I'm Cleaning Windows ” But Can You Tell Me Where In The North West Of England Was He Born?,Wiigan,General,Who was the first Roman Emperor,Augustus -General,In 1839 what innovation was added to bicycles,Pedals,General,What country has the highest kidnapping rate?,Colombia,Science & Nature," 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 -General,What is a group of bears,Sleuth,General,What is the name of the cold Spanish soup made from peppers and tomatoes,Gazpacho,General,The drug digitalis is obtained from which plant,Foxglove -Music,Which Reclusive Glaswegian Band Were Unexpectedly Voted Best Newcomers At The 1999 Brit Awards,Belle & Sebastian,General,What opera premiered in Paignton Devon 30th December 1879,Pirates of Penzance,Music,What Was Aha's First Album Called,Hunting High And Low -General,Who was the shortest ever mature human,Gul Mohammed,General,"Which capital city was scheduled as second choice to hold the 1944 Summer Olympics, and had to wait for another twelve years",Helsinki,General,In ancient Greece what was a hoplite,Soldier -General,Who captained the English soccer team during the 1966 World Cup,Bobby moore,Music,Who Gave Us The Story Of The Blues,The Mighty Wah,General,He developed the theory of the 'collective unconscious' and was also interested in dream interpretation.,Carl Gustav Jung -General,Testophobia is a fear of ______,Tests,General,Americans spent over how much in 1982 to avoid having bad breath,$360 million,General,With what is rainfall measured,Ombrometer -Geography,Nassau is the capital of which country,Bahamas,General,What is kaolin?,Pure china clay,Technology & Video Games,"In what game do you collect Jiggies, Jinjos, and Feathers (amongst other things)? ",Banjo-Kazooie -General,The Alley Cats was the working title of which TV show,Charlie's Angels,General,Which Fictional Character Opened The New York Stock Exchange On June 8th 1999,Noddy,General,Which country left the Commonwealth in 1949 and has not rejoined,Eire -General,"Who was the only president born in Illinois, the land of lincoln",Ronald reagan, Geography,What is the capital of Suriname ?,Paramaribo,General,What instrument of execution was used on Marie Antoinette,Guillotine -General,Who was the first south african golfer to win the british open,Bobby locke,General,What didn't wolfman jack do until the 1970's,Reveal his face,General,Who was the Greek goddess of the rainbow,Iris -General,On TV who worked at Otto's Auto Orphanage,The Fonz,General,What was David Leans first film,Oliver Twist,General,When was the leaning Tower of Pisa completed,1350 -Science & Nature, 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,Food & Drink,What kind of nuts are used in marzipan?,Almonds,General,"What are Luster, Moreen, Mungo and Nankeen types of",Material or fabric -General,What fictional doctor employed a butler named Poole,Dr Jekyll,General,What is the study of prehistoric plants and animals called?,Paleontology,General,What Is the First Name Of Parker In The TV Show Thunderbirds,Alo -General,Collective Nouns - a Cast of what,Falcons,General,Houari Boumedienne was president of which country from 1965 to 1978,Algeria,General,What us city briefly dropped the last letter of its name,Pittsburgh -General,47 people worked on a committee to produce what work,Authorised version of Bible,General,What is the most tattooed product in the world,Harley Davidson,General,When was the Alaskan Highway officially opened,"November 21, 1942 11/21/42" -Art & Literature,"In what field of study would you find ""flying buttresses""",Architecture,General,Dry ice consists of,Carbon dioxide,General,Whose recent books include 'Crisis Four' and 'Firewall',Andy mcnab -Art & Literature,What Nationality Was Jospeh Conrad ,Polish ,General,What is the flower that stands for: silliness,Fool's parsley,General,What dinosaurs name translates as roof lizard,Stegosaurus -Art & Literature,Who Wrote The Play (The Mousetrap) ,Agatha Christie ,General,What country do Brazil nuts come from,Bolivia,General,Trees: which tree has catkins in the spring and edible nuts in the autumn,Hazel -Toys & Games,Which chess piece is usually valued as 5 points,Rook,People & Places,"Who Was Banned In Germany, Italy & The USSR In The 1930's ",Mickey Mouse ,General,The Sailor Who Fell From Grace With the Sea_,Yukio mishima -General,What describes one complete turn of a rotating object,Revolution,General,"In egyptian mythology, what is the life force called",Ka, History & Holidays,Who died three days after Elvis Presley?,Groucho Marx -General,Spanish restaurant if you ask for La Quenta what do you get,The Bill,Science & Nature, Male __________ may have more than 100 wives and sometimes go three months without eating.,Sea lion, History & Holidays,Where was the big British pop festival held in 1969? ,The isle of wight  -General,Who composed Boris Godunov,Mussorgsky,General,Who wore a cabbage leaf under his cap,Babe ruth,Entertainment,"The director of Jaws, Raiders of the Lost Ark",Stephen spielberg -General,Who started the Dragonlance series,Margaret weiss & tracy hickman,General,RL international car registration plate which country,Lebanon,General,In 1965 which song by sam the sham and the pharaohs peaked at number 2,Woolly bully -General,Who invented the telephone,Alexander graham bell,Music,"What Was On The Flip Side Of The 1991 Re-Issue Of ""Bohemian Rhapsody""",These Are The Days Of Our Lives,General,Two in every three buyers pays the sticker price for what item without arguing,Automobile -General,What is Lolita's surname in Vladimere Nabokovs novel,Haze,Music,What band did Dion form in 1958?,The Belmonts,General,Name the Capital of the Ukraine,Kiev -General,Hypnophobia is a fear of ______,Sleep,General,In London who designed Marble Arch,John nash,Geography,In which state is the painted desert ,Arizona  -General,In which film did Robert Shaw play Captain Quint,Jaws,General,The average West German does it every seven days - what,Changes washes underwear,General,In London in 1985 a man was convicted of stealing two what,Crime Prevention Posters -General,Who wrote the novel The French Lieutenants Woman,John Fowles,General,What Every Day Invention Was Patended By Mary Anderson,Windscreen Wipers,General,Who was the Scottish mathematician who drew up the first logarithmic tables,John napier -Sports & Leisure,Which Country Hosted The 1994 World Cup? ,USA ,General,What do Italians call Rome,Roma,General,What is the fear of numbers known as,Numerophobia -General,Walt Disney had an obsessive compulsion with what,Cleanliness - washed hands every 5 min,General,What U.S. city contains a full-scale replica of the ancient Parthenon,Nashville,General,In 1782 in France what was louison or louisette,The Guillotine before renaming it -General,What is the scapula,Breastbone,General,Which nerve forms the link between the eye and the brain?,Optic Nerve,General,What was Oscar Wilde's only novel,The picture of Dorian Grey -General,"What can be rigid, semi-rigid, or non-rigid",Airships,General,Collective nouns - a group of police officers,A Mess, History & Holidays,"To which island was Napoleon exiled, after his loss at Waterloo ?",St Helena -General,What grape variety is used to make champagne,Chardonnay,Art & Literature,A large painting or decoration done on a wall. ,Mural,General,Oryza sativa is what staple food item,Rice -Food & Drink,"The dessert Pavlova is made from fresh fruit, cream and which other ingredient? ",Meringue ,General,What do airplane mechanics call motor oil,Pickle juice,Entertainment,"Besides ""Auld Lang Syne"" and ""For He's a Jolly Good Fellow"", what is the most frequently sung song in English?",Happy Birthday -Science & Nature,Whose Son Flew Too Close To The Sun On Waxen Wings ,Daedalus's ,Entertainment,"Gadzookie has a large, green friend. Who is he",Godzilla,General,What are 'Finnan haddies',Smoked haddock -General,In the acronym LASER what does the 'E' represent,Emission,General,Something free of charge,Buckshee,General,What is a group of donkeys called,Herd -General,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,General,In 1960 Dr Thomas Creighton Was The First Person In The World To Receive What Punishment?,A Parking Ticket, History & Holidays,What show was 'Whatcha talkin' 'bout Willis?' a standard catch phrase? ,Different Strokes  - History & Holidays,Who Released The 70's Album Entitled Grievous Angel ,Gram Parsons ,General,In what state did the 1862 Sioux uprising start,Minnesota,Food & Drink,What does the HP stand for in HP sauce? ,Houses Of Parliament  -Geography,Which Is Europe's Largest Country After Russia? ,Ukraine ,Science & Nature," 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,Music,In Which Year Did Kraftwerk Achieve Their First UK No.1,1982 -General,Who lives at the Neverland Valley ranch,Michael jackson,General,Who rode a horse called Lamri,King Arthur,General,With what sport is chris boardman associated,Cycling - History & Holidays,Which British city was named Deva by the Romans? ,Chester ,General,What was the name of Buffy's doll in the 1970's show 'Family Affair'?,Mrs. Beasley,Music,The Lovin Spoonful Were Cats From Which Town In 1967,Nashville -General,In what city was the first playboy club opened in 1960,Chicago,Entertainment,What was Jethro Tull before donating his name to a British epic rock group?,Agriculturist,Entertainment,Secret Identities: Kay Challis,Crazy jane -Sports & Leisure,What is the maximum number of clubs a golfer may use in a round?,Fourteen,General,Who invented the zip fastener in 1893,Whitcomb judson,General,If you suffered Hierophillia what turns you on,Sacred Objects -Music,"What Group Consisted Of Edele Lynch, Keavy Lynch, Sinead O Carroll, Lindsay Armaou",Bewitched,Science & Nature,Name the largest web_footed bird.,Albatross,General,Who is the Greek God of the sky and the universe,Uranus -General,"Whose hit ""We Are Family"" became an anthem for gay rights",Sister sledge,General,Who wrote Gone with the Wind,Margaret Mitchell,General,Name of Honda's variable valve timing system.,Vtec -General,What's the largest meseum in the world,Louvre,General,Indian song withimprovised usually topical words,Calypso,General,In Malibu California its illegal to do what in a theatre,Laugh out loud -Geography,What is the capital of Somalia,Mogadishu,General,What is the state bird of West Virginia,Cardinal,Art & Literature,Who Wrote (Old Possums Book Of Practical Cats) ,T.S. Eliot  -General,What animal lives in a drey,Squirrel,General,"Countries of the world:northern part of central American Isthmus, major cities include Quezaltenango & Escuintla",Guatemala,General,"In 'romeo and juliet', who said 'i have a faint cold fear thrills through my veins'",Juliet -General,What sport do the Kansas City monarchs participate in,Baseball,Music,Hugh Gregg Is The Real Name Of Which Singer,Huey Lewis,General,What is the only French speaking republic in Americas,Haiti -General,In Japanese It Is Known As “Leisure Time” What Do The Rest Of The World Know It As?,Kung Fu,General,What drink is a mixture of white wine and blackcurrant syrup or liqueur,Kir,General,"Ingvar Kamprad Is One Of The The Richest Men In The World, With What Brand Name Is He Connected?",Ikea -General,In 1937 the BBC first televised which sporting event,Wimbledon,General,Name the clothing wrinkle remover that sounds like a kind of metal.,Iron,Sports & Leisure,Which country always leads the opening Olympic procession?,Greece -General,With what invention is the name James Oughtred associated,Slide rule,General,"What do the ships resemble on the cover of the ""Boston"" LP in 1976",Guitars,General,British sailors got lime juice US cranberry what Danish get,Sauerkraut to stop scurvy -General,73% of what is produced and consumed in the USA,Internet Pornography,General,"Which Multi Platinum Singer Is The ""Niece"" Of Soul Singer ""Gladys Night""",Aaliyah,General,Who sang the song from the Disney movie 'Can You Feel The Love Tonight,Elton john -Sports & Leisure,Which Sport Is Played With The Heaviest Ball ,(Ten Pin Bowling) ,Religion & Mythology,"In Greek mythology, who was Jason's wife?",Medea,General,Adolf hitler became chancellor of Germany in which year?,1933 -General,Unimak is the largest island in which group,Aleutians,General,What was the real name of the Jazz legend Bix Beiderbecke?,Leon,General,"Snow Crash: Name the hacker who is infected with Snow Crash, owner of The Black Sun:",Da5id -General,Its cold enough to freeze balls off a Brass Monkey - what is it,Stack brass cannonballs,General,What do cricket umpires take off to show that it is time for lunch,Bails,General,"What city did the ""motley crue"" form in",Hollywood -General,One of the worst hotel fires in history erupts at the ___ in san juan,Dupont,Science & Nature, A group of owls is called a __________,Parliament,Sports & Leisure,Which position is usually played by the tallest member on a basketball team?,Centre -General,What did Oliver Pollock invent in 1778,The dollar sign $,General,In Kiplings Jungle Book Mang was what type of creature,Bat,General,What was the name of the neighbors that lived next door to ALF??,Raquel and Trevor Achmanic -General,Who wrote the novel The African Queen,C S Forester,General,From which plant family do vanilla pods come,Orchid orchidaceae,Entertainment,Which band does Eddie Vedder with?,Pearl Jam -General,Sol Sacs created what classic US TV show of the 60s 70s,Bewitched,General,What was Sheena Easton's original name,Shenne Ore,General,45 is the International Telephone dialling code for what country,Denmark -General,What is the currency of venezuela,Bolivar,General,"In Greek mythology, who was heracles' mother",Alcemene,Entertainment,Which basketball star played a genie in 'Kazaam'?,Shaquille O'Neal -General,"In 'romeo and juliet', about what was mercutio's long monologue",Queen mab,Geography,The Great Pyramid Presides Over Which Plateau On The Outskirts Of Cairo ,Giza ,General,HG Wells invisible man had what physical oddity,Albino -General,A Librocuricularist does what in bed,Read,Food & Drink,In 1989 in which brand of confectionary did blue replace brown? ,Smarties ,General,Jean Francois Gravelet is better remembered as who,Blondin Tightrope walker -General,In Australian slang what are apricots,Testicles,General,What was the name of Roy Rogers dog (now stuffed),Bullet,General,What is a guanaco,Wild llama -General,"What Edible Object Comes From The Latin Language Meaning ""Large Pearl""",An Onion,General,Where are American presidents carved in stone,Mount rushmore,General,Alectryomanchy is another name for what banned UK 1849,Cockfighting -General,Where is roast camel usually served,Bedouin feasts,General,A Greek or Roman two handled jar,Amphora,General,"Which creature was half horse, half man",Centaur -General,What do lentic fish like that lotic fish don’t,Lentic still waters lotic flowing,General,What are Russian astronauts called ?,Cosmonauts,General,What are hills and ridges composed of drifting sand,Dunes -Geography,In which country is the Calabria region,Italy,General,In the 19th century what was known as inheritance powder,Arsenic – as poison,General,Diana ross sings 'noone knows what goes on behind ______',Closed doors -Geography,What is the capital of Oman,Muscat,Entertainment,Famous Phrases: Who knows? The ______.,Shadow,General,Tanzania is the country that resulted from the union of tanganyika and ______,Zanzibar -General,What is the name of Snoopy's sister,Belle,General,On what tv show was 'the ponderosa',Bonanza,Sports & Leisure,What Sport Is Carried Out at Bisley In Surrey ,Rifle Shooting  -General,"Which famous opera house in milan, italy rose to its greatest heights under toscanini",La scala,General,What is the most eaten food in the US,Milk and Cream,Art & Literature,Who wrote the book (Brave New World) ,Aldous Huxley  -General,"What did Anna Sage ""The lady in Red do""",Betray John Dillinger,General,"What was Verdi's last Opera, first performed in 1893",Falstaff,General,What was John Denvers only solo UK number one,Annies Song -General,What Do You Dislike If You Suffer From Cusaphobia,Bad Language / Swearing,General,What is a king of egypt,Pharaoh,General,Who was the male lead in 'hello dolly',Walter matthau -General,What movie starred Lee Marvin as twins Kid Shelleen & Tim Strawn,Cat ballou,Science & Nature,"What Bird , Sometimes Called The Peewit, Has Dark Green Plumage With White Neck & Underside & A Distinctive Green Crest ",The Lapwing ,General,What Nationality Was Madame Tussard Founder Of The Famous Waxwork Exhibition,Swiss -General,Who played the title role in the 1921 film 'The Sheik',Rudolf valentino, Geography,What is the capital of Turkmenistan ?,Ashgabat,Science & Nature," 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 -General,Ted Hughes poet laureate died in which year,1998,General,What food are astronauts prohibited before a mission,Beans - Farts damage spacesuits,General,"The science of providing men, equipment and supplies for military operations is called ________.",Logistics -General,S. American rodent with soft grey fur,Chinchilla,People & Places,What Was Air Chief Marshall Arthur Harris Called ,Bomber Harris ,General,Who was would-be presidential assassin john hinckley jr was infatuated with,Jodie foster -General,What's the psychological term for self-love,Narcissism,General,What was robert montgomery's profession,Actor,General,What is the name of the UK's primary Fighter Aircraft?,Eurofighter Typhoon -General,In Somalia its illegal to carry old chewing gum where,Stuck on your nose,General,Which English agriculturist invented the seed drill,Jethro tull,Art & Literature,H.G. Wells novel where Earth is invaded by Martians.,War of the worlds -Sports & Leisure,How Many Numbers Are There On A Roulette Wheel ,37 - (0-36) ,Sports & Leisure,If A Cricket Umpire Raises His Arms Above His Head How Many Runs Is He Signalling ,6 Runs , History & Holidays,"Who Was President Of The USA In 1952 A) Harry Truman, B) Dwight Eisenhower, C= Lyndon Johnson ",A= Harry Truman  -Science & Nature,"What is the most venomous snake (no, it's not the king cobra!)?",Inland Taipan,General,What is the flower that stands for: a smile,Sweet william,General,What do Moscow residents substitute for toilet paper during shortages,Newspaper - History & Holidays,Johnny Depp Made His Movie Debut In Which Scary Movie ,A Nightmare on Elm Street , History & Holidays,Which actor of the silent era was known as The Man of a Thousand Faces ,Lon Chaney , History & Holidays,The 14th July 1789 marked the start of what ?,French Revolution -General,What shape is something that is cuneiform,Wedge shaped,Entertainment,Who was the Indian maiden in Johnny Preston's 'Running Bear'?,Little White Dove,General,Choo rock groups: frankie lymon and the _____,Teenagers - Geography,What is the basic unit of currency for Venezuela ?,Bolivar,General,Whose horse was Black Nell,Wild Bill Hickoks,General,Lee Marvin won the best actor Oscar for what 1965 film,Cat Ballou -General,Who was the lead singer of the Cure?,Robert Smith,Science & Nature,Linseed oil is obtained from the seed of which plant?,Flax,Science & Nature,What name is given to the point where two rivers join ?,Confluence -General,What is the flower that stands for: a belle,Orchis,General,A card game similar to rummy,Canasta,General,Pernell Roberts played which character in a TV western series,Adam Cartwright -General,What name is given to farms which specialise in rearing animals ?,Pastoral,General,Which book of The Bible is also a title of a Bob Marley album,Exodus,Science & Nature, Clams have a row of __________ around their shells.,Eyes -Food & Drink,Who released the following 'edible' album 'Tupelo honey' ,Van Morrison ,Sports & Leisure,In 1981 Sue Brown became the first woman to compete in which annual sporting event ,The Boat Race ,Music,Which Singer Is Known As The Man In Black,Johnny Cash -Geography,What European country did Romans call Lusitania? ,Portugal ,General,And what's their greatest turn off,Egoists and liars,General,"What was Rosanna Arquette's character's name in ""Desperately Seeking Susan""?",Roberta Glass -Science & Nature,Which meteor shower occurs on the 14th November ?,Andromedids,General,Where were the 1952 Olympics held,Helsinki,General,Which scientist invented the Universal Joint which enabled movement in all directions?,Robert Hooke -General,What is the young of this animal called: Duck,Duckling,General,"Triple star system, also called rigil kent, in the constellation Centaurus",Alpha centauri,General,What Italian stew literally translates as Bone with a Hole,Osso Bucco - Geography,What is the basic unit of currency for Estonia ?,Kroon,General,Which was the first James Bond book written by Ian Fleming in 1953,Casino royale,General,Who is the Roman Goddess of orchards and gardens,Pomonia -General,Where was Rin Tin Tin set,Fort Apache - Arizona,General,What does a funambulist do,Tightrope walker,General,What are the names of the Ninja Turtles in alphabetical order?,Donatello Leonardo Michelangelo Raphael -General,What was the name of Bob Crosby's band in the 1940's,The bobcat5,General,Which country is the biggest consumer of wine,France,Science & Nature, The process of a snake shedding its skin or a crustacean casting off its outer shell is called __________,Ecdysis -Geography,What is the capital of Uganda,Kampala,General,What was the name of Norman Beaton's barber's shop which was also the title of the TV series,Desmond's,General,If you were in a bar and someone gave you a 'mickey Finn' what would you be drinking?,A drugged Drink -General,A newborn bactrian camel has how many humps,None,Music,Which American City Is Associated With Motown,Detroit,General,What race in the sport called coursing,Greyhound -General,To which god was mount Parnasus sacred,Apollo,General,What is the Capital of: Algeria,Algiers,General,What US president was nicknamed Miss Nancy,James Buchanan -General,Saint Louis police department first used it in 1904 - what,Fingerprinting,General,Crosby stills and nash's debut album included which about a girl and the colour of her eyes,Sweet judy blue eyes, Geography,What is the capital of Peru ?,Lima -Science & Nature, __________ 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,General,"Who played saxophone on ""The Girl From Ipanema""",Stan getz,General,Which film was based on the story of 'Francis Swamp Mario'?,The Patriot -Food & Drink,What are sometimes called Chinese Gooseberries?' ,Kiwi Fruit ,General,For what does i.f.p stand,Inkatha freedom party,Sports & Leisure,Who is known as Pistol Pete? ,Pete Sampras  -General,Which film actor was nicknamed 'The Duke',John wayne,General,What capitol is on the slopes of the volcano Pichincha,Quito Ecuador,General,CH car international registration plate which country,Switzerland -General,By what country was the first concentration camp setup during the Boer wars,England,General, What is measured by a chronometer,Time, History & Holidays,On What Date Is Saint Stephens Day Celebrated ,26th Dec  -General,What country owns the island of sicily,Italy,General,What year did coca-cola first go on sale,1886,General,What plant was used as a model for corinthian columns,Acanthus -General,How many sides does a dodecagon have,12,General,Dick Turpin the highwayman served and apprenticeship as what,Butcher,Music,Who Titled His 1977 Top Ten Album After The 2nd Book In The Bible,Bob Marley -General,What is the derivation of the word vanilla,From Latin Vagina resembled pod,General,Englands Stonehenge is how many years older than Rome's colosseum,"1,500 years",General,What French emperor died in Kent,Napoleon iii -General,"What year was the movie ""The Love Bug"" released",1969,General,Borsch is based on what vegetable,Beetroot,General,What animal lives in a lodge,Beaver -General,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,General,Where would you find a gambrel,On a horse it’s a horses leg,General,Declan McManus became famous as who,Elvis Costello -General,What is a shallow dish with a cover that is used for science specimens,Petri, History & Holidays,What famous protest took place in Britain in 1936? ,The Jarrow March ,General,Around the alter of which God were the early Greek plays done,Dionysus -Entertainment,Peter Sellers is best known for his role as Inspector _________.,Clouseau,Religion & Mythology,"In Greek mythology, how many heads did Hydra have?",Nine,Music,"Where Did Scott McKenzie Visit, And What He Tell Us To Make Sure We Wore",San Francisco (Some Flowers In Your Hair) - Geography,"This mountain, found in the California Cascades, is famous for it's twin peaks?",Mount Shasta,Science & Nature,What Name Is Given To A Creature Equally At Home On Land And In Water? ,Amphibian ,Sports & Leisure,How Many Pips On A Standard Set Of Dominoes ,168 Pips  -General,What fruits do Elephants eat to get pissed ( ferment inside ),Marula,General,What did alchemists seek to turn base metals into gold,Philosophers Stone,Music,Xylophone Is Derived From The Greek Words For What,Wood & Sound -General,Between 1659 and 1681 illegal celebrate what in Massachusetts,Christmas,General,What Utah town plays host to the Sundance Film Festival,Park city,General,What would you have if you had rutilism,Red hair - History & Holidays,Which woman flew from England to Australia in 1930? ,Amy Johnson ,Geography,In which country is the Machu Picchu,Peru,General,Who was the first actor to receive an Oscar postumously,Peter finch -General,What ocean contains the Cape Verde Basin,Atlantic,General,"Who first incorporated amorphous phosphorus in the manufacture and use of safety matches, by 1855",Lundstrom brothers,Music,Which Band Have An Album At Number One At The Moment Called “We are The Night”?,Chemical Brothers -General,Who received the nobel peace prize in 1964 for civil rights leadership,Martin luther king jr,Geography,What is the capital of Madagascar,Antananarivo,General,Which state had the largest population increase between 1847 and 1860,California -General,Who wrote the 'dragonriders of pern' series,Anne mcaffrey, Geography,Which islands were named after Prince Philip of Spain?,The Philippines,General,What is the most popular pizza topping in South Korea,Tuna -General,What did Al Capone's business card say he was,Used furniture dealer,General,Which country has the currency 'yen',Japan,General,Ancient Egyptians worshiped what food item,Cabbage -General,What is a group of martins,Richness,Science & Nature,What Is Nitros Oxide Better Known As ,Laughing Gas ,General,James Dean Bradfield is the lead singer with which pop group,Manic street preachers -General,In Omaha Nebraska its illegal for a barber to shave what,A mans chest,General,Ophthalmophobia is a fear of ______,Being stared at,General,Who wrote Tom Jones,Henry fielding -General,What year was the first motorcycle race run,1907,General,What is the Texas Christians football team's nickname,Horned frogs,General,In heraldry if an animal is passant what is it doing,Walking -Music,"Who had a UK number three hit in 1980 with ""Take That Look Off Your Face""?",Marti Webb,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,General,Which Film Won The Category Of Best Film At The 2000 Oscars,Gladiator -Sports & Leisure,Where were the 1992 Olympics held ?,"Barcelona, Spain",General,In medicine what is nicknamed a blue pipe,A Vein,General,Which musical did the song Send in the Clowns come from,A Little Night Music -General,"Which Band Released The 1992 Album Entitled ""Automatic For The People""",REM,General,What is a Mexican Black Howler,A Monkey,Science & Nature,This Russian scientist used dogs to study conditioned reflexes.,Ivan Pavlov -General,Who were the guests on Johnny Carson's final tonite show,Bette midler and, Geography,What is the capital of Saint Kitts and Nevis ?,Basseterre,General,Grass from SE Asia yeilding a fragrant oil,Citronella -General,Who gave excalibur to king arthur,Lady of the lake,General,What did sailors often have tattooed on backs to stop flogging,A Cross,Food & Drink,What Happens If You Add Water To Pernod ,It Goes Cloudy  -General,What spice is essential in a New England Clam Chowder,Thyme,General,Worlds oldest existing treaty of 1373 between England and who,Portugal,General,What is the flower that stands for: anticipation,Gooseberry -General,What's round in London and Paris but Square in New York,Underground / metro / tube tunnels,Science & Nature,Who coined the theory that the earth revolves around the sun?,Nicolaus Copernicus,General,The French call it nature morte the Spanish bodegon what is it,Still Life painting -General,In which country did a foot deodorant get elected into office,Equator,General,What do you call an exaggerated fear of gravity,Barophobia,General,"Fill in the blank: swing low,sweet _____",Chariot -General,What happened on screen for the first time in India in 1977?,Screen kiss,People & Places,Who was known as the 'Maid Of Orleans'? ,Joan Of Arc ,General,What's the only alcoholic beverage on sale before noon in finland,Beer -General,In the language of flowers giving a mushroom meant what,Suspicion,Science & Nature,Which nation invented Paper ,China ,Music,About Which Jazz Player Was Ain't Misbehavin,Fats Waller -Science & Nature,"What is the name used to describe the ""minor planets""?",Asteroids,General,Tucson Arizona what's officially known as pavement deficiencies,Potholes in the road,General,Kan Pei - Terveydeksi - Op Je gazonheid 3 ways saying what,Good Health - Cheers -Food & Drink,In the drink Gin and 'It' - what's 'It'? ,Italian Vermouth ,General,What Nationality Was Ruby Murray,Irish,General,In Greek mythology whose dogs tore actaeon apart,Artemis -General,"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,Sports & Leisure,Name The Squash Shot Where The Ball Hits The Side Of The Wall First ,A Boast ,Science & Nature," In Korea, the deer is a symbol of long life, and is often portrayed in the company of __________",Immortals -General,Where is the world's biggest prison camp,Siberia, History & Holidays,Which English daily newspaper became a tabloid in 1971? ,The Daily Mail ,General,Who sang 'dreamy eyes' in 1962,Johnny tillotson - History & Holidays,Which Band Had A UK Christmas Number 1 With The Song 'Stay Another Day' ,East 17 ,General,Where does the spice saffron come from,The Crocus,Music,"What Was The Name Of Suzi Quatro's Character In ""Happy Days""",Leather Trocadero -General,Actor ______ Nimoy,Leonard,General,Name the capitol of Libya,Tripoli,Science & Nature," In one year, hens in America lay enough eggs to encircle the globe a __________",100 times -General,What is a group of sparrows,Host,Food & Drink,What is another name for the star fruit ,Carambula ,General,JFK was actually baptised JFFK what was the other F for,Francis -General,Who In The World Of Film Founded The Production Company Eon Productions,Albert R Broccoli (James Bond),General,What is the name of Jupiter's largest moon,Ganymede,Sports & Leisure,Which Britain Came Last In The 1988 Olympic Ski Jump Finals ,Eddie (The Eagle) Edwards  -General,Crusoe In what state is the Theodore Roosevelt national park,North dakota,General,Who did the norse god odin have as handmaidens,Valkyries,People & Places,In Which Us State Is Yosemite National Park ,California  -General,What is a word for a sorcerer who deals in black magic?,Necromancer,Music,Who Had The Best Selling Debut Album By A Female Artist In The 20 th Century,Whitney Houston,General,What kind of creature is a redpoll if it isn't a red cow,Bird -General,Which book of the bible tells of the death of moses,Deuteronomy,General,Where is a sumo wrestling tournament held,A Basho,General,Worldwide most capitol cities begin with which letter,B -Toys & Games,"In which sport or game are the terms: 'pin', 'fork', and 'skewer' used?",Chess,Geography,Which European City's Name Means Black Pool ,Dublin ,General,What is Gohan,Japanese Rice -Music,Who Played Che Guevara In The Film Version Of Evita,Antonio Banderas,Geography,What is the capital of Congo,Brazzaville,General,90% of New York cabbies are what,New immigrants -Geography,What's the former name of Istanbul,Constantinople,Science & Nature,What carries sensations from the tongue to the brain?,Lingual nerve,General,Who was the roman god of war,Mars -Music,"Who Had A Hit With ""Summer Night City"" In 1978",Abba,General,What part of the body is particularly affected by pneumonia,Lungs,General,Who eats the most turkey per capita,Israel -Sports & Leisure,Which Was The Only One Of The Four Tennis Grand Slam Tournaments That Pete Sampras Failed To Win In Men's Singles? ,The French Open , Geography,What is the basic unit of currency for Palau ?,Dollar,General,Growing Up Skipper Mattel doll 1970 what happened arm turned,Breasts Grew -General,"Which duo's best-selling album, The Innocents, topped the album charts in January 1989",Erasure,General,What muscles move the ears,Auricularis,General,A cigarette brand that fits these blanks; _&_,Benson & hedges -General,What name is given to the warning issued by American policeman prior to an arrest being made?,Miranda Warning,General,Jodie Foster and Barbara Harris appeared in which Disney film,Freaky Friday, History & Holidays,He was the U.S. president during the Civil War.,Abraham Lincoln - History & Holidays,"Which vehicle designed by Ferdinand Porsche, went into mass production in 1936? ",The Volkswagen ,General,What is borscht,Soup,General,What does a brandophile collect?,Cigar bands -General,What does letaba mean,Sandy river,General,"Countries of the world:north western Africa, major cities include Casablanca & Marrakech",Morocco,Music,"What Band Comprised Pal Waaktaar, Mags Furuholmen, & Morten Harket",Aha - History & Holidays,Which country ruled Cambodia immediately before WWII?,France,General,Where did the story of Cinderella originate,China,General,"In the tv series 'the adventures of hercules', what is hercules' companion's name",Iolos -Food & Drink,What is the name given to the watery part of milk left after making cheese?,Whey,General,"Who painted ""The Naked Maja""",Goya,Music,The Ever Changing Latin Teen Group Menudo Saw One Of Their Old Boys Enjoy Worldwide Success In 1999 Who Is He,Rick Martin -General,"Insertion, Heap, Topological and Bubble types of which IT thing",Sorting methods in programming,Science & Nature,What Type Of Plant Is A Ladys Slipper ,An Orchid ,Science & Nature,This planet's diameter is most equal to that of the earth's.,Venus -General,What is the most filmed story,Dracula,General,"Who lives at 1 Snoopy Place in Santa Rosa, California",Charles schulz,General,A bird in the hand is worth ______,Two in the bush -General,By Law In Washington it is illegal to do what,Ride an ugly Horse,General,What is a bridge hand with no cards in one suit called,Void, History & Holidays,What contribution to our Christmas heritage did Ralph E. Morris make in 1895? ,Christmas Lights  -Music,"By What Name Is John Graham Mellor , Born In Ankara In 1952 Better Known",Joe Strumer,General,The boondocks J Worthington Foulfellow was the fox in what Disney cartoon,Pinocchio,General,Who plays Ali McBeal,Callista Flockhart -General,The study and exploration of caves is known as what,Speleology,General,What Was The First Single To Sell Over A Million Copies In The UK ?,Bill Haley (Rock Around The Clock),Technology & Video Games,Who manufactured the first home video game system? ,Magnavox -General,How many spices are mixed in allspice,None it’s single spice,Sports & Leisure,In Field Athletics What Is Thrown The Shortest Distance ,Shot ,General,He discovered phobos,Asaph hall -Sports & Leisure,The Melbourne Cup horse race is held on the first _______ in November.?,Tuesday,General,What is a wumph,Deep thud or noise,General,Dendrophobia is a morbid fear of what,Trees -General,Kakorraphiaphobia is the fear of,Failure,General,Who was the ruthless chief pig in Orwell's Animal Farm,Napoleon,Art & Literature,What series has Robert Jordan written ?,Wheel of Time -General,What do you add to a screwdriver to get a harvey wallbanger,Galliano,Geography,"Which American state's name is Spanish for ""warm"" or ""warm land""",California,General,What was Americas first organised sport,Horse Racing in 1664 -General,Long green fleshy fruit used in salads,Cucumber,Science & Nature,How many degrees does the earth rotate each hour?,Fifteen,General,"What's a ""banger"" in London",Sausage -General,What is the Tibetan Yab Yum,A sexual position,Music,Don Henley And Glen Frey Were Singers With Which Group,The Eagles,General,Who 'mixes it with love and makes the world go around',Candyman -General,Which insect is the symbol of female potency,The Honey Bee,General,Baron de Coubertin won Gold at the Olympics 1912 for what,Literature,General,How long is Camptown racetrack,Five miles -Art & Literature,What Shakespearean play features the line: A plague on both your houses,Romeo and juliet,General,Who won the Best Actor Oscar in 1984 for his role in Amadeus,F murray abraham,Geography,In which continent would you find the lena river ,Asia  -General,What Disney animated feature was the first with end credits,Alice in Wonderland,Music,"Who Is Generally Regarded As Producing The First Rock N Roll Single ""Rocket 88"" In 1950",The Kings Of Rhtym, Geography,What is the smallest state in the USA?,Rhode Island - Geography,Which country is known as the roof of the world?,Tibet,General,What is a group of sheep,Flock,General,A childs hat tied under the chin,Bonnet -Entertainment,Which Elton John song was re-recorded as a requiem for Lady Diana Spencer?,Candle In The Wind,General,What branch of mathematics was devised by Sir Isaac Newton,Calculus,General,Which Christian Feast is celebrated on 15th August,Assumption of virgin mary -Art & Literature,What is the art of tracing designs and making impressions of them called?,Lithography,General,In which novel would you find the characters 'Amelia Sedley' and 'Becky Sharp',Vanity fair, Geography,What is the largest island in the East Indies?,Borneo -General,With which instrument is Leon Goossens associated,Oboe,General,In the Flintstones in what county is Bedrock,Cobblestone County,General,Whose slogan was plop plop fizz fizz,Alka Seltzer - Geography,What is the capital of Australia?,Canberra,General,Whats the point value of the bullseye outer on a dartboard,25,Music,"Who Had A 1978 Hit With ""Heads Down No Nonsense Mindless Boogie""",Alberto Y Los Trios Paranois -General,How many seams are there on an american football,Four,General,Who created 'peter rabbit',Beatrix potter,General,What did Welch's grape juice become a favorite substitute for when the 18th amendment passed,Wine - History & Holidays,What was the name of Punky Brewster's dog ,Brandon ,Music,"Sisters Of Mercy Had A Hit With The Song ""this Corossion"" Or ""This Emotion""",This Corrosion,General,What is a Umiak,Eskimos large open skin boat -General,If you had rubella what would you have caught,German Measles,General,How often does a Hebdomadal Council meet,Weekly, History & Holidays,In which English town was William Shakespeare born?,Stratford-Upon-Avon -General,Which insect has the best eyesight,Dragonfly,General,What is a relationship between two different types of organisms living together for mutual benefit,Symbiosis,Geography,The largest island on the west coast of North America is,Vancouver -General,Does Barry Manilow know you raid his wardrobe?,Breakfast Club,General,What word is in 1200 different languages without changing,Amen,Entertainment,Who is James Bonds Recurring Foe?,Ernst Stavro Blofeld -General,What soup would be on the menu in poland or russia,Borscht,General,Where was El Greco born,Greece,General,Who read the original writing on the wall,Daniel - in the Bible -General,Where is the oldest known restaurant in the world,Madrid,General,What's dichloro diphenyl trichloro ethane better known as,Ddt,Geography,What mountains are located on the border of tennessee & north carolina ,Smokey mountains  - History & Holidays,In the world of music how is 'Jiles P Richardson'' more commonly known? ,The Big Bopper ,General,What is the capital of tahiti,Papeete, Geography,What is the basic unit of currency for Grenada ?,Dollar -General,Who was emil jellinek's daughter,Mercedes,Music,The 1960's Television Show Flying Colours Featured A Singer Named Gerry Dorsey Who Did He Become,Engelbert Humperdinck,General,What type of soup is a dubarry,Cream of cauliflower -General,Uther pendragon was the father of ______,King arthur,General,Whose tees are closer to the green in golf men's or women's,Women's,General,Of what was charlie chaplin's cane made,Bamboo -General,What is the name of the Nike sports logo,Swoosh,General,What is the hardest naturally occuring substance,Diamond,General,What does a cobbler mend,Shoes -General,In what Austrian city was Mozart born,Salzburg,General,How many colonies fought in the American war of Independence,Thirteen,General,Which fruit did Columbus discover in Guadalupe in 1493,Pineapple -General,Who Did Steve Davis Beat In The Final When He First Became World Snooker Champion,Doug Mountjoy,General,How many members were in the group Bread,Three,General,Which company built the first spiral escalator in the 1980's,Mitsubishi -General,"In Greek mythology, who had nine heads",Hydra,General,Mount Citlalteptl is the tallest mountain in which Latin country,Mexico,General,Who would use an opisometer,A cartographer to measure - History & Holidays,Who was the Taj Mahal built in memory of?,Mumtaj Mahal,General,A small narrow headband,Bandeau,General,"What television character was born july 1, 21 bc in pompeii",Jeannie -Science & Nature," According to several studies, less than 3 percent of the __________ population become man_eaters.",Tiger,General,Who Is Judith Sheindlin Better Known As,Judge Judy,Geography,Which is the Earth's smallest continent,Oceania -General,Fortymile creek was the location of what alaskan discovery in 1886,Gold,General,What was banned from New York schools in 1962,Reading of Prayers, History & Holidays,Which was the first Chinese dynasty?,Shang -General,"Which group sang the song ""I Have A Dream""?",Westlife,Food & Drink," What is Japanese ""sake"" made from",Rice,General,What was the name of Aristotle's school ?,Lyceum -General,"In a general sense, one who pleads for another in a court of law or other tribunal.",Advocate,General,Mark Chapman was carrying what book when he killed Lenon,Catcher in the Rye,General,In 1996 what was the most common use for a computer 46%,Bookkeeping invoicing WP 45% -Art & Literature,As what did H.G. Wells refer to Adolf Hitler?,A certifiable lunatic,General,In the USA what was the first prime time cartoon show,The Flintstones,Art & Literature,"A European style developed in France in the late eleventh century. Its sculpture is ornamental, stylized and complex. ",Romanesque -General,"Which singer got to number one over Christmas 1985 with ""Merry Christmas Everyone""",Shakin stevens,General,In which book is 'big brother',1984,Food & Drink,For Which Occasion Was Vichyssoise Soup Created ,"The Opening Of The Roof Garden At The Old Ritz Carlton Hotel, New York City " -General,Who appeared for the first time in Beetons Christmas Annual,Sherlock Holmes,General,What does a pomologist study,Fruit,General,"Robert Redford, Steve McQueen Paul Newman reject $4m role",Superman - C Reeve paid 200K -General,Saintpaulia is the botanical name for which houseplant,African violet,Sports & Leisure,In Boxing What Is A TKO? ,Technical Knock Out ,General,What is salicyclic acid better known as,Aspirin -General,Wild canine animal with red or grey fur,Fox,General,When was the polaroid land camera invented,1948,General,Who calculated the amount of energy that appears when matter disappears,Albert einstein -General,What is the fastest growing religion in Ireland,Buddhism,General,Brazzaville is the capital of ______,Congo,Music,"Whose 1998 Album ""When We Were The New Boys"" Included Covers Of Oasis ""Cigarettes & Alcohol"" & Primal Screams ""Rocks""",Rod Stewart -General,90 is the International Telephone dialling code what country,Turkey,General,Which English monarch was first to make Xmas day broadcast,George V,General,Whose designer leisure wear carry the symbol of a crocodile,Rene Lacoste -Art & Literature,"Referring to the principles of Greek and Roman art of antiquity with its emphasis on harmony, proportion, balance, and simplicity. In a general sense, it refers to art based on accepted standards of beauty.",Classicism,General,What country has the highest population density,Monaco,General,What was the first staple that the U.S. government rationed during World War II,Sugar - History & Holidays,Where does Santa Claus live? ,Lapland ,Music,How many miles high were the Byrds on their fifth single?,Eight,General,Ancient Romans dyed their hair with what waste product,Bird Shit -Sports & Leisure,On Which Race Course Is The Scottish Grand National Run ,Ayr ,General,Which German word means lightning war used in WW2,Blitzkrieg,General,What do the dots on a pair of dice add up to?,42 -Music,Their most famous single is (Don't Fear) The Reaper. Who are they?,Blue Oyster Cult,General,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,General,In Star Trek Voyager what is the shuttlecrafts name,The Delta Flyer -Science & Nature,What Was The Significance Of The Number 40 In Relation To The Ford GT40 ,It Stood 40 Inches Tall ,General,On what was pennsylvania incorrectly spelled,Liberty bell,Music,"Who Recorded The Albums ""Fantastic, Make It Big, & Final""",Wham -General,Which Shakespeare character had a daughter called Jessica,Shylock,Sports & Leisure,What Caused The Cancellation Of The Cheltenham Festival In 2001? ,Foot & Mouth Disease ,General,"Dating back to the 1600s, thermometers were filled with what instead of mercury?",Brandy -Music,Who Was The Youngest Female Artists To Have A UK Million Selling Single?,Britney Spears,General,Lisa Kudrow plays which character in the television series Friends,Phoebe,Music,"Who Had A Hit In 1983 & 1989 With ""Cruel Summer""",Bananarama -Sports & Leisure,How many seams are there on a football? (American),Four,General,The first person other than royalty to be portrayed on a British stamp was?,William Shakespeare,General,What is the Capital of: French Guiana,Cayenne -General,Selenophobia is a fear of ______,Moon,General,What Was The First Country In The World To Make Seatbelts Compulsory,Czechoslovakia, History & Holidays,Who Released The 70's Album Entitled Reggatta de Blanc ,The Police  -General,Sister car of the Nissan Quest.,Mercury villager,General,A trained fighter in ancient Rome,Gladiator,General,In what sport is the term 'terminal speed',Drag racing -Music,What Does Adagio Mean,Slow & Leisurely,Music,"With Regeard To The Beatles, What Is The Significance Of The Date 6 July 1957",Day John Lennon Met Paul McCartney,General,A Draughts player starts with how many pieces?,12 -General,In Missouri it's illegal for anyone to do what on Sunday,Play Hopscotch,General,What is always served early in a formal Japanese meal,Sashimi - raw fish,General,In Thailand its illegal to step on what,Nation's Currency -Music,"The Musical Chess Released Several Singles , Which Was The Most Successful """,Murrayhead / One Night In Bangok,General,Who wrote the song 'There's no business like show business',Irving berlin,General,Jimmy Carter's family grew goober peas in Georgia. What's their more familiar name,Peanuts -General,You are a saucy boy comes from what Shakespeare play,Romeo and Juliet,General,What is the most common disease in the world,Tooth decay,General,What city was known as Christiana until 1925,Oslo - Sweden -Science & Nature, 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,Sports & Leisure,"In baseball, who won their first world series in 1969?",New York Mets,General,A mature Japanese sea squirt eats what,It’s own Brain -General,Who said - Toe err is human - But it feels divine,Mae West,Music,Glen Frey & Bernie Leadon Are Original Mebers Of Which Group,The Eagles,General,Who was the president of the merchant bank of Beverly Hills,John cushing -General,Jacques Garnerin made the first in 1797 the first what,Parachute Jump,Science & Nature," 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,General,This type of insect is named after a month,June bug -General,A Welsh opera singer is particularly associated with which online company in a series of British TV advertisements?,Go Compare,General,Who played bobby ewing in the tv series 'dallas',Patrick duffy,Music,What Was The 1962 Instrmental No.1 For B Bumble And The Stingers,Nut Rocker -General,What did pennsylvania legalise before any other colony,Witchcraft,General,What is the oldest word in the English language,Town,General,Papaphobia is a fear of ______,Popes -Food & Drink,What Is The Most Common Pub Name ,The Red Lion ,General,Carl Switzer was the real name of which of the Our Gang characters,Alfalfa,General,In which television series do the characters Doctor Green and Doctor Lewis appear,E r -General,Wilco name the only animal with retractable horns,Snail,General,Which instrument did jazz musician Jack Teagarden principally play,Trombone,Geography,What Is An Anthracite ,A Type Of Coal  -General,Where are the grapes for the wine Lacrima Christi grown,Mount Vesuvious,Entertainment,How old was Leann Rhimes when she recorded her first album?,Eleven,General,Which is the largest city in India,Calcutta -General,What state officially recognized baked beans as the state food,Massachusetts,Religion & Mythology,How old was Sarah when she had a child?,90, History & Holidays,What was the name of the first nuclear powered submarine? ,Nautilus  -General,The polar explorer Sir Ranulph Fiennes has a triple barrelled surname. Give either of the other parts of his surname.,Twistleton wykeham,General,Which drink was advertised on TV by David Bowie's wife Iman,Tia maria,General,Tyrian Purple is a strong dye made from what,Mussels and Whelks -General,What is the traditional (watson crick) base pair for adenine in dna,Thymine,Geography,What language do the locals speak in Bogota? ,Spanish (Bogota is the capital of Columbia) ,General,Who wrote the utopian novel Woman on the Edge of Time,Marge piercy -Music,How Did The Blues Artist Muddy Waters Get His Name,As A Child He Fished & Played In Muddy Creak,General,The British army used to wear puttees - what's it literally mean,Bandages from Hindu,General,"What religion links Weasak, Dhrammacacka, and Bhodi day",Buddhist -General,What New York street is famous for its theatres,Broadway,Science & Nature," The __________ whale is often referred to as the ""sea canary"" because of the birdlike chirping sounds it makes.",Beluga,General,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 -General,What Is Studied By A Speleologist,Caves,Music,Memory Almost Full Was A 2007 Album Released By Who?,Paul McCartney,General,What is the more common name for triatomic oxygen,Ozone -Geography,What is the worlds most southerly capital?* * ,"Wellington, New Zealand ",General,What modern word comes from the Latin Dilatare - open wide,Dildo,General,Which biblical prophet was sawn in half inside a hollow log,Isaiah -Music,What Is The Very First Word In The Paul Young Song “Land Of The Common People”,Living,General,What is a volcano that is neither active nor extinct?,Dormant,General,Which band comprises Shaznay and Melanie plus sisters Natalie and Nicole,All saints - History & Holidays,What city was john f. kennedy nominated for president in ,Los angeles ,General,"Who first said ""The Games Afoot""",William Shakespeare,Music,Which Bon Jovi album was best kept dry?,Slippery When Wet -Music,What Was The Monkees Debut Album Called,The Monkees,Geography,______________ was the U.S. Confederacy's largest city.,New orleans,Music,XYZ Was A Solo Album By Which Former Member Of The Police,Andy Summers -Art & Literature,Who is the protagonist of Milton's Paradise Lost?,Satan,General,What does a necrographer do,Writes Obituaries,General,"What was on the B side of the Beatles 1968 ""Hey Jude""",Revolution -General,What battle resulted in the largest number of german pow's?,Battle of stalingrad,Geography,______________ is the largest French_speaking city in the Western Hemisphere.,Montreal,General,Where in the body is the tiniest human muscle,Ear -General,What was on B side of The Rolling Stones Ruby Tuesday,Lets Spend the Night Together, Geography,What is the highest waterfall in the USA?,Yosemite,Sports & Leisure,How many games must you win to win a normal set in tennis,Six -General,From which country are the European Space Agency Ariane rockets launched,French guiana,Food & Drink,Company that brews Michelob beer,Anheuser_busch,General,Approximately how many pounds of cereal will the average american/canadian eat every year?,12 -General,What model of car did Starsky and Hutch drive?,Red Torino,Music,What Was At No.1 For Fifteen In 1994,Wet Wet Wet / Love Is All Around,General,Who was a member of 'the great society' before she joined 'jefferson airplane',Grace slick -General,The judds spent years in nashville shopping demos recorded on a ______,Cassette recorder,General,Which flag is raised when a ship is about to leave port?,Blue Peter,Music,Live And Dangerous Is A Classic Live Album By Which Hard Rock Band,Thin Lizzy -Tech & Video Games,What was the first version of Microsoft Windows?,Windows 286,General,What is the river capital of the world,Akron,General,The Character Mary Goodnight was the Bond girl in which film,The man with the golden gun -General,Where in the world is Radwick racecourse situated,Sydney Australia, History & Holidays,Who assassinated president Kennedy?,Lee Harvey Oswald,General,Long Legged Hannah and Marty's Express what pastime involved,Line Dancing -Science & Nature,Name the longest venomous snake.,Cobra,Science & Nature,What is the name of brightest asteroid visible from earth?,Vesta,General,Who sang about the fall of man in 'the tall oak tree',Dorsey burnette -General,"At 45, what did boxer, George Foreman win",Heavyweight championship,General,During what period in american history did thousands of people die or go blind from drinking bad liquor,Prohibition,General,U.S. captials Maine,Augusta -Tech & Video Games,Which company made the original 'Donkey Kong'? ,Nintendo,General,What wonder stood 32m high in rhodes harbour,Colossus of rhodes,Sports & Leisure,Which Team Knocked Out Liverpool In This Years Fa Cup ,Burnley  - History & Holidays,Which 'following' word did Frederico Fellini coin and use for the first time in his film La dolce vita ? ,Paparazzi , History & Holidays,If You Were Born On Christmas Day What Star Sign Would You Be? ,Capricorn ,General,Vienna is the setting for what Shakespeare play,Measure for Measure -General,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,General,What sort of an animal is an anchovy,Fish,Geography,In what state is concord ,New hampshire  -General,What is the flower that stands for: distinction,Cardinal flower,General,What was the punishment in Ancient Rome for water pollution,100 lashes,General,What year was Aaron Copeland born,1900 -General,In what book was the final score 4-2 after casey struck out,Casey at the bat,Food & Drink,What country produces Wiibroe beer? ,Denmark ,Music,What Was Phyllis Nelson's Big UK Hit,Move Closer -Food & Drink, From which fish is caviar obtained,Sturgeon,General,An area seperating potential belligerents,Buffer zone,General,Nonage is what reason to stop a marriage,Underage one or both -General,Mary Isobel Catherine O'Brian born 1939 better known as who,Dusty Springfield, History & Holidays,Who was the first fully Danish king of England ?,Canute the Great,Music,Who Was To Blame According To Bewitched In 1999,The Weatherman -General,Who succeeded winston churchill as prime minister of england,Anthony eden,General,2 categories of ballroom dance are used in competition Latin and,Smooth,General,What is a high ranking chess player called,Grandmaster -General,Coolidge what heisman trophy winner returned his first nfl kickoff for a touchdown,Tim brown,General,"In which film starring Humphrey Bogart and set in Martinique, did he play a character called Harry Morgan",To have and have not,General,What has a rectangular pupil,Goat - Geography,In which country is Brest? (NOT Breast!),France,General,What is the u.s military's newspaper,Stars and stripes,General,What is the young of this animal called: Guinea fowl,Keet -General,Unfortunate names - Pansy was a brand of what sold in China,Mens Underwear,People & Places,Who Became Archbishop Of Caterbury in 1980 ,Robert Runcie ,People & Places,What Was Judge Jefferies Nickname ? ,The Hanging Judge  -General,"Name the British novelist, a successful member of the Bloomsbury Group, who drowned herself in 1942",Virginia woolf,General,Which group had the hit album 'Urban Hymns',The verve,General,"Which TV Quiz Show Has The Theme Music Entitled ""Approaching Menace""",Master Mind -Food & Drink,What Are The Ingredients Of A Harvey Wallbanger Cocktail ,"Vodka, Orange Juice, Galliano ",General,How many standard bottles of wine are there in a Jereboam,Four,General,What is measured in grains - four grains to a carat,Pearls -General,What is the first line on Mel Blanc's tombstone,That’s All Folks, History & Holidays,What Hugely Successful Chain Of Stores First Opened It's Doors In 1954 In California ,McDonalds ,General,"Which eighties cartoon ended with the phrase: ""And knowing is half the battle?""",G.I.Joe -General,In what language was the first complete bible in US printed,Algonquin Indian,General,Building occupied by monks,Abbey,General,Arias And Rasberries' Was An Autobiography Penned By Whom,Harry Secombe -General,Who has the most cars per mile of road,England,General,"During WW I, it was at this city & battle where the Germans introduced mustard gas.",Ypres,General,Who recorded their first song under the names Tom and Jerry,Simon and Garfunkle -Music,"Which Band Released The Album ""Dark Side Of The Moon"" In 1972",Medicine Head (Not Pink Floyd That Was L8r),Sports & Leisure,Who 2 Members Of The England Football Team Missed Penalties Against Portugal In Euro 2004? (PFE) ,David Beckham & Darius Vassell ,General,"With which band did Boy George sing, besides Culture Club",Bow wow wow -Science & Nature,What is the common name for the scapula?,Shoulder blade,General,Hanoi stands on the Song-Koi - what's it mean,Red River,General,Barrel sizes - there are 18 gallons in a what,Kilderkin -General,"Hockey compared to the earth, how much gravity does the moon have",One eighth,General,What do strikers call those that refuse to strike,Scabs,General,"What place was nicknamed ""The Pearl of the Orient""",Manilla - Philippines -General,What was banned by law 16th 17th century Venice,High heels – Prostitutes drowned,General,What did shirley temple always have in her hair,Curls,General,Which group's 1986 hit was 'Waiting for the Ghost Train',Madness - History & Holidays,Who Was The First Catholic President Of The United States ,Catholic F ,Music,"Which Group Took Their Version Of ""Help"" To No.3 In The Uk In 1989",Bananarama,General,When is the top layer of a wedding cake usually eaten,First anniversary -Sports & Leisure,"In which game or sport is a ""Zamboni"" used?",Hockey,General,Who is the dog on the crackerjack box?,Bingo,Science & Nature,Which Is The Smallest Mammal In Europe ,Pygmy Shrew  -General,What is the European equivalnet of a Nonillion ?,Quintillion,General,What name is given to an equilateral parallelogram which contains a right angle,A square,Sports & Leisure,In 1976 Sue Barker won her only Grand Slam Final. Which one? ,The French Open  -Science & Nature,Who Is Accepted As The Discoverer Of Penicillin ,Sir Alexander Fleming ,General,"A salad containing diced apple, celery, walnuts and mayonnaise is known as what",Waldorf salad,General,Who produced the Tom and Jerry cartoons until 1956,Fred Quimby -Music,What Was Lita Roza's 1953 Dog Related No1 Hit?,How Much Is That Doggie In The Window,General,For what is spirits of salt another name,Hydrochloric acid,Science & Nature,What Is Meant By A Low Wing Bearing ,A Low Body Weight To Wing Ratio -Science & Nature,What Part Of A Car Engine Mixes Fuel With Air? ,The Carburetor ,General,Pharmacophobia is the fear of,Taking medicine, Geography,In which country was the first Zoo ?,China -General,What is the largest landlocked country,Mongolia,General,Who was the only man to win non-consecutive terms as u.s president,Grover,General,In which us state is the painted desert located,Arizona -General,"Houston, Waco and Fort Worth are all in which state",Texas, Geography,What is the basic unit of currency for Mauritius ?,Rupee,Geography,"This is called the ""Honeymoon Capital"" of the world.",Niagara falls -Sports & Leisure,How Many clubs were there in the Premier League in 1997/8 ,20 ,General,What is the misshapen ear that boxers often have,Cauliflower ear,General,Who painted the ceiling of the sistine chapel,Michelangelo - History & Holidays,What city holds the distinction of opening the world's first public library in 1747?,"Warsaw, Poland",General,"Which band had a 1999 hit single with ""Flying Without Wings""",Westlife,General,Who is the first person a newly elected Pope meets,His tailor to measure him -General,A Pascal is the SI unit of what,Pressure,General,"Film - who was the star of ""a boy and his dog""",Don johnson,Music,"In The World Of Boybands How Are Danny, David, Anthony & James Better Known",Eton Road -General,What would you find in a vivarium,Snakes,General,Lusophone describes countries whose main language is what,Portuguese,General,What are male crabs known as,Jimmies -Food & Drink,What name is given to the red wines from the Bordeaux region? ,Claret ,General,Who was nicknames The desert Fox (both Names),Erwin Rommel,General,"In Greek mythology, who was minos' mother",Europa -General,James H Pierce was the last silent film actor to play who,Tarzan,General,Who was woden to the anglo-saxons,Chief god,General,Name the Greek dish using aubergines and minced lamb,Moussaka \ No newline at end of file diff --git a/TriviaBot/TriviaBot.vcxproj b/TriviaBot/TriviaBot.vcxproj index 1228b4a..4f508e9 100644 --- a/TriviaBot/TriviaBot.vcxproj +++ b/TriviaBot/TriviaBot.vcxproj @@ -21,7 +21,7 @@ {E400396F-0C05-413E-B83E-1A4F41D86442} TriviaBot - 8.1 + 10.0.10586.0 @@ -91,9 +91,10 @@ Level3 Disabled true - _CRT_SECURE_NO_WARNINGS;CURL_STATICLIB;%(PreprocessorDefinitions) - C:\boost_1_61_0;C:\OpenSSL-Win64\include;C:\Users\Jack\Documents\GitHubVisualStudio\TriviaDiscord\lib\liboauth\include;C:\Users\Jack\Documents\GitHubVisualStudio\TriviaDiscord\lib\curl\include;C:\buildcurl\third-party\libcurl\include;C:\Users\Jack\Documents\GitHubVisualStudio\TriviaDiscord\lib\websocketpp;C:\Users\Jack\Documents\GitHubVisualStudio\TriviaDiscord\lib\beast\include;%(AdditionalIncludeDirectories) - -D_SCL_SECURE_NO_WARNINGS %(AdditionalOptions) + _CRT_SECURE_NO_WARNINGS;CURL_STATICLIB;WIN32_WINNT=0x0600;URDL_NO_LIB=1;%(PreprocessorDefinitions) + C:\boost_1_61_0;C:\OpenSSL-Win64\include;C:\Users\Jack\Documents\GitHubVisualStudio\TriviaDiscord\lib\cpr\include;C:\Users\Jack\Documents\GitHubVisualStudio\TriviaDiscord\lib\websocketpp;C:\Users\Jack\Documents\GitHubVisualStudio\TriviaDiscord\lib\beast\include;%(AdditionalIncludeDirectories) + -D_SCL_SECURE_NO_WARNINGS -DUSE_SYSTEM_CURL=OFF -D_WIN32_WINNT=0x0A00 %(AdditionalOptions) + $(IntDir)/%(RelativeDir)/ libcurl.lib;sqlite3.lib;libeay32.lib;ssleay32.lib;%(AdditionalDependencies) @@ -106,9 +107,10 @@ Level4 Disabled true - _CRT_SECURE_NO_WARNINGS;CURL_STATICLIB;%(PreprocessorDefinitions) - C:\boost_1_61_0;C:\OpenSSL-Win64\include;C:\Users\Jack\Documents\GitHubVisualStudio\TriviaDiscord\lib\liboauth\include;C:\Users\Jack\Documents\GitHubVisualStudio\TriviaDiscord\lib\curl\include;C:\buildcurl\third-party\libcurl\include;C:\Users\Jack\Documents\GitHubVisualStudio\TriviaDiscord\lib\websocketpp;C:\Users\Jack\Documents\GitHubVisualStudio\TriviaDiscord\lib\sqlite3;%(AdditionalIncludeDirectories) - -D_SCL_SECURE_NO_WARNINGS %(AdditionalOptions) + _CRT_SECURE_NO_WARNINGS;CURL_STATICLIB;WIN32_WINNT=0x0600;URDL_NO_LIB=1;%(PreprocessorDefinitions) + C:\boost_1_61_0;C:\OpenSSL-Win64\include;C:\Users\Jack\Documents\GitHubVisualStudio\TriviaDiscord\lib\cpr\include;C:\Users\Jack\Documents\GitHubVisualStudio\TriviaDiscord\lib\websocketpp;C:\Users\Jack\Documents\GitHubVisualStudio\TriviaDiscord\lib\sqlite3;%(AdditionalIncludeDirectories) + -D_SCL_SECURE_NO_WARNINGS -DUSE_SYSTEM_CURL=OFF -D_WIN32_WINNT=0x0A00 %(AdditionalOptions) + $(IntDir)/%(RelativeDir)/ libcurl.lib;sqlite3.lib;libeay32.lib;ssleay32.lib;%(AdditionalDependencies) @@ -153,27 +155,38 @@ - - - - -D_SCL_SECURE_NO_WARNINGS - %(AdditionalOptions) - -D_SCL_SECURE_NO_WARNINGS - %(AdditionalOptions) - - - -D_SCL_SECURE_NO_WARNINGS %(AdditionalOptions) - - + + + + + + + + + + + + + + + + + + + - - - - - + + + + + - + + + + + diff --git a/TriviaBot/TriviaBot.vcxproj.filters b/TriviaBot/TriviaBot.vcxproj.filters index 243aedd..75b1b57 100644 --- a/TriviaBot/TriviaBot.vcxproj.filters +++ b/TriviaBot/TriviaBot.vcxproj.filters @@ -15,37 +15,91 @@ - - - - - Header Files - - - Header Files - - - Header Files - Header Files + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + - + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + Source Files Source Files - - Source Files - - - Source Files - - - Source Files - + + + \ No newline at end of file diff --git a/TriviaBot/bot/APIHelper.cpp b/TriviaBot/bot/APIHelper.cpp new file mode 100644 index 0000000..ca7d484 --- /dev/null +++ b/TriviaBot/bot/APIHelper.cpp @@ -0,0 +1,19 @@ +#include "http/HTTPHelper.hpp" + +#include + +#include "APIHelper.hpp" + +APIHelper::APIHelper() { + http = new HTTPHelper(); +} + +void APIHelper::send_message(std::string channel_id, std::string message) { + const std::string url = CHANNELS_URL + "/" + channel_id + "/messages?" + TOKEN_PARAM; + json data = { + { "content", message } + }; + + const std::string response = http->post_request(url, JSON_CTYPE, data.dump()); + std::cout << response << std::endl; +} \ No newline at end of file diff --git a/TriviaBot/bot/APIHelper.hpp b/TriviaBot/bot/APIHelper.hpp new file mode 100644 index 0000000..ac95f15 --- /dev/null +++ b/TriviaBot/bot/APIHelper.hpp @@ -0,0 +1,28 @@ +#ifndef BOT_APIHELPER +#define BOT_APIHELPER + +#include + +#include "json/json.hpp" + +using json = nlohmann::json; + +class HTTPHelper; + +class APIHelper { +public: + APIHelper(); + + void send_message(std::string channel_id, std::string message); + +private: + const std::string BASE_URL = "https://discordapp.com/api"; + const std::string CHANNELS_URL = BASE_URL + "/channels"; + const std::string TOKEN = "MTk5NjU3MDk1MjU4MTc3NTM5.ClyBNQ.15qTa-XBKRtGNMMYeXCrU50GhWE"; + const std::string TOKEN_PARAM = "token=" + TOKEN; + const std::string JSON_CTYPE = "application/json"; + + HTTPHelper *http; +}; + +#endif \ No newline at end of file diff --git a/TriviaBot/bot/ClientConnection.cpp b/TriviaBot/bot/ClientConnection.cpp new file mode 100644 index 0000000..c8d7cbb --- /dev/null +++ b/TriviaBot/bot/ClientConnection.cpp @@ -0,0 +1,120 @@ +#include "ClientConnection.hpp" + +#include +#include + +#include "GatewayHandler.hpp" + +ClientConnection::ClientConnection() { + // Reset the log channels + c.clear_access_channels(websocketpp::log::alevel::all); + + // Only want application logging, logging from the initial connection stages or any error logging + c.set_access_channels(websocketpp::log::alevel::app | websocketpp::log::alevel::connect); + c.set_error_channels(websocketpp::log::elevel::all); + + // Initialize ASIO + c.init_asio(); + + // Bind handlers + c.set_socket_init_handler(bind( + &ClientConnection::on_socket_init, + this, + websocketpp::lib::placeholders::_1 + )); + c.set_tls_init_handler(bind( + &ClientConnection::on_tls_init, + this, + websocketpp::lib::placeholders::_1 + )); + c.set_message_handler(bind( + &ClientConnection::on_message, + this, + websocketpp::lib::placeholders::_1, + websocketpp::lib::placeholders::_2 + )); + c.set_open_handler(bind( + &ClientConnection::on_open, + this, + websocketpp::lib::placeholders::_1 + )); + c.set_close_handler(bind( + &ClientConnection::on_close, + this, + websocketpp::lib::placeholders::_1 + )); + c.set_fail_handler(bind( + &ClientConnection::on_fail, + this, + websocketpp::lib::placeholders::_1 + )); + + gHandler = new GatewayHandler(); +} + +// Open a connection to the URI provided +void ClientConnection::start(std::string uri) { + websocketpp::lib::error_code ec; + client::connection_ptr con = c.get_connection(uri, ec); + + if (ec) { // failed to create connection + c.get_alog().write(websocketpp::log::alevel::app, ec.message()); + return; + } + + // Open the connection + c.connect(con); + c.run(); +} + +// Event handlers +void ClientConnection::on_socket_init(websocketpp::connection_hdl) { + c.get_alog().write(websocketpp::log::alevel::app, "Socket intialised."); +} + +context_ptr ClientConnection::on_tls_init(websocketpp::connection_hdl) { + context_ptr ctx = std::make_shared(boost::asio::ssl::context::sslv23); + + try { + ctx->set_options(boost::asio::ssl::context::default_workarounds | + boost::asio::ssl::context::no_sslv2 | + boost::asio::ssl::context::no_sslv3 | + boost::asio::ssl::context::single_dh_use); + } + catch (std::exception& e) { + std::cout << "Error in context pointer: " << e.what() << std::endl; + } + return ctx; +} + +void ClientConnection::on_fail(websocketpp::connection_hdl hdl) { + client::connection_ptr con = c.get_con_from_hdl(hdl); + + // Print as much information as possible + c.get_elog().write(websocketpp::log::elevel::warn, + "Fail handler: \n" + + std::to_string(con->get_state()) + "\n" + + std::to_string(con->get_local_close_code()) + "\n" + + con->get_local_close_reason() + "\n" + + std::to_string(con->get_remote_close_code()) + "\n" + + con->get_remote_close_reason() + "\n" + + std::to_string(con->get_ec().value()) + " - " + con->get_ec().message() + "\n"); +} + +void ClientConnection::on_open(websocketpp::connection_hdl hdl) { +} + +void ClientConnection::on_message(websocketpp::connection_hdl &hdl, message_ptr message) { + if (message->get_opcode() != websocketpp::frame::opcode::text) { + // If the message is not text, just print as hex + std::cout << "<< " << websocketpp::utility::to_hex(message->get_payload()) << std::endl; + return; + } + + // Pass the message to the gateway handler + gHandler->handle_data(message->get_payload(), c, hdl); +} + +void ClientConnection::on_close(websocketpp::connection_hdl) { + std::cout << "Closed." << std::endl; +} \ No newline at end of file diff --git a/TriviaBot/bot/ClientConnection.hpp b/TriviaBot/bot/ClientConnection.hpp index 4983b95..52382a4 100644 --- a/TriviaBot/bot/ClientConnection.hpp +++ b/TriviaBot/bot/ClientConnection.hpp @@ -1,12 +1,9 @@ -#include - -#include "json/json.hpp" +#ifndef BOT_CLIENTCONNECTION +#define BOT_CLIENTCONNECTION #include - -#include - -#include "ProtocolHandler.h" +#include +#include "json/json.hpp" typedef websocketpp::client client; @@ -17,118 +14,26 @@ typedef websocketpp::config::asio_tls_client::message_type::ptr message_ptr; typedef websocketpp::lib::shared_ptr context_ptr; typedef client::connection_ptr connection_ptr; +class GatewayHandler; + class ClientConnection { public: - typedef ClientConnection type; + ClientConnection(); - ClientConnection() { - m_endpoint.clear_access_channels(websocketpp::log::alevel::all); + // Open a connection to the URI provided + void start(std::string uri); - m_endpoint.set_access_channels(websocketpp::log::alevel::app | websocketpp::log::alevel::connect); - m_endpoint.set_error_channels(websocketpp::log::elevel::all); + // Event handlers + void on_socket_init(websocketpp::connection_hdl); + context_ptr on_tls_init(websocketpp::connection_hdl); + void on_fail(websocketpp::connection_hdl hdl); + void on_open(websocketpp::connection_hdl hdl); + void on_message(websocketpp::connection_hdl &hdl, message_ptr message); + void on_close(websocketpp::connection_hdl); - // Initialize ASIO - m_endpoint.init_asio(); - - // Register our handlers - m_endpoint.set_socket_init_handler(bind( - &type::on_socket_init, - this, - websocketpp::lib::placeholders::_1 - )); - m_endpoint.set_tls_init_handler(bind( - &type::on_tls_init, - this, - websocketpp::lib::placeholders::_1 - )); - m_endpoint.set_message_handler(bind( - &type::on_message, - this, - websocketpp::lib::placeholders::_1, - websocketpp::lib::placeholders::_2 - )); - m_endpoint.set_open_handler(bind( - &type::on_open, - this, - websocketpp::lib::placeholders::_1 - )); - m_endpoint.set_close_handler(bind( - &type::on_close, - this, - websocketpp::lib::placeholders::_1 - )); - m_endpoint.set_fail_handler(bind( - &type::on_fail, - this, - websocketpp::lib::placeholders::_1 - )); - } - - void start(std::string uri) { - websocketpp::lib::error_code ec; - client::connection_ptr con = m_endpoint.get_connection(uri, ec); - - if (ec) { - m_endpoint.get_alog().write(websocketpp::log::alevel::app, ec.message()); - return; - } - - m_endpoint.connect(con); - - m_endpoint.run(); - } - - void on_socket_init(websocketpp::connection_hdl) { - m_endpoint.get_alog().write(websocketpp::log::alevel::app, - "Socket intialised."); - } - - context_ptr on_tls_init(websocketpp::connection_hdl) { - context_ptr ctx = std::make_shared(boost::asio::ssl::context::sslv23); - - try { - ctx->set_options(boost::asio::ssl::context::default_workarounds | - boost::asio::ssl::context::no_sslv2 | - boost::asio::ssl::context::no_sslv3 | - boost::asio::ssl::context::single_dh_use); - } - catch (std::exception& e) { - std::cout << "Error in context pointer: " << e.what() << std::endl; - } - return ctx; - } - - void on_fail(websocketpp::connection_hdl hdl) { - client::connection_ptr con = m_endpoint.get_con_from_hdl(hdl); - - m_endpoint.get_elog().write(websocketpp::log::elevel::warn, - "Fail handler: \n" + - std::to_string(con->get_state()) + "\n" + - std::to_string(con->get_local_close_code()) + "\n" + - con->get_local_close_reason() + "\n" + - std::to_string(con->get_remote_close_code()) + "\n" + - con->get_remote_close_reason() + "\n" + - std::to_string(con->get_ec().value()) + " - " + con->get_ec().message() + "\n"); - } - - void on_open(websocketpp::connection_hdl &hdl) { - //ProtocolHandler::handle_data(); - //pHandler.handle_data("jjj", m_endpoint, hdl); - } - - void on_message(websocketpp::connection_hdl &hdl, message_ptr message) { - if (message->get_opcode() != websocketpp::frame::opcode::text) { - std::cout << "<< " << websocketpp::utility::to_hex(message->get_payload()) << std::endl; - return; - } - - pHandler.handle_data(message->get_payload(), m_endpoint, hdl); - } - - void on_close(websocketpp::connection_hdl) { - std::cout << "Closed." << std::endl; - } private: - client m_endpoint; - ProtocolHandler pHandler; -}; \ No newline at end of file + client c; + GatewayHandler *gHandler; +}; + +#endif \ No newline at end of file diff --git a/TriviaBot/bot/GatewayHandler.cpp b/TriviaBot/bot/GatewayHandler.cpp new file mode 100644 index 0000000..3dbab89 --- /dev/null +++ b/TriviaBot/bot/GatewayHandler.cpp @@ -0,0 +1,175 @@ +#include "GatewayHandler.hpp" + +#include + +#include "APIHelper.hpp" +#include "data_structures/User.hpp" + +GatewayHandler::GatewayHandler() { + last_seq = 0; + + ah = new APIHelper(); +} + +void GatewayHandler::handle_data(std::string data, client &c, websocketpp::connection_hdl &hdl) { + json decoded = json::parse(data); + + int op = decoded["op"]; + + switch (op) { + case 0: // Event dispatch + on_dispatch(decoded, c, hdl); + break; + case 10: // Hello + on_hello(decoded, c, hdl); + break; + case 11: + c.get_alog().write(websocketpp::log::alevel::app, "Heartbeat acknowledged."); + break; + default: + std::cout << data << std::endl; + } +} + +void GatewayHandler::heartbeat(websocketpp::lib::error_code const & ec, client *c, websocketpp::connection_hdl *hdl) { + json heartbeat = { + { "op", 1 }, + { "d", last_seq } + }; + + c->send(*hdl, heartbeat.dump(), websocketpp::frame::opcode::text); + + c->set_timer(heartbeat_interval, websocketpp::lib::bind( + &GatewayHandler::heartbeat, + this, + websocketpp::lib::placeholders::_1, + c, + hdl + )); + + c->get_alog().write(websocketpp::log::alevel::app, "Sent heartbeat. (seq: " + std::to_string(last_seq) + ")"); +} + +void GatewayHandler::on_hello(json decoded, client &c, websocketpp::connection_hdl &hdl) { + heartbeat_interval = decoded["d"]["heartbeat_interval"]; + + c.get_alog().write(websocketpp::log::alevel::app, "Heartbeat interval: " + std::to_string((float)heartbeat_interval / 1000) + " seconds"); + + c.set_timer(heartbeat_interval, websocketpp::lib::bind( + &GatewayHandler::heartbeat, + this, + websocketpp::lib::placeholders::_1, + &c, + &hdl + )); + + identify(c, hdl); +} + +void GatewayHandler::on_dispatch(json decoded, client &c, websocketpp::connection_hdl &hdl) { + last_seq = decoded["s"]; + std::string event_name = decoded["t"]; + json data = decoded["d"]; + + c.get_alog().write(websocketpp::log::alevel::app, "Received event: " + event_name + " (new seq value: " + std::to_string(last_seq) + ")"); + + if (event_name == "READY") { + user_object.load_from_json(data["user"]); + + c.get_alog().write(websocketpp::log::alevel::app, "Sign-on confirmed. (@" + user_object.username + "#" + user_object.discriminator + ")"); + + c.get_alog().write(websocketpp::log::alevel::app, data.dump(4)); + } + else if (event_name == "GUILD_CREATE") { + std::string guild_id = data["id"]; + guilds[guild_id] = std::make_unique(data); + + for (json channel : data["channels"]) { + std::string channel_id = channel["id"]; + channel["guild_id"] = guild_id; + // create channel obj, add to overall channel list + channels[channel_id] = std::make_unique(channel); + // add ptr to said channel list to guild's channel list + guilds[guild_id]->channels.push_back(std::shared_ptr(channels[channel_id])); + } + + c.get_alog().write(websocketpp::log::alevel::app, data.dump(4)); + } + else if (event_name == "TYPING_START") {} + else if (event_name == "MESSAGE_CREATE") { + std::string message = data["content"]; + auto channel = channels[data["channel_id"]]; + + DiscordObjects::User sender(data["author"]); + + c.get_alog().write(websocketpp::log::alevel::app, "Message received: " + message + " $" + channel->name + " ^" + channel->id); + + std::vector words; + boost::split(words, message, boost::is_any_of(" ")); + if (games.find(channel->id) != games.end()) { // message received in channel with ongoing game + games[channel->id]->handle_answer(message, sender); + } else if (words[0] == "`trivia" || words[0] == "`t") { + int questions = 10; + if (words.size() == 2) { + try { + questions = std::stoi(words[1]); + } catch (std::invalid_argument e) { + ah->send_message(channel->id, ":exclamation: Invalid arguments!"); + } + } else if (words.size() > 2) { + ah->send_message(channel->id, ":exclamation: Invalid arguments!"); + } + + games[channel->id] = std::make_unique(this, ah, channel->id, questions); + games[channel->id]->start(); + } + else if (words[0] == "`channels") { + std::string m = "Channel List:\n"; + for (auto ch : channels) { + m += "> " + ch.second->name + " (" + ch.second->id + ") [" + ch.second->type + "] Guild: " + + guilds[ch.second->guild_id]->name + " (" + ch.second->guild_id + ")\n"; + } + ah->send_message(channel->id, m); + } else if (words[0] == "`guilds") { + std::string m = "Guild List:\n"; + for (auto &gu : guilds) { + m += "> " + gu.second->name + " (" + gu.second->id + ") Channels: " + std::to_string(gu.second->channels.size()) + "\n"; + } + ah->send_message(channel->id, m); + } + c.get_alog().write(websocketpp::log::alevel::app, data.dump(2)); + } + //c.get_alog().write(websocketpp::log::alevel::app, decoded.dump(2)); +} + +void GatewayHandler::identify(client &c, websocketpp::connection_hdl &hdl) { + json identify = { + { "op", 2 }, + { "d",{ + { "token", TOKEN }, + { "properties",{ + { "$browser", "Microsoft Windows 10" }, + { "$device", "TriviaBot-0.0" }, + { "$referrer", "" }, + { "$referring_domain", "" } + } }, + { "compress", false }, + { "large_threshold", 250 }, + { "shard",{ 0, 1 } } + } } + }; + + c.send(hdl, identify.dump(), websocketpp::frame::opcode::text); + c.get_alog().write(websocketpp::log::alevel::app, "Sent identify payload."); +} + +void GatewayHandler::delete_game(std::string channel_id) { + auto it = games.find(channel_id); + + if (it != games.end()) { + // remove from map + games.erase(it); + } else { + std::cerr << "Tried to delete a game that didn't exist."; + } +} \ No newline at end of file diff --git a/TriviaBot/bot/GatewayHandler.hpp b/TriviaBot/bot/GatewayHandler.hpp new file mode 100644 index 0000000..0f1067b --- /dev/null +++ b/TriviaBot/bot/GatewayHandler.hpp @@ -0,0 +1,76 @@ +#ifndef BOT_GATEWAYHANDLER +#define BOT_GATEWAYHANDLER + +#include +#include + +#include +#include +#include "json/json.hpp" + +#include "TriviaGame.hpp" +#include "data_structures/User.hpp" +#include "data_structures/Guild.hpp" +#include "data_structures/Channel.hpp" + +typedef websocketpp::client client; +using json = nlohmann::json; + +/************ Opcodes ************************************************************************************************** +* Code | Name | Description * +* --------------------------------------------------------------------------------------------------------------------------* +* 0 | Dispatch | dispatches an event * +* 1 | Heartbeat | used for ping checking * +* 2 | Identify | used for client handshake * +* 3 | Status Update | used to update the client status * +* 4 | Voice State Update | used to join/move/leave voice channels * +* 5 | Voice Server Ping | used for voice ping checking * +* 6 | Resume | used to resume a closed connection * +* 7 | Reconnect | used to tell clients to reconnect to the gateway * +* 8 | Request Guild Members | used to request guild members * +* 9 | Invalid Session | used to notify client they have an invalid session id * +* 10 | Hello | sent immediately after connecting, contains heartbeat and server debug information * +* 11 | Heartback ACK | sent immediately following a client heartbeat that was received * +*****************************************************************************************************************************/ + +class TriviaGame; +class APIHelper; + +class GatewayHandler { +public: + GatewayHandler(); + + void handle_data(std::string data, client &c, websocketpp::connection_hdl &hdl); + + void heartbeat(websocketpp::lib::error_code const & ec, client *c, websocketpp::connection_hdl *hdl); + + void on_hello(json decoded, client &c, websocketpp::connection_hdl &hdl); + + void on_dispatch(json decoded, client &c, websocketpp::connection_hdl &hdl); + + void identify(client &c, websocketpp::connection_hdl &hdl); + + void delete_game(std::string channel_id); + +private: + int last_seq; + int heartbeat_interval; + + const int protocol_version = 5; + const std::string TOKEN = "MTk5NjU3MDk1MjU4MTc3NTM5.ClyBNQ.15qTa-XBKRtGNMMYeXCrU50GhWE"; + + // bot's user obj + DiscordObjects::User user_object; + + // + std::map> guilds; + // channels pointers are shared pointers, held here but also in guild objects + std::map> channels; + + // + std::map> games; + + APIHelper *ah; +}; + +#endif \ No newline at end of file diff --git a/TriviaBot/bot/ProtocolHandler.h b/TriviaBot/bot/ProtocolHandler.h deleted file mode 100644 index e5435d7..0000000 --- a/TriviaBot/bot/ProtocolHandler.h +++ /dev/null @@ -1,168 +0,0 @@ -#include "json/json.hpp" - -#include -#include - -typedef websocketpp::client client; -using json = nlohmann::json; - -/************ Opcodes ************************************************************************************************** -* Code | Name | Description * -* --------------------------------------------------------------------------------------------------------------------------* -* 0 | Dispatch | dispatches an event * -* 1 | Heartbeat | used for ping checking * -* 2 | Identify | used for client handshake * -* 3 | Status Update | used to update the client status * -* 4 | Voice State Update | used to join/move/leave voice channels * -* 5 | Voice Server Ping | used for voice ping checking * -* 6 | Resume | used to resume a closed connection * -* 7 | Reconnect | used to tell clients to reconnect to the gateway * -* 8 | Request Guild Members | used to request guild members * -* 9 | Invalid Session | used to notify client they have an invalid session id * -* 10 | Hello | sent immediately after connecting, contains heartbeat and server debug information * -* 11 | Heartback ACK | sent immediately following a client heartbeat that was received * -*****************************************************************************************************************************/ - -class ProtocolHandler { -public: - ProtocolHandler() { - last_seq = 0; - } - - void handle_data(std::string data, client &c, websocketpp::connection_hdl &hdl) { - json decoded = json::parse(data); - - int op = decoded["op"]; - - switch (op) { - case 0: // Event dispatch - on_dispatch(decoded, c, hdl); - break; - case 10: // Hello - on_hello(decoded, c, hdl); - break; - case 11: - c.get_alog().write(websocketpp::log::alevel::app, "Heartbeat acknowledged."); - break; - default: - std::cout << data << std::endl; - } - } - - void heartbeat(websocketpp::lib::error_code const & ec, client *c, websocketpp::connection_hdl *hdl) { - json heartbeat = { - { "op", 1 }, - { "d", last_seq } - }; - - c->send(*hdl, heartbeat.dump(), websocketpp::frame::opcode::text); - - c->set_timer(heartbeat_interval, websocketpp::lib::bind( - &ProtocolHandler::heartbeat, - this, - websocketpp::lib::placeholders::_1, - c, - hdl - )); - - c->get_alog().write(websocketpp::log::alevel::app, "Sent heartbeat. (seq: " + std::to_string(last_seq) + ")"); - } - - void on_hello(json decoded, client &c, websocketpp::connection_hdl &hdl) { - heartbeat_interval = decoded["d"]["heartbeat_interval"]; - - c.get_alog().write(websocketpp::log::alevel::app, "Heartbeat interval: " + std::to_string((float)heartbeat_interval / 1000) + " seconds"); - - c.set_timer(heartbeat_interval, websocketpp::lib::bind( - &ProtocolHandler::heartbeat, - this, - websocketpp::lib::placeholders::_1, - &c, - &hdl - )); - - identify(c, hdl); - } - - void on_dispatch(json decoded, client &c, websocketpp::connection_hdl &hdl) { - last_seq = decoded["s"]; - std::string event_name = decoded["t"]; - json data = decoded["d"]; - - c.get_alog().write(websocketpp::log::alevel::app, "Received event: " + event_name + " (new seq value: " + std::to_string(last_seq) + ")"); - - if (event_name == "READY") { - user_object = data["user"]; - - std::string username = user_object["username"]; - std::string discriminator = user_object["discriminator"]; - c.get_alog().write(websocketpp::log::alevel::app, "Sign-on confirmed. (@" + username + "#" + discriminator + ")"); - - c.get_alog().write(websocketpp::log::alevel::app, data.dump(4)); - } - else if (event_name == "GUILD_CREATE") { - std::string guild_name = data["name"]; - std::string guild_id = data["id"]; - - guilds[guild_id] = data; - - for (json &element : data["channels"]) { - if (element["type"] == "text"){ - channels[element["id"]] = element; - } - } - - c.get_alog().write(websocketpp::log::alevel::app, "Guild joined: " + guild_name); - } - else if (event_name == "TYPING_START") {} - else if (event_name == "MESSAGE_CREATE") { - std::string message = data["content"]; - json channel = channels[data["channel_id"]]; - std::string channel_name = channel["name"]; - std::string channel_id = data["channel_id"]; - - c.get_alog().write(websocketpp::log::alevel::app, "Message received: " + message + " $" + channel_name + " ^" + channel_id); - - if (message == "`trivia" || message == "`t") { - - } - } - //c.get_alog().write(websocketpp::log::alevel::app, decoded.dump(2)); - } - - json create_message(json user, std::string channel_id) { - - } - - void identify(client &c, websocketpp::connection_hdl &hdl) { - json identify = { - { "op", 2 }, - { "d", { - { "token", bot_token }, - { "properties", { - { "$browser", "Microsoft Windows 10" }, - { "$device", "TriviaBot-0.0" }, - { "$referrer", "" }, - { "$referring_domain", "" } - } }, - { "compress", false }, - { "large_threshold", 250 }, - { "shard", { 0, 1 } } - } } - }; - - c.send(hdl, identify.dump(), websocketpp::frame::opcode::text); - c.get_alog().write(websocketpp::log::alevel::app, "Sent identify payload."); - } - -private: - int last_seq; - int heartbeat_interval; - - const int protocol_version = 5; - const std::string bot_token = "MTk5NjU3MDk1MjU4MTc3NTM5.ClyBNQ.15qTa-XBKRtGNMMYeXCrU50GhWE"; - - std::map guilds; - std::map channels; - json user_object; -}; \ No newline at end of file diff --git a/TriviaBot/bot/Source.cpp b/TriviaBot/bot/Source.cpp deleted file mode 100644 index d182226..0000000 --- a/TriviaBot/bot/Source.cpp +++ /dev/null @@ -1,22 +0,0 @@ -#include "ClientConnection.hpp" - -int main(int argc, char* argv[]) { - std::string uri = "wss://gateway.discord.gg/?v=5&encoding=json"; - //std::string uri = "wss://echo.websocket.org/"; - - try { - ClientConnection endpoint; - endpoint.start(uri); - } - catch (const std::exception & e) { - std::cout << e.what() << std::endl; - } - catch (websocketpp::lib::error_code e) { - std::cout << e.message() << std::endl; - } - catch (...) { - std::cout << "other exception" << std::endl; - } - - std::getchar(); -} \ No newline at end of file diff --git a/TriviaBot/bot/TriviaBot.cpp b/TriviaBot/bot/TriviaBot.cpp index e69de29..03207a6 100644 --- a/TriviaBot/bot/TriviaBot.cpp +++ b/TriviaBot/bot/TriviaBot.cpp @@ -0,0 +1,29 @@ +#include + +#include "ClientConnection.hpp" + +int main() { + curl_global_init(CURL_GLOBAL_DEFAULT); + + std::string uri = "wss://gateway.discord.gg/?v=5&encoding=json"; + + try { + ClientConnection endpoint; + endpoint.start(uri); + } + catch (const std::exception & e) { + std::cout << e.what() << std::endl; + } + catch (websocketpp::lib::error_code e) { + std::cout << e.message() << std::endl; + } + catch (...) { + std::cout << "other exception" << std::endl; + } + + std::getchar(); + + curl_global_cleanup(); + + return 0; +} \ No newline at end of file diff --git a/TriviaBot/bot/TriviaGame.cpp b/TriviaBot/bot/TriviaGame.cpp new file mode 100644 index 0000000..cf4561a --- /dev/null +++ b/TriviaBot/bot/TriviaGame.cpp @@ -0,0 +1,346 @@ +#include "TriviaGame.hpp" + +#include +#include +#include + +#include +#include +#include +#include + +#include "GatewayHandler.hpp" +#include "APIHelper.hpp" +#include "data_structures/User.hpp" + +TriviaGame::TriviaGame(GatewayHandler *gh, APIHelper *ah, std::string channel_id, int total_questions) { + this->gh = gh; + this->ah = ah; + this->channel_id = channel_id; + + this->total_questions = total_questions; + questions_asked = 0; +} + +TriviaGame::~TriviaGame() { + std::string message = ":red_circle: **(" + std::to_string(questions_asked) + "/" + std::to_string(total_questions) + + ")** Game over! **Scores:**\n"; + + // convert map to pair vector + std::vector> pairs; + for (auto &s : scores) { + pairs.push_back(s); + } + + // sort by score, highest->lowest + std::sort(pairs.begin(), pairs.end(), [=](std::pair& a, std::pair& b) { + return a.second > b.second; + }); + + for (auto &p : pairs) { + std::string average_time; + average_time = std::to_string(average_times[p.first] / 1000.0f); + average_time.pop_back(); average_time.pop_back(); average_time.pop_back(); + message += ":small_blue_diamond: <@!" + p.first + ">: " + std::to_string(p.second) + " (Avg: " + average_time + " seconds)\n"; + } + ah->send_message(channel_id, message); + + sqlite3 *db; int rc; std::string sql; + + rc = sqlite3_open("bot/db/trivia.db", &db); + if (rc) { + std::cerr << "Cant't open database: " << sqlite3_errmsg(db) << std::endl; + } + + std::string sql_in_list; + for (int i = 1; i <= scores.size(); i++) { + sql_in_list += "?,"; + } + sql_in_list.pop_back(); // remove final comma + + // prepare statement + sql = "SELECT * FROM TotalScores WHERE User IN(" + sql_in_list + ");"; + sqlite3_stmt *stmt; + + rc = sqlite3_prepare_v2(db, sql.c_str(), -1, &stmt, 0); + if (rc != SQLITE_OK) { + std::cerr << "SQL error." << std::endl; + } + + // insert arguments + for (int i = 0; i < scores.size(); i++) { + rc = sqlite3_bind_text(stmt, i + 1, pairs[i].first.c_str(), -1, (sqlite3_destructor_type) -1); + + if (rc != SQLITE_OK) { + std::cerr << "SQL error." << std::endl; + break; + } + } + + std::map> data; + rc = 0; // just in case + while (rc != SQLITE_DONE) { + rc = sqlite3_step(stmt); + + if (rc == SQLITE_ROW) { + std::string id = reinterpret_cast(sqlite3_column_text(stmt, 0)); + int total_score = sqlite3_column_int(stmt, 1); + int average_time = sqlite3_column_int(stmt, 2); + + data[id] = std::pair(total_score, average_time); + } else if (rc != SQLITE_DONE) { + sqlite3_finalize(stmt); + std::cerr << "SQLite error." << std::endl; + break; + } + } + sqlite3_finalize(stmt); + + std::string update_sql; + if (data.size() < scores.size()) { // some users dont have entries yet + std::string sql = "INSERT INTO TotalScores (User, TotalScore, AverageTime) VALUES "; + for (auto &i : scores) { + if (data.find(i.first) == data.end()) { + sql += "(?, ?, ?),"; + } + } + sql.pop_back(); // remove final comma + sql += ";"; + + rc = sqlite3_prepare_v2(db, sql.c_str(), -1, &stmt, 0); + if (rc != SQLITE_OK) { + std::cerr << "SQL error." << std::endl; + } + + int count = 1; + for (auto &i : scores) { + if (data.find(i.first) == data.end()) { + sqlite3_bind_text(stmt, count, i.first.c_str(), -1, (sqlite3_destructor_type) -1); + sqlite3_bind_int(stmt, count + 1, scores[i.first]); + sqlite3_bind_int(stmt, count + 2, average_times[i.first]); + count += 3; + } + } + + sqlite3_step(stmt); + sqlite3_finalize(stmt); + } + + for (int i = 0; i < data.size(); i++) { + update_sql += "UPDATE TotalScores SET TotalScore=?, AverageTime=? WHERE User=?;"; + } + + if (update_sql != "") { + std::cout << update_sql << std::endl; + rc = sqlite3_prepare_v2(db, update_sql.c_str(), -1, &stmt, 0); + if (rc != SQLITE_OK) { + std::cerr << "SQL error." << std::endl; + } + + int index = 1; + for (auto &i : data) { + int total_answered = i.second.first + scores[i.first]; + // (correct answers [t] * average time [t]) + (correct answers [c] * average time [c]) -- [c] is current game, [t] total + long total = (i.second.first * i.second.second) + (scores[i.first] * average_times[i.first]); + // total / correct answers [t+c] = new avg + int new_avg = total / total_answered; + + rc = sqlite3_bind_int(stmt, index, total_answered); + rc = sqlite3_bind_int(stmt, index + 1, new_avg); + rc = sqlite3_bind_text(stmt, index + 2, i.first.c_str(), -1, (sqlite3_destructor_type) -1); + + index += 3; + } + + sqlite3_step(stmt); + sqlite3_finalize(stmt); + } + + sqlite3_close(db); +} + +void TriviaGame::end_game() { + gh->delete_game(channel_id); +} + +void TriviaGame::start() { + question(); +} + +void TriviaGame::question() { + sqlite3 *db; int rc; char *sql; + + /// open db + rc = sqlite3_open("bot/db/trivia.db", &db); + if (rc) { + std::cerr << "Cant't open database: " << sqlite3_errmsg(db) << std::endl; + } + + // prepare statement + sqlite3_stmt *stmt; + sql = "SELECT * FROM Questions ORDER BY RANDOM() LIMIT 1;"; + rc = sqlite3_prepare_v2(db, sql, -1, &stmt, 0); + + if (rc != SQLITE_OK) { + std::cerr << "SQL error." << std::endl; + } + + rc = sqlite3_step(stmt); + if (rc == SQLITE_ROW) { + // result received + std::string id = reinterpret_cast(sqlite3_column_text(stmt, 0)); // converts id to string for us + std::string category = reinterpret_cast(sqlite3_column_text(stmt, 1)); + std::string question = reinterpret_cast(sqlite3_column_text(stmt, 2)); + std::string answer = reinterpret_cast(sqlite3_column_text(stmt, 3)); + + current_question = "#" + id + " [" + category + "] **" + question + "**"; + boost::split(current_answers, boost::algorithm::to_lower_copy(answer), boost::is_any_of("*")); + + } else if (rc != SQLITE_DONE) { + sqlite3_finalize(stmt); + std::cerr << "SQLite error." << std::endl; + } + + sqlite3_finalize(stmt); + sqlite3_close(db); + + questions_asked++; + ah->send_message(channel_id, ":question: **(" + std::to_string(questions_asked) + "/" + std::to_string(total_questions) + ")** " + current_question); + question_start = boost::posix_time::microsec_clock::universal_time(); + + current_thread = boost::shared_ptr(new boost::thread(boost::bind(&TriviaGame::give_hint, this, 0, ""))); +} + +void TriviaGame::give_hint(int hints_given, std::string hint) { + boost::this_thread::sleep(boost::posix_time::seconds(10)); + + std::string answer = *current_answers.begin(); + + bool print = false; + + if (hints_given == 0) { + hint = answer; + // probably shouldn't use regex here + boost::regex regexp("[a-zA-Z0-9]+?"); + hint = boost::regex_replace(hint, regexp, std::string(1, hide_char)); + + print = true; + } + else { + std::stringstream hint_stream(hint); + + std::random_device rd; + std::mt19937 rng(rd()); + + std::vector hint_words, answer_words; + boost::split(hint_words, hint, boost::is_any_of(" ")); + boost::split(answer_words, answer, boost::is_any_of(" ")); + + hint = ""; + for (int i = 0; i < hint_words.size(); i++) { + std::string word = hint_words[i]; + + // count number of *s + int length = 0; + for (int i = 0; i < word.length(); i++) { + if (word[i] == hide_char) { + length++; + } + } + + if (length > 1) { + std::uniform_int_distribution uni(0, word.length() - 1); + + bool replaced = false; + while (!replaced) { + int replace_index = uni(rng); + if (word[replace_index] == hide_char) { + word[replace_index] = answer_words[i][replace_index]; + + print = true; + replaced = true; + } + } + } + + hint += word + " "; + } + } + + hints_given++; // now equal to the amount of [hide_char]s that need to be present in each word + + if (print) { + ah->send_message(channel_id, ":small_orange_diamond: Hint: **`" + hint + "`**"); + } + + if (hints_given < 4) { + current_thread = boost::shared_ptr(new boost::thread(boost::bind(&TriviaGame::give_hint, this, hints_given, hint))); + } else { + current_thread = boost::shared_ptr(new boost::thread(boost::bind(&TriviaGame::question_failed, this))); + } +} + +void TriviaGame::question_failed() { + boost::this_thread::sleep(boost::posix_time::seconds(10)); + ah->send_message(channel_id, ":exclamation: Question failed. Answer: ** `" + *current_answers.begin() + "` **"); + + if (questions_asked < 10) { + question(); + } else { + end_game(); + } +} + +void TriviaGame::handle_answer(std::string answer, DiscordObjects::User sender) { + boost::algorithm::to_lower(answer); + if (current_answers.find(answer) != current_answers.end()) { + current_thread->interrupt(); + + boost::posix_time::time_duration diff = boost::posix_time::microsec_clock::universal_time() - question_start; + + std::string time_taken = std::to_string(diff.total_milliseconds() / 1000.0f); + // remove the last three 0s + time_taken.pop_back(); time_taken.pop_back(); time_taken.pop_back(); + + ah->send_message(channel_id, ":heavy_check_mark: <@!" + sender.id + "> You got it! (" + time_taken + " seconds)"); + + increase_score(sender.id); + update_average_time(sender.id, diff.total_milliseconds()); + + if (questions_asked < 10) { + question(); + } else { + end_game(); + } + } else if (answer == "`s" || answer == "`stop") { + current_thread->interrupt(); + + end_game(); + } +} + +void TriviaGame::increase_score(std::string user_id) { + if (scores.find(user_id) == scores.end()) { + // user entry not found, add one + scores[user_id] = 1; + } + else { + scores[user_id]++; + } +} + +void TriviaGame::update_average_time(std::string user_id, int time) { + if (average_times.find(user_id) == average_times.end()) { + // user entry not found, add one + average_times[user_id] = time; + } + else { + int questions_answered = scores[user_id]; + // questions_answered was updated before this, -1 to get to previous value for avg calc + int total = average_times[user_id] * (questions_answered - 1); + total += time; + + // yeah it probably loses accuracy here, doesn't really matter + average_times[user_id] = (int) (total / questions_answered); + } +} \ No newline at end of file diff --git a/TriviaBot/bot/TriviaGame.hpp b/TriviaBot/bot/TriviaGame.hpp new file mode 100644 index 0000000..04c1514 --- /dev/null +++ b/TriviaBot/bot/TriviaGame.hpp @@ -0,0 +1,58 @@ +#ifndef BOT_QUESTIONHELPER +#define BOT_QUESTIONHELPER + +#include +#include +#include +#include + +#include +#include +#include + +class GatewayHandler; +class APIHelper; +namespace DiscordObjects { + class User; +} + + +class TriviaGame { +public: + TriviaGame(GatewayHandler *gh, APIHelper *ah, std::string channel_id, int total_questions); + ~TriviaGame(); + + void start(); + void handle_answer(std::string answer, DiscordObjects::User sender); + +private: + int questions_asked; + int total_questions; + + void end_game(); + void question(); + void give_hint(int hints_given, std::string hint); + void question_failed(); + void increase_score(std::string user_id); + void update_average_time(std::string user_id, int time); + + std::string channel_id; + GatewayHandler *gh; + APIHelper *ah; + + const char hide_char = '#'; + + std::string current_question; + std::set current_answers; + + // + std::map scores; + // + std::map average_times; + + boost::shared_ptr current_thread; + + boost::posix_time::ptime question_start; +}; + +#endif \ No newline at end of file diff --git a/TriviaBot/bot/data_structures/Channel.hpp b/TriviaBot/bot/data_structures/Channel.hpp new file mode 100644 index 0000000..9aef03d --- /dev/null +++ b/TriviaBot/bot/data_structures/Channel.hpp @@ -0,0 +1,81 @@ +#ifndef BOT_DATA__STRUCTURES_CHANNEL +#define BOT_DATA__STRUCTURES_CHANNEL + +#include + +#include "../json/json.hpp" + +using json = nlohmann::json; + +namespace DiscordObjects { + /* + =============================================================== CHANNEL OBJECT ============================================================== + |Field |Type |Description |Present | + |-----------------------|---------------|---------------------------------------------------------------------------------------|-----------| + |id |snowflake |the id of this channel (will be equal to the guild if it's the "general" channel) |Always | + |guild_id |snowflake |the id of the guild |Always | + |name |string |the name of the channel (2-100 characters) |Always | + |type |string |"text" or "voice" |Always | + |position |integer |the ordering position of the channel |Always | + |is_private |bool |should always be false for guild channels |Always | + |permission_overwrites |array |an array of overwrite objects |Always | + |topic |string |the channel topic (0-1024 characters) |Text only | + |last_message_id |snowflake |the id of the last message sent in this channel |Text only | + |bitrate |integer |the bitrate (in bits) of the voice channel |Voice only | + |user_limit |integer |the user limit of the voice channel |Voice only | + --------------------------------------------------------------------------------------------------------------------------------------------- + */ + + class Channel { + public: + Channel(); + Channel(json data); + + void load_from_json(json data); + + bool operator==(Channel rhs); + + std::string id; + std::string guild_id; + std::string name; + std::string type; + int position; + bool is_private; + // TODO: Implement permission overwrites + // std::vector permission_overwrites; + std::string topic; + std::string last_message_id; + int bitrate; + int user_limit; + }; + + inline Channel::Channel() { + id = guild_id = name = topic = last_message_id = "null"; + position = bitrate = user_limit = -1; + is_private = false; + type = "text"; + } + + inline Channel::Channel(json data) { + load_from_json(data); + } + + inline void Channel::load_from_json(json data) { + id = data.value("id", "null"); + guild_id = data.value("guild_id", "null"); + name = data.value("name", "null"); + type = data.value("type", "text"); + position = data.value("position", -1); + is_private = data.value("is_private", false); + topic = data.value("topic", "null"); + last_message_id = data.value("last_message_id", "null"); + bitrate = data.value("bitrate", -1); + user_limit = data.value("user_limit", -1); + } + + inline bool Channel::operator==(Channel rhs) { + return id == rhs.id && id != "null"; + } +} + +#endif \ No newline at end of file diff --git a/TriviaBot/bot/data_structures/Guild.hpp b/TriviaBot/bot/data_structures/Guild.hpp new file mode 100644 index 0000000..fe2ace7 --- /dev/null +++ b/TriviaBot/bot/data_structures/Guild.hpp @@ -0,0 +1,105 @@ +#ifndef BOT_DATA__STRUCTURES_Guild +#define BOT_DATA__STRUCTURES_Guild + +#include +#include + +#include "../json/json.hpp" + +#include "Channel.hpp" +#include "User.hpp" + +using json = nlohmann::json; + +namespace DiscordObjects { + /* + =================================== GUILD OBJECT ==================================== + |Field |Type |Description | + |-------------------|---------------|-----------------------------------------------| + |id |snowflake |guild id | + |name |string |guild name (2-100 characters) | + |icon |string |icon hash | + |splash |string |splash hash | + |owner_id |snowflake |id of owner | + |region |string |{voice_region.id} | + |afk_channel_id |snowflake |id of afk channel | + |afk_timeout |integer |afk timeout in seconds | + |embed_enabled |bool |is this guild embeddable (e.g. widget) | + |embed_channel_id |snowflake |id of embedded channel | + |verification_level |integer |level of verification | + |voice_states |array |array of voice state objects (w/o guild_id) | + |roles |array |array of role objects | + |emojis |array |array of emoji objects | + |features |array |array of guild features | + ------------------------------------------------------------------------------------- + + Custom fields: + ------------------------------------------------------------------------------------ + |Field |Type |Description | + |-------------------|---------------|-----------------------------------------------| + |channels |array |array of channel object ptrs | + |users |array |array of user objects ptrs | + ------------------------------------------------------------------------------------- + */ + + class Guild { + public: + Guild(); + Guild(json data); + + void load_from_json(json data); + + bool operator==(Guild rhs); + + std::string id; + std::string name; + std::string icon; + std::string splash; + std::string owner_id; + std::string region; + std::string afk_channel_id; + int afk_timeout; + // bool embed_enabled; + // std::string embed_channel_id; + int verification_level; + // TODO: Implement all guil fields + // std::vector voice_states + // std::vector roles + // std::vector emojis + // std::vector features + + std::vector> channels; + //std::vector> users; + }; + + inline Guild::Guild() { + id = name = icon = splash = owner_id = region = afk_channel_id = "null"; + afk_timeout = verification_level = -1; + } + + inline Guild::Guild(json data) { + load_from_json(data); + } + + inline void Guild::load_from_json(json data) { + Guild(); + std::cout << data.dump(4) << std::endl; + + + id = data.value("id", "null"); + name = data.value("name", "null"); + icon = data.value("icon", "null"); + splash = data.value("spash", "null"); + owner_id = data.value("owner_id", "null"); + region = data.value("region", "null"); + afk_channel_id = data.value("afk_channel_id", "null"); + afk_timeout = data.value("afk_timeout", -1); + verification_level = data.value("verification_level", -1); + } + + inline bool Guild::operator==(Guild rhs) { + return id == rhs.id && id != "null"; + } +} + +#endif \ No newline at end of file diff --git a/TriviaBot/bot/data_structures/Text.txt b/TriviaBot/bot/data_structures/Text.txt new file mode 100644 index 0000000..c1e31ab --- /dev/null +++ b/TriviaBot/bot/data_structures/Text.txt @@ -0,0 +1,125 @@ +Example data: + +!!!!!!!!!!!!!!!!! GUILD_CREATE Event +{ + "afk_channel_id": null, + "afk_timeout": 300, + "channels": [ + { + "id": "200398901767962624", + "is_private": false, + "last_message_id": "201355522635595776", + "name": "general", + "permission_overwrites": [], + "position": 0, + "topic": "", + "type": "text" + }, + { + "bitrate": 64000, + "id": "200398901767962625", + "is_private": false, + "name": "General", + "permission_overwrites": [], + "position": 0, + "type": "voice", + "user_limit": 0 + } + ], + "default_message_notifications": 0, + "emojis": [], + "features": [], + "icon": null, + "id": "200398901767962624", + "joined_at": "2016-07-06T23:54:20.824000+00:00", + "large": false, + "member_count": 2, + "members": [ + { + "deaf": false, + "joined_at": "2016-07-06T23:53:41.425000+00:00", + "mute": false, + "roles": [ + "200399346498273280" + ], + "user": { + "avatar": "1dc076d2d273615dd23546c86dbdfd9c", + "discriminator": "8212", + "id": "82232146579689472", + "username": "Jack" + } + }, + { + "deaf": false, + "joined_at": "2016-07-06T23:54:20.824000+00:00", + "mute": false, + "roles": [ + "200399601507893248" + ], + "user": { + "avatar": "e871ceecaa362718af6d3174bc941977", + "bot": true, + "discriminator": "8194", + "id": "199657095258177539", + "username": "trivia-bot" + } + } + ], + "mfa_level": 0, + "name": "EleGiggle", + "owner_id": "82232146579689472", + "presences": [ + { + "game": null, + "status": "online", + "user": { + "id": "82232146579689472" + } + }, + { + "game": null, + "status": "online", + "user": { + "id": "199657095258177539" + } + } + ], + "region": "london", + "roles": [ + { + "color": 0, + "hoist": false, + "id": "200398901767962624", + "managed": false, + "mentionable": false, + "name": "@everyone", + "permissions": 36953089, + "position": 0 + }, + { + "color": 3066993, + "hoist": true, + "id": "200399346498273280", + "managed": false, + "mentionable": false, + "name": "All Perms", + "permissions": 506715199, + "position": 1 + }, + { + "color": 15844367, + "hoist": true, + "id": "200399601507893248", + "managed": false, + "mentionable": false, + "name": "Robot", + "permissions": 536083519, + "position": 1 + } + ], + "splash": null, + "unavailable": false, + "verification_level": 0, + "voice_states": [] +} + diff --git a/TriviaBot/bot/data_structures/User.hpp b/TriviaBot/bot/data_structures/User.hpp new file mode 100644 index 0000000..1bc36e8 --- /dev/null +++ b/TriviaBot/bot/data_structures/User.hpp @@ -0,0 +1,65 @@ +#ifndef BOT_DATA__STRUCTURES_USER +#define BOT_DATA__STRUCTURES_USER + +#include + +#include "../json/json.hpp" + +using json = nlohmann::json; + +namespace DiscordObjects { + /* + ==================================================== USER OBJECT ======================================================= + Field Type Description Required OAuth2 Scope + ------------------------------------------------------------------------------------------------------------------------ + id snowflake the users id identify + username string the users username, not unique across the platform identify + discriminator string the users 4-digit discord-tag identify + avatar string the users avatar hash identify + bot bool whether the user belongs to a OAuth2 application identify + mfa_enabled bool whether the user has two factor enabled on their account identify + verified bool whether the email on this account has been verified email + email string the users email email + */ + + class User { + public: + User(); + User(json data); + + void load_from_json(json data); + + bool operator==(User rhs); + + std::string id; + std::string username; + std::string discriminator; + std::string avatar; + bool bot; + bool mfa_enabled; + }; + + inline User::User() { + id = username = discriminator = avatar = "null"; + bot = mfa_enabled = false; + } + + inline User::User(json data) { + load_from_json(data); + } + + inline void User::load_from_json(json data) { + id = data.value("id", "null"); + username = data.value("username", "null"); + discriminator = data.value("discriminator", "null"); + avatar = data.value("avatar", "null"); + bot = data.value("bot", false); + mfa_enabled = data.value("mfa_enabled", false); + } + + inline bool User::operator==(User rhs) { + return id == rhs.id && id != "null"; + } +} + +#endif \ No newline at end of file diff --git a/TriviaBot/db/schema.sqlite b/TriviaBot/bot/db/schema.sqlite similarity index 77% rename from TriviaBot/db/schema.sqlite rename to TriviaBot/bot/db/schema.sqlite index f8d03e1..462cf6a 100644 --- a/TriviaBot/db/schema.sqlite +++ b/TriviaBot/bot/db/schema.sqlite @@ -1,7 +1,8 @@ BEGIN TRANSACTION; -CREATE TABLE `TotalScores` ( +CREATE TABLE "TotalScores" ( `User` TEXT UNIQUE, `TotalScore` INTEGER, + `AverageTime` INTEGER, PRIMARY KEY(User) ); CREATE TABLE "Questions" ( @@ -10,4 +11,4 @@ CREATE TABLE "Questions" ( `Question` TEXT, `Answer` TEXT ); -COMMIT; +COMMIT; \ No newline at end of file diff --git a/TriviaBot/bot/http/HTTPHelper.cpp b/TriviaBot/bot/http/HTTPHelper.cpp index 4eccb9c..13f4671 100644 --- a/TriviaBot/bot/http/HTTPHelper.cpp +++ b/TriviaBot/bot/http/HTTPHelper.cpp @@ -1,44 +1,47 @@ #include "HTTPHelper.hpp" -size_t HTTPHelper::data_write(void* buf, size_t size, size_t nmemb, void* userp) { - if (userp) { - std::ostream& os = *static_cast(userp); - std::streamsize len = size * nmemb; - if (os.write(static_cast(buf), len)) { - return len; - } - } +/* +* Warning: (Awful) C Code +*/ - return 0; -} - -CURLcode HTTPHelper::curl_read(const std::string& url, std::ostream& os, long timeout = 30) { - CURLcode code(CURLE_FAILED_INIT); - CURL* curl = curl_easy_init(); +std::string HTTPHelper::post_request(std::string url, std::string content_type, std::string data) { + CURL *curl; + CURLcode res; + std::string read_buffer; + struct curl_slist *headers = nullptr; + curl = curl_easy_init(); if (curl) { - if (CURLE_OK == (code = curl_easy_setopt(curl, CURLOPT_WRITEFUNCTION, &data_write)) - && CURLE_OK == (code = curl_easy_setopt(curl, CURLOPT_NOPROGRESS, 1L)) - && CURLE_OK == (code = curl_easy_setopt(curl, CURLOPT_FOLLOWLOCATION, 1L)) - && CURLE_OK == (code = curl_easy_setopt(curl, CURLOPT_FILE, &os)) - && CURLE_OK == (code = curl_easy_setopt(curl, CURLOPT_TIMEOUT, timeout)) - && CURLE_OK == (code = curl_easy_setopt(curl, CURLOPT_URL, url.c_str()))) { - code = curl_easy_perform(curl); + curl_easy_setopt(curl, CURLOPT_URL, url.c_str()); + + // I wonder what the S in HTTPS stands for + curl_easy_setopt(curl, CURLOPT_SSL_VERIFYPEER, 0L); + curl_easy_setopt(curl, CURLOPT_SSL_VERIFYHOST, 0L); + + std::string content_header = "Content-Type: " + content_type; + headers = curl_slist_append(headers, content_header.c_str()); + curl_easy_setopt(curl, CURLOPT_HTTPHEADER, headers); + + curl_easy_setopt(curl, CURLOPT_POSTFIELDS, data.c_str()); + + curl_easy_setopt(curl, CURLOPT_WRITEFUNCTION, write_callback); + curl_easy_setopt(curl, CURLOPT_WRITEDATA, &read_buffer); + + res = curl_easy_perform(curl); + + if (res != CURLE_OK) { + return "ERROR"; } + + /* always cleanup */ curl_easy_cleanup(curl); + curl_slist_free_all(headers); } - return code; + + return read_buffer; } -std::string HTTPHelper::read_url(std::string url) { - std::ostringstream oss; - std::string html = "ERROR"; - if (CURLE_OK == curl_read("http://www.google.co.uk/", oss)) { - html = oss.str(); - } - else { - std::cout << "CURL error" << std::endl; - } - - return html; +size_t HTTPHelper::write_callback(void *contents, size_t size, size_t nmemb, void *userp) { + ((std::string *) userp)->append((char *)contents, size * nmemb); + return size * nmemb; } \ No newline at end of file diff --git a/TriviaBot/bot/http/HTTPHelper.hpp b/TriviaBot/bot/http/HTTPHelper.hpp index 6556765..158e6da 100644 --- a/TriviaBot/bot/http/HTTPHelper.hpp +++ b/TriviaBot/bot/http/HTTPHelper.hpp @@ -1,14 +1,16 @@ -#include -#include -#include +#ifndef BOT_HTTP_HTTPHELPER +#define BOT_HTTP_HTTPHELPER + #include -// callback function writes data to a std::ostream +#include + class HTTPHelper { public: - static std::string read_url(std::string url); + std::string post_request(std::string url, std::string content_type, std::string data); private: - static size_t data_write(void* buf, size_t size, size_t nmemb, void* userp); - static CURLcode curl_read(const std::string& url, std::ostream& os, long timeout); -}; \ No newline at end of file + static size_t write_callback(void *contents, size_t size, size_t nmemb, void *userp); +}; + +#endif \ No newline at end of file diff --git a/TriviaBot/bot/json/json.hpp b/TriviaBot/bot/json/json.hpp index ba7d821..94333a2 100644 --- a/TriviaBot/bot/json/json.hpp +++ b/TriviaBot/bot/json/json.hpp @@ -3650,7 +3650,15 @@ class basic_json const auto it = find(key); if (it != end()) { - return *it; + try + { + return *it; + } + catch (...) + { + // if some kind of exception occurred, return default value + return default_value; + } } else { diff --git a/TriviaBot/data_management/LoadDB.cpp b/TriviaBot/data_management/LoadDB.cpp new file mode 100644 index 0000000..bd4fca6 --- /dev/null +++ b/TriviaBot/data_management/LoadDB.cpp @@ -0,0 +1,87 @@ +#include +#include +#include +#include +#include +#include + +/** +/ Questions obtained from https://sourceforge.net/projects/triviadb/ +/ Questions are split into 14 files - b[01-14].txt +/ +/ Format: +/ [CATEGORY: ]QUESTION*ANSWER1[*ANSWER2 ...] +/ where things in [] are not always present +/ +/ Hideous code, but only needs to be run one time. +**/ + +static int callback(void *x, int argc, char **argv, char **azColName) { + int i; + for (i = 0; iF|2!H@lAR$VvrXH#u3Pscc z)~g~|lx6j+>TWIVICkuDW+q-}JLCO0b{r?(;)U%vUM9y`9NRhZWa;FLJs!u7Cq8jv zCuipOzu$X>0!g*o9ed94IZeAuK%wd_-*=b)z4w3b%b%MoHv@02-l+Ob?{Ml}sdPH^ zyyvA-&;DX6_1>$g?SGH(CE?_OC+caApw)k+Xvsc;9Yjrvv?G%huQnqLhr73!5%wRWi%Y+d@o zKa?3;n#e6rc+0ubxe4!;FX+Ipcu&3i-dASEU%7YY?DE9a#FDqTG&7%Dy6DYLT=a71 zmltNva@hHav&;MW;F#YGO7%wjm3x;bUa)u0wSur&uGhBT$<@NGpy7Uh_deDx+RY8` z-J6bHvwKOt5%zxAdEo=S_Xqx>FD^>mefRFi9!p14c4f=;reDby>Wv`m`|({nm$mON zZt>2uZ|-ir^JizyouAM`ZGWn_vb^25womD6``*1T`!`Z=+TvXNi(Q;#QE%O+yY9cs z#C9=r*Y2mEPP?mcqH`$>uC#($Ar{fzuh|_7a?59*lKk%HoBOi=CG~`M{R5x(#*W@| z*Y26e(y4N-7+i~w<+qx3`~A}PGKQCi`hMBPHQ%G_)(=l+{)E@}?#}*k_7Aham;LSR z=d!<<{k7~r&i+#N=dwSQ{n6|XWxqH39ocWn{!iJj$-a^OM7Eu6WH++K?915;*@f(M zHkUn_J)GU2eLVY-?C$J)v-f5*nLo*XDEnpE_hj$k=l_=Z&zb+2`JK$a&-|;*Z)E;y z=6}!peCB5|Kc4wJnIFh}cjntO-<0{r%-3e#&U`ZSRhesK+({>}8SrT=mIm(o9%{;Bkj zrvG;O`_tc%^R*WP}C z*ROngp4V639_97=+sAorzx_0?*WTXC>(<-v=k@B_ck|kM>s4NxZ`FAX-zxIjc+&1Am;9%{lGmkAZ}NKX(^|L1PwNN^ zpVqyc{qzK{^PfJ!>)faJ^E&(K0bb91dN;2#pVq2Qe_9@7>QnMDlb_n)b>dU2ypDfr zh1ao9&GI_>spomked;K$&wom5GV&>{>T{p^GG0%A>Rw)-{p45idg_x}larq;^E&*= zkMnxsljnFn{z+ZQu}^AMkA6}|IPyu4*TbJor5^m@&gWQ%2Nyd3f&;zh|L*(>$9~Tn zouB6d-t$=Jr+D*$pYHq!UwYuB&i9X}QuqH+=R4N<&)0YU#xDNzOy{qiOr`Go<&Jjo zzEUUR&HJ*^e>sv$z583E-+z(+oQi&nRloPwqklEWf5Pb39^gL@M*nCD{rkS?=a7VZ zrlOz3wch>jq91;q|GXZ3FAH+_p6J^Tr&4$Q-ROTQ@t>vW>sY;A{~>zwJpYNJPau!G z-us^)#vy;}?>@onfzNTk?BD;5E4IB_OT7Z}|M#aJ zPi1dr+nGPk+{j$c>?fA~hV*l(f05ec5BfKA|E|=YS0A1VYC*%VRg#T-FoT1yHb0i>}-6jnHt|B z@fdE_8%@t|1m3D&sMox8zq;CLl!8X+71qm}p|{y+)q;@EwThe|XjH@bdaKs-%QbJb zyrGLJ*DkjjZSNV6bNQv9@b0@(yQ9Y+pKpcb!U|{RMCHP|7xLMl;T6k8Z-vZTMOWAe zbVr`z|3*kI&MvvcvAG4mQt=jwoRl*iI(YEl$h_Yu`|I8q7u#OGS9gM^i@gqlHy!)=yV07=pc`az@J>ks- z<*?NV__nsHL~==YS7?+A8vz?+YqDDA?v;1)s)1i)m01ogX|3+D?BUHD#vos2DPT$GFQUdmFtx{$*xMJ?zO@e>(=%PyavUQF}-y*)5p zuaW((vw9gyZQRmGyPw$ zlxrKItcy43&6UGV{*$Ye>XpTY7Nd$3)k-alL74yYyHbxw*@q|V^&(0!&S^HZhC!)h zGGvMxHf3^9f7v0e`(`6pV|!UF)kk!l1^;T6OGd5^u$hAAph!QfE_8dtAhqXUf%To2w}W`@MX{57+mbxQ^mcB`58X zsq$*b>dztii+-yz_850k@4u5UxXKQ&c3wN+=#_e*g_GtaekH^<*N_I*!*_}?hTIqZ z`hbMt=||pSn+n1aXoMtold?$|G@E6Pff(Ap$&J;u+SvOM@2UCVTDef)e?H_6Hnny8 zM;re2a%JDm8}3gxZ_GZ*RR@P-k=2enH@jA@RP8ip*u4-0QK|)PFcJm_$PpI&#znt| zd%+ski#VGi+SESnaj-(N1WSRehcu;7UggR-HrL}ElV7Vh(PggIZfHCZ1bAVu)b!!q zJvBvl*nMwc##`}GfcdsJzkFf9W6}9C`i?EgHyggxlbzs$^Ek1#$?aK=j|vZrhUvExE}C`>qWc*kpsMtk8hK0Rk8_+quonN-+1xuGG_)o?Z;<{DL7`toW43 z%xbQ%?knX=r7X8wuj$02YzH?r%g)xk99U$Ozqd`ZX3NE!H!gfwH@GVS2nin1&B!+J z)uy4cCW~n%=A^76m&QewYIQ7@8PW>Ny0WfPc%vQ$tF7YL9&Yc_zTUcFHk`M~a6kNfz9#Sh8CXLnlonR-p)E>k(yE>!#?Uy#QshZVh7 zYSdc*UJl`;Cf?4GDU5p|IQy_JYo!0OSZm!amJ`Fs*Yt~X1$dkd+z6mH2ZWJ%6(D)S zUiBMxNcw+Y>LaP_4`)l+y_wHuW~rbR(@&>G{!TcIf%?I%gajK7Ir< zh(H^(MZJAtMV-G^=dDVq>;vd3RZO3OBcxmxwtT^(Zd>M-2d4ea%{J@Q4hIh8s=QfX zRlrE&w8F@f4P`%`Tn-w)7Qz~RN-Iys1L ztKe^9?J7FZSfkDz`*_P2{Zb=Xy?JBlX}g!iRh~C+Igha{m$+l|^j^i^k`*^W0IHS? zWi|)PgOLnb+-e}BT`q*p+6+~WEvlwCl2O+J?uE?d>idH zxflyP{(mv32?`;xtPaL*Xn6RLw-gL6fp7dUm~>yCd=jy#C+GtMfrm2%byifj=d7d@ zY?mlh9Hg-@#czFhj44?vmb7F zqpf0b-FN0-$#2d+zALr+)kovotxJFmqvmia;5W7nrE0aN(|`Q`k7R@FqnU-w?)3MjCsKcq`qtDd@8tbcsi#h|ERPd&*iI*k(C{}} zX8?|NTbr1ppwT`(ER6jAJ7VM+2ax8m7hHK2)%HdO%{=HxqER6l>rumIcg%9DWw?TwZHcym?}>V@KGw z+@4#r2!v0~RRsK`9SU2ddr%BAG75ez)Wc}uFjv{xNWhQINJ^lI1%V0^)b``nTg7q# z6Y$h%omDOb{ysn;X@XKvWRaTn`i5Xwyhub~+CkoK=rV;NwNMriV+__L=)3`XBT_R9 zCIp1lB_$w`grC9mt@_PoB{;xxDAZw32r2oRB*v6%l>-x<1jSjYEy)pW9nv7&KYD0a z>gf61m<8YxEE;}N@9@U8u9dIL;H?v5%0F{`L<3l4C8Y~i=SpH|`AjhjF;_6H>)IW6mxP2dCCo3LO5Dq<*?y8t5=Wl|MRKr_h-j5f0Fq@xHtEw ze=^-ne~|p&8>#1k2cP%f#3YweNYsg2Bl;F{krlSswOwy{n=Qq!9zQm8-Vz&9T5J#! zvi;sDn;$MtXoa@jv+S(WZ;h6PX%4cu+Xl<|w1L~pqjkZ>%bIIYQ1t=V=SL_)c}SU9etx5&Psh>E9uJ6I0! ztc;Z#1@n#P`9mu_o8ve=Rb%aK*~iVJhQP3^NnR`tAkQFW_y=GY@OPQDL-{wh_#d&B z?9#`d-<5j2Jlmfm>1m9Xx?TaQHf52TU~r7PHdTKB5m$-;9vyRme8p%hTqjpq0b7g_ zEd!&_29Wy**V}q1_8PrZo-?~L!ZM5;g4BZ|Thu-Vm{^QDp!SV_`A_8EWqD`ZI@2Zr~V1qe{sk7cjlbrERol7 z^tR1rSh6wEDN<)xGlegkiC(khS|xy#^6i@>e-sB?S~R^Hj)g!HGbjJ=G|*dE^9IiP ztMxkR{{e3j-Nx#N@@j6Y$IGFD!uk5uaxfYciT78PFmetrtKGMD$OE!DiVf>ypqkwO0DfY5;hy$tLTLSUDM+0sUpGd|mF7U+dRl z*A5LI9^NORBKwW3MMGza_c}SmvoE7pD5C>>qnE2wZkmg!a~{iB7_ePzkyNjHOC%S( zr?w1ex@0^lQH-Ht`2p!0NeAH(oF*San{`!j08N z#~>uEqaYQ3#98wuDqEb9Og(TamZ>o%3hj!4S{vm66M7wB<6J%1!(AQkh^Xm zy&N4W9vU7xG2-4Q=|v>Bj*t^Fu*8ecO>;f7339S;G|47NbmF*_TcpH6qAzH=I3pGY zL5Glp6W^cOz8^p(ie4aM0`N`z=}!L&AJ>WuCE>Yl8mmjTmu=*FbCp$2stW#5&>u!v}A_~6l*m${*GVt2G4py_RBF0{yb*G!BYOyqo|ArQR!DE@>} z;)d5Kt5iArF%I=w5-jU-mBq1-;%1cJBVxoT*b(QHv9Q14lca=Fa9tUIZ>r{R?SF}b z9lsS?0KDpTMVzb1vv~duU?7q5i!UlX-SfzHcxvGdfkiFElcJLgYr^asWlxqw2pMBO zCGfN#2mqX%0}-@{gBMYF_lG%dx8fZ+v~W=?bUcI5rQuuAQ>i{q zV8&}1gtJs%)pGHMR`EFXfO;`pc|rTSJIU&4%@Lxa6=L<#LJNCqD?YeNlq}C!Y$*Ez zRONTY1~P0`acgaQf_SyDb->Kb3Rik%d(B*>n5D9~J~q1s(@lQ(UaKnftHLNHmzoxc zizQ%hFI>>}La~}D&(kB)j=UOY2k>#5=rm3+8HAEiEbYhtsT}dR(7Ep%R zSzi~hU|Pv7*U4m1&Mp+nIhXtz&g+{Aw3(%X>JuMSHv!GDZR^W2IcGA@XWC)eKe0q= z>il+^(N25&mn1;t%}wPUJnGoBa>bYa-=Dge%Kl9Dh3s8;|Fz8F^e@7f_fr37>c{!R z7yIwhW$n_vM|*x)J|ThLV{(ZzAu@-TL8}HxNRS#T)CVw)O2bL3cH&l*I@;tQ6yIO{>Z_D z`{l;sBsZElG<@a*|Kzn`D=&emZgRO(n&0YuB` z9(v~Z;W>Sas+2&f(&7zg8RwMl+r-2T6}kA?WHA#_>r17U2r{iaP3?cmFA;Mr6!=QJ zKVYp21t=snUu_|)D-OBZNMe>oD}+sx6*MMvf1YNYLACR%9PmoNYp|`~UO|f-dcY4u z(x}TN0d9%_gW`e+EJ}iHS`}i^#{#r>-)aH!1R*MmUL{d$VZ;)p6FGxBh)fUN9mpfO zjkQ;_9S`sD=8_b!ya@^tVFqQ^P{Fa`BZePDT0oK~h|^dBY9W-kjJq;v2ua@b#sTbfy*-E*Aq{Y+N@4t=Nzx6gZHNCqmZHb!O4iH#Wad0QHD8;aO8rsl zn^PbAVwK;0Z=}Vwo!_xZJwO9mHvWi~(kEppgt#6!R5Ok2kz*?aFEj-(@7|qb<6yF2 zuz?B$1PUE7U+4q*PP7j<&C>9?K#9l$DfY5=d{fzSfFJ=YN=gW{P{U%M4V6QEGC{pc zX#<92qBow%MDf$3#Fw;9LNV^LyOQ<)MW?45>{CA*QXlX>Qp?-)GaQRg;J)wDl6qzR7oW`X5rK-8Ehiwg_T?7+;n)xWn(8>HJmTk zj2!Bwm)F~kx{CRdNMJZ2N>GB)z{$WdTdd9#_PKc_<-zA6fqqaI+v2fD`ZEbLYs&v% zY1k&bzO=|E*{h`hM9kERs)-TnHK9!4=N*#S&WaE!xo@$9i?kUwiCtG~TC2gt1=wAL zKw;1X%n>cW$OhyT9C3oYzKZAUMU(qlVz+Y*b&Yy{fN|iG3QBF5!EFY9bwr;STBx$I zuWy5D#Dn8PN!zTG;jR-+lBA+y2z871f}&q3*Wvw;N3gSyl++nV%%%!*hR;=yyp7!^ zd3j3Q-ZYFhmOEblB_)Z^D)?gkUCcXWNk7EcD(3SWy6IgB@*d-a7&I!1-UZ3H3&QSPo|vNlm3Zxn0_er6TJQB|8FXy z=Wtt9Y|{*jS8;UgauORG^+sFQ=U9jo3wY0v#bbw;U)M@Jlx#oiB?KVYtNn%2LC}mi zL8}WISLIGE2jLyXEh{-C8RyScYOTm1<)6b7&{e`$zDjI?dmo)WI) z3Yhe~PRvz`t8WEW9f07D^0KlrGc&S?wFs&*{*$jE0k3@^wmmv#Vx^XhhiGPqXt=Tp zIFSnW7$oM8!1INTp@W6O$G?)=$g6{Qx=^Il2Nu@6Smp(bdf-N@1CNlbDfKu3o)8-Y zn`IuhTNA@aQL?yRzIkKrRp@?&TR9#aT1V4CVyr?bT{e!bQVL#K`cO_TFC|)~7E02D zu;{t#Z2P&SdZCwB|Z0Qy^kkxV9_x*y|6^`y7JacajV_nIdIKDcdT3 zH!R=ILjcJrBi{dSWOt|U=ovwQ;oV&X{Zo1&FrPo)YqZdT9|lA^hM;Rx)UcA48? zX%q<&JB3)!v2_v_tO;fXQ|2+4NYOKAdSt&j`n3>_g(Itb6Q43iSCMcxY5RX7_EUNzPusJs+U7h-6e0||)u zq?ME?Ch|k*y`{rGHK{;;`!gKb!KZzbqL)$|i3x>PXQ99ijt8z*>i!0b&mQ)$?Pwg* zp0sU*H-pU5zMo|B7JYy~cs{zvE-!J}I6871eA6UXHk z9sPwQA3@vJdbCSRa5Pa)^Iwwug#T?R(%ibg>PX^eg7p^LhBxL&*bU6S3b>deeo+Ch zi2kj+utW7M@^M>dg6pd4%|!3w!Z(t|Hun*8e-~S2Xbs9hxnvOhNkdvdf-QK#guSI{ zO5kikbrZp2;KgV!wW4n~6v|2cnsNPaK9&8+ z?8WSR>BKK(-kttC^vVxV|NEP%`7h7{xQ{JIP;_^frefEIE;_D+v~-E(XKA#gs{x3` zWv=7u-N=$$Z61fqO(Ju;$Z6Q%*a8gqq3Fxmr}@OXOaQfN3CLo6BGdraj9S&e|n*e zGQd6%BR5!PLEtZ}$yqh>(fc^ktBEf)Z8I4NTf~OMx>~-lwOWOAhm9oBNbS8rI(*Wv zZ1e)lSjLDuDOSTBd@*`R!gud>ye8q3*o%i-FPUA2h+RV!umy2(LL{$-@t%}1unL7j zq8g>j2Hey^*;N4Uq3FG2sHQLwpPxK6)9|l&Bcpz4z33OOL=WnUP9;m$s~Fw(*X0=CW5 zpumQIC_!ur6W4X=(t$brQzMlBzdtpQ%Kk)lHS-6VH!?F!)%d>jM*734e@F$8sROeS zB;2PHaRvg4g_v|>1VC#`(W5%-uB0L~LAMYkKOCVTID*)Bg(|C( z86*KrH4TFb{&opiC5q8XN?vui;6;Bf68APt#E6x9*ckoCn^ za-EjYLUrRqS;huN$y)Ptv{zYLEK*Mgw1mvdfpAPAXpXvM5(bV_q``dw!u94^)`Z$^ zB*twkF@uY~#E_If(gI{6*G86O!<@8Z9Owc_-m?gsdS41VA=NA`MKEyp_!B)Z!{-jO z8h~8zO^xL-7K_RTMT%Nt6c;vV_^H5jhLMaxAzlC?xA0p8z?2b*u1-ZCMi|fCxf>!D z6I&W=zjyG!kScOQq~6GQyB3t9J=(usUsw)@2TZg654K4{MX+wMoN7r9l~`~gNZtm;B>q7xm(iVXmpqOrH!w?-rSX?B--rCWB8m2kWvk>|bn0%`T8 z%BWnTp#e1s)N3O%SCN|wKFouf^#9$d&!nI2v$cEM;Y-#9$6N87 zO+n0L8K4~1HUKbc)ftbTMy8*cxxK*69?r<9dJESAa5hOtRcaU39Jrjpu!#I2q={NZ znMh>asGMAe;UiZQ?rDZnQBYlLhPlZu>?g$_B8+9qoczOeW#3=}B8vonVCgvc%Mt7E zci&rOh7JIzGR7j%x@1^v@rk|!yBBbtr@psz?)cHMoanMQ1ldQK9k(6-o@YcQnGo9 z4dmI@DI5|J<)G1DEjQ0cPn!NGwsu9f%W{QR$tgC~9AstQq6`iSkK2#!H;Dw2Yeg=O z4TNcXc!?q`W;ieAd-!?;@pdR0I(~bWMAv1DZLz4!G+N-`S{HG{y^Kj6)U-|yp4nP9 zrRV4p!5KPn@UUz(UV$z0A-rKE2p$iB@gwNEgRLiT597GQWhEMn;Wks_Mk(oN0Vyp8 z1#-6Dc~=fN%Yq?|h*_bvsq`$-32}V%6)baphg~7wq#4bSk?f~@Wx6neWJ4%-jwC|8n}V)bFHjrZnN{FYw=31iN?7#&-NAcSu^h zYETnJwUv>cHdz$%7yQAi(c#JV9vK;hfTGIpJ@%F59xN9Q3IS#X7wQ#!S0gwU z9b+TL9=_v7uuynN@i0ntvbnKCo#F^VV>~*_2~O{*teIQQ=jN6bZ2={4YI&1NV6vJ8 z)Z0cZZ}<}FXP4Wv5uDoHt?ima4wP2(229kaa!cJ=~Ne7t*{<`L`5?|4+ zz=}5)B51BVm;??P%@U}Q$+o790#PSusQ}w?#6%7$0 zUwp?rss${9!DI4sd~4iq5b4Vas<(J#dOlBR;**Yx-V+@Zl+N8|hn3pcjuWwBC8~4E z^SN4~REZRNqoNFgexhbEN&u}DCm^N22=u)`z6D2vM-08QF?WcT4fjVKVabKs+n=KV z5j_KvYd_wHw#{Wc@3ZRz$Wh(WW4S8JLemo(nu@H8p8#21!6hO9Sf z>EcZnhImcvuaohmwj@+ECZ!cvTV;r;>Es{gaW2t zaiSF@3sOVZ)!^9_Zx^7Chvki0L8~}(5 z3HqAB^}3J(AkZRUBN8VfvlN3Gr{J%Fs>k3dVbnnfBij1C3%74QX+pDsV+cxJITKgq zvq1&$r+n-G99x(6RWXyB^`Potg@OXM-^B$A!1RWs*)hLHT?VH2&6_t~iJsF%JoNDG z7m+mNNr)%S3tPycd>z7Pm^irrV?nPvwzv64HEG_wF?8_Qv70xl(P=I0BTwHBr?jwS zuq|dKNe}9i)fd*_45-$Mnu5TwRm&Txs~MGI6R82qUIvv=mEAcPDU+dLKX2YR7(I&| z4DU!4nw_8Y(IOJ1k}$(}uMZMY;eDJ*E&h|D7G z2(LuLccq?=?tA>U*t@P&A0Rg8T~zK1fg?gt8F3OF&x_(Gi*JZ7#|6ucsR}rSF}!($ zRH5b?ES0Z0{l8!QzwgWzn9=zynbpjr>EBAfkv<0h=Z$w@|D{s%(E`pa95gJsJrG0^ zCI_q;3G%2Scdgb}l@O;Qw`sX#+5^=V!S2mB5Np&9M(xKUn6rDL4V6ipaar1>={WIuSH^#CPc=?PP*l{C+?{Lp52C!CMw4PGX-!bvrISndW- zMWoj7w*VDNL8^RQP{6@^MehY^6`)YTa|IJi!rEf%v(X%T`Pz=Mum!is*N&RA%YPzY zkgb3hCbl%^A<`VNNq9yR9Wouh9L-Ao?z@BfvA1qD@`U0s^_iVTdW09CSG&Z&+$eNA zpb;qwOd6{|gUQVsXZ$UU%<4$LOT1{m*wAn6h*ZWYyc99xY=$`L{3xoC!O zmXeiAzS&omwH{1&fALpOqFppHx6z0C=5Qol>$&Zn-FB4~;uPeAjvr1h^D;_PbFjpM zlbY5hFGO%!cfXckCdovxMdO$2(L*m)BkiR>%mNDnTR}&XZ~=@+G<-a^>Wcp#Q2y_qX1_7} z2y=OtGk2x`S^DeJE2-a2eP^nc8kmX1ooy$lUT8Iy77`X@4OGuj=_r<^B+DkC$f@B- zh$+HO#%a={k*KrhKc6r)K*HcLZeq&i!yd!-%v#%HLfG3=z|&FW>lP`X67 zi1z0^ou6fYi8eFTq*4vnql;R_U9QQXL6epvE-79RoqSW`K~M zW?kKqdrL{R5YB@A*=V-xMBQ&3k6z${d)@I)ffFls%VM!1E>O?65S@_-rtI#GhvO(+ zB0r{H7*rpJ0{x({uB_j(G4PFSs7=Q+0|J$IE&2ze3!HmqhpxL)tCcBe2Ev{~FcECT z5Lc>xVK#ySyQkXk_8P%u3+zpnATJ()E~u_LNEFwduo0KXd@N1dJfo=)`j{DJ%d z@os5J$NdZfbO=E}K63~zQY-zxKSlrF--G}6VJ35bL*_&2&!%V7A58s1>J$9oPx*H` zGHUI%b!Rm#`W{$jh2!p0*`IOB^lT~h$o7CWtpcCuC!2^$Ty3v`FfoqW?ROgApq5bl zH-i_D8Yv#uwl*KFahz9oScq89lIkEC9F@gLv{CBedtwf#B1E{KWO^3L8*yRrU=(n? z0wdDX%#2pGNCrpNfQHH@Xu}$u~`q;EDe@A1;Qx=hMgw=iX zFySaB6>=%7YZX@CqE={CDVZIW~y5MFg*yox3&iHZpO5I;^m z9fP3aJ~1SYj3|v`EsH3$6p38>Y9a$Bn_z5tCg-!Mn`)koJnw-0A%-!EdaM*mm~dPu zjox8$Z~)+Hdo21m2lcl@VY$!ki?Z%dj%NnM=T9YUKMp4dm$*;#7evV>PDb>`?7f1G zk84RY>iy6b^#a;k4=R=NtJFWO`cE>ERAqwypGal@YIcq({okKiOaHg@52hRGeboQ1 zq@Hl=&i)2Xy%DINZUJ9Nr|(V0k6}*YehXU>sUBx@fN-b?V1~m>X}3hLk?t>Qj6)D!iW<^^he^q7k0e;} zLs>f?uSLAwR`5t_yFe1vsbd@kPfKVq36#e%5IGb?Q%We`G(<#JV8IBE#$z>c` zPS6K?$h)cED?vXJB%nPepr?~@ch99A?m4zp`57;ng-7FiC>Dxr z6p0CbS)@P0hyPNiN%zW*L1z6%)3|V3Xe0atA`HNb0*wS@+J)k8Ae=GJuM`=9_UXiU zBSX%1fYyxTj7GB%^4gy#-mq%HfJ6eLOzv&er@&6^U=CoC@Qmc%SX2eny!=cIYULf5l|<`ATSJe9x|Ql zV0=K%J|MV53wqEPSqNd!kp0X@#-dFp;xc1+gWfvv1W)!bfpZJk2PTg6Xa(zRmZ(Zq z97n4PU|<53h?K?l^U-CludtnXg58WYscflRTo(xom7Y8MF&V@-MuS7KK29WT;HDOp zCC9_bme|%NxKXN2(uqSBH0MT!OGiDcl8=`sPb)-cZ<&gRVuuI#*!|voATKB5y`-rl zeUY*J|GQIfssE>v{Rq$BIF|k=>9^CNvPKv`** zI-8IZb9m)!$b6`5uMiaS=6D3(cF)GP^hj-;+`JPKLLk&aAZ#HtK)AKpUX8Bbm3kz4 z^icqwrGl3e?U0+YSe?GT@*oDLP}cZ3m9>=zy+aG6b8HBf(QF1(tHa|WKoe0LeXjS- zpy6cDb;XdF#PXcQWIV-*v8RR>ltXXtQ<_R1Q4_q-a1yW4hofukO{drI;Oq}A>{1#A z0Ks^z?ANf=jdF!6lp#bB)g^fu5`r86q(+dA5qy-});u+|fmPQ;STE0S*Ig3GQsM** zm{_u5WGFOXU{2(!#5(3Gn_*sLS-E#R^=xFE-W^TH^Xy4fS&={UraURwn`>=fr!-9Q4*vBvrg{ z%}O~J02q|tI320Urj%qA>F}#j{guC?Q0565@qL-B0<$AjHi&yf1yP1h93PVY-AP_SVo+nfRM}mvZ{wqsAjKDA}e$XDdAV(k1_(F-ML#7>X983YFeQPSm$_(=8Cq>m!zj)5M}i(tERnYpi?A%6Cs=fXJA_ zstal#>loek-lQxtQ=~dAav!e2{VWuVXaxW>L#KAo6DN8tfaW_$c4_UFl+96}5=P0! zP(9ZX#rAxXH=i^#ioKMp)jS!rPU&N-W)YLO%9W-?!|-(o^l>;J?}%6X>R1mdVac?E zP41Ehv*Cel)%Cm8(T7Jfj_Y$Yk;L2>0~&;r8@-( zhJPFhqJc3GcSbVrGRf1%$bn(jywFK=gpK49=_&+&DuoJ$F{;^)j!*!NR;tH8V_XWW zi`6Aq`g+?u%8KBNwMskJp}l2yDY1+~Ajtrz zmU>S)dYwvj>7_f@NtU;i{Kx035mfFAr^WcDvfo_Ca515BadLuTlolHD370y`ZVYJGdUp8m4bcc*x&(4X~RzViX8!M!_F z-{2WmXh(9Kf}LwM+m6xTnc`rY>(#il5PV$!pI~sIIgr6zR-EUjK~A;2(s;NoI6!3 z4S8bP-%SEs`x3`@h>|O)OJ9K8Q|kewje{LgcV~A*sPR2mH5Xq_E)N__ZpOPd2JhwC zSmz-^y%NjWqYZ8&1FGe~3*+C8)5! zPLeV+2$5wKWfJ5*^K;L<}MW z6#yJDur1~mM7BcqlNyWC{`Em9-$ZBew9f-VMzQCQ z6;>bC)w+)(4$YQ6KjQk#+LN7kbFDpg`&_{EG1Qs?3^dZRqq)GQXPnMCJt5zZ>}f|2OqBsW!==t6GJFpuX>a-eWE+`)&m&63?pG=n znFt7=iyXYGV4S);?UsmA!sb)9cZ90Yr! z^C2xnfigNyynSZV za|w+?`4E5#kli9NG^a%m2o0W$7;sbDR{Vr|AKl&gpqK`;L${i%88RFubgp)#vn?wN zm;xocx>BJ;1~R2S<>SNhg`y-=x@+R?ePD2D!WSm-w$P8$m~o1 zM*8*iSnAiP{`17cFXZ3z9g%EbO5z%=s#P}K5MnqXGD5gZHCEPJa1bd1HLh8=EuxC) z3fglWF>UL&wK5ok!3jB)PKcN6j1@~XOp0IUD)lxcR0&2I>{%S4(*WymxdY*LcQn*r zIA&kjAHY&frkHWa94JJ|iaPYb87SX6ytZ3Ia?y5G{qy(-_27D9hqcLsHG+X8t!RH6 z?(F0Cd&L@LES6da8Xe+Iq}pLvcC=`Ma-qZU+Ckd6ZJL;t=zZ#zHJjsHV??7TgUdH1_6Qw#A$s9r}&lF=@dYx&(!$2O$Fz zbeLW4l0L|dU|)xxm^~wjRZhH4A1OkT9tMllE29r}XnA?O^T3XA2<$%g#wgHe1A2)+ zScgnNXFAi#S`By@Ndsbq1RmCu*PvNAU;vM960GW4#lK20m3+{mX-Nq72yMf1a`TBn zm-b_onGzcm+m-<)Z^8~c{eLEv{c2|a{S4jz+4Qfcza#xh`ef=GQqSC`{i_|3ZCmGV z3GKLXqqh;0IBc9GA|>t{IC>Dd@bW6IKG$IR3+7(AI3@RyNc)Q;QI(s~K!<_4gPjlD z1~(-uYi?dz&oj6gj3nPNGgwbKCm{~jv%k~d9`vEsDWQ!6FsmKQ+nkJ2Ku|;EImrPe zo_Q6f^*RgYtIpM@UGwU3$CE$S5iNKyQHVS&q*x6!Bq{_UGLkBMz60xbPbv9SA}KQP z$f%`pxl*Q1(Cj6jNNTW0Xu$-i6>6vh)pzgAHZ($!oJq7auPh5tM}2Sfcn8I0iYSeJ z9r1ae+;-2bF`q-dHkkFx zI`5A|;kUC9zIv{li|U*uxWbkYvr&Jj_<7B2!Xui;UG6~QWr$v~5|~MM6B>47woais zGGgNrZz+gr-?wYz9CtG$!$;<_a-#DLi?d_&l@!Z7q8*95PO!e=I%Nb1l}LI<4|L$% z9*qi*+-bP4Fo3l$OP#1PLG{56D7v!XNSWYepa|p%=BOVK4$uefVGJ=NSD&+*GfOf< zJX#<@&;2QVWMyl~06m@I$U?D=GPc4iok3Z)eNWyR__J1{*fYdKzBNymKS?oKTx{ks zZp?B-W=#=1Ml^A4HaKp%t?hV%EGKP0*Z9wtdcTd3NMHtla{B*3>S!wa+3Z(mk7s@* z^C_PH@dxmK&Zho*>Zen$@~7MXjdjM6u5jD@Z3A7W@C?+{Y%IYwq+2)Yz&N+-jkPw* z#R&@6xsFJ|7n4e$C5rKGvbjVtHoK4qixCl{)p3u1GZ^o^WuH3L8D;xl+OC5-yV?hc zlJ)_5d^xCwqpE@XEDsYX`e!>i1^VfSmQjD!3C9_P%x<^1NmtDsl#~?2C$0gK_v>yL zFz5#0D5lHDJ&HDve(2Eio#(lwg(P1*tp{L0LUQw9IINDD#G<;@d~gjr1hN)%rv{DX zc)0@`m`=Fkv595x8Hh>R5+fzYh4W-|7f{*=^s=_l;A{>y%M|O9VwkPWZqZDgzU&5_i-||7yWX=I+VWBgRB?>`Cy#$72!X;pp z6CvlT8X^h|EX%R2vqsLzQLK@7X+g$TD?S}fnpVs0IO_6#I`LZ9;J?Epx_RStXO2tk z%W>%(&gSw3fmip`3wloxzeNfFVT*{JGsC1Np*Pmi;M|uITrlDKNmtgHvdb38gJ~UI z0UbGsO9X`P)m3y@Ic~zG+HB{H*{CGbfsJy$9R4er1inS@zdGSiR!e+VzZvD$7-MA)BEuY+!Ee0@eh8kM-tmiWHa#1Tc_l z%yU*|qcb5mwtFnr8XUfgtIJ$czN&08ol=UG&=YT9GQcLzFd5oNSf(`k;3SyZ0)w2{ zqh+RCff%4)32U?D(5@B(iT6II|NB$fzeWGg(agWed?s@){om6+kbWigpHeqc`}?*1 zO6OzR_FSSMuE=dYT-c!vZ&v=k_vlB`bii=zAT1OqPuvHCCjxwtlS>TYIJI8*A|zx; zAFG(8o5)j(5@x7Z7dv7MzqXz3Fn5K66Bob=$!9D;9OF3)b?VM~aF&`siA%BWoE91n zdFUkT#*o{M%N-{2?umNQn-(mW5m8C>EqN0>8~I%zvGjyH#n9XfvV#zX~zBWY&(P3bh~z&_qR^K?&o z)nz=84`3au@3GWhby~J|k3= zVmG4?;sRg$m05;F)#^(f<03zhlo-ql#kPD7Y{_;d!D(E`AuQ`Xdqej>$pajjU9MgQ zLLR;oTszdsOXm~(3t+H4*G1t9Py$X+X!FQgCHz&~64!3Dv&5IGJMWGN5UapA016rc zty|E8xF&PhI(a^5i^D_4$7Ns7cFt*yb|try_t6{RzG(2kJXQFX>!lK;7s65VGC8st zaS?{=bZhG5cM3cg&;J-rWq&$bME`#_^HS!%^v|ak=>Ytd)L&1H_Ur$he_rZ{0o+O& zDue^MeG-?N1HwI!9NI{fo%uE{6@onp7 zbZBp)1oID*5vQnH_!MN6g3|MyH7=$H!0jtmjG#s}2bo;HNvf^sD(aLNOZ0(VH#TPg z0RiUkUiGWQN->jow4KCQscqG z7BT<(Mmq&=`(onO`-L3K7gq>RGE&G?dB&--)rd4;0$Qj@ck`W94)R*Uyy!oORn=um zFom#ixGY?wOf>tY)tC@`Mdp$CW{#QFSejO~(D5a!hZAGfTSuj(6&P@^UcJZ;Q=n>P zJxpTX0~IKr8JM%MJAMbSq<98&3nrZK8do}yeuttxcX-yPYpouqI1BxM8S{+@5I#*Q zhFa#4J!Eyk4_yAhz*(fHxjry}Z)JirrYh;F9Dt0^R*=tDhcW}dRW#q<5ivNIs4}@w z8#I*PevIAKRz(gNi^rhb7doQ+zJ9nrX|}E#5CFiP#A<@VOca@P#+kUm!w0da`CyY_ zR664gA0VC;gf9Gvxo@N{!rEWIx--$n$SO@Kgt47k}e z)TVo6*Bl?*Z8R(p74bstFFZc-MrS$=jua-uNAAR$C@snzS89l+K1wPqwWGDUJHygI z>~6G*{9n#-Sg@vKpCRiGUU~Y~fRg=o7BGG|g*=k8*piavwp>v?#4TaDMV7yL!_`V+ zcyRN^#m=T=`rf2SY*8;asU2|+H;Fe;6?+aB_l~JCO&Q%L&n)^C*amKduvnpLjwp5* zn+s2IyGAc?pI0a;i<(THw8jtakwUA>MQL&D$zd{VAy0fEhl~ulq=2B8P19pE4OWFk z&vk07&B9~1CYf%X8U>-$W`rim@dJk7h}M~udA?IMH?$4Qbg5+bV>9Xv(EF--6=Q4? zr_Vx&b&r6Eoy6M|s$>JGxgp;+E+LF|cPct?-?SVZIIeHT*^Mo$>q@4RM;rF|=;+PR zA;cVrt63li_aj?aDPF)cmC9hVK8ORrBO{Keg#Lzpfz=_MfGUz2WAAvz6+n$hWj)u~ zVAM!{_qI+L7BIS;8(ZbS`s%)@>y&NxBsSY(sDsY86n^0KN%e z%IGMv2KYSpObz`8nS_UIQJv|OnauU_?%TS9S!2nw4w9p@1N4WHw+hb^3AkxG*gScy zYAebAZ>F+0v)8iw=>YyrW{~_}CH;Zak1_x2&;8$I2b%Am^0wf_962~{>{^K@=@Ltu z0mBN*HY@Zex*>IR_(YE9vZy)>h-h5w7_0Ze#9;KhD~yWe9dRbIfs{k(%F-6;Sx(~P zXe6q#F$rcweXDb@Nn($`-1$mLVJ}zh0-Z8@kPHcMvXkg~$ok?EHE*oqt89SW^J%Ue zp*l{Uhd_p^1f{E20S6Z&*ETKNu_6)FZPK(3f)S)Jdv6u5Jk)Sl@DzR7f0z>J-hPq= zv;a{~fpNwv>}RPcS%(Bf`;}NhukWqBwDs* zJ8{tHK3g&~WQRj>;9#my08@7p8|pEq%<2Xkv3x~@_t*3pJz27BG*c^8ZqlnZV0x5zuFNOIC^rY{exA@J{7#>s{%X@ z9#|R){HN&vqiv!KdJotDa4z8;eE-q7ZNt`?e-?d+cqc+(DXmdM~(fH`#`2N?gzODdFU2pD(1_9VPLaC zf1RQmrd&AHQEyIf#8ncEs0l^iZQr zEV%njTuK zjVvc3=&Gz_`v_pP((!mCa&V+m#NIpIg(kc=k0tLV4`j^ZU9(t;BcYP$mh7Ogw;n*l z7Ek~v`&(UD!b7EST6H`Y?g`YhQWjgp;r94IuJWUc(zd-IS1>T3xeNmXBOd7dh2)G5 zesPn66MS4MZLxj9u)K7#B20|q>t?v}GJ(!*5njx`i_cAB73+E-#%I7M!jxtd!Cq2chpWK$J9vPDrxTVkGB_whUr`(4cj0X(g-V zMXA|4{Lk}$ekdDeM>D^W`Rkd1^gl{3r$3VV+5ds3|D;ku*J!{`-zl8LY@rBdZ{3K1 zh8wVfdTNZXe=i zd;x=ntY*f}ov#q2kK`B(EcOd5tKHqbC|&2F1U=#>q}3|gBbBf>h~ngp)k}R!s;`|V zwaYc^H(!CPD_>{P!A$y$ww*76=|U8poH&&uY`Mgij5N+2Ty8)gXaTH|_?T$vvN>~M z<3J7zUMqd}dxpE>81F>fz0$Jl<(eVFGhRm>_Sd2!h?pyXxXY;C-DCTbY~rmTdtkP{ z!9!?_DF-oE3JI0rh3<#70}pI_xMg%jX*&@elOl^2L6>Zk{|VM5c?p~u<^LXov)sXP_r$U-eR*%d)}CGnEWT$3pO_Q2S9 z7_2p4YDW^`pKkNaMLK2L&v(TI?ll~<2fC;8d1osxGk8m7Q%P}5ikmqnu^u{jWYH!$ z;t}QlA4pZi|M}YNMCLzazALkpc|84}(m%!wfFYg&T=}AGz#YG|+8tE*_+)?hXpy5u z!8!Nz*RyWECrhI)Czb5k;o%c5rX-ZK$=D4y(o7`FT2WCXF$eh;YX9YzyZa>t_ddQu z3Z{jqoK3!JkJe)uiUgCcgPNasE=Hmc?(v!9_8xh)M)LrvFx4$7X*Al;bzv&+RU=Km zaa-Zwd0NPDpN!g8;ZTi4?DlM2Bv_c_k6T&9pPMCEu_tmBD{Uh1RoXWyFPJZRYHP0vn;6i(FKmQ z6+Y8_if@Wfcv}eEt8%kEhzOGZA``CK3th;>kJq2CBym)Hy_ zK9#JAO-;W8Q|Fe6z~T?zyfN5)f@{bn;McBRdE?8}zi8{mQG#Rv-@&|tsbgKyi7!6W zyXJnfQPn6*fT9(dx4bfLDj>Jj+$&up9Rdj|DA&$+H8QuoBN3m7g)u>mbFa9~2zq+z zu^m$PxiUs2kmkmaT0$H=5}p?}2xo%nuIRv}WG@yHTZn)W^U?0u3yV}DCkw1;L=6xg z9K0Se%iwN!useWwO|d!s;)U`{v-@C-LnNde%Hhc_?KqE*4EFDiE$GBGY#uU*cgg!} z@>575)|2Em@dL(@Orop*IG*~^FA4#yc83+nKJ@6V z*>_9mEAy)c7+GDi*gTmDOzzU8t})vZbA-LJcrHfnfgm2O$ix`4htWOV69%%UdLjYb zOE%NFi&&A}Bg1<$kQk^#1e4^R z$QeJ7^QA7N=%KBrZ;xbAUtBW8FRm?@Pz=h}5r!|aCJEGN0ncPLp5enoVBuwrnx^6m zSxYk;oS_n= zg0az!l8H5k_Q}d_khv$57HnSuE$$^avaoJC}5hDeQg7U_|K- z>oaCq&vXy(N}bL>x*QbNX$r%mkp;Mb{_>n<4|1g8etX3#*(2nwE}*28W|P5g0Ln=0 zz>toZXh4{$jZ82h*}pd1J-~-vO>nL@ltwyvdB?+6xTPJkhp?&H zfqEe|MslZRJ?fP!oTP>2f@;U`uBHF)PMu0+e~S8lhUfnV>HnDi?)0Onf6kkq|6law z-7!J#UQ%K)ekPf1K7;g(rWB8{(iIt3gBEUJw1)h&8tqe#(}heiVvlPR`@5lm8&GcP zg&@IY)h?VL@mNf&PWa*pPSk0TB{*HMOCW*P!eFL5$`VzR=+W#k8c1$Qx35bPJ%@9% zd#+JKX%Xv)rchZN=h36C=t}k`%61_M?}_~Wl7-dc3@bX_Mqecf@xk4g24k9`7ziKk zUF9VakK-9I*mIH5R+&vo9qyJk)-q7Dt$%%(0lhp$Ci3A!aL06UfGp*JKDVmZRD=xF+tT*E$ke27V z3mo!dqHhd%feAW}7_(bEDgxQQr8QUPd$vsCU>wJ;a#5FI!h_M^ZO>d#dpa|?D6ks! z!VIM?IfZKCJd_pDgPrP_1~NbXDsrN-8(CX4nFfIVM!N}wRbSvvYNh$^Jh*-<3Dx=2 z5;=5D{&Apvl!>9(h*86+Di;EPdR0Gr*yoGPuh&!1z^qh?rn;i~wiB4HC9<{#g>*HI zKy(wSgol_|k!Ym}iAx2m^-GERaJXxv-)$-3+VDnFGjc%vlgsoJ$pj3Y`rjm?;o1*P&)Gb54oyx#4WMtln zE@a<53p?&)Ca$bQ7WIK8nwx{gbKw^m7)+g;5J+CD*z;Fp9{sRPSOx z#(NsgWGObdd3cY;$T+k3;ZL3DzQ~=PPw-A$C)pNZ(KZ7t#0I135h^uPQmz&~CX7DZ z75ldHK!WIUG;bLA*AqImK2~dxxYZ~)stuU;RC@(Cxd+zRr<|_Hy->M8^|YfrQ$r2M ziN6Z@qH|iP=a~T3y^Qx${bNQd?S1r)3)(;7$r}4%scUrJyLZGej+ls{p%74K;(8tpq`6N)Aw7Jbg)l9L6 z6!r*pkfwL@JBAL@Y;-VAw;?;QWejKFG?p)jBnOB>?T^xsRN{`Ox{!VQC-OP9mK4j@ zISCXUp4tY#bL-~gV@Jt=2p()masV59p?jXE4R780v|;5UfykEPRnG5#9y|(styu11 z6ebJhlnn~GJRSjcB*v{GAYl`x7{6hh!iDZKmv|)sPKI}4{aOO%bVL(n?)YJxNiK~|zV+ZgJt|&H1bO6=3yM~#2b?jC% zhaGp9Oa_)gmd+=TqS;UeMu!p|VbZ6JfaI|TZCN=ug={p@j}bI>eC_6qQ(d^odsJh$ zR2?UflyZ1eNAB|V~6KaC$VZ(aXi>9^6iC$f15+vFj5FV76NaDdiTnr zipN5_uO_=964#UHU|DrLE286b?Aesg{?y=Up@Frs>iMQDNd1{$E2M z#Ko!gu6*Z4NW5F62r6u@4|jdO)AytRW0EgwZY;Do73SC`PSnHCX2!S&Wan7-6~3!J z;O(Sl64qF|jx$CIj+1uV^A)w-p6_Cj5&eD8#)Sb%y})Eo(7#OL3f}34){R;?CSYCh|Gk?3^NYm)AI$vK z%#rlZrH`ln%AF_wI74uuE2{35)A3qQRBR-Y>m>_4mtRM2lshN+O0(O-oaPW!lTQ#9mSpPn+m!>7l6g{B4`m^}geTC#*bk&qSho3r@LUL!@LZ_zXhtsa+W zKbv;i`!=r@a%j64-P?r-JQ!WNEy=0xI3`*Aa1YJcL}(TJYy1I)HK#)ko9dPEPuN7V zfi`X;M9y)QMBQK|)KcEg@)lIAHT#uI)2#Oc%K5p83e_&eVH)^PS(PxpZmNMS6n4il zKy(~v$LD~3Jk-yuhfsWzi&ZvA!l7rjNJ6CY?(xziniSB${E>^{4)kGTEWgmTxxu^d zsBHD^`O199ZUUen%&upV#Y22J1KB9@R21W=M2WFNWrAXEw5wZ{571=mSdpD9>*RJY zkejcL;vJ6`$3`&ji1SfrgyZ2Rr|T>HewhvRy%CS+ToDYl>+UI=*<<{T-*2I~4C$eC&G81tB+YtafeM@MDQF z?6(nSQzRam5kMCP|HagzEDF{sWEd=9cm*+Lh3G-MPuei_fd(L-;6(yd#wU<3I?}x? z8?d9I5=&ZN*?@8H_o{;a z`HLd3NccKE1sbpDkI-qZl;c!agLTiJ>X#@R0*_4sL9qYGr!z*Ri0yHBqbL~p^+7{T zroJ!|!|-%h+}ZgZSTb=kuH?YE0dNa+aFH2vzi?xDFassT=JQ>~<_=zZ==NpV4rjtP zt-fw*r)7%KNK(TT<_Qc(CWDLJYoyXz`)*IAIl>u)(_yMTTV}gPW z3v<>5J^C|@H*c(Tx1@W!61tPgDF${JKyeK^a2+{yPs2){kpl0*#-SO2R!)K(mb0yH zw5d^n*w&ACuZljo>(SdU+fLHU>1slnR@AvJ%!6dY{I^997m!&JVyy~D9RG`*W^Duu zX1b!&_8wBxdvH`Aht}<|)e861!;E7vZL)zt%&22~7@A87Ie<#igg()^Z(I4dZS^I) zytpod>;d zG6RC_Y*=_8&w~OPn_33T(rz3!c^R;%i^vUV-gGOXn+ z))b@_01~`GAVpyZLjVK;5FiF5L`f9)126!F7|eik5jfOpWyo_ow&SMuNu9QCE!S!7 z#C07vwc{qO+ts#lTYFPCy(IBTYB#4oY1%YtZl~w;} z-+bTuKJRn+KmX@>U;y2ZUGiu8i2uIQc$`(g)z#J9g@NkCLVTC}J#x-D*Wg7qMjRxU zxtwo2#*^G0N5@9U^~AKk*mmo0HwXrc$5pg?;|V|OQK)xVyKv-F^W>c z)-qEam^K}lsbfm|tyH{;>c-fKuwBLzsa$P*lIyAATx>kT#TNVl)$yg5#uY1w2#;piY{ZQ+hdhrjZge|l z2WK0f(D{DK-wRC%>A1`}nB1&uK8y@BVLRT3<+t#3SE*bCqTw8}+|F$P$)P}&>b+oX zK~%WPTaBb?4WCud)=1as3_A%o-zRmRV-S*0-DOY{I40UqZ4#}6EsmWkSXG;?x;?zUej2iENX`~wmhpdiNz|7e|4 z!U=>zYgsbpWYUd)C+uT{#KKh$t~5l{&3VaK#(E8Lq`76b2wol36ZQsYMo0p3uxCkM zdcLgU+f#XOtOpe+7dNMVjLyCTn|+hL3?&mak#)3abd=+M!hnvia0`i5+BSVbf4hKh zE>Ha!Wi$iZ#~!+n!7tIuaxeW;DviLAoTiCNKT1T}hhEvRV8bO4DS|{2Wuc)NI((qW=DbSv2M5nC}wm;Lloihb4Qw8(^qqg z(^_681?sBfbFQT?Rl4GZp*E(2%ISuvzzaUkn+4bhi4VLt-{WIBWAO&rquk4lPxGO1 zf8geTv_NB%%I!VX7eqz`6b?${F_Fal58T}JADrHnKjZO+0(0fPrA3brDBuO=Kbaa;<3UUS)f5mDaB^CCno@ZnX zpD4^fk1wlq91>`WsOxIuDeil(YeKlL&##iIsE~tqUt-H;V^tJsx}B%)@NBBEn#R#n zQX`mdJc-O@kC=5TU(@uf?r3D}>?_?S=$h6+QxTKjL7x$Qvq4+ozWqM$*=r4HMrHXU z9x#k*a`(9xCMs!w8nc`TX?yetvJhbb;kFH5&fR5Ck+49KqIaNdB|XcK zxVfLwL8b$oX64_|H8w8gD69Eehv#$W$F8!|c(Aq)tFbkl7Tq;`_ z8qllL+Qwc*bj$rTxrg*ko`D#O4-nByzhCSpWUIXEj zfN-`c7i#kmdI-pVxMN~U22lMXoX(TDr7#t%tO^Ik)`m_v4&x{JZypxp8eR!t0B zd5`%XQk7kTzs?%!U%%2*vno}d3=+1h&U4*NjGv50fu0l9Z=7sY>&|g12vbt{O{BH>4KkoXSojVF?gpxF1>wE?wLg3JYaenT z3ymMpGfaBamXx(FqTE7podQ+88*GhhV}GcSQQ$n4TOCfFCTk^d4QpvoQy1Jd{s!YL zzzEozzyXPX0P@iy5m_GZ|8fb2$7X4e9$eIaf*dW<&YX(2YW{jdB-+xs z=w$2GjXoOgx-;0J@IqX7)k>_q!qs9WEfBA&JOFRGOxX*d&g}*?+rBr0=$c51xhL$E zG0w3z%itk3Jd!fKABCTZE-3XOpI}Q~kqYR%|0tF^@5&-M@`LuDX}loWin=N3qqtIm ztAOD~@asiI7HDgrgT*nhByo*sRT}C@X`d>L%{6%;x-}VFvH+x=t+r>#r!LJ+a6WlN z;gtCq&H!i_)gsufzu7nepiwz_lwsGJf)y7$i`p3cL~AxPrRxn|1~1ZFAtGCRU-78~ z@M0j*;|(!>-|vY7B3Hp}5LQ!UW1fU{;Oq1}RuCao3f}`gJTf*i!Vp=`J>&Cm5p%>O z@O_WnIA&tizeK87gvHIE-;zjaK0!iNQik`9rYY?hYkQ74sPS0pRCs1G;Z_R;wu0GJf-G88T#+-0p1+Z)#H$l8|E?wX8iSCMKN$I^^nq zo{GIl|KH>Vs(*iq?tlLe^M5KZ0RJ%d3$YR}*`Lb|IIev=J`3Ng-;Dj@)HJeB(wb`5 zFciBWn=Bc0O|^4{lMRts(_IDa45C&&Dtj>EVj9m&4VN%+;;%-T5$hCfLQ_#<4~m)f(zP(yWZgK^w!RCaFS@aJ=K(x*)=f4e?V~ zx{*eAAN)P&iHHTd!%>-fL-1b$NVwTJsVL$Jq#*)i&GJOEHQ~YJ9TiN;eGV+V2SV7; z58rVOkysmMZOOe;E~AJ$vDO&YVt@VsNyk`EQR*N%zo2LEmQC)+`;yI8LK|359*Zh5 zcXk0XbbLomCo(ugM;K>qJ<}M{`gw=i35DY?ai@B2Ys`j9cBDDg;p%(t(zzB{o@Ot} z@GmqdG@%vD0c0YSenbgLIxw0$jIpr0c31kA8`(6+g(@b3UeS;5HD1;g2f9eLG=#F+ z-rkXZKvm!{Sqk5U#jsx$1_F|zt}L*ykxcRnDj*?B=s<%Qk9t%Y>Y4Sknq>b!rStza zCV*y=-wy)#LE=@qfPX{`@O13=Vh@}KSZGYLW)%;DIOlGHNX3kvIXZ-ROigo;MMXtl zSdq(A_5rZz@3a-aO4A0K=2lo}T-MVj{Wg#YBqw0Kjisy1DHj_U?aC!+kzC$_hP|Vn zrgEVo3L(UmtH{Azu=&MChI@<#t(($SwuA}@o7Zb(oqXHL6o=r-7Kc|xkt-!0vr zYfNy7gVPnNrc^g;umQ~gSxuG91t>jmk|PpHK8P|94>z{bz)Ql`G?#mKCbZ~k$U9lb ze8TV`P!_p$4>t|5v_}euVR30|6ksbbGIr_|v;jH4R4OyL79(X45%QzsK6>i4hM2+Q zNF{xH-5QXb0f?(K!h)~ZtLs#J?9(aT;O2pTqIMr1HDy*Z-ez9 zpfM)EwmIUCvXE&&>+PPS84rDlkmv();e4(eyCiclJU_+39-XwM2QsBeiUWwWhUEJ!(|n;pN8xTy+^C_CZcC@aa;m6B z68jJJY#cj(ez0+o4`(8mUkrObrw1soVW<#cn;QAElryXm67JB>AqK%Bx)S^X#YTdf z)-3!e&xxxjv2Pm11)bpk~tDbo^TU8Tx;} z^SucHrW)6I%+0O|lv$P+&t0+6_;ZdC%F00F!G%SSXE|{@sng@j5T+>&bS}+81N!mM zz2_fJBRKukLmo$k$T@V7vxghzm13VGjmko}1{oiHc%iYttu1tK?XYF!aIAMNbA=9# z9$`;6=pcN21$Q&FixzWe%kir@Ij+ILEMy%ws0;2(F&JLv^>EM~VdrFHUTfoBmXUKO z%!%;v5Q+*^Mjw|=`Zr*rkR=RO){g1>1!IMwp6D%K>O z_#o3w(P&7OPKZkgW$0%V92w~AI{&;?^dKgKs1^O5yvZvKv5N0`7b4`8EGZvjIc%c~ z@!a>7Y*7k>=%7fiuTb!VDu^vS5aCp_jjLSheeYr!>j>ms%0e7H9epqd8mZHfXmb$X zlBY-C;&_S#tsrGp!_LI}1QWg1fN(riJN7W#i(Ai8M5Xb>+>v4<7d1Jj*-(22d2(%* z2VFj%1y5O@Za_62njU@lf-AB^msLbEwXn3jl)ff(l&`?+2eE?UN^!XmYNJ20p0o{b zOpB@UnP)9>K+`!nwH{ZOIRO21ic-P_{#uzV;tRAkV!D)(&iYeJ7NA@!4Ubq{Ve@lT z{CuG?#p>Pmt7muR%P-Y_88_Ni2&BRMbBc!{z6Q84!F}WZJr%nfqxyHA`QN{oC??Lv z|KIqp$4m48{JXKA=cVt`pVJKyrRM!@E{MiwY@lw8TLb`#nhZ)$)wiuI=M{6NBM5QH1 zP?gN6P@?zI#_L?@mcJ0J5FDjjti7{XR%krM)ZM5mMHjynP$xCofJ}VsmYZ{DVK{@vyTYGttjHMpN+ z;!mJl{=C?71csW>%5ow$bJ~k#WQQCCQkLaN?YUQ+BPr;}+O{LZGem+n8Zdp2!89>F zr~quqd|sAW#?Y92q=J|}NfHpG2+5)?)Swh1_NioVGGDTPnz{3Y1d}N9jiC5?V-roi z_tL}p0k;!Ww^X%Q!2Wm=a_QheY>R>AqQ3qGbT!T@oxUqu{SdGz)Ww)Wuv{xu_Frji zkbL-H>=5~a)*ZXl@tGV8puK}8Qd&+w^GlT)5Q^tFhg1DDpo1GChip^yHXt;8yYncy zuZk#L!(xH!!*`&87$E>dgy}>zsQ}e3<*u=+VikQ$m(Lbvclgi9DS|N^D`7cVu$FAn@6LODNF zE^AlxuCqI!*1U6(vqJK7t^wKj*ge+`kx+%x8Kh>JQ}Q5Jp+tV>h@4R9*I@t%w8BpS z+Y+A?a#M{}Zl}ko?CR!+fErT#(22!Jq*6{v(luxxh?V_*vozfh54q-_%aj8e$+ikm zctV-|K^I_2y)Nh0F|8Jlq5}c+V1XE|biKaRpgD0*OY?SF%VogRsXGb!!lZLEW*}B>gV>vr=SjY{7(O=RIfRKk$i`g6q4UHm6 z+H9rF4Rz=LCt}I}0Q^6h_{)i{#24a!JN`j@8urgme3wlBw|1EejVjCjreF3eKqaU& zFFp}Rg&9I(NJ`CXVWcl;_y6TaMG4~3BZ}}5N-%Ah9`YyYJK!!!!mX#zx*_-Oje~Z4 zbr!^RQ~U~TtF~sNx(sp2D}u7{8s82RP^B8}m4+zMQIV2~4Ch??U~a5DO_zdI(*c9i zt&0n4;PnQaXX4*3M$K+#!kjqQuyh#et*BNGdfF9Nvo}Gtpe{S1Ib9i-pDt$}KukfI zI;p#FpqEv^!B@0|OAP zoY$fAit>weWY#ncR6cF|8av!j$>RpL=DH&%-82c<06=BCGl1QDsC@zl^85$_zf((@ zW&VpE$mJRZ(~cgcu?s02y_~uNtc2FnxDD>pc3+t{D=bN+$pq0;0Q+KEmpY_wzSh|0ek0shTS>^z4FG9mlqQu>Q(REL&sXq2Nw@Y@y=6@+TyNYp zZQ@-v%V;iOZvn#r5R_YAAR@wv6(2?e?RE&1Re_oj%*yaD5JD#ed}w3ew1INASvoyGOIePQB$zKOz2YF5++Eu~U5D%F` zGX}N;vp`H7IevMsVO@bIy}+e$y{RU~j0|DK?FYp!$O^l^XW=A{n{^u`0U(z^zBn5V zfy~PieMq+PLGTE8O(7|15Qf_gXE=O3$o6PM+~vqgpOai@VF=-{7=E^~9zfC(4o#oR zBl&k559DG!?}`F+TEj`Va&yD(`&lal6Xk#}CN#p6TP~5t7(OjoGUjiZ`?3SE!pWMc z&eaMv#tKisv_PbZ6_`BFe^wfGlgut|FXY-!NmY9Q1yKB-o-dXoFl%W!OgZ|jHY_Ha z+$v5*S?v_b;@u@!nQFjy?z`ii|D_B^Mcj99<(yaHvS>D&Mdy^IVBiQzD7}@g>oz>xa3ZYID($Xa=XP z%k#RC%`RPSLi{~;Cp;%C<4X8{bh5}BNV@xS@o~s0(&wHw7nwqRofdY*?LjmO>UO$7 zId5t2dh?UqP{e(+lM_l7XfsmFhH*~i0XVMV1)P2+3)<%3Vk@2#Nt1al0HN+97n&md z-tk&r3usefLkGyk=O{OH3No*715cgquo<*cVYLb87sTnDMOxsEYf#MnvNAvlbOR5z zM9BaSH>4t9x?81Mzvdkuc#UmRm+kt2U(STT%r=wU;r6BQAY_A8^3()UJb6fd8FETQ zRuzdQr{iE^IU^K_Z(#TZsQI z+)yPblQ8MyPsU@Xu9-Xgk2PrKJG8&~+{1t(3RY`| zHYR&(t%)Qo{0nuZShHc}G8upqf>$vH>bgW{KO1#y(HfB*s!z9s%7w_J zTk;(d6eebCnhfR6e>0Z+jbtI2O8lFNHxkdqeFJGU;;Q9Z zrJWpGVBMpxHLaCzG;hgnO;QXi72=sn5!VUTn}+{D28lGuu1QJMW=|=RTg3%Eg`sc_)_yzT;NW$sdAy@MRT6c`c?+A z`^c`q1lHfxET9hH?rc=|6V0czqXV}?wX)2rpg610D-q>M%KWu3i}^LBh?OPCkS(TM z0%t%>f03)@M9UNL;Fkh^1=6|lByo){1Bq^#JNS@fdH7PfCyrP$a%y)c4Plb^Of{d--uo5dT688^=MHFn zCBN3?ysQHXQ);&oj4BIPlS_J2| z;X!i5W{N=3*}9T#?)+bk(fv0=1>j#y+=%~P{7=MZV*h~oKUcqN2FEa1uBMSO>@=ijDM8Ko zcD*r_5rEDo0+L!}j6*y?b&A#_R_9v%_2%=YB)m;Y?*v;8Bi9<)Kv>}};_e_i;hA>! zLc)NP2Cql?E$?w_1hjLe(@m(j$G17y5haGRNLXRr4(TZ*WU-=}E|W_KHanI>8c$~Y z2K1Cyn-FrlODKUim4zlie`BDy3g?7wA11p3{x#Ki_!=0+R_^}(BTb{=u5~?98Fth` zxDH$p27)5S7xx3_6C>=|6@q&p&T9f6zAaV8B6oMB>I;gv<>6ffT z^jc6xTxsfTM9HD1sJzo&Ma$XVFv5~(8Yoi*U$PP!Z*+~hsu!9+pk4EZC-O5Kl!qun zyg*wR=*-Qe;X_!7z#^htd9O){%+P-J5PQHZjkR9jiCAx=E}6RI4uA^AQ!g&?DCSV= zp%6AbnSCO9yZ!p}U-;;k-u}W1C%*VO4h(6aIzcPXJp7X4GI#zzh$VkF`3Bv8emrq8 z{?FpS7T=FQ3is!OZ|D4fr|+F^eu3qy^k_w=9uRi2&yo^FcNA!FkTUCR_=C>bj#QC$nRPJyHs)K$jA?loT&e0b)_`Vv_X z^#{U_vKU#4!K_FKC5?{wELHOY^xR%oemMK{{1K)r968skbde0B zAZ*h12L|31adR2}i`zu!0>YZAJO6XBB%Y7|L3}%YKK8%j{m*@SXZn0o zRNWcRTrmyi+-*)Nq;v;($T5McV#O7hMfL8y)wE8tJyZ2q$r*=38%HPW@OQ0iOlo9zxg-R57qjaQot9b@-W$(^OAVQyof|Szrn*_;u~%Tcb65Zr>3Ie2H9T^< z&>WE@zTD+datGQ`3o0eXR8NoRbqDT;5;C{+2RksoDtBD1h4<%&dO(hO?0XhjhL)zziKX!9hOh|ovW zsl-(C+tEmPS}0@C50*;FZ^77V$}u1CG%HOb@;>WNU0S4_)zTK7>lGNG3tgKNl%>5; zq&xzp z?mRk(Ga=0d#Y}^UWG zTmc4LQ+5adqHw)A$T}TFeZ2Q*ykCVRB`f1nvkUV{ZSg|q+>|N^zKxNw0Rv>&n~;Hz z?VlKkQsl}mP*kA8c1ELInQ@BEn`$t7(5!IvB>7IuILFy zu4v1tph8vBt6Od?*)qLWq&iQpv3N_lO=iKbTPx}CO|wFl92H>}vAEhao~t*PS59Y7 zo%Mbu2b`i8?pO|i*h?-lkVvxWyMiyXHH!2JMAo2<0;?=9Nx%gF)dQIe{( zr*8Qsdk_XOi@6-9YqN5vd9X|Etm0R^<#qA}N+IF+i3xO#wwwjbwfX}}_Qz-&*u5h( zr`;=&m$gx=L(2itwjDrUi1j+(H6Jp0z0S0oyUA5;3mx^a^qRK@q@pl&zEbi||CSkARTI;4K=K!v3ixb>tDZJ05$lIV&e-rth#5 zqh(?asTvU~Z?(z3ao5Jl!x%8!7$1noHx|1x>tw3Ka()xcbEEb=Bv-K__Bm;0R#EH9 zgj4k}q%fp;l}8HFkx!#-bPRjTt!O!1M?jXz7-4qt(Q{V?stkp1^)d+5Qr=!{LJ#e$ z`_pVfs+<8#qnd~u1d9de9dmUh87y<6y@&6CYT|jW3Y{vVLmj@ioVy=XGEE4g$Mzhn z)9?x{4xR2rG>tl!_0IvTgXExd%!DYUUg3dt2Mb7Bra7%=_1kARwpk0Y4>wfN3N92F z;jf6Fi~QqSr4`Gt66B5-XYVwpbawiDWGvauk>=78=O}iD%7C@xC`HHxs02nu!iD9g zl1<64UBEh!W%QC*3%uWwMexf?>y_Q+q`o04;?lE5#anJeEMBvO4%-qj9^9AMJJ?;w z3rI6!!7q3WIS@dh<~RwS=8x40V%5v_FEyzZ8QOp1^GAAdW=i>B&XFHKyJ^kmlVjll0Bs4O zE^4Si|Iz;VJ7{LCT4+DG+@6+I_a(A7!57V4-pNgsgwraWwZ@4BMg*zLNMMx_|!~?B9PB`&nN2?)({QLK*GOd%?W~H^B3@SCYeF0y*&jJ`SRXng6@4v@T1b)8`AOfd`>}cz zqR$mJTfcA!APPQ%`@=6C4}_m*EcJed0MEGev?WZvnB66X^O6D&F-#*8b$It?6_j?e z^rU|e^Wr-Dw^)t;SK6L$n%i&d`Tgx8pqD8z+;-M5Yuj|Y`dWcNP{kg+5UEe7p zff_d{k0LL{C*v`onwKPs^2z9wp$fa~ND zaFMdxc`kgZNdZUSwh!!7Ooa``D2R|RaX@=$^Wmml-bOU!pTd14 zTA_W^spcGaKkfZ5-6$46PlsJowA8Op3)7gZ~1z8rYo+5fMq|KCRP(Zqk8xQqY) z8}YBi2k`*D`rSGF-_xrMH&=P)X#8T@Ds3!MCQ%T<#%aw`re=ub_h?h>&J`b-ny6Tb zDYyhS9hD6A%u-C&=Ml_Ko?=kh4i=hU;*(L}$vJSuw*%v0(7Zm&y;g^CwrkP__AfX5 zL9SL=X7I7B1H{3~*(OxZW0{wu7>{q4PyqYLK8oC@E}q0Xa2V9q!{yeNnr}lreRd5O z9d<2awa|nv$+ChQ$1%8}r?A7Y*p*GBU6|zrOe&UtJPVmg=^IJubdwT{F3vj#PDdaL zR_71=lH)WcISZuzjJAKS6G!@*Bo;NHl%#>@bRdOy8#S(FD z!F`GA_|#@GWwa!S;)QBd_z;?9z8KBd{Z%q93ZDg#99(9fb%}TM$2D30GL@g zGnSXrb_p%$aUP8eIG$Ft0mw*(GB?>&(Z<2RDBNl&KGb`LMWniKD}Yf7neU_52m6LT zr)RAwd<#w0Y~(IRW|1`tuj9+M35Rq$x~-8j-~^%Csel(qhVfxw!NJZ9OSyIaAB&B} zlEaC1B1_%xZ^aj5e>c|RS0Df9Y7;i&u~Jub{Wdy_;sjShXh;d0b9i{wKnCNWkxi*OF5hzl8oL4QGeyJhak{j%bdRPCfK{g{U8!TIjb+o!@e4ORUl9@AHMS*pEr5^j3wz5Ef>PNbl*F}0 zp`%xB_eygUN$5!dcO}8x;m8-(+K}Q9*a42|E{nI0Iw=)1Lch!NO$r<6aNrYO^R7BS zEeD;=(@NW61X#4*IT7q=`q9CaTGaxB?b5UnA8F>ewWx;m;A9Sj87-o2<#zh+FabqK z=KklK>*~4rGG{u>Y%JrKyZq1D(3yTl5(y5w=EV6m zXaB3>|KCU+PyA8h-NbPGcd-8dJoXo3)sI&J-|4GgY>GD-)#+nLLsv~I-@A`4?G@3k z10a=B9=5+4c;>4U%^H_j^QTNqQ=kn8kyxuti(SD11$qbp(J8bugjjKYtvB{iQw0YX zJsBVqHm1Yz#N=O~XuAkIY&!#dQv~M)dOp^q$Y5xHWc$c4G<0^UEOE&MeB;3H0ANi| zZI&*!2EC7SZCDyaKP!w!2}rJs;2+mas=*ZlGR#H1MtRxVLHB{)N!2PWU2m3khF>}m zY8uAB3cLvwNQYRk@w~SemL?2K?JU^$igeWmB#Bz3o9B25>)zy{fc397@3CU}0~ri& zf4%{|5kQP9OJ9?5E5kcU0lH!L>7d`FI^pG7I_xd>f}unI>fmedo?RWN;}{vbr}_z^R{{w;{{?R-E4Ej&>ue zx0-_^!Yz@x(TE9f8$@NoO*u`ku9MW7B3WDp&JAk~76YSY!90+(!hyxl!jZh*EO0Y7 z7NVO0p_Pu5GFU4OsrMn6rFP9=$z46*mb!GXIW2%Y2`B5 z5u5c$a9rF360(R*M6ZP=jnTUygp+lVim(wN40I>Vy~CH!(cDiL(G8N^J5QjYv+tFH z^$)h(XTCDs{4!VEI}pw+YxwSh#?~_oPl?p1vPV!MJ%|Vk)V=~Y$iQimCQP(=qxr5D z?iv4NOe!NSV)tN~O$?!t(ar97H3Gim%iFb#PSM`Tnpw_~XDO=jElh&Brdp@J=QqVY zIPZ&^0<(5{T8jKNbCm-hJw9b@^fbo~qRu5WFdK7=O**NMtR2+`-66=f8QifFuv%Q_ z28)Knmsq4xQ2|U(H}Q0nN`sMG&mIZq)3JhZNRIDL{FRES*ACmQOdQiB5y2cMCRDaP=-r z7(%52WWhrfk+{#3d=g~n4!Ax|2{j38vpeRrp)1z&>@W>=jAbGFjzJWYIt0#gBv8vht=gM=~-9n$NXDzZrOwLh8< z{$`7kh>`u|5p9u|*+O#>MdMKh3OtRIfny*Njm7ZVW%(p1CAoe6eZz}*yUInr+EPu# zia*7ouQ`&8u6;%0I9Jt*3u(JnqBjC`_nn;M$MWiCX|6>%#L&G%-7{v2)K}AmK+GoO zy-xmKIso(TGTT1R4E=i0d+{(zldVs3HwPnMxX~5>6^(6xV+<)kP90Z+QmgQS-|3&Q z`YRctoocX^X;B1mtmazog)`!L1Q@r`wDp8Hb2UK?UzZFaVY;r02OyXx@0R3S6cjHYM zz<&-D;9t_8&$UFkJbB>oB3$HgU`xw! zOrsFx&Cb&~7W9K3)<}Wk=B@*&Etjk-1VbgD@w1Jv2Ut9?E4CKt(Df$ogVBIs<4uwU zP-k*S4Zu|ANu%6k#sN_FSnF9HVcsJcOTliCx>n0e(CPcrH9_2@6!RqR3}(qGlT3^H zhZAdkz2Jlu9_gJNF{fE9OA%JT0tuLAtmXtmh}=R+a!Vb`bAHAjckdIfb{W}@tbCm1 zfaE(;yTV`w{>tNPQx}B8FEY;_@r6RKS6iRP8m5mJ*()rMA^->U>1gJ(aYXepd5Xzvw=gHY`tuK|Ml(IZS?gXYSw&axi=&!UTZzg zD&GEF^u_Fei@7RWH6tL(ppd3=3<|HBGa_ZPptL1usqUfV!AS(nmfy^f+DdBqbRXtt zI+L$Usq3({FTYH1y0y`IN|9!K?BNBJI`@L^QcB3=hC`LGlRo`~Xz|4pIXpi_mTJ|k z=5s_;Q2#Yyu*xm$5jnZ@KNw5?>Ety1e||b~J^ppj|MRiG5&N;&;KAd++%hU<(j&xI zfF(F7rgoi)aZn4cGajufZIKqfO0{-X zg2-wODmW+)$r%;xSJ48lG!3CFpoJ%1hnfoLDZFQQctIJD%J!Qr8j$zxf5vP2WjDN2 zcmO4y)-_q15Z1xamkOq5j@}#O5Ap<=WlCx3io1#A+U}7r&57&)mMxK+Y^m1aVCi{? zRa?-FRYa&P*{W|zGf_CzPv5{T7A4P2$#mGQa<27Ru5;%Ap6daSY1bGAOA$UNF#uwM z+Q=6tWkIX(8v<&AL>dyCrjXl@wXD8jY`Rx^C3y}yuj!0~Leeuuh77U^T8&3q;5@_a z4}iU_aMaZvWpe>7SHe>>avtLmcFkXw^!7qtz5jTvMIA)nn||F_4ATjndj}2UqmY_Z z`kA{y03Zn$sX!8p#hl!F(CX99J@2K=Ia)?+gEy^WMdoI53yAYIj2S@=DQ(@-9JbH8 zG^P3{fNAwsoPT9s5u!>z=LF-c97=BITI+|n$=uk1WpX(|5DK&MTq>KM2ZsZ&6%^+K z%`BbaamDUbOLs6B{`G6E=eS_q-}4+pz~EOX{Ojg7+|x^Zb#3Wv(*y3;k}_@=WZtQ> zT+0d^o&YH~;KJNEOJ!=+g49)Ye_+2RY7ZVTm}DpOa3|tz*C9ePduRi$KQ(IkNs(W`Q7<*x;4n!%=pkR zO(%5PN>SXj1-vXHuYy+>JO)+rD;905eO+xepfYdQria0)(J3ID9T!O z2ZWlD;5sm!R9al+3NIL1Kw6AT;3;yr(NO+neIA~?*nB{-h*f2Z4`XEDl9iG2FQ|p? z37o?oAXz+GA(s(u=xsj_?#--t#o!Ev7y^LMSl0+Ah98rsT;(thD=)d0n{81K(I>3h zLNbXlmVc7h!-Ekm11wxn7T;R$`tLK(6`H2}tOvLNbnu{z(PL<0BofIAz?w6R)w zc6J1~E{_K#d<`Q>0?wWZSx3EK!s$vgGEaGOuAFUA_%QPB5s;DMZC0L9Bo3%IkSpxf z8XlUkzJO(!Bb{yiNyaB-=`OTh;F)jvXV%@YA?Aj$$*3Dz`0~_z(AL6L6=lg;vVFm8 zE!9P=c|&BnD_ox)9oG$|Irylq#7tc|a5&sR3}q6yfRmLkwSL5OS6BPVZIOuaRt0i$ zhg`ckpom!BqeGXb!jhdb-wEOj>o#xuLy6l4bCL1w4C}%Ty4HduNq5M@ zU+&{%t$J>ku#$1=JDhU;dxrMih&QKG|8f&#>*FfwEYGx5^|0q9ZblZG_j(C4uU#Kv zG9`jXeN5i5_V@*woMs^47=$bv*q!`L>nzv0J=#_Jyd^AXG|yU@3mw_hO+m@yEmb-6 z4D{f;y+R@v`p`fe4JEaEa%b!+0Z?(JHNs+-P9EjO0@EYioE^@moK=TG(1jq3x~MVO zVM9fuV>F>Mm^>vLDLD3{5AU{4i5~yVv{5In$O)p1kaKhm<-x!g%zuvQPhc?^4%S00 zNF)o+n*iE`(ZGkKxvkrrWY2|<;L(Hy^HO2FsQz;GOzR{IF+S7X7CX#nG<-=7nsrKG zoI*4ll6hGI-7O-3B4*Jn4l7Q#hPle7Cp(=TJE3=^5g`FNN)X9V$ZVjD(AYXVdopss z7t3a#d}+d!))32jYv6DiO6h=k%O$CD$RH>_O6W_Llw*jfee_|tzzP-o{J()%@}uNi z)c^j^iQU9!2YIU|M#uQge1QZ{ z<+avj9=K;FpOak)pT%fGDHJQHhDS@m^i5%2UZmK!dhul4)gqtnMmm`%UD*6yQ+dqArkMb#`0my&@BvN4rC)ph-iOil3 zGpvttqlJJ`^Y!tTntE?~J9wE-m!Sr7>zpNec)$vWXe0=mt#sdkg96`?0}HT^`Cn{N z3o%qV6dkiOPCl(T4Fa?kr+H*?hPmnB7ACVZ=x&%WM0Hkc#(!IsMI75d_L-1Mq;<*) zC!TOk!>Dh?^}tmYml2E|dLvZBG!x+Ph(*`yeS^(d9?vdh7g|>N;L~5+p9y47sX0j* zNEi$mtS;1B4rW!bwDj7b|;ftxF1QAA9*I{flB_rAmxi(dt>)qxGX5m;pGa zPmfGMEm9k(tfDni=X0EMj>)+6hzK%bZxec5XuZl7O?oIq&NCP0fB56N^j-DCAzUw( ziX7r?PMBJL0BP*vcTBZZ2oZHyUFHs!_>58yv>2cwKwhh@gC*`A0_r3>uOwudCQuq3 z7p%1|=vkjQ#Gp*8oZlo_{(#9M^*G`*3XvdXuqP_Lv)|m*&aP2LL<>DVhB90>+;rLc zB{89@HHI+F_C2g)Jrr;O{iM8-HM5MI$YIqK(ALuV|MRirFC0RjTsbF=66JFd#jp~NIYm;t;i4aDU1lcSQa>&m+9 z!a-rVHODr+`}|>@EkO`w2?PgN!YS8&k?Lb;g2Gj@H|R}Fmwvr~uHpS3edx+wXfxeX z7w)`&Vq0+q{Hvw=91|wIS5U-|$Do8EN%*1Aufoc`Dr1olE>&Nk9NuqTl>)ha!W4*k zU#vCEJ&@Cok_5cY5ilZ`^EKg|X_yuzARIqpQO2-ja~76DmLu|YEoNkwIcqvZBviF# zDy5*C7z9Brv2wxY$ z!7ZB$^;U~|4ix4Qg2VdQQ?Qm1-7Ac4L;WJ>gQiOOWkg~4H(Gr4qDhS}?2umq26E^B zjac#$y+2=z{~z%`7vGKlaO`Vf|8IQkS^uUlzSI)uar`i*Z!{cP*FBX~KulcQzR(h{ z@n8#co=R&JCQNucfRXdb*mJrufg#-#cdUA|wW2L~w0j2d!vOojgyNGg}W*(bh$a1Kjg=C;o@q z--22&svKJT%zVCpj-re4XiMb>Z~9d+7CX;)04|&}AWMy~+y<}@d?@llfb{;Qt80E-u;X;g;bT$K%_$J&8f0^GT|^1<0-0^ z1b>Wd6hi=blaBmlB((CNMYrl>`(xuhUWb8nSTYo&RLe5g|y99&Oij2F&iFulRvQQ^{yny~^B;u2{%S$Y~~*x4_;`Q>A4e zG6Tyyb}S|p)U-d|TI6tkaJ}zgt)7O}LxU;ALu^qAf=ztnVC(eV#Rs&-wnm{kl;r)a ztQ#>WQ%|aHSPx5!p`40Vt30eSh`Ox|TTd5#45tZ~wZiok+Ocwh z-H2|%I0%vbzcVtTxWerJlQHW5|59=s{Qp-HcM{LWKOzHgG4}Uke~K5rjXzT@5kI%P z;0KQyo?=trOp_w<2JI0`*(gxK?CJ zqY7f4HRoHYDG+y?!o%`XVBcCLI>~dCqv)jjz#r3#V}^*o&Y0JHIY_rui*T@=T)1MG z0}j6#D1PJAI%pGqKV{KrD5;bd(BiMKvDmU6(@76NFt201NSa>~LsZE^9@t9W!YQ+CSHM* zJ0;H?jsV{_H`98XwEebg@eN&C+#L?`)sp>?3D|pme@bahPA!%y4A40g8~_*zN-zNm zGYjHMi&+rI-gRRK?4D+P!q2lm5TovQmU+?({k>;^1iH2Ky|JPVN}m zjYVE!S%`#~IHgl9Gsc%p5P@!6>sK{mRwN^rfH%p>K?9(JU{GzlaERq1U{>8U*TN3$`L2#p|MrHq>h+T>$|I_3r68}-+^~5vO z|JLFE{?*ve@avENlWpzloIcS#ryPKYs}kLWGvwA}Ps@TUvROkUCEWB$uUm^&Dmcz& z_X08l`Bz#c9_*qA!K~?=jsS25i$NoNGl}68E5cdVBYIcNmN#3XYu39-lkS0xs6?U6 zo5Zsp?ueNOi5i9!z~m7&fE?3{-V|1ASd#qOOIKSv9C&f=qXTcgJ1Z(z-6J{LKBEHR z-QiVoU}zmF8k&&2>el!K3Cah#8!hWP{cLytxYtej9zX?51tTb@4DYIh3=uK@J8Ph2 z09R9rGxRT6xL4%R$nH%O@Ly`F%k=yKB^Rm`L|D!WV;}XKE>lad zW447q`G9yvi8U{gc0$Ttx%?=ZSlX7vukD{O96J@$ZlQ`R`2yz*tL^)!fs)I#U^8iK#=( zjDjv9U3Ny9SD6q~ULU^|v>>St?SJM_IHadizEg??N5S&kU~!ybV^)%7B$>n|q;>%< zf$Ie2@RdC-(P`_jS-IE}SGA|pJ-e)RwT=V$SJrfv%SgdV!}8_$- zmbmIufSx3M%ZOQ0VOYq2-5Nu`ub82PqD#(#|)CA|MRG4k4 za^qfCXiG8(QZ9ToCYnPVGAv#H%vIwxbF? z$=bRoLR8jBz+F@iz!P(^v7I?IBN5`$t+1ctAMMR^c=dZWQ(pQJZ#@OA0=xb6t>H(+4s4b`ohEbAAS)lC1 z)^V{6=FGuohsfGdT|{?`);$*S;DnNJ6OX7T)C5tsMQaS0t>Usuu!oR*<5w@YA(0+EEtr^)bO+9nyfuqwbMTe0vl4+Ipeba1kRk64(Eg`Q$r6@}fm+b~CmYUd6E&h8BA zTSYL!_oNm)Y7q%fgyXuX5`5N+t7%A}_F%fSswx)Dz!VWAg9F>2;3nVe-lTj2)ok*n zZiM16H!SFeuBYz=@m1bKOR$Ouu}IPG>uqCMa^a1X;-jhak@qi=e0S5S0x}r|<@*`MG7V8!1GCFOo;+L(`jG^^DJAY`J znKt(TT>zJ#W1Fjh!tPYgwp2cH-Di(_Wg5*Ek`peZW`hU8_7)ynF|EIX8?Ez`&*=B3Y=+^3hHUvcfVk0DhP||5LH#uO;6|9!vaZiCc*i z@&74ajs0J-Uy4nA;}d@HmABilMf>(5+L;1543yQQ&(%o3ZxZ|1NxF%apQXA5fw9r# z-F(k{iO#R$w6UoH&51PEbvB%6QOUHQ;R|v{K?}wPHK&#n0Gx_W7J#Z?Q~+Ov5K>r; z-m#x-8?AK5ufF!2$XCo%i;Fl}ZdLIVuwX0}`AOzqVm&d;oWP#Uo^a-XZu_{uVkpw4 z?mn=QX2xsnX){H=ywhvy{R!K;IE)Me$K>8_KW%&I!%y~7A2I3&nQHqo4lU#)fyS=4 zB#WW<=)QDY_A>+m$gJf5=^;UOk}>eYEs6E!+oGW6ecJ8{k)+z%qc7yf05B0nag_~+ zQ15BkZe)Eaj$z-Sol{b^UdWBKpW=F1-xb4TR;!`AI9LT^3vuq$xyv_$_LF+Zp{`!U zoWa)DLR#}7L+S?&J>L-?wigg;YaLyadR##kcvbDX35md4EMr87AmBxufYmfJ zI0HX!Q?n}oN+zxUWRO;1xI?z`TASjIp*utAhp02sQMN5J_&mH<;4_1<6>b0()fIe+ zZ>iR^W|)MHuoW)<|72`Q{{K%T&nNyv&i|*V|5+gi@VC$aO9#*SxAL#0HjTU~C-={7 zw-pY*K#^;FAv`Fuby|2GH(V?CvZ3X)R#2*1d8T|pGqU7Q2B+K4vma64n*|LN?`a@J zrMwVM4u&&%R|K0DFSVhf4$L29z~Em246fVIbud8{wUgB1Jdm5Dlxz61epP|#x?Xyv zt#;hm0}m3q9|&YmD7_*!I2|pE5h;4Lv2TwmpNxz4Q(UZ zfR==cR16Q(C2@$&E)n&iLg1&YaVS$uXbAa*90{QT%Njylrx2knD(XTv8`9(Ego}iz z79#t~31=9c%a2}Z{~(13I|m98yjUTgNEHh;!~89rIN8sI4Ktf_d5W{ksd-R&{2|UQ zx3SbdCNYRu-Fgm#P?xOk!s8BfM@4mU)th;yv`FYfslYWd-Kw)+%>lV+h|B&b+SGsy z?av%K04w6fTbp2gk>iJ{2izbx7&-w!o*Xbdeq|76RCjJ5lm#ZpR&lFP zeX!-2KULn~nq{v+ z94a}cRBh3fiPNoHy`p}g7_D68#rF5JahJLZ(`_8HB8{sdt!jZf@5Fh_NRjaq&0BzFaouHi7e9OS}kB+q z3s3|O{{{z_92OOSzbCGSDAKR#Cp zZ1N=Xmxf@O8Ue^c6|FTVSq!Dr`1Kk?cXSUug$HD-RPJaj%Dk$YIKk+iN^S`EZ}Vzf z4ZK&z!;oMB6w3`zb8vvqkniaL;kNAw=%aE9*NuOzkx!txJk`o6G z53p&l&b$nVsP0K&sp?bRK~E2!rL5T6v)cO9RkSBQzn{?#oO&AZq=4=mS&GV5+saAC zd}Jnd<1IHVYB^s3C2PJ&P`f_OZEf*n;6^G^RLHA^j5rgLI5nsUSrXdBMU-59yM0^- z>x}n3EVWoA^+lUcdN3H8CBPA&YcQ4Dft$^!3%OP9f|hxZ;I9&iy_07QN`V8Zs$l2O zDmBclsqRV#O#c5i>Q;K0*BU)!4tvOCSGdwhf=Q?>!%v ztXQfv6kK!7X|tlcGY{QSx>SmzMrufr!I03Zt0A%FWLsp~sI{b>0+S-}JFWs`EDw%V zm}B3SM5s)(&+>`LqhBae7-CN*ZKA4YEt%HC*f>a@J0v<3670*^|DDQM8?J2Mb-(1j zhtE3}1-XTh(PZGU_dhPS#ge_{_29^952poHW7{#LPmqg!pR|{0E_Kv^%u?IA(jMW{ z760j(ZxYtcaTkDE6+HS952T#4JrLmE2_;H%X{ z(Z*nVh)2KZSJ6%oi^~l~)5=ZeU+3xq7ZWs3X?rG1@M%BWH(Md|k1b*O*SH zy~A2?#6$Fj;te}(WQp{0YL*QbHE--(nyd^mjS>*66naF^Rt?L(ni^RJh8AazHlcbr zm(vUbGJ#@zKobjbetn?s8qw(L&Rj(uBg2^A!i-njU*OSicnf*v%n6BFI%E~I+{lRe zSb?=clFV}(XgVrCaTIj^pNvh$l3z={O8?*gg!-RT@joBG5&vxL51Icl`SFK8eDy+m zf_n(O@;!Iq?77tLjyze&?m!wyo7pH%q;gx>And+v>PS}xsVhnhI@aj7(O zYIvkIi4>TcTMJVsW}#e~8wcEogJcKGwIYGeWyFN`FKw8%11rZS54CkO?SOuS8G|e$ z$ey6#Jdknfw+f}R?QtG#