summary refs log tree commit diff stats
path: root/java
diff options
context:
space:
mode:
authorSudipto Mallick <smlckz@bccr>2024-01-10 13:51:53 +0530
committerSudipto Mallick <smlckz@bccr>2024-01-10 13:51:53 +0530
commita914804458e9697f1a9e0430c72ffe941582bbf5 (patch)
tree9adeea42a7be8b0c9d4167afd78840c17df74861 /java
parentfc765a85e5de17a29e4339f888e2497408776824 (diff)
downloadzadania-a914804458e9697f1a9e0430c72ffe941582bbf5.tar.gz
Update the state of Java assignments
java/state.sql: Update the situation of completion of Java assignments
Diffstat (limited to 'java')
-rw-r--r--java/state.sql28
1 files changed, 24 insertions, 4 deletions
diff --git a/java/state.sql b/java/state.sql
index a59f11f..0fffc5b 100644
--- a/java/state.sql
+++ b/java/state.sql
@@ -5,10 +5,30 @@ CREATE TABLE `assignments` (
 );
 
 INSERT INTO `assignments` VALUES 
-    ('ArraySearch', true, true, true, true),
-    ('ArraySort', true, true, true, true),
-    ('StringOperations', true, true, true, true),
-    ('MatrixOperations', true, true, true, true);
+    ('ArraySearch', 1, 1, 1, 1),
+    ('ArraySort', 1, 1, 1, 1),
+    ('StringOperations', 1, 1, 1, 1),
+    ('MatrixOperations', 1, 1, 1, 1),
+    ('AddTwoNumbers', 0, 0, 0, 1),
+    ('CylinderCalculations', 1, 1, 1, 1),
+    ('ComplexCalculations', 1, 0, 1, 1),
+    ('FindNumberInArray', 1, 0, 0, 1),
+    ('StaticExecution', 1, 1, 1, 1),
+    ('SingletonExample', 1, 1, 0, 1),
+    ('StudentsArray', 1, 0, 0, 1),
+    ('BankAccountExample', 0, 0, 0, 1),
+    ('ShapeAreaCalculations', 1, 0, 0, 0),
+    ('AbstractShapeCalculations', 1, 0, 0, 0),
+    ('FamilyExample', 0, 0, 0, 0),
+    ('CuboidCalculations', 0, 0, 0, 0),
+    ('EmployeeDisplay', 1, 0, 0, 0),
+    ('CircularBaseExample', 0, 0, 0, 0),
+    ('InnerClassExample', 0, 0, 0, 0),
+    ('InterfaceExample', 0, 0, 0, 0),
+    ('RuntimePolymorphismExample', 0, 0, 0, 0),
+    ('PackageExample', 0, 0, 0, 0),
+    ('CustomExceptionExample', 0, 0, 0, 0),
+    ('ThreadsExample', 0, 0, 0, 0);
 
 .mode markdown
 SELECT * FROM `assignments`;