Skip to content

Commit

Permalink
feat: adding question for general CS quiz (#704)
Browse files Browse the repository at this point in the history
* Update general-cs-quiz.ts

Added a new quiz question-
"What does NFC stands for?"

* Update general-cs-quiz.ts

I have changed the question accordingly as per your suggestion.
  • Loading branch information
Amit0042 authored Oct 3, 2023
1 parent e000461 commit e2bc2a4
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions src/data/general-cs-quiz.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,14 @@
const generalCSQuiz = [
{
Question: "What does NFC stands for?",
Answer: "Near-Field Communication",
Distractor1: "Narrow Field Communication",
Distractor2: "Near-Fragile Communication",
Distractor3: "Nearly Factory Communication",
Explanation:
"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/"
},
{
Question: "What is the best algorithm for matrix multiplication?",
Answer: "Strassen's Algorithm",
Expand Down

0 comments on commit e2bc2a4

Please sign in to comment.