Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
esthertester-git committed Oct 17, 2023
1 parent 94727d7 commit 3bbafd9
Show file tree
Hide file tree
Showing 3 changed files with 152 additions and 19 deletions.
33 changes: 14 additions & 19 deletions Quiz1_Master/js/slickQuiz-config.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,9 @@

var quizJSON = {
"info": {
"name": "A great test of your knowledge!!",
"main": "<p>Ha, Ha! Think you're smart enough to be on Jeopardy? Find out with this super crazy knowledge quiz!</p>",
"results": "<h5>Learn More</h5><p>Etiam scelerisque, nunc ac egestas consequat, odio nibh euismod nulla, eget auctor orci nibh vel nisi. Aliquam erat volutpat. Mauris vel neque sit amet nunc gravida congue sed sit amet purus.</p>",
"level1": "Jeopardy Ready",
"level2": "Jeopardy Contender",
"level3": "Jeopardy Amateur",
"level4": "Jeopardy Newb",
"level5": "Stay in school, kid..." // no comma here
"name": "KPI Quiz",
"main": "<p>Check your KPI knowledge . If you have questions about these concepts, we recommend reviewing the material provided and speaking to your Startup Coach to discuss any challenges or concepts that you require a deeper understanding of.</p>",
"results": "<h5>Learn More</h5><p>Etiam scelerisque, nunc ac egestas consequat, odio nibh euismod nulla, eget auctor orci nibh vel nisi. Aliquam erat volutpat. Mauris vel neque sit amet nunc gravida congue sed sit amet purus.</p>" // no comma here
},
"questions": [
{ // Question 1 - Multiple Choice, Single True Answer
Expand All @@ -21,8 +16,8 @@ var quizJSON = {
{"option": "Key Predictor Index", "correct": false},
{"option": "Key Performance Indicator", "correct": true} // no comma here
],
"correct": "<p><span>That's right!</span> correct answer text goes here</p>",
"incorrect": "<p><span>Sorry.</span> incorrect answer text goes here</p>" // no comma here
"correct": "<p>That's right!</p>",
"incorrect": "<p><span>Incorrect.</span> KIP stands for Key Performance Indicator.</p>" // no comma here
},
{ // Question 2 - Multiple Choice, Single True Answer
"q": "What is a KPI?",
Expand All @@ -32,28 +27,28 @@ var quizJSON = {
{"option": "A measurable value for tracking business goals", "correct": true},
{"option": "A look back at all the previous year's objectives", "correct": false} // no comma here
],
"correct": "<p><span>That's right!</span> correct answer text goes here</p>",
"incorrect": "<p><span>Sorry.</span> incorrect answer text goes here</p>" // no comma here
"correct": "<p>That's right!</p>",
"incorrect": "<p><span>Incorrect.</span> A KPI is a measurable value for tracking business goals.</p>" // no comma here
},
{ // Question 3 - Multiple Choice, Single True Answer
"q": "Which of the following refers to a KPI that focuses on past performance?",
"a": [
{"option": "Lagging indicator", "correct": true},
{"option": "Leading indicator", "correct": false},
{"option": "Leaning indicator", "correct": false},
{"option": "Lagging indicator", "correct": true},
{"option": "None of the above", "correct": false} // no comma here
],
"correct": "<p><span>That's right!</span> correct answer text goes here</p>",
"incorrect": "<p><span>Sorry.</span> incorrect answer text goes here</p>" // no comma here
"correct": "<p>That's right!</p>",
"incorrect": "<p><span>Incorrect.</span> Lagging indicator focus on past performance.</p>" // no comma here
},
{ // Question 4 - Multiple Choice, Single True Answer
"q": "KPIs measure financial and non-financial metrics?",
"a": [
{"option": "True", "correct": true},
{"option": "False", "correct": false} // no comma here
],
"correct": "<p><span>That's right!</span> correct answer text goes here</p>",
"incorrect": "<p><span>Sorry.</span> incorrect answer text goes here</p>" // no comma here
"correct": "<p>That's right!</p>",
"incorrect": "<p><span>Incorrect.</span> KPIs are a measure financial and non-financial metrics.</p>" // no comma here
},
{ // Question 5 - Multiple Choice, Single True Answer
"q": "Which of the following is not a KPI?",
Expand All @@ -64,8 +59,8 @@ var quizJSON = {
{"option": "Share Rate (Shares or ReTweets)", "correct": false},
{"option": "They are all KPIs", "correct": true} // no comma here
],
"correct": "<p><span>That's right!</span> correct answer text goes here</p>",
"incorrect": "<p><span>Sorry.</span> incorrect answer text goes here</p>" // no comma here
"correct": "<p>That's right!</p>",
"incorrect": "<p><span>Incorrect.</span> They are all KPIs.</p>" // no comma here
} // no comma here
]
};
66 changes: 66 additions & 0 deletions Quiz1_Master/js/slickQuiz-config2.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,66 @@
// Setup your quiz text and questions here

