From fa3e852e80c773821049eb5de4112fa9bdf1107b Mon Sep 17 00:00:00 2001 From: sunehachoudhary Date: Tue, 12 Aug 2025 23:48:47 +0530 Subject: [PATCH] Added DBMS questions --- script.js | 19 ++++++++++++++++++- 1 file changed, 18 insertions(+), 1 deletion(-) diff --git a/script.js b/script.js index 322ed8e..b18cabc 100644 --- a/script.js +++ b/script.js @@ -398,7 +398,24 @@ const dbmsQuestions = [ question: "Which command is used to delete all rows from a table without logging?", options: ["DELETE", "DROP", "TRUNCATE", "REMOVE"], answer: "TRUNCATE" - } + }, +{ + question: "DBMS stands for?", + options: ["Database Management System", "Data Basic Management Setup", "Data Base Machine System", "Database Managing Service"], + answer: "Database Management System" +}, +{ + question: "Which key links two tables?", + options: ["Primary Key", "Foreign Key", "Super Key", "Candidate Key"], + answer: "Foreign Key" +}, +{ + question: "Which language is used to insert data?", + options: ["DDL", "DML", "DCL", "TCL"], + answer: "DML" +}, + + ];