From d9373c32387798889467a32667cafa8b50da2894 Mon Sep 17 00:00:00 2001 From: Amit0042 <91377510+Amit0042@users.noreply.github.com> Date: Mon, 2 Oct 2023 12:00:30 +0530 Subject: [PATCH 1/2] Update general-cs-quiz.ts Added a new quiz question- "What does NFC stands for?" --- src/data/general-cs-quiz.ts | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/src/data/general-cs-quiz.ts b/src/data/general-cs-quiz.ts index b73ebb49c..0d1edf441 100644 --- a/src/data/general-cs-quiz.ts +++ b/src/data/general-cs-quiz.ts @@ -1,4 +1,14 @@ const generalCSQuiz = [ + { + Question: "What does NFC stand for?", + Answer: "Near-Field Communication", + Distractor1: "Narrow Field Communication", + Distractor2: "Near-Fragile Communication", + Distractor3: "None of the above", + Explanation: + "NFC stands for near-field communication.", + Link: "https://www.freecodecamp.org/news/what-is-nfc-near-field-communication-uses-chips-tags-and-readers-explained/" + }, { Question: "What is the best algorithm for matrix multiplication?", Answer: "Strassen's Algorithm", From a30cfa03c6671f32ae459d63f4ba5197f8958f8b Mon Sep 17 00:00:00 2001 From: Amit0042 <91377510+Amit0042@users.noreply.github.com> Date: Tue, 3 Oct 2023 09:11:05 +0530 Subject: [PATCH 2/2] Update general-cs-quiz.ts I have changed the question accordingly as per your suggestion. --- src/data/general-cs-quiz.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/data/general-cs-quiz.ts b/src/data/general-cs-quiz.ts index 0d1edf441..92ebee269 100644 --- a/src/data/general-cs-quiz.ts +++ b/src/data/general-cs-quiz.ts @@ -1,12 +1,12 @@ const generalCSQuiz = [ { - Question: "What does NFC stand for?", + Question: "What does NFC stands for?", Answer: "Near-Field Communication", Distractor1: "Narrow Field Communication", Distractor2: "Near-Fragile Communication", - Distractor3: "None of the above", + Distractor3: "Nearly Factory Communication", Explanation: - "NFC stands for near-field communication.", + "NFC stands for near-field communication and it is the standard for devices to communicate with each other wirelessly from a very close distance.", Link: "https://www.freecodecamp.org/news/what-is-nfc-near-field-communication-uses-chips-tags-and-readers-explained/" }, {