From 06fbcb4e9e13a8db81640cdfcf59578ca04df414 Mon Sep 17 00:00:00 2001 From: kalashjain23 Date: Fri, 16 Sep 2022 11:39:37 +0530 Subject: [PATCH 1/2] Adding a CS question in full-quiz.js --- src/data/full-quiz.ts | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/src/data/full-quiz.ts b/src/data/full-quiz.ts index 66b9f3c0c..4f3b75b04 100644 --- a/src/data/full-quiz.ts +++ b/src/data/full-quiz.ts @@ -1,4 +1,15 @@ const fullQuiz = [ + { + Question: + "Which one of these data structure follows the FIFO (First In First Out) method?", + Answer: "Queue", + Distractor1: "Stack", + Distractor2: "Array", + Distractor3: "Linked List", + Explanation: + "Queue follows the First In First Out (FIFO) method as the element which gets inserted first gets removed first.", + Link: "https://youtu.be/B31LgI4Y4DQ?t=16410", + }, { Question: "In JavaScript, what is the name of the method used to remove white space from the beginning and end of a string?", From 97935551692e1d98be6ea01f7ea4ccce938cf679 Mon Sep 17 00:00:00 2001 From: Kalash Jain <97672680+kalashjain23@users.noreply.github.com> Date: Fri, 16 Sep 2022 21:16:43 +0530 Subject: [PATCH 2/2] Update full-quiz.ts --- src/data/full-quiz.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/data/full-quiz.ts b/src/data/full-quiz.ts index 4f3b75b04..ea86eca29 100644 --- a/src/data/full-quiz.ts +++ b/src/data/full-quiz.ts @@ -1,13 +1,13 @@ const fullQuiz = [ { Question: - "Which one of these data structure follows the FIFO (First In First Out) method?", + "Which one of these data structures follows the FIFO (First In First Out) method?", Answer: "Queue", Distractor1: "Stack", Distractor2: "Array", Distractor3: "Linked List", Explanation: - "Queue follows the First In First Out (FIFO) method as the element which gets inserted first gets removed first.", + "A queue follows the First In First Out (FIFO) method as the element which gets inserted first gets removed first.", Link: "https://youtu.be/B31LgI4Y4DQ?t=16410", }, {