From b02c2925c9900d1507f7571e36ad583ac5f5c500 Mon Sep 17 00:00:00 2001
From: Joshua Nweze <101072509+Joshua-Nweze@users.noreply.github.com>
Date: Fri, 29 Sep 2023 18:16:55 +0100
Subject: [PATCH] feat(Vue supplementary curriculum): adding quiz.json file for
quiz app project (#224)
* feat: add json object for vuejs curriculum project
* Update build/vuejs-quiz-qpp/quiz.json
Co-authored-by: Jessica Wilkins <67210629+jdwilkin4@users.noreply.github.com>
* Update build/vuejs-quiz-qpp/quiz.json
Co-authored-by: Jessica Wilkins <67210629+jdwilkin4@users.noreply.github.com>
* chore: remove keys and values that won't be used, and remove empty spaces between keys and values
* chore: remove keys and values that won't be used, and remove empty spaces between keys and values
* chore: remove keys and values that won't be used, and remove empty spaces between keys and values
* chore: correct typo
---------
Co-authored-by: Jessica Wilkins <67210629+jdwilkin4@users.noreply.github.com>
---
build/vuejs-quiz-qpp/quiz.json | 194 +++++++++++++++++++++++++++++++++
1 file changed, 194 insertions(+)
create mode 100644 build/vuejs-quiz-qpp/quiz.json
diff --git a/build/vuejs-quiz-qpp/quiz.json b/build/vuejs-quiz-qpp/quiz.json
new file mode 100644
index 0000000..3ae248f
--- /dev/null
+++ b/build/vuejs-quiz-qpp/quiz.json
@@ -0,0 +1,194 @@
+[
+ {
+ "Question": "In CSS, Flex is a shorthand property for which of the following properties?",
+ "Difficulty": "medium",
+ "Answer": "flex-grow, flex-shrink, and flex-basis",
+ "Distractor1": "justify-content, align-items, and align-content",
+ "Distractor2": "flex-direction, flex-wrap, and flex-flow",
+ "Distractor3": "flex-direction, order, and flex-flow"
+ },
+ {
+ "Question": "Which CSS property is used to represent the transparency of an element?",
+ "Difficulty": "easy",
+ "Answer": "Opacity",
+ "Distractor1": "Dark",
+ "Distractor2": "Transparent",
+ "Distractor3": "Hover"
+ },
+ {
+ "Question": "Which of the following CSS properties represents the order of flex items in a container?",
+ "Difficulty": "medium",
+ "Answer": "order",
+ "Distractor1": "float",
+ "Distractor2": "overflow",
+ "Distractor3": "int"
+ },
+ {
+ "Question": "In HTML, which of the following is the correct way for showing how to import an external script?",
+ "Difficulty": "easy",
+ "Answer": "",
+ "Distractor1": "",
+ "Distractor2": "",
+ "Distractor3": ""
+ },
+ {
+ "Question": "In HTML, which element is used to insert a favicon?",
+ "Difficulty": "medium",
+ "Answer": "link element",
+ "Distractor1": "fav element",
+ "Distractor2": "favicon element",
+ "Distractor3": "icon element"
+ },
+ {
+ "Question": "Which of the following is the correct way of creating an anchor element in HTML?",
+ "Difficulty": "easy",
+ "Answer": " freeCodeCamp ",
+ "Distractor1": "www.freecodecamp.org ",
+ "Distractor2": "",
+ "Distractor3": " "
+ },
+ {
+ "Question": "What is meant by an empty tag in HTML?",
+ "Difficulty": "medium",
+ "Answer": "An empty tag doesn't require a closing tag",
+ "Distractor1": "There is no such concept of empty tag in HTML",
+ "Distractor2": "An empty tag cannot having any content within it",
+ "Distractor3": "None of these"
+ },
+ {
+ "Question": "Which HTML element is used to 'link' to a 3rd party JavaScript library and make it available on your page?",
+ "Difficulty": "medium",
+ "Answer": "