Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adding a CS question in full-quiz.js #99

Merged
merged 2 commits into from
Sep 16, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions src/data/full-quiz.ts
Original file line number Diff line number Diff line change
@@ -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?",
Expand Down