// NOTE: pay attention to commas, IE struggles with those bad boys

var quizJSON = {
"info": {
"name": "Quiz #2",
"main": "<p>Check your KPI knowledge . If you have questions about these concepts, we recommend reviewing the material provided and speaking to your Startup Coach to discuss any challenges or concepts that you require a deeper understanding of.</p>",
"results": "<h5>Learn More</h5><p>Etiam scelerisque, nunc ac egestas consequat, odio nibh euismod nulla, eget auctor orci nibh vel nisi. Aliquam erat volutpat. Mauris vel neque sit amet nunc gravida congue sed sit amet purus.</p>" // no comma here
},
"questions": [
{ // Question 1 - Multiple Choice, Single True Answer
"q": "What does the acronym KPI stand for?",
"a": [
{"option": "Key Predictive Indicator", "correct": false},
{"option": "Key Predictor Index", "correct": false},
{"option": "Key Performance Indicator", "correct": true} // no comma here
],
"correct": "<p>That's right!</p>",
"incorrect": "<p><span>Incorrect.</span> KIP stands for Key Performance Indicator.</p>" // no comma here
},
{ // Question 2 - Multiple Choice, Single True Answer
"q": "What is a KPI?",
"a": [
{"option": "A way to assess employee behaviour", "correct": false},
{"option": "A synopsis of a business' digital marketing", "correct": false},
{"option": "A measurable value for tracking business goals", "correct": true},
{"option": "A look back at all the previous year's objectives", "correct": false} // no comma here
],
"correct": "<p>That's right!</p>",
"incorrect": "<p><span>Incorrect.</span> A KPI is a measurable value for tracking business goals.</p>" // no comma here
},
{ // Question 3 - Multiple Choice, Single True Answer
"q": "Which of the following refers to a KPI that focuses on past performance?",
"a": [
{"option": "Lagging indicator", "correct": true},
{"option": "Leading indicator", "correct": false},
{"option": "Leaning indicator", "correct": false},
{"option": "None of the above", "correct": false} // no comma here
],
"correct": "<p>That's right!</p>",
"incorrect": "<p><span>Incorrect.</span> Lagging indicator focus on past performance.</p>" // no comma here
},
{ // Question 4 - Multiple Choice, Single True Answer
"q": "KPIs measure financial and non-financial metrics?",
"a": [
{"option": "True", "correct": true},
{"option": "False", "correct": false} // no comma here
],
"correct": "<p>That's right!</p>",
"incorrect": "<p><span>Incorrect.</span> KPIs are a measure financial and non-financial metrics.</p>" // no comma here
},
{ // Question 5 - Multiple Choice, Single True Answer
"q": "Which of the following is not a KPI?",
"a": [
{"option": "Cash Flow", "correct": false},
{"option": "Customer Complaints", "correct": false},
{"option": "Projects on Budget", "correct": false},
{"option": "Share Rate (Shares or ReTweets)", "correct": false},
{"option": "They are all KPIs", "correct": true} // no comma here
],
"correct": "<p>That's right!</p>",
"incorrect": "<p><span>Incorrect.</span> They are all KPIs.</p>" // no comma here
} // no comma here
]
};
72 changes: 72 additions & 0 deletions Quiz1_Master/js/slickQuiz-config_orig.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,72 @@
// Setup your quiz text and questions here

