# MySQL dump 8.11 # # Host: web Database: jackson #-------------------------------------------------------- # Server version 3.23.28-gamma # # Table structure for table 'quiz' # CREATE TABLE quiz ( question varchar(255), a varchar(255), b varchar(255), c varchar(255), d varchar(255), answer char(1), id int(11) NOT NULL auto_increment, category varchar(64), PRIMARY KEY (id) ); # # Dumping data for table 'quiz' # INSERT INTO quiz VALUES ('Who Created Perl?','Bill Gates','Steve Jobs','Larry Wall','Nadine Shillingford','C',1,'Computer'); INSERT INTO quiz VALUES ('How many bits in a nibble?','2','16','4','8','C',3,'Computer'); INSERT INTO quiz VALUES ('Who cofounded Apple Inc. with Steve Jobs?','Bill Gates','Steve Wozniak','Paul Allen','James Gosling','B',5,'Computer'); INSERT INTO quiz VALUES ('What lab invented C?','AT&T','Microsoft','Bell Atlantic','IEE','A',6,'Computer'); INSERT INTO quiz VALUES ('Whats is your Name?','Andrew','Nadine','Rob','Kurt','A',7,'Misc'); INSERT INTO quiz VALUES ('Why is the earth round?','Because of the gravitational force.','Because God created it that way.','Spheres are COOL!','Because the earth would be left out if any other shap.','A',8,'Misc');