diff --git a/src/data/full-quiz.ts b/src/data/full-quiz.ts index 66b9f3c0c..ea86eca29 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 structures follows the FIFO (First In First Out) method?", + Answer: "Queue", + Distractor1: "Stack", + Distractor2: "Array", + Distractor3: "Linked List", + Explanation: + "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", + }, { Question: "In JavaScript, what is the name of the method used to remove white space from the beginning and end of a string?",