// NOTE: pay attention to commas, IE struggles with those bad boys

var quizJSON = {
"info": {
"name": "A great test of your knowledge!!",
"main": "<p>Ha, Ha! Think you're smart enough to be on Jeopardy? Find out with this super crazy knowledge quiz!</p>",
"results": "<h5>Learn More</h5><p>Etiam scelerisque, nunc ac egestas consequat, odio nibh euismod nulla, eget auctor orci nibh vel nisi. Aliquam erat volutpat. Mauris vel neque sit amet nunc gravida congue sed sit amet purus.</p>",
"level1": "Jeopardy Ready",
"level2": "Jeopardy Contender",
"level3": "Jeopardy Amateur",
"level4": "Jeopardy Newb",
"level5": "Stay in school, kid..." // no comma here
},
"questions": [
{ // Question 1 - Multiple Choice, Single True Answer
"q": "What number is the letter A in the English alphabet?",
"a": [
{"option": "8", "correct": false},
{"option": "14", "correct": false},
{"option": "1", "correct": true},
{"option": "23", "correct": false} // no comma here
],
"correct": "<p><span>That's right!</span> The letter A is the first letter in the alphabet!</p>",
"incorrect": "<p><span>Uhh no.</span> It's the first letter of the alphabet. Did you actually <em>go</em> to kindergarden?</p>" // no comma here
},
{ // Question 2 - Multiple Choice, Multiple True Answers, Select Any
"q": "Which of the following best represents your preferred breakfast?",
"a": [
{"option": "Bacon and eggs", "correct": false},
{"option": "Fruit, oatmeal, and yogurt", "correct": true},
{"option": "Leftover pizza", "correct": false},
{"option": "Eggs, fruit, toast, and milk", "correct": true} // no comma here
],
"select_any": true,
"correct": "<p><span>Nice!</span> Your cholestoral level is probably doing alright.</p>",
"incorrect": "<p><span>Hmmm.</span> You might want to reconsider your options.</p>" // no comma here
},
{ // Question 3 - Multiple Choice, Multiple True Answers, Select All
"q": "Where are you right now? Select ALL that apply.",
"a": [
{"option": "Planet Earth", "correct": true},
{"option": "Pluto", "correct": false},
{"option": "At a computing device", "correct": true},
{"option": "The Milky Way", "correct": true} // no comma here
],
"correct": "<p><span>Brilliant!</span> You're seriously a genius, (wo)man.</p>",
"incorrect": "<p><span>Not Quite.</span> You're actually on Planet Earth, in The Milky Way, At a computer. But nice try.</p>" // no comma here
},
{ // Question 4
"q": "How many inches of rain does Michigan get on average per year?",
"a": [
{"option": "149", "correct": false},
{"option": "32", "correct": true},
{"option": "3", "correct": false},
{"option": "1291", "correct": false} // no comma here
],
"correct": "<p><span>Holy bananas!</span> I didn't actually expect you to know that! Correct!</p>",
"incorrect": "<p><span>Fail.</span> Sorry. You lose. It actually rains approximately 32 inches a year in Michigan.</p>" // no comma here
},
{ // Question 5
"q": "Is Earth bigger than a basketball?",
"a": [
{"option": "Yes", "correct": true},
{"option": "No", "correct": false} // no comma here
],
"correct": "<p><span>Good Job!</span> You must be very observant!</p>",
"incorrect": "<p><span>ERRRR!</span> What planet Earth are <em>you</em> living on?!?</p>" // no comma here
} // no comma here
]
};

0 comments on commit 3bbafd9

Please sign in to comment.