Created
August 29, 2014 00:20
-
-
Save melvincabatuan/f1a4bdeaa966f955f84a to your computer and use it in GitHub Desktop.
SQLite Insert Record Command Set Sample
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
INSERT INTO 'questions' VALUES(2,'A rectangular parallelepiped has dimensions 5 in. x 0.5 yard x 8 cm. What is the volume of this solid in cubic centimeters?','4645.2 cu. cm','3156.8 cu. cm','4899.1 cu. cm', '6585.5 cu. cm'); | |
INSERT INTO 'questions' VALUES(3,'What is the volume of a cylinder if the radius of the circle is 5 in and the height is double its radius?','12,870 cu. cm','8,245 cu. cm','6,450 cu. cm', '14,560 cu. cm'); | |
INSERT INTO 'questions' VALUES(4,'A standard Olympic pool has dimensions 50 m long, 8 m wide and 1.5 m deep. How many liters of water can it hold when it is full?','600,000 liters','50,000 liters','60,000 liters', '500,000 liters'); | |
INSERT INTO 'questions' VALUES(5,'Find the 15th term in the arithmetic sequence 1, 3, 5, 7, ...','29','25','27','31'); | |
INSERT INTO 'questions' VALUES(6,'What is the sum of the infinite series 1, -1/5, 1/25, ...','5/6','4/5','5/7','6/7'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment