1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
-- Assignment status using SQLite
CREATE TABLE `assignments` (
`name` text, `code` boolean, `output` boolean, `text` boolean, `shown` boolean
);
INSERT INTO `assignments` VALUES
('ArraySearch', 1, 1, 1, 1),
('ArraySort', 1, 1, 1, 1),
('StringOperations', 1, 1, 1, 1),
('MatrixOperations', 1, 1, 1, 1),
('AddTwoNumbers', 1, 1, 1, 1),
('CylinderCalculations', 1, 1, 1, 1),
('ComplexCalculations', 1, 1, 1, 1),
('FindNumberInArray', 1, 1, 1, 1),
('StaticExecution', 1, 1, 1, 1),
('SingletonExample', 1, 1, 1, 1),
('StudentsArray', 1, 1, 1, 1),
('BankAccountExample', 1, 1, 1, 1),
('ShapeAreaCalculations', 1, 1, 1, 0),
('AbstractShapeCalculations', 1, 1, 1, 0),
('ParentWithTwoChildren', 1, 1, 1, 0),
('CuboidCalculations', 1, 1, 1, 0),
('EmployeeDisplay', 1, 1, 1, 0),
('CircularBaseExample', 1, 1, 1, 0),
('InnerClassExample', 1, 1, 1, 0),
('InterfaceExample', 1, 1, 1, 0),
('RuntimePolymorphismExample', 1, 1, 1, 0),
('PackageExample', 1, 1, 1, 0),
('PackageInterfaceExample', 1, 1, 1, 0),
('CustomExceptionExample', 1, 1, 1, 0),
('ThreadsExample', 1, 1, 1, 0);
-- SELECT * FROM `assignments`;
|