From 22424bc14a42f9489035c44cb8e3678713e80d51 Mon Sep 17 00:00:00 2001 From: kali Date: Sat, 1 Jun 2024 11:04:04 +0300 Subject: [PATCH] Added api questiosn in a db.json file --- api/apiserverstart.md | 1 + api/db.json | 75 +++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 76 insertions(+) create mode 100644 api/apiserverstart.md create mode 100644 api/db.json diff --git a/api/apiserverstart.md b/api/apiserverstart.md new file mode 100644 index 0000000..03c30da --- /dev/null +++ b/api/apiserverstart.md @@ -0,0 +1 @@ +`json-server db.json` \ No newline at end of file diff --git a/api/db.json b/api/db.json new file mode 100644 index 0000000..f11fa39 --- /dev/null +++ b/api/db.json @@ -0,0 +1,75 @@ +{ + "questions": [ + { + "id": "1", + "category": "C++", + "type": "quiz", + "question": "What is the output of the following code: std::cout << sizeof(int);", + "answer": "The output depends on the system, typically 4 on most systems." + }, + { + "id": "2", + "category": "geography", + "type": "quiz", + "question": "What is the capital of France?", + "answer": "Paris" + }, + { + "id": "3", + "category": "cybersecurity", + "type": "true or false", + "question": "A firewall can protect a network from all types of cyber attacks.", + "answer": "false" + }, + { + "id": "4", + "category": "C++", + "type": "true or false", + "question": "C++ supports multiple inheritance.", + "answer": "true" + }, + { + "id": "5", + "category": "geography", + "type": "quiz", + "question": "Which is the largest continent by land area?", + "answer": "Asia" + }, + { + "id": "6", + "category": "cybersecurity", + "type": "quiz", + "question": "What does the acronym 'DDoS' stand for?", + "answer": "Distributed Denial of Service" + }, + { + "id": "7", + "category": "C++", + "type": "quiz", + "question": "Which C++ standard introduced the concept of 'auto' keyword?", + "answer": "C++11" + }, + { + "id": "8", + "category": "geography", + "type": "true or false", + "question": "The Amazon River is the longest river in the world.", + "answer": "false" + }, + { + "id": "9", + "category": "cybersecurity", + "type": "quiz", + "question": "What is the main purpose of encryption?", + "answer": "To protect data confidentiality by converting it into a code." + }, + { + "id": "10", + "category": "C++", + "type": "quiz", + "question": "What is the function of the 'virtual' keyword in C++?", + "answer": "It allows a member function to be overridden in a derived class." + } + ] + } + \ No newline at end of file