From 764ce644faee4946e30dc4d0bbcc306e00884b3e Mon Sep 17 00:00:00 2001 From: DaehunGwak Date: Thu, 31 Dec 2020 03:03:52 +0900 Subject: [PATCH 01/16] Update questions data using computed When I click another language option in quiz component, the quiz sentence is not changed to another language. So I refactor questions 'data' to 'computed' --- quiz-app/src/components/Quiz.vue | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/quiz-app/src/components/Quiz.vue b/quiz-app/src/components/Quiz.vue index 14185123..f1f504ea 100644 --- a/quiz-app/src/components/Quiz.vue +++ b/quiz-app/src/components/Quiz.vue @@ -28,15 +28,20 @@ import messages from "@/assets/translations"; export default { + name: "Quiz", data() { return { currentQuestion: 0, complete: false, error: false, route: "", - questions: this.$t("quizzes"), }; }, + computed: { + questions() { + return this.$t("quizzes"); + } + }, i18n: { messages }, methods: { From a217bded9292de610085a06e6c5811d2f61ed890 Mon Sep 17 00:00:00 2001 From: DaehunGwak Date: Thu, 31 Dec 2020 03:13:39 +0900 Subject: [PATCH 02/16] Refactor home component using v-for Translation json file has 'title' and 'id' fields each quiz. So refactor using this fields. --- quiz-app/src/views/Home.vue | 91 +++++++++---------------------------- 1 file changed, 21 insertions(+), 70 deletions(-) diff --git a/quiz-app/src/views/Home.vue b/quiz-app/src/views/Home.vue index 8cff4d55..01ce25cc 100644 --- a/quiz-app/src/views/Home.vue +++ b/quiz-app/src/views/Home.vue @@ -1,75 +1,26 @@ + \ No newline at end of file From cd709a8602f1223d02cbed9670d340838be8682f Mon Sep 17 00:00:00 2001 From: Jen Looper Date: Wed, 30 Dec 2020 16:34:51 -0500 Subject: [PATCH 03/16] removing extraneous brackets in quiz --- .../1-intro-to-html/.github/pre-lecture-quiz.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/3-terrarium/1-intro-to-html/.github/pre-lecture-quiz.md b/3-terrarium/1-intro-to-html/.github/pre-lecture-quiz.md index feb8ab0b..34256529 100644 --- a/3-terrarium/1-intro-to-html/.github/pre-lecture-quiz.md +++ b/3-terrarium/1-intro-to-html/.github/pre-lecture-quiz.md @@ -4,16 +4,16 @@ Complete this quiz in class 1. HTML stands for 'HyperText Mockup Language' -- [ ] [true] -- [ ] [false] +- [ ] true +- [ ] false 2. All HTML tags need both opening and closing tags -- [ ] [true] -- [ ] [false] +- [ ] true +- [ ] false 3. Using semantic markup is most important for -- [ ] [code readability] -- [ ] [screen readers] -- [ ] [maintenance] \ No newline at end of file +- [ ] code readability +- [ ] screen readers +- [ ] maintenance From aad72a3823ae7bedbe91dcb1d7afcdefa1586243 Mon Sep 17 00:00:00 2001 From: Jen Looper Date: Wed, 30 Dec 2020 16:37:19 -0500 Subject: [PATCH 04/16] removing extraneous brackets from quiz --- .../.github/post-lecture-quiz.md | 22 +++++++++---------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/3-terrarium/1-intro-to-html/.github/post-lecture-quiz.md b/3-terrarium/1-intro-to-html/.github/post-lecture-quiz.md index 34304f86..36169b05 100644 --- a/3-terrarium/1-intro-to-html/.github/post-lecture-quiz.md +++ b/3-terrarium/1-intro-to-html/.github/post-lecture-quiz.md @@ -1,17 +1,17 @@ *Complete this quiz after the lesson by checking one answer per question.* -1. [Spans and Divs are interchangeable] +1. Spans and Divs are interchangeable -- [ ] [true] -- [ ] [false] +- [ ] true +- [ ] false -2. [The head of an HTML doc can contain:] +2. The head of an HTML doc can contain: -- [ ] [the title tag] -- [ ] [metadata] -- [ ] [all the above] +- [ ] the title tag +- [ ] metadata +- [ ] all the above -3. [You can't use deprecated tags in your markup] -- [ ] [true] -- [ ] [false] -- [ ] [false, but they have been deprecated for good reason] \ No newline at end of file +3. You can't use deprecated tags in your markup +- [ ] true +- [ ] false +- [ ] false, but they have been deprecated for good reason From 3edf065f1bb8e5ee1f2f0bb8dba771548f262b29 Mon Sep 17 00:00:00 2001 From: Jen Looper Date: Wed, 30 Dec 2020 16:40:02 -0500 Subject: [PATCH 05/16] removing extraneous brackets from quiz --- .../2-intro-to-css/.github/pre-lecture-quiz.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/3-terrarium/2-intro-to-css/.github/pre-lecture-quiz.md b/3-terrarium/2-intro-to-css/.github/pre-lecture-quiz.md index 39d1ba56..29fa3371 100644 --- a/3-terrarium/2-intro-to-css/.github/pre-lecture-quiz.md +++ b/3-terrarium/2-intro-to-css/.github/pre-lecture-quiz.md @@ -4,15 +4,15 @@ Complete this quiz in class 1. HTML elements must have either a class or an id in order to be styled -- [ ] [true] -- [ ] [false] +- [ ] true +- [ ] false 2. CSS stands for 'Complete Style Sheets' -- [ ] [true] -- [ ] [false] +- [ ] true +- [ ] false 3. CSS can be used to create animations -- [ ] [true] -- [ ] [false] \ No newline at end of file +- [ ] true +- [ ] false From 4ae6ba331d70a34bde42001c38fffcc7a09a0643 Mon Sep 17 00:00:00 2001 From: Jen Looper Date: Wed, 30 Dec 2020 16:41:44 -0500 Subject: [PATCH 06/16] removing extraneous brackets from quiz --- .../.github/post-lecture-quiz.md | 22 +++++++++---------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/3-terrarium/2-intro-to-css/.github/post-lecture-quiz.md b/3-terrarium/2-intro-to-css/.github/post-lecture-quiz.md index 1ed542d9..9303572d 100644 --- a/3-terrarium/2-intro-to-css/.github/post-lecture-quiz.md +++ b/3-terrarium/2-intro-to-css/.github/post-lecture-quiz.md @@ -4,18 +4,18 @@ You will need to reference the following learn module to complete the quiz: [Work with CSS](https://docs.microsoft.com/en-us/learn/modules/build-simple-website/4-css-basics) -1. [You can write CSS directly in the head section of your HTML file] +1. You can write CSS directly in the head section of your HTML file -- [ ] [true] -- [ ] [false] +- [ ] true +- [ ] false -1. [It's always necessary to include CSS in your app] +1. It's always necessary to include CSS in your app -- [ ] [true] -- [ ] [false] -- [ ] [false, but if you want it to look good you need CSS] +- [ ] true +- [ ] false +- [ ] false, but if you want it to look good you need CSS -1. [Which browser tool can be used to inspect CSS?] -- [ ] [Elements] -- [ ] [Styles] -- [ ] [Network] \ No newline at end of file +1. Which browser tool can be used to inspect CSS? +- [ ] Elements +- [ ] Styles +- [ ] Network From 72c2e95659fba80d8b71089d6cfe3ec995032f7e Mon Sep 17 00:00:00 2001 From: Jen Looper Date: Wed, 30 Dec 2020 16:47:26 -0500 Subject: [PATCH 07/16] removing extraneous brackets from quiz --- .../.github/pre-lecture-quiz.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/3-terrarium/3-intro-to-DOM-and-closures/.github/pre-lecture-quiz.md b/3-terrarium/3-intro-to-DOM-and-closures/.github/pre-lecture-quiz.md index 16fef69a..7212a2e8 100644 --- a/3-terrarium/3-intro-to-DOM-and-closures/.github/pre-lecture-quiz.md +++ b/3-terrarium/3-intro-to-DOM-and-closures/.github/pre-lecture-quiz.md @@ -4,15 +4,15 @@ Complete this quiz in class 1. The DOM stands for 'Document Object Management' -- [ ] [true] -- [ ] [false] +- [ ] true +- [ ] false 2. The DOM can be thought of as a tree -- [ ] [true] -- [ ] [false] +- [ ] true +- [ ] false 3. Using the Web API, you can manipulate the DOM -- [ ] [true] -- [ ] [false] \ No newline at end of file +- [ ] true +- [ ] false From d28d1ce524d058f2821a627439a2d86eed83f7b3 Mon Sep 17 00:00:00 2001 From: dirk <818141+ddiebel@users.noreply.github.com> Date: Wed, 30 Dec 2020 22:45:05 +0100 Subject: [PATCH 08/16] fix several broken image-links --- 3-terrarium/translations/README.es.md | 2 +- 5-browser-extension/translations/README.es.md | 2 +- 6-space-game/translations/README.es.md | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/3-terrarium/translations/README.es.md b/3-terrarium/translations/README.es.md index 5f5558c6..13691012 100644 --- a/3-terrarium/translations/README.es.md +++ b/3-terrarium/translations/README.es.md @@ -2,7 +2,7 @@ Una pequeña meditación de código de arrastrar y soltar. Con un poco de HTML, JS y CSS, puede crear una interfaz web, darle estilo y agregar una interacción. -![mi terrario](screenshot_gray.png) +![mi terrario](../images/screenshot_gray.png) # Lessons diff --git a/5-browser-extension/translations/README.es.md b/5-browser-extension/translations/README.es.md index 4234139b..38600e89 100644 --- a/5-browser-extension/translations/README.es.md +++ b/5-browser-extension/translations/README.es.md @@ -14,7 +14,7 @@ Esta extensión puede ser llamada ad hoc por un usuario una vez que se ingresa u ### Créditos -![a green browser extension](extension-screenshot.png) +![a green browser extension](../extension-screenshot.png) ## Créditos diff --git a/6-space-game/translations/README.es.md b/6-space-game/translations/README.es.md index 1ed1c433..ac4bf3b6 100644 --- a/6-space-game/translations/README.es.md +++ b/6-space-game/translations/README.es.md @@ -4,7 +4,7 @@ Un juego espacial para enseñar los fundamentos de JavaScript más avanzados En esta lección aprenderás a construir tu propio juego espacial. Si alguna vez has jugado al juego "Space Invaders", este juego tiene la misma idea: dirigir una nave espacial y disparar a los monstruos que vienen desde arriba. Así es como se verá el juego terminado: -![Finished game](pewpew.gif) +![Finished game](../images/pewpew.gif) En estas seis lecciones aprenderá lo siguiente: @@ -23,4 +23,4 @@ En estas seis lecciones aprenderá lo siguiente: - [Mover elementos por la pantalla](moving-elements-around/README.md) - [Detección de colisiones](collision-detection/README.md) - [Manteniendo la puntuación](keeping-score/README.md) - - [Finalizar y reiniciar el juego](end-condition/README.md) \ No newline at end of file + - [Finalizar y reiniciar el juego](end-condition/README.md) From 40e146233940dfaefc8bb60c8b7247591802ba2c Mon Sep 17 00:00:00 2001 From: Jen Looper Date: Wed, 30 Dec 2020 16:49:26 -0500 Subject: [PATCH 09/16] removing extraneous brackets from quiz --- .../.github/post-lecture-quiz.md | 22 +++++++++---------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/3-terrarium/3-intro-to-DOM-and-closures/.github/post-lecture-quiz.md b/3-terrarium/3-intro-to-DOM-and-closures/.github/post-lecture-quiz.md index 932f55e2..5fc1e548 100644 --- a/3-terrarium/3-intro-to-DOM-and-closures/.github/post-lecture-quiz.md +++ b/3-terrarium/3-intro-to-DOM-and-closures/.github/post-lecture-quiz.md @@ -1,18 +1,18 @@ *Complete this quiz after the lesson by checking one answer per question.* -1. [The DOM is a model to represent a document on the web] +1. The DOM is a model to represent a document on the web -- [ ] [true] -- [ ] [false] +- [ ] true +- [ ] false -2. [Use JavaScript closures to perform the following:] +2. Use JavaScript closures to perform the following: -- [ ] [write functions within functions] -- [ ] [enclose the DOM] -- [ ] [close script blocks] +- [ ] write functions within functions +- [ ] enclose the DOM +- [ ] close script blocks -3. [Fill in the blank: Closures are useful when one or more functions need to access an outer function's ______] +3. Fill in the blank: Closures are useful when one or more functions need to access an outer function's... -- [ ] [arrays] -- [ ] [scope] -- [ ] [functions] \ No newline at end of file +- [ ] arrays +- [ ] scope +- [ ] functions From 96d31c764e687ed88bf30721c46781a1c1b8803b Mon Sep 17 00:00:00 2001 From: Jen Looper Date: Wed, 30 Dec 2020 16:51:38 -0500 Subject: [PATCH 10/16] quizzes through terrarium project --- quiz-app/src/assets/translations/en.json | 504 ++++++++++------------- 1 file changed, 224 insertions(+), 280 deletions(-) diff --git a/quiz-app/src/assets/translations/en.json b/quiz-app/src/assets/translations/en.json index 3d586483..55e05a8a 100644 --- a/quiz-app/src/assets/translations/en.json +++ b/quiz-app/src/assets/translations/en.json @@ -429,53 +429,49 @@ "title": "Lesson 5: Pre-Lecture Quiz", "quiz": [ { - "questionText": "", + "questionText": "What's an argument?", "answerOptions": [ { - "answerText": "", - "isCorrect": "" + "answerText": "It's something you declare in the function definition", + "isCorrect": "false" }, { - "answerText": "", - "isCorrect": "" + "answerText": "It's something you pass into a function at invocation time", + "isCorrect": "true" }, { - "answerText": "", - "isCorrect": "" + "answerText": "It's something you have with people you know", + "isCorrect": "false" } ] }, { - "questionText": "", + "questionText": "A function must return something", "answerOptions": [ { - "answerText": "", - "isCorrect": "" - }, - { - "answerText": "", - "isCorrect": "" + "answerText": "true", + "isCorrect": "false" }, { - "answerText": "", - "isCorrect": "" + "answerText": "false", + "isCorrect": "true" } ] }, { - "questionText": "", + "questionText": "You can name a function anything", "answerOptions": [ { - "answerText": "", - "isCorrect": "" + "answerText": "true", + "isCorrect": "false" }, { - "answerText": "", - "isCorrect": "" + "answerText": "false", + "isCorrect": "false" }, { - "answerText": "", - "isCorrect": "" + "answerText": "true, but it should be a descriptive name", + "isCorrect": "true" } ] } @@ -486,53 +482,49 @@ "title": "Lesson 5: Post-Lecture Quiz", "quiz": [ { - "questionText": "", + "questionText": "Arguments must be provided for all parameters in a function", "answerOptions": [ { - "answerText": "", - "isCorrect": "" - }, - { - "answerText": "", - "isCorrect": "" + "answerText": "true", + "isCorrect": "false" }, { - "answerText": "", - "isCorrect": "" + "answerText": "false", + "isCorrect": "true" } ] }, { - "questionText": "", + "questionText": "What does a default value do?", "answerOptions": [ { - "answerText": "", - "isCorrect": "" + "answerText": "Sets a correct value", + "isCorrect": "false" }, { - "answerText": "", - "isCorrect": "" + "answerText": "Gives a starter value for a parameter so your code still behaves if you omit an argument for it", + "isCorrect": "true" }, { - "answerText": "", - "isCorrect": "" + "answerText": "Has no utility", + "isCorrect": "false" } ] }, { - "questionText": "", + "questionText": "A fat arrow function allows you to", "answerOptions": [ { - "answerText": "", - "isCorrect": "" + "answerText": "Create heavy functions", + "isCorrect": "false" }, { - "answerText": "", - "isCorrect": "" + "answerText": "Omit the function keyword", + "isCorrect": "true" }, { - "answerText": "", - "isCorrect": "" + "answerText": "Create an anonymous function", + "isCorrect": "false" } ] } @@ -543,53 +535,53 @@ "title": "Lesson 6: Pre-Lecture Quiz", "quiz": [ { - "questionText": "", + "questionText": "The following operator == is called", "answerOptions": [ { - "answerText": "", - "isCorrect": "" + "answerText": "Equality", + "isCorrect": "true" }, { - "answerText": "", - "isCorrect": "" + "answerText": "Strict equality", + "isCorrect": "false" }, { - "answerText": "", - "isCorrect": "" + "answerText": "Assignment", + "isCorrect": "false" } ] }, { - "questionText": "", + "questionText": "A comparison in JavaScript returns what type?", "answerOptions": [ { - "answerText": "", - "isCorrect": "" + "answerText": "boolean", + "isCorrect": "true" }, { - "answerText": "", - "isCorrect": "" + "answerText": "null", + "isCorrect": "false" }, { - "answerText": "", - "isCorrect": "" + "answerText": "string", + "isCorrect": "false" } ] }, { - "questionText": "", + "questionText": "The ! symbol in JavaScript means:", "answerOptions": [ { - "answerText": "", - "isCorrect": "" + "answerText": "Logical Not", + "isCorrect": "true" }, { - "answerText": "", - "isCorrect": "" + "answerText": "Important", + "isCorrect": "false" }, { - "answerText": "", - "isCorrect": "" + "answerText": "Equals", + "isCorrect": "false" } ] } @@ -600,53 +592,53 @@ "title": "Lesson 6: Post-Lecture Quiz", "quiz": [ { - "questionText": "", + "questionText": "What would the following code return: '1' == 1", "answerOptions": [ { - "answerText": "", - "isCorrect": "" + "answerText": "true", + "isCorrect": "true" }, { - "answerText": "", - "isCorrect": "" + "answerText": "false", + "isCorrect": "false" }, { - "answerText": "", - "isCorrect": "" + "answerText": "null", + "isCorrect": "false" } ] }, { - "questionText": "", + "questionText": "What would the following code return: '1' === 1", "answerOptions": [ { - "answerText": "", - "isCorrect": "" + "answerText": "true", + "isCorrect": "false" }, { - "answerText": "", - "isCorrect": "" + "answerText": "false", + "isCorrect": "true" }, { - "answerText": "", - "isCorrect": "" + "answerText": "null", + "isCorrect": "false" } ] }, { - "questionText": "", + "questionText": "Choose the correct operator to express 'or' logic", "answerOptions": [ { - "answerText": "", - "isCorrect": "" + "answerText": "a | b", + "isCorrect": "false" }, { - "answerText": "", - "isCorrect": "" + "answerText": "a || b", + "isCorrect": "true" }, { - "answerText": "", - "isCorrect": "" + "answerText": "a or b", + "isCorrect": "false" } ] } @@ -657,53 +649,53 @@ "title": "Lesson 7: Pre-Lecture Quiz", "quiz": [ { - "questionText": "", + "questionText": "To refer to a specific item in an array, you would use a", "answerOptions": [ { - "answerText": "", - "isCorrect": "" + "answerText": "square bracket []", + "isCorrect": "false" }, { - "answerText": "", - "isCorrect": "" + "answerText": "index", + "isCorrect": "true" }, { - "answerText": "", - "isCorrect": "" + "answerText": "curly braces {}", + "isCorrect": "false" } ] }, { - "questionText": "", + "questionText": "How do you get the number of items in an array?", "answerOptions": [ { - "answerText": "", - "isCorrect": "" + "answerText": "The 'len(array)' method", + "isCorrect": "false" }, { - "answerText": "", - "isCorrect": "" + "answerText": "The property size on the array", + "isCorrect": "false" }, { - "answerText": "", - "isCorrect": "" + "answerText": "The length property on the array", + "isCorrect": "true" } ] }, { - "questionText": "", + "questionText": "In JavaScript, indexes start at", "answerOptions": [ { - "answerText": "", - "isCorrect": "" + "answerText": "0", + "isCorrect": "true" }, { - "answerText": "", - "isCorrect": "" + "answerText": "1", + "isCorrect": "false" }, { - "answerText": "", - "isCorrect": "" + "answerText": "2", + "isCorrect": "false" } ] } @@ -714,53 +706,49 @@ "title": "Lesson 7: Post-Lecture Quiz", "quiz": [ { - "questionText": "", + "questionText": "What part of a for-loop would you need to modify to increment its iteration by 5?", "answerOptions": [ { - "answerText": "", - "isCorrect": "" + "answerText": "condition", + "isCorrect": "true" }, { - "answerText": "", - "isCorrect": "" + "answerText": "counter", + "isCorrect": "false" }, { - "answerText": "", - "isCorrect": "" + "answerText": "iteration-expression", + "isCorrect": "false" } ] }, { - "questionText": "", + "questionText": "What's the difference between a while and a for-loop", "answerOptions": [ { - "answerText": "", - "isCorrect": "" + "answerText": "A for-loop has a counter and iteration-expression, where while only has a condition", + "isCorrect": "true" }, { - "answerText": "", - "isCorrect": "" + "answerText": "A while has a counter and iteration-expression where for-loop only has a condition", + "isCorrect": "false" }, { - "answerText": "", - "isCorrect": "" + "answerText": "They are the same, just an alias for one another", + "isCorrect": "false" } ] }, { - "questionText": "", + "questionText": "Given the code for (let i=1; i < 5; i++), how many iterations will it perform?", "answerOptions": [ { - "answerText": "", - "isCorrect": "" - }, - { - "answerText": "", - "isCorrect": "" + "answerText": "5", + "isCorrect": "false" }, { - "answerText": "", - "isCorrect": "" + "answerText": "4", + "isCorrect": "true" } ] } @@ -771,53 +759,45 @@ "title": "Lesson 8: Pre-Lecture Quiz", "quiz": [ { - "questionText": "", + "questionText": "HTML stands for 'HyperText Mockup Language'", "answerOptions": [ { - "answerText": "", - "isCorrect": "" - }, - { - "answerText": "", - "isCorrect": "" + "answerText": "true", + "isCorrect": "false" }, { - "answerText": "", - "isCorrect": "" + "answerText": "false", + "isCorrect": "true" } ] }, { - "questionText": "", + "questionText": "All HTML tags need both opening and closing tags", "answerOptions": [ { - "answerText": "", - "isCorrect": "" - }, - { - "answerText": "", - "isCorrect": "" + "answerText": "true", + "isCorrect": "false" }, { - "answerText": "", - "isCorrect": "" + "answerText": "false", + "isCorrect": "true" } ] }, { - "questionText": "", + "questionText": "Using semantic markup is most important for", "answerOptions": [ { - "answerText": "", - "isCorrect": "" + "answerText": "code readability", + "isCorrect": "false" }, { - "answerText": "", - "isCorrect": "" + "answerText": "screen readers", + "isCorrect": "true" }, { - "answerText": "", - "isCorrect": "" + "answerText": "maintenance", + "isCorrect": "false" } ] } @@ -828,53 +808,49 @@ "title": "Lesson 8: Post-Lecture Quiz", "quiz": [ { - "questionText": "", + "questionText": "Spans and Divs are interchangeable", "answerOptions": [ { - "answerText": "", - "isCorrect": "" - }, - { - "answerText": "", - "isCorrect": "" + "answerText": "true", + "isCorrect": "false" }, { - "answerText": "", - "isCorrect": "" + "answerText": "false", + "isCorrect": "true" } ] }, { - "questionText": "", + "questionText": "The head of an HTML doc can contain:", "answerOptions": [ { - "answerText": "", - "isCorrect": "" + "answerText": "the title tag", + "isCorrect": "false" }, { - "answerText": "", - "isCorrect": "" + "answerText": "metadata", + "isCorrect": "false" }, { - "answerText": "", - "isCorrect": "" + "answerText": "all the above", + "isCorrect": "true" } ] }, { - "questionText": "", + "questionText": "You can't use deprecated tags in your markup", "answerOptions": [ { - "answerText": "", - "isCorrect": "" + "answerText": "true", + "isCorrect": "false" }, { - "answerText": "", - "isCorrect": "" + "answerText": "false", + "isCorrect": "false" }, { - "answerText": "", - "isCorrect": "" + "answerText": "false, but they have been deprecated for good reason", + "isCorrect": "true" } ] } @@ -885,53 +861,41 @@ "title": "Lesson 9: Pre-Lecture Quiz", "quiz": [ { - "questionText": "", + "questionText": "HTML elements must have either a class or an id in order to be styled", "answerOptions": [ { - "answerText": "", - "isCorrect": "" - }, - { - "answerText": "", - "isCorrect": "" + "answerText": "true", + "isCorrect": "false" }, { - "answerText": "", - "isCorrect": "" + "answerText": "false", + "isCorrect": "true" } ] }, { - "questionText": "", + "questionText": "CSS stands for 'Complete Style Sheets'", "answerOptions": [ { - "answerText": "", - "isCorrect": "" - }, - { - "answerText": "", - "isCorrect": "" + "answerText": "true", + "isCorrect": "false" }, { - "answerText": "", - "isCorrect": "" + "answerText": "false", + "isCorrect": "true" } ] }, { - "questionText": "", + "questionText": "CSS can be used to create animations", "answerOptions": [ { - "answerText": "", - "isCorrect": "" - }, - { - "answerText": "", - "isCorrect": "" + "answerText": "true", + "isCorrect": "true" }, { - "answerText": "", - "isCorrect": "" + "answerText": "false", + "isCorrect": "false" } ] } @@ -942,53 +906,49 @@ "title": "Lesson 9: Post-Lecture Quiz", "quiz": [ { - "questionText": "", + "questionText": "You can write CSS directly in the head section of your HTML file", "answerOptions": [ { - "answerText": "", - "isCorrect": "" - }, - { - "answerText": "", - "isCorrect": "" + "answerText": "true", + "isCorrect": "true" }, { - "answerText": "", - "isCorrect": "" + "answerText": "false", + "isCorrect": "false" } ] }, { - "questionText": "", + "questionText": "It's always necessary to include CSS in your app", "answerOptions": [ { - "answerText": "", - "isCorrect": "" + "answerText": "true", + "isCorrect": "false" }, { - "answerText": "", - "isCorrect": "" + "answerText": "false", + "isCorrect": "false" }, { - "answerText": "", - "isCorrect": "" + "answerText": "false, but if you want it to look good you probably need CSS", + "isCorrect": "true" } ] }, { - "questionText": "", + "questionText": "Which browser tool can be used to inspect CSS?", "answerOptions": [ { - "answerText": "", - "isCorrect": "" + "answerText": "Elements", + "isCorrect": "false" }, { - "answerText": "", - "isCorrect": "" + "answerText": "Styles", + "isCorrect": "true" }, { - "answerText": "", - "isCorrect": "" + "answerText": "Network", + "isCorrect": "false" } ] } @@ -999,53 +959,41 @@ "title": "Lesson 10: Pre-Lecture Quiz", "quiz": [ { - "questionText": "", + "questionText": "The DOM stands for 'Document Object Management'", "answerOptions": [ { - "answerText": "", - "isCorrect": "" - }, - { - "answerText": "", - "isCorrect": "" + "answerText": "true", + "isCorrect": "false" }, { - "answerText": "", - "isCorrect": "" + "answerText": "false", + "isCorrect": "true" } ] }, { - "questionText": "", + "questionText": "The DOM can be thought of as a tree", "answerOptions": [ { - "answerText": "", - "isCorrect": "" - }, - { - "answerText": "", - "isCorrect": "" + "answerText": "true", + "isCorrect": "true" }, { - "answerText": "", - "isCorrect": "" + "answerText": "false", + "isCorrect": "false" } ] }, { - "questionText": "", + "questionText": "Using the Web API, you can manipulate the DOM", "answerOptions": [ { - "answerText": "", - "isCorrect": "" - }, - { - "answerText": "", - "isCorrect": "" + "answerText": "true", + "isCorrect": "true" }, { - "answerText": "", - "isCorrect": "" + "answerText": "false", + "isCorrect": "false" } ] } @@ -1056,53 +1004,49 @@ "title": "Lesson 10: Post-Lecture Quiz", "quiz": [ { - "questionText": "", + "questionText": "The DOM is a model to represent a document on the web", "answerOptions": [ { - "answerText": "", - "isCorrect": "" - }, - { - "answerText": "", - "isCorrect": "" + "answerText": "true", + "isCorrect": "true" }, { - "answerText": "", - "isCorrect": "" + "answerText": "false", + "isCorrect": "false" } ] }, { - "questionText": "", + "questionText": "Use JavaScript closures to perform the following:", "answerOptions": [ { - "answerText": "", - "isCorrect": "" + "answerText": "write functions within functions", + "isCorrect": "true" }, { - "answerText": "", - "isCorrect": "" + "answerText": "enclose the DOM", + "isCorrect": "false" }, { - "answerText": "", - "isCorrect": "" + "answerText": "close script blocks", + "isCorrect": "false" } ] }, { - "questionText": "", + "questionText": "Fill in the blank: Closures are useful when one or more functions need to access an outer function's...", "answerOptions": [ { - "answerText": "", - "isCorrect": "" + "answerText": "arrays", + "isCorrect": "false" }, { - "answerText": "", - "isCorrect": "" + "answerText": "scope", + "isCorrect": "true" }, { - "answerText": "", - "isCorrect": "" + "answerText": "functions", + "isCorrect": "false" } ] } From da88a46c7b10d8aa597b1ea806b68d990332446a Mon Sep 17 00:00:00 2001 From: Jen Looper Date: Wed, 30 Dec 2020 17:02:34 -0500 Subject: [PATCH 11/16] edits to quiz in english --- quiz-app/src/assets/translations/en.json | 40 ++++++++++++------------ 1 file changed, 20 insertions(+), 20 deletions(-) diff --git a/quiz-app/src/assets/translations/en.json b/quiz-app/src/assets/translations/en.json index 55e05a8a..108c34c0 100644 --- a/quiz-app/src/assets/translations/en.json +++ b/quiz-app/src/assets/translations/en.json @@ -6,7 +6,7 @@ "quizzes": [ { "id": 1, - "title": "Lesson 1: Pre-Lecture Quiz", + "title": "Lesson 1 - Intro to Programming Languages: Pre-Lecture Quiz", "quiz": [ { "questionText": "A program can be created without the creator writing any code", @@ -59,7 +59,7 @@ }, { "id": 2, - "title": "Lesson 1: Post-Lecture Quiz", + "title": "Lesson 1 - Intro to Programming Languages: Post-Lecture Quiz", "quiz": [ { "questionText": "What language would you most likely use to create a website?", @@ -112,7 +112,7 @@ }, { "id": 3, - "title": "Lesson 2: Pre-Lecture Quiz", + "title": "Lesson 2 - Introduction to GitHub: Pre-Lecture Quiz", "quiz": [ { "questionText": "How do you create a Git repo?", @@ -169,7 +169,7 @@ }, { "id": 4, - "title": "Lesson 2: Post-Lecture Quiz", + "title": "Lesson 2 - Introduction to GitHub: Post-Lecture Quiz", "quiz": [ { "questionText": "A place to compare and discuss the differences introduced on a branch with reviews, comments, integrated tests, and more is:", @@ -226,7 +226,7 @@ }, { "id": 5, - "title": "Lesson 3: Pre-Lecture Quiz", + "title": "Lesson 3 - Creating Accessible Webpages: Pre-Lecture Quiz", "quiz": [ { "questionText": "An accessible web site can be checked in which browser tool", @@ -275,7 +275,7 @@ }, { "id": 6, - "title": "Lesson 3: Post-Lecture Quiz", + "title": "Lesson 3 - Creating Accessible Webpages: Post-Lecture Quiz", "quiz": [ { "questionText": "Lighthouse only checks for accessibility problems", @@ -324,7 +324,7 @@ }, { "id": 7, - "title": "Lesson 4: Pre-Lecture Quiz", + "title": "Lesson 4 - JavaScript Basics - Data Types: Pre-Lecture Quiz", "quiz": [ { "questionText": "Booleans are a data type you can use to test the length of a string", @@ -373,7 +373,7 @@ }, { "id": 8, - "title": "Lesson 4: Post-Lecture Quiz", + "title": "Lesson 4 - JavaScript Basics - Data Types: Post-Lecture Quiz", "quiz": [ { "questionText": "Constants are the same as let and var to declare variables except", @@ -426,7 +426,7 @@ }, { "id": 9, - "title": "Lesson 5: Pre-Lecture Quiz", + "title": "Lesson 5 - JavaScript Basics - Methods and Functions: Pre-Lecture Quiz", "quiz": [ { "questionText": "What's an argument?", @@ -479,7 +479,7 @@ }, { "id": 10, - "title": "Lesson 5: Post-Lecture Quiz", + "title": "Lesson 5 - JavaScript Basics - Methods and Functions: Post-Lecture Quiz", "quiz": [ { "questionText": "Arguments must be provided for all parameters in a function", @@ -532,7 +532,7 @@ }, { "id": 11, - "title": "Lesson 6: Pre-Lecture Quiz", + "title": "Lesson 6 - JavaScript Basics - Making Decisions: Pre-Lecture Quiz", "quiz": [ { "questionText": "The following operator == is called", @@ -589,7 +589,7 @@ }, { "id": 12, - "title": "Lesson 6: Post-Lecture Quiz", + "title": "Lesson 6 - JavaScript Basics - Making Decisions: Post-Lecture Quiz", "quiz": [ { "questionText": "What would the following code return: '1' == 1", @@ -646,7 +646,7 @@ }, { "id": 13, - "title": "Lesson 7: Pre-Lecture Quiz", + "title": "Lesson 7 - JavaScript Basics - Arrays and Loops: Pre-Lecture Quiz", "quiz": [ { "questionText": "To refer to a specific item in an array, you would use a", @@ -703,7 +703,7 @@ }, { "id": 14, - "title": "Lesson 7: Post-Lecture Quiz", + "title": "Lesson 7 - JavaScript Basics - Arrays and Loops: Post-Lecture Quiz", "quiz": [ { "questionText": "What part of a for-loop would you need to modify to increment its iteration by 5?", @@ -756,7 +756,7 @@ }, { "id": 15, - "title": "Lesson 8: Pre-Lecture Quiz", + "title": "Lesson 8 - Terrarium Project - Introduction to HTML: Pre-Lecture Quiz", "quiz": [ { "questionText": "HTML stands for 'HyperText Mockup Language'", @@ -805,7 +805,7 @@ }, { "id": 16, - "title": "Lesson 8: Post-Lecture Quiz", + "title": "Lesson 8 - Terrarium Project - Introduction to HTML: Post-Lecture Quiz", "quiz": [ { "questionText": "Spans and Divs are interchangeable", @@ -858,7 +858,7 @@ }, { "id": 17, - "title": "Lesson 9: Pre-Lecture Quiz", + "title": "Lesson 9 - Terrarium Project - Introduction to CSS: Pre-Lecture Quiz", "quiz": [ { "questionText": "HTML elements must have either a class or an id in order to be styled", @@ -903,7 +903,7 @@ }, { "id": 18, - "title": "Lesson 9: Post-Lecture Quiz", + "title": "Lesson 9 - Terrarium Project - Introduction to CSS: Post-Lecture Quiz", "quiz": [ { "questionText": "You can write CSS directly in the head section of your HTML file", @@ -956,7 +956,7 @@ }, { "id": 19, - "title": "Lesson 10: Pre-Lecture Quiz", + "title": "Lesson 10 - Terrarium Project - DOM Manipulation and a Closure: Pre-Lecture Quiz", "quiz": [ { "questionText": "The DOM stands for 'Document Object Management'", @@ -1001,7 +1001,7 @@ }, { "id": 20, - "title": "Lesson 10: Post-Lecture Quiz", + "title": "Lesson 10 - Terrarium Project - DOM Manipulation and a Closure: Post-Lecture Quiz", "quiz": [ { "questionText": "The DOM is a model to represent a document on the web", From 5c15446cf5fda9b07045c207223caa3504582047 Mon Sep 17 00:00:00 2001 From: Jen Looper Date: Wed, 30 Dec 2020 17:39:58 -0500 Subject: [PATCH 12/16] fixing numbering of quizzes --- quiz-app/src/assets/translations/en.json | 1376 +++++++++++++++++++++- 1 file changed, 1372 insertions(+), 4 deletions(-) diff --git a/quiz-app/src/assets/translations/en.json b/quiz-app/src/assets/translations/en.json index 108c34c0..c4691940 100644 --- a/quiz-app/src/assets/translations/en.json +++ b/quiz-app/src/assets/translations/en.json @@ -1054,7 +1054,7 @@ }, { "id": 21, - "title": "Lesson 11: Pre-Lecture Quiz", + "title": "Lesson 11 - Typing Game: Pre-Lecture Quiz", "quiz": [ { "questionText": "", @@ -1111,7 +1111,7 @@ }, { "id": 22, - "title": "Lesson 11: Post-Lecture Quiz", + "title": "Lesson 11 - Typing Game: Post-Lecture Quiz", "quiz": [ { "questionText": "", @@ -1168,7 +1168,7 @@ }, { "id": 23, - "title": "Lesson 12: Pre-Lecture Quiz", + "title": "Lesson 12 - Browser Extension Project - All about Browsers: Pre-Lecture Quiz", "quiz": [ { "questionText": "", @@ -1225,7 +1225,1375 @@ }, { "id": 24, - "title": "Lesson 12: Post-Lecture Quiz", + "title": "Lesson 12 - Browser Extension Project - All about Browsers: Post-Lecture Quiz", + "quiz": [ + { + "questionText": "", + "answerOptions": [ + { + "answerText": "", + "isCorrect": "" + }, + { + "answerText": "", + "isCorrect": "" + }, + { + "answerText": "", + "isCorrect": "" + } + ] + }, + { + "questionText": "", + "answerOptions": [ + { + "answerText": "", + "isCorrect": "" + }, + { + "answerText": "", + "isCorrect": "" + }, + { + "answerText": "", + "isCorrect": "" + } + ] + }, + { + "questionText": "", + "answerOptions": [ + { + "answerText": "", + "isCorrect": "" + }, + { + "answerText": "", + "isCorrect": "" + }, + { + "answerText": "", + "isCorrect": "" + } + ] + } + ] + }, + { + "id": 25, + "title": "Lesson 13 - Browser Extension Project - Call an API, use Local Storage: Pre-Lecture Quiz", + "quiz": [ + { + "questionText": "", + "answerOptions": [ + { + "answerText": "", + "isCorrect": "" + }, + { + "answerText": "", + "isCorrect": "" + }, + { + "answerText": "", + "isCorrect": "" + } + ] + }, + { + "questionText": "", + "answerOptions": [ + { + "answerText": "", + "isCorrect": "" + }, + { + "answerText": "", + "isCorrect": "" + }, + { + "answerText": "", + "isCorrect": "" + } + ] + }, + { + "questionText": "", + "answerOptions": [ + { + "answerText": "", + "isCorrect": "" + }, + { + "answerText": "", + "isCorrect": "" + }, + { + "answerText": "", + "isCorrect": "" + } + ] + } + ] + }, + { + "id": 26, + "title": "Lesson 13 - Browser Extension Project - Call an API, use Local Storage: Post-Lecture Quiz", + "quiz": [ + { + "questionText": "", + "answerOptions": [ + { + "answerText": "", + "isCorrect": "" + }, + { + "answerText": "", + "isCorrect": "" + }, + { + "answerText": "", + "isCorrect": "" + } + ] + }, + { + "questionText": "", + "answerOptions": [ + { + "answerText": "", + "isCorrect": "" + }, + { + "answerText": "", + "isCorrect": "" + }, + { + "answerText": "", + "isCorrect": "" + } + ] + }, + { + "questionText": "", + "answerOptions": [ + { + "answerText": "", + "isCorrect": "" + }, + { + "answerText": "", + "isCorrect": "" + }, + { + "answerText": "", + "isCorrect": "" + } + ] + } + ] + }, + { + "id": 27, + "title": "Lesson 14 - Browser Extension Project - Learn about Background Tasks and Performance: Pre-Lecture Quiz", + "quiz": [ + { + "questionText": "", + "answerOptions": [ + { + "answerText": "", + "isCorrect": "" + }, + { + "answerText": "", + "isCorrect": "" + }, + { + "answerText": "", + "isCorrect": "" + } + ] + }, + { + "questionText": "", + "answerOptions": [ + { + "answerText": "", + "isCorrect": "" + }, + { + "answerText": "", + "isCorrect": "" + }, + { + "answerText": "", + "isCorrect": "" + } + ] + }, + { + "questionText": "", + "answerOptions": [ + { + "answerText": "", + "isCorrect": "" + }, + { + "answerText": "", + "isCorrect": "" + }, + { + "answerText": "", + "isCorrect": "" + } + ] + } + ] + }, + { + "id": 28, + "title": "Lesson 14 - Browser Extension Project - Learn about Background Tasks and Performance: Post-Lecture Quiz", + "quiz": [ + { + "questionText": "", + "answerOptions": [ + { + "answerText": "", + "isCorrect": "" + }, + { + "answerText": "", + "isCorrect": "" + }, + { + "answerText": "", + "isCorrect": "" + } + ] + }, + { + "questionText": "", + "answerOptions": [ + { + "answerText": "", + "isCorrect": "" + }, + { + "answerText": "", + "isCorrect": "" + }, + { + "answerText": "", + "isCorrect": "" + } + ] + }, + { + "questionText": "", + "answerOptions": [ + { + "answerText": "", + "isCorrect": "" + }, + { + "answerText": "", + "isCorrect": "" + }, + { + "answerText": "", + "isCorrect": "" + } + ] + } + ] + }, + { + "id": 29, + "title": "Lesson 15 - Space Game: Pre-Lecture Quiz", + "quiz": [ + { + "questionText": "", + "answerOptions": [ + { + "answerText": "", + "isCorrect": "" + }, + { + "answerText": "", + "isCorrect": "" + }, + { + "answerText": "", + "isCorrect": "" + } + ] + }, + { + "questionText": "", + "answerOptions": [ + { + "answerText": "", + "isCorrect": "" + }, + { + "answerText": "", + "isCorrect": "" + }, + { + "answerText": "", + "isCorrect": "" + } + ] + }, + { + "questionText": "", + "answerOptions": [ + { + "answerText": "", + "isCorrect": "" + }, + { + "answerText": "", + "isCorrect": "" + }, + { + "answerText": "", + "isCorrect": "" + } + ] + } + ] + }, + { + "id": 30, + "title": "Lesson 15 - Space Game: Post-Lecture Quiz", + "quiz": [ + { + "questionText": "", + "answerOptions": [ + { + "answerText": "", + "isCorrect": "" + }, + { + "answerText": "", + "isCorrect": "" + }, + { + "answerText": "", + "isCorrect": "" + } + ] + }, + { + "questionText": "", + "answerOptions": [ + { + "answerText": "", + "isCorrect": "" + }, + { + "answerText": "", + "isCorrect": "" + }, + { + "answerText": "", + "isCorrect": "" + } + ] + }, + { + "questionText": "", + "answerOptions": [ + { + "answerText": "", + "isCorrect": "" + }, + { + "answerText": "", + "isCorrect": "" + }, + { + "answerText": "", + "isCorrect": "" + } + ] + } + ] + }, + { + "id": 31, + "title": "Lesson 16 - Space Game: Pre-Lecture Quiz", + "quiz": [ + { + "questionText": "", + "answerOptions": [ + { + "answerText": "", + "isCorrect": "" + }, + { + "answerText": "", + "isCorrect": "" + }, + { + "answerText": "", + "isCorrect": "" + } + ] + }, + { + "questionText": "", + "answerOptions": [ + { + "answerText": "", + "isCorrect": "" + }, + { + "answerText": "", + "isCorrect": "" + }, + { + "answerText": "", + "isCorrect": "" + } + ] + }, + { + "questionText": "", + "answerOptions": [ + { + "answerText": "", + "isCorrect": "" + }, + { + "answerText": "", + "isCorrect": "" + }, + { + "answerText": "", + "isCorrect": "" + } + ] + } + ] + }, + { + "id": 32, + "title": "Lesson 16 - Space Game: Post-Lecture Quiz", + "quiz": [ + { + "questionText": "", + "answerOptions": [ + { + "answerText": "", + "isCorrect": "" + }, + { + "answerText": "", + "isCorrect": "" + }, + { + "answerText": "", + "isCorrect": "" + } + ] + }, + { + "questionText": "", + "answerOptions": [ + { + "answerText": "", + "isCorrect": "" + }, + { + "answerText": "", + "isCorrect": "" + }, + { + "answerText": "", + "isCorrect": "" + } + ] + }, + { + "questionText": "", + "answerOptions": [ + { + "answerText": "", + "isCorrect": "" + }, + { + "answerText": "", + "isCorrect": "" + }, + { + "answerText": "", + "isCorrect": "" + } + ] + } + ] + }, + { + "id": 33, + "title": "Lesson 17 - Space Game: Pre-Lecture Quiz", + "quiz": [ + { + "questionText": "", + "answerOptions": [ + { + "answerText": "", + "isCorrect": "" + }, + { + "answerText": "", + "isCorrect": "" + }, + { + "answerText": "", + "isCorrect": "" + } + ] + }, + { + "questionText": "", + "answerOptions": [ + { + "answerText": "", + "isCorrect": "" + }, + { + "answerText": "", + "isCorrect": "" + }, + { + "answerText": "", + "isCorrect": "" + } + ] + }, + { + "questionText": "", + "answerOptions": [ + { + "answerText": "", + "isCorrect": "" + }, + { + "answerText": "", + "isCorrect": "" + }, + { + "answerText": "", + "isCorrect": "" + } + ] + } + ] + }, + { + "id": 34, + "title": "Lesson 17 - Space Game: Post-Lecture Quiz", + "quiz": [ + { + "questionText": "", + "answerOptions": [ + { + "answerText": "", + "isCorrect": "" + }, + { + "answerText": "", + "isCorrect": "" + }, + { + "answerText": "", + "isCorrect": "" + } + ] + }, + { + "questionText": "", + "answerOptions": [ + { + "answerText": "", + "isCorrect": "" + }, + { + "answerText": "", + "isCorrect": "" + }, + { + "answerText": "", + "isCorrect": "" + } + ] + }, + { + "questionText": "", + "answerOptions": [ + { + "answerText": "", + "isCorrect": "" + }, + { + "answerText": "", + "isCorrect": "" + }, + { + "answerText": "", + "isCorrect": "" + } + ] + } + ] + }, + { + "id": 35, + "title": "Lesson 18 - Space Game: Pre-Lecture Quiz", + "quiz": [ + { + "questionText": "", + "answerOptions": [ + { + "answerText": "", + "isCorrect": "" + }, + { + "answerText": "", + "isCorrect": "" + }, + { + "answerText": "", + "isCorrect": "" + } + ] + }, + { + "questionText": "", + "answerOptions": [ + { + "answerText": "", + "isCorrect": "" + }, + { + "answerText": "", + "isCorrect": "" + }, + { + "answerText": "", + "isCorrect": "" + } + ] + }, + { + "questionText": "", + "answerOptions": [ + { + "answerText": "", + "isCorrect": "" + }, + { + "answerText": "", + "isCorrect": "" + }, + { + "answerText": "", + "isCorrect": "" + } + ] + } + ] + }, + { + "id": 36, + "title": "Lesson 18 - Space Game: Post-Lecture Quiz", + "quiz": [ + { + "questionText": "", + "answerOptions": [ + { + "answerText": "", + "isCorrect": "" + }, + { + "answerText": "", + "isCorrect": "" + }, + { + "answerText": "", + "isCorrect": "" + } + ] + }, + { + "questionText": "", + "answerOptions": [ + { + "answerText": "", + "isCorrect": "" + }, + { + "answerText": "", + "isCorrect": "" + }, + { + "answerText": "", + "isCorrect": "" + } + ] + }, + { + "questionText": "", + "answerOptions": [ + { + "answerText": "", + "isCorrect": "" + }, + { + "answerText": "", + "isCorrect": "" + }, + { + "answerText": "", + "isCorrect": "" + } + ] + } + ] + }, + { + "id": 37, + "title": "Lesson 19 - Space Game: Pre-Lecture Quiz", + "quiz": [ + { + "questionText": "", + "answerOptions": [ + { + "answerText": "", + "isCorrect": "" + }, + { + "answerText": "", + "isCorrect": "" + }, + { + "answerText": "", + "isCorrect": "" + } + ] + }, + { + "questionText": "", + "answerOptions": [ + { + "answerText": "", + "isCorrect": "" + }, + { + "answerText": "", + "isCorrect": "" + }, + { + "answerText": "", + "isCorrect": "" + } + ] + }, + { + "questionText": "", + "answerOptions": [ + { + "answerText": "", + "isCorrect": "" + }, + { + "answerText": "", + "isCorrect": "" + }, + { + "answerText": "", + "isCorrect": "" + } + ] + } + ] + }, + { + "id": 38, + "title": "Lesson 19 - Space Game: Post-Lecture Quiz", + "quiz": [ + { + "questionText": "", + "answerOptions": [ + { + "answerText": "", + "isCorrect": "" + }, + { + "answerText": "", + "isCorrect": "" + }, + { + "answerText": "", + "isCorrect": "" + } + ] + }, + { + "questionText": "", + "answerOptions": [ + { + "answerText": "", + "isCorrect": "" + }, + { + "answerText": "", + "isCorrect": "" + }, + { + "answerText": "", + "isCorrect": "" + } + ] + }, + { + "questionText": "", + "answerOptions": [ + { + "answerText": "", + "isCorrect": "" + }, + { + "answerText": "", + "isCorrect": "" + }, + { + "answerText": "", + "isCorrect": "" + } + ] + } + ] + }, + { + "id": 39, + "title": "Lesson 20 - Space Game: Pre-Lecture Quiz", + "quiz": [ + { + "questionText": "", + "answerOptions": [ + { + "answerText": "", + "isCorrect": "" + }, + { + "answerText": "", + "isCorrect": "" + }, + { + "answerText": "", + "isCorrect": "" + } + ] + }, + { + "questionText": "", + "answerOptions": [ + { + "answerText": "", + "isCorrect": "" + }, + { + "answerText": "", + "isCorrect": "" + }, + { + "answerText": "", + "isCorrect": "" + } + ] + }, + { + "questionText": "", + "answerOptions": [ + { + "answerText": "", + "isCorrect": "" + }, + { + "answerText": "", + "isCorrect": "" + }, + { + "answerText": "", + "isCorrect": "" + } + ] + } + ] + }, + { + "id": 40, + "title": "Lesson 20 - Space Game: Post-Lecture Quiz", + "quiz": [ + { + "questionText": "", + "answerOptions": [ + { + "answerText": "", + "isCorrect": "" + }, + { + "answerText": "", + "isCorrect": "" + }, + { + "answerText": "", + "isCorrect": "" + } + ] + }, + { + "questionText": "", + "answerOptions": [ + { + "answerText": "", + "isCorrect": "" + }, + { + "answerText": "", + "isCorrect": "" + }, + { + "answerText": "", + "isCorrect": "" + } + ] + }, + { + "questionText": "", + "answerOptions": [ + { + "answerText": "", + "isCorrect": "" + }, + { + "answerText": "", + "isCorrect": "" + }, + { + "answerText": "", + "isCorrect": "" + } + ] + } + ] + }, + { + "id": 41, + "title": "Lesson 21 - Bank Project: Pre-Lecture Quiz", + "quiz": [ + { + "questionText": "", + "answerOptions": [ + { + "answerText": "", + "isCorrect": "" + }, + { + "answerText": "", + "isCorrect": "" + }, + { + "answerText": "", + "isCorrect": "" + } + ] + }, + { + "questionText": "", + "answerOptions": [ + { + "answerText": "", + "isCorrect": "" + }, + { + "answerText": "", + "isCorrect": "" + }, + { + "answerText": "", + "isCorrect": "" + } + ] + }, + { + "questionText": "", + "answerOptions": [ + { + "answerText": "", + "isCorrect": "" + }, + { + "answerText": "", + "isCorrect": "" + }, + { + "answerText": "", + "isCorrect": "" + } + ] + } + ] + }, + { + "id": 42, + "title": "Lesson 21 - Bank Project: Post-Lecture Quiz", + "quiz": [ + { + "questionText": "", + "answerOptions": [ + { + "answerText": "", + "isCorrect": "" + }, + { + "answerText": "", + "isCorrect": "" + }, + { + "answerText": "", + "isCorrect": "" + } + ] + }, + { + "questionText": "", + "answerOptions": [ + { + "answerText": "", + "isCorrect": "" + }, + { + "answerText": "", + "isCorrect": "" + }, + { + "answerText": "", + "isCorrect": "" + } + ] + }, + { + "questionText": "", + "answerOptions": [ + { + "answerText": "", + "isCorrect": "" + }, + { + "answerText": "", + "isCorrect": "" + }, + { + "answerText": "", + "isCorrect": "" + } + ] + } + ] + }, + { + "id": 43, + "title": "Lesson 22 - Bank Project: Pre-Lecture Quiz", + "quiz": [ + { + "questionText": "", + "answerOptions": [ + { + "answerText": "", + "isCorrect": "" + }, + { + "answerText": "", + "isCorrect": "" + }, + { + "answerText": "", + "isCorrect": "" + } + ] + }, + { + "questionText": "", + "answerOptions": [ + { + "answerText": "", + "isCorrect": "" + }, + { + "answerText": "", + "isCorrect": "" + }, + { + "answerText": "", + "isCorrect": "" + } + ] + }, + { + "questionText": "", + "answerOptions": [ + { + "answerText": "", + "isCorrect": "" + }, + { + "answerText": "", + "isCorrect": "" + }, + { + "answerText": "", + "isCorrect": "" + } + ] + } + ] + }, + { + "id": 44, + "title": "Lesson 22 - Bank Project: Post-Lecture Quiz", + "quiz": [ + { + "questionText": "", + "answerOptions": [ + { + "answerText": "", + "isCorrect": "" + }, + { + "answerText": "", + "isCorrect": "" + }, + { + "answerText": "", + "isCorrect": "" + } + ] + }, + { + "questionText": "", + "answerOptions": [ + { + "answerText": "", + "isCorrect": "" + }, + { + "answerText": "", + "isCorrect": "" + }, + { + "answerText": "", + "isCorrect": "" + } + ] + }, + { + "questionText": "", + "answerOptions": [ + { + "answerText": "", + "isCorrect": "" + }, + { + "answerText": "", + "isCorrect": "" + }, + { + "answerText": "", + "isCorrect": "" + } + ] + } + ] + }, + { + "id": 45, + "title": "Lesson 23 - Bank Project: Pre-Lecture Quiz", + "quiz": [ + { + "questionText": "", + "answerOptions": [ + { + "answerText": "", + "isCorrect": "" + }, + { + "answerText": "", + "isCorrect": "" + }, + { + "answerText": "", + "isCorrect": "" + } + ] + }, + { + "questionText": "", + "answerOptions": [ + { + "answerText": "", + "isCorrect": "" + }, + { + "answerText": "", + "isCorrect": "" + }, + { + "answerText": "", + "isCorrect": "" + } + ] + }, + { + "questionText": "", + "answerOptions": [ + { + "answerText": "", + "isCorrect": "" + }, + { + "answerText": "", + "isCorrect": "" + }, + { + "answerText": "", + "isCorrect": "" + } + ] + } + ] + }, + { + "id": 46, + "title": "Lesson 23 - Bank Project: Pre-Lecture Quiz", + "quiz": [ + { + "questionText": "", + "answerOptions": [ + { + "answerText": "", + "isCorrect": "" + }, + { + "answerText": "", + "isCorrect": "" + }, + { + "answerText": "", + "isCorrect": "" + } + ] + }, + { + "questionText": "", + "answerOptions": [ + { + "answerText": "", + "isCorrect": "" + }, + { + "answerText": "", + "isCorrect": "" + }, + { + "answerText": "", + "isCorrect": "" + } + ] + }, + { + "questionText": "", + "answerOptions": [ + { + "answerText": "", + "isCorrect": "" + }, + { + "answerText": "", + "isCorrect": "" + }, + { + "answerText": "", + "isCorrect": "" + } + ] + } + ] + }, + { + "id": 47, + "title": "Lesson 24 - Bank Project: Pre-Lecture Quiz", + "quiz": [ + { + "questionText": "", + "answerOptions": [ + { + "answerText": "", + "isCorrect": "" + }, + { + "answerText": "", + "isCorrect": "" + }, + { + "answerText": "", + "isCorrect": "" + } + ] + }, + { + "questionText": "", + "answerOptions": [ + { + "answerText": "", + "isCorrect": "" + }, + { + "answerText": "", + "isCorrect": "" + }, + { + "answerText": "", + "isCorrect": "" + } + ] + }, + { + "questionText": "", + "answerOptions": [ + { + "answerText": "", + "isCorrect": "" + }, + { + "answerText": "", + "isCorrect": "" + }, + { + "answerText": "", + "isCorrect": "" + } + ] + } + ] + }, + { + "id": 48, + "title": "Lesson 24 - Bank Project: Post-Lecture Quiz", "quiz": [ { "questionText": "", From 4578a263c0b06bc75d91e4f7d2c2db62e4d59f08 Mon Sep 17 00:00:00 2001 From: Jen Looper Date: Wed, 30 Dec 2020 19:50:55 -0500 Subject: [PATCH 13/16] typing game quizzes --- quiz-app/src/assets/translations/en.json | 92 ++++++++++++------------ 1 file changed, 46 insertions(+), 46 deletions(-) diff --git a/quiz-app/src/assets/translations/en.json b/quiz-app/src/assets/translations/en.json index c4691940..dfc95a35 100644 --- a/quiz-app/src/assets/translations/en.json +++ b/quiz-app/src/assets/translations/en.json @@ -1057,53 +1057,57 @@ "title": "Lesson 11 - Typing Game: Pre-Lecture Quiz", "quiz": [ { - "questionText": "", + "questionText": "Event-driven programming is when a user", "answerOptions": [ { - "answerText": "", - "isCorrect": "" + "answerText": "clicks on a button", + "isCorrect": "false" }, { - "answerText": "", - "isCorrect": "" + "answerText": "changes a value", + "isCorrect": "false" }, { - "answerText": "", - "isCorrect": "" + "answerText": "interacts with the page", + "isCorrect": "false" + }, + { + "answerText": "any of the above", + "isCorrect": "true" } ] }, { - "questionText": "", + "questionText": "In procedural programming, functions are called", "answerOptions": [ { - "answerText": "", - "isCorrect": "" + "answerText": "any time", + "isCorrect": "false" }, { - "answerText": "", - "isCorrect": "" + "answerText": "in a specific order", + "isCorrect": "true" }, { - "answerText": "", - "isCorrect": "" + "answerText": "left to right", + "isCorrect": "false" } ] }, { - "questionText": "", + "questionText": "The universal method exposed in the DOM for registering event handlers is called", "answerOptions": [ { - "answerText": "", - "isCorrect": "" + "answerText": "addEventListener", + "isCorrect": "true" }, { - "answerText": "", - "isCorrect": "" + "answerText": "addListener", + "isCorrect": "false" }, { - "answerText": "", - "isCorrect": "" + "answerText": "addEvent", + "isCorrect": "false" } ] } @@ -1114,53 +1118,49 @@ "title": "Lesson 11 - Typing Game: Post-Lecture Quiz", "quiz": [ { - "questionText": "", + "questionText": "Just about anything a user does on a page raises an event", "answerOptions": [ { - "answerText": "", - "isCorrect": "" - }, - { - "answerText": "", - "isCorrect": "" + "answerText": "true", + "isCorrect": "true" }, { - "answerText": "", - "isCorrect": "" + "answerText": "false", + "isCorrect": "false" } ] }, { - "questionText": "", + "questionText": "Common events include", "answerOptions": [ { - "answerText": "", - "isCorrect": "" + "answerText": "click_event", + "isCorrect": "false" }, { - "answerText": "", - "isCorrect": "" + "answerText": "select_event", + "isCorrect": "false" }, { - "answerText": "", - "isCorrect": "" + "answerText": "input_event", + "isCorrect": "false" + }, + { + "answerText": "all of these", + "isCorrect": "true" } ] }, { - "questionText": "", + "questionText": "You can use anonymous functions to create event handlers", "answerOptions": [ { - "answerText": "", - "isCorrect": "" - }, - { - "answerText": "", - "isCorrect": "" + "answerText": "true", + "isCorrect": "true" }, { - "answerText": "", - "isCorrect": "" + "answerText": "false", + "isCorrect": "false" } ] } From 0bcd2042d0f55fa849de0870da45867f1c1c72df Mon Sep 17 00:00:00 2001 From: Jen Looper Date: Wed, 30 Dec 2020 20:00:57 -0500 Subject: [PATCH 14/16] browser extension quizzes, typing game quiz --- quiz-app/src/assets/translations/en.json | 256 ++++++++++------------- 1 file changed, 116 insertions(+), 140 deletions(-) diff --git a/quiz-app/src/assets/translations/en.json b/quiz-app/src/assets/translations/en.json index dfc95a35..84c5189d 100644 --- a/quiz-app/src/assets/translations/en.json +++ b/quiz-app/src/assets/translations/en.json @@ -1171,53 +1171,49 @@ "title": "Lesson 12 - Browser Extension Project - All about Browsers: Pre-Lecture Quiz", "quiz": [ { - "questionText": "", + "questionText": "You can get browser extensions from", "answerOptions": [ { - "answerText": "", - "isCorrect": "" + "answerText": "WalMart", + "isCorrect": "false" }, { - "answerText": "", - "isCorrect": "" + "answerText": "The browser's extension store", + "isCorrect": "true" }, { - "answerText": "", - "isCorrect": "" + "answerText": "The App store", + "isCorrect": "false" } ] }, { - "questionText": "", + "questionText": "NPM stands for", "answerOptions": [ { - "answerText": "", - "isCorrect": "" + "answerText": "Node Package Manager", + "isCorrect": "true" }, { - "answerText": "", - "isCorrect": "" + "answerText": "Netscape Primary Mix", + "isCorrect": "false" }, { - "answerText": "", - "isCorrect": "" + "answerText": "Natural Processing Manager", + "isCorrect": "false" } ] }, { - "questionText": "", + "questionText": "Your browser can serve web pages both securely and insecurely", "answerOptions": [ { - "answerText": "", - "isCorrect": "" - }, - { - "answerText": "", - "isCorrect": "" + "answerText": "true", + "isCorrect": "true" }, { - "answerText": "", - "isCorrect": "" + "answerText": "false", + "isCorrect": "false" } ] } @@ -1228,53 +1224,49 @@ "title": "Lesson 12 - Browser Extension Project - All about Browsers: Post-Lecture Quiz", "quiz": [ { - "questionText": "", + "questionText": "The World Wide Web was invented by", "answerOptions": [ { - "answerText": "", - "isCorrect": "" + "answerText": "Tom Barnard-Loft", + "isCorrect": "false" }, { - "answerText": "", - "isCorrect": "" + "answerText": "Tim Berners-Lee", + "isCorrect": "true" }, { - "answerText": "", - "isCorrect": "" + "answerText": "Trish Berth-Pool", + "isCorrect": "false" } ] }, { - "questionText": "", + "questionText": "The first browser was called", "answerOptions": [ { - "answerText": "", - "isCorrect": "" + "answerText": "WorldWideWeb", + "isCorrect": "true" }, { - "answerText": "", - "isCorrect": "" + "answerText": "Mozilla", + "isCorrect": "false" }, { - "answerText": "", - "isCorrect": "" + "answerText": "Netscape", + "isCorrect": "false" } ] }, { - "questionText": "", + "questionText": "Browsers can store a user's browsing history", "answerOptions": [ { - "answerText": "", - "isCorrect": "" - }, - { - "answerText": "", - "isCorrect": "" + "answerText": "true", + "isCorrect": "true" }, { - "answerText": "", - "isCorrect": "" + "answerText": "false", + "isCorrect": "false" } ] } @@ -1285,53 +1277,49 @@ "title": "Lesson 13 - Browser Extension Project - Call an API, use Local Storage: Pre-Lecture Quiz", "quiz": [ { - "questionText": "", + "questionText": "APIs stand for", "answerOptions": [ { - "answerText": "", - "isCorrect": "" + "answerText": "Application Programming Interfaces", + "isCorrect": "true" }, { - "answerText": "", - "isCorrect": "" + "answerText": "A Programming Inference", + "isCorrect": "false" }, { - "answerText": "", - "isCorrect": "" + "answerText": "Anti Proven Intentions", + "isCorrect": "false" } ] }, { - "questionText": "", + "questionText": "Use an API to interact with", "answerOptions": [ { - "answerText": "", - "isCorrect": "" + "answerText": "Another web-connected asset", + "isCorrect": "false" }, { - "answerText": "", - "isCorrect": "" + "answerText": "A database", + "isCorrect": "false" }, { - "answerText": "", - "isCorrect": "" + "answerText": "Either of the above", + "isCorrect": "true" } ] }, { - "questionText": "", + "questionText": "Anyone can create an API", "answerOptions": [ { - "answerText": "", - "isCorrect": "" - }, - { - "answerText": "", - "isCorrect": "" + "answerText": "true", + "isCorrect": "true" }, { - "answerText": "", - "isCorrect": "" + "answerText": "false", + "isCorrect": "false" } ] } @@ -1342,53 +1330,45 @@ "title": "Lesson 13 - Browser Extension Project - Call an API, use Local Storage: Post-Lecture Quiz", "quiz": [ { - "questionText": "", + "questionText": "LocalStorage is cleared every time you close the browser window", "answerOptions": [ { - "answerText": "", - "isCorrect": "" - }, - { - "answerText": "", - "isCorrect": "" + "answerText": "true", + "isCorrect": "false" }, { - "answerText": "", - "isCorrect": "" + "answerText": "false", + "isCorrect": "true" } ] }, { - "questionText": "", + "questionText": "The main browser window controls a browser's extension's LocalStorage", "answerOptions": [ { - "answerText": "", - "isCorrect": "" - }, - { - "answerText": "", - "isCorrect": "" + "answerText": "true", + "isCorrect": "true" }, { - "answerText": "", - "isCorrect": "" + "answerText": "false", + "isCorrect": "false" } ] }, { - "questionText": "", + "questionText": "REST in an API context stands for", "answerOptions": [ { - "answerText": "", - "isCorrect": "" + "answerText": "Representational State Transfer", + "isCorrect": "true" }, { - "answerText": "", - "isCorrect": "" + "answerText": "Returning State Tasks", + "isCorrect": "false" }, { - "answerText": "", - "isCorrect": "" + "answerText": "Rendering State To Browser", + "isCorrect": "false" } ] } @@ -1399,53 +1379,53 @@ "title": "Lesson 14 - Browser Extension Project - Learn about Background Tasks and Performance: Pre-Lecture Quiz", "quiz": [ { - "questionText": "", + "questionText": "Test the performance of your app", "answerOptions": [ { - "answerText": "", - "isCorrect": "" + "answerText": "Using the browser's tools", + "isCorrect": "true" }, { - "answerText": "", - "isCorrect": "" + "answerText": "Using a separate software package", + "isCorrect": "false" }, { - "answerText": "", - "isCorrect": "" + "answerText": "Manually", + "isCorrect": "false" } ] }, { - "questionText": "", + "questionText": "The 'performance' of a web site is an analysis of", "answerOptions": [ { - "answerText": "", - "isCorrect": "" + "answerText": "How fast it loads", + "isCorrect": "false" }, { - "answerText": "", - "isCorrect": "" + "answerText": "How fast the code on it runs", + "isCorrect": "false" }, { - "answerText": "", - "isCorrect": "" + "answerText": "Both of the above", + "isCorrect": "true" } ] }, { - "questionText": "", + "questionText": "Overall, the 'weight' of web pages over the past few years has", "answerOptions": [ { - "answerText": "", - "isCorrect": "" + "answerText": "gotten lighter", + "isCorrect": "false" }, { - "answerText": "", - "isCorrect": "" + "answerText": "gotten heavier", + "isCorrect": "true" }, { - "answerText": "", - "isCorrect": "" + "answerText": "stayed the same", + "isCorrect": "false" } ] } @@ -1456,53 +1436,49 @@ "title": "Lesson 14 - Browser Extension Project - Learn about Background Tasks and Performance: Post-Lecture Quiz", "quiz": [ { - "questionText": "", + "questionText": "To get a better view of your site's performance, clear its cache and reload in the profiler", "answerOptions": [ { - "answerText": "", - "isCorrect": "" - }, - { - "answerText": "", - "isCorrect": "" + "answerText": "true", + "isCorrect": "true" }, { - "answerText": "", - "isCorrect": "" + "answerText": "false", + "isCorrect": "false" } ] }, { - "questionText": "", + "questionText": "Browser extensions are inherently performant", "answerOptions": [ { - "answerText": "", - "isCorrect": "" - }, - { - "answerText": "", - "isCorrect": "" + "answerText": "true", + "isCorrect": "false" }, { - "answerText": "", - "isCorrect": "" + "answerText": "false", + "isCorrect": "true" } ] }, { - "questionText": "", + "questionText": "Analyze the following for performance bottlenecks", "answerOptions": [ { - "answerText": "", - "isCorrect": "" + "answerText": "DOM traversals", + "isCorrect": "false" }, { - "answerText": "", - "isCorrect": "" + "answerText": "JavaScript optimizations", + "isCorrect": "false" }, { - "answerText": "", - "isCorrect": "" + "answerText": "Asset management", + "isCorrect": "false" + }, + { + "answerText": "All the above", + "isCorrect": "true" } ] } From 003153af0da6ff9e43a4531bc56d4e1f748ec6c7 Mon Sep 17 00:00:00 2001 From: Jen Looper Date: Wed, 30 Dec 2020 20:14:50 -0500 Subject: [PATCH 15/16] relinking quizzes through browser extension to quiz app --- 2-js-basics/2-functions-methods/README.md | 4 ++-- 2-js-basics/3-making-decisions/README.md | 12 ++++++------ 2-js-basics/4-arrays-loops/README.md | 4 ++-- 3-terrarium/1-intro-to-html/README.md | 4 ++-- 3-terrarium/2-intro-to-css/README.md | 4 ++-- 3-terrarium/3-intro-to-DOM-and-closures/README.md | 4 ++-- 4-typing-game/typing-game/README.md | 4 ++-- 5-browser-extension/1-about-browsers/README.md | 4 ++-- .../2-forms-browsers-local-storage/README.md | 4 ++-- .../3-background-tasks-and-performance/README.md | 4 ++-- 10 files changed, 24 insertions(+), 24 deletions(-) diff --git a/2-js-basics/2-functions-methods/README.md b/2-js-basics/2-functions-methods/README.md index 4c75ca35..f65109dd 100644 --- a/2-js-basics/2-functions-methods/README.md +++ b/2-js-basics/2-functions-methods/README.md @@ -4,7 +4,7 @@ > Sketchnote by [Tomomi Imura](https://twitter.com/girlie_mac) ## Pre-Lecture Quiz -[Pre-lecture quiz](.github/pre-lecture-quiz.md) +[Pre-lecture quiz](https://nice-beach-0fe9e9d0f.azurestaticapps.net/quiz/9) When we think about writing code, we always want to ensure our code is readable. While this sounds counterintuitive, code is read many more times than it's written. One core tool in a developer's toolbox to ensure maintainable code is the **function**. @@ -181,7 +181,7 @@ You've now seen we have three ways to pass a function as a parameter and might b Can you articulate in one sentence the difference between functions and methods? Give it a try! ## Post-Lecture Quiz -[Post-lecture quiz](.github/post-lecture-quiz.md) +[Post-lecture quiz](https://nice-beach-0fe9e9d0f.azurestaticapps.net/quiz/10) ## Review & Self Study diff --git a/2-js-basics/3-making-decisions/README.md b/2-js-basics/3-making-decisions/README.md index 18a28f1f..43c6debf 100644 --- a/2-js-basics/3-making-decisions/README.md +++ b/2-js-basics/3-making-decisions/README.md @@ -5,7 +5,7 @@ ## Pre-Lecture Quiz -[Pre-lecture quiz](.github/pre-lecture-quiz.md) +[Pre-lecture quiz](https://nice-beach-0fe9e9d0f.azurestaticapps.net/quiz/11) Making decisions and controlling the order in which your code runs makes your code reusable and robust. This section covers the syntax for controlling data flow in JavaScript and its significance when used with Boolean data types @@ -28,10 +28,10 @@ Operators are used to evaluate conditions by making comparisons that will create | Symbol | Description | Example | | ------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------ | -| `<` | **Less than**: Compares two values and returns the `true` Boolean data type if the value on the left side is less than the right | `5 < 6 // true` | -| `<=` | **Less than or equal to**: Compares two values and returns the `true` Boolean data type if the value on the left side is less than or equal to the right | `5 <= 6 // true` | -| `>` | **Greater than**: Compares two values and returns the `true` Boolean data type if the value on the left side is larger than the right | `5 > 6 // false` | -| `>=` | **Greater than or equal to**: Compares two values and returns the `true` Boolean data type if the value on the left side is larger than or equal to the right | `5 >= 6 // false` | +| `<` | **Less than**: Compares two values and returns the `true` Boolean data type if the value on the left side is less than the right | `5 < 6 // true` | +| `<=` | **Less than or equal to**: Compares two values and returns the `true` Boolean data type if the value on the left side is less than or equal to the right | `5 <= 6 // true` | +| `>` | **Greater than**: Compares two values and returns the `true` Boolean data type if the value on the left side is larger than the right | `5 > 6 // false` | +| `>=` | **Greater than or equal to**: Compares two values and returns the `true` Boolean data type if the value on the left side is larger than or equal to the right | `5 >= 6 // false` | | `===` | **Strict equality**: Compares two values and returns the `true` Boolean data type if values on the right and left are equal AND are the same data type. | `5 === 6 // false` | | `!==` | **Inequality**: Compares two values and returns the opposite Boolean value of what a strict equality operator would return | `5 !== 6 // true` | @@ -162,7 +162,7 @@ Create a program that is written first with logical operators, and then rewrite ## Post-Lecture Quiz -[Post-lecture quiz](.github/post-lecture-quiz.md) +[Post-lecture quiz](https://nice-beach-0fe9e9d0f.azurestaticapps.net/quiz/12) ## Review & Self Study diff --git a/2-js-basics/4-arrays-loops/README.md b/2-js-basics/4-arrays-loops/README.md index b4dc64e1..ebc4d75d 100644 --- a/2-js-basics/4-arrays-loops/README.md +++ b/2-js-basics/4-arrays-loops/README.md @@ -5,7 +5,7 @@ ## Pre-Lecture Quiz -[Pre-lecture quiz](.github/pre-lecture-quiz.md) +[Pre-lecture quiz](https://nice-beach-0fe9e9d0f.azurestaticapps.net/quiz/13) This lesson covers the basics of JavaScript, the language that provides interactivity on the web. In this lesson, you'll learn about arrays and loops, which are used to manipulate data. @@ -114,7 +114,7 @@ There are other ways of looping over arrays other than for and while loops. Ther ## Post-Lecture Quiz -[Post-lecture quiz](.github/post-lecture-quiz.md) +[Pre-lecture quiz](https://nice-beach-0fe9e9d0f.azurestaticapps.net/quiz/14) ## Review & Self Study diff --git a/3-terrarium/1-intro-to-html/README.md b/3-terrarium/1-intro-to-html/README.md index 61ebfaf9..32f4d7dc 100644 --- a/3-terrarium/1-intro-to-html/README.md +++ b/3-terrarium/1-intro-to-html/README.md @@ -5,7 +5,7 @@ ## Pre-Lecture Quiz -[Pre-lecture quiz](.github/pre-lecture-quiz.md) +[Pre-lecture quiz](https://nice-beach-0fe9e9d0f.azurestaticapps.net/quiz/15) ### Introduction @@ -217,7 +217,7 @@ There are some wild 'older' tags in HTML that are still fun to play with, though ## Post-Lecture Quiz -[Post-lecture quiz](.github/post-lecture-quiz.md) +[Post-lecture quiz](https://nice-beach-0fe9e9d0f.azurestaticapps.net/quiz/16) ## Review & Self Study diff --git a/3-terrarium/2-intro-to-css/README.md b/3-terrarium/2-intro-to-css/README.md index c6e25df7..6d9838a0 100644 --- a/3-terrarium/2-intro-to-css/README.md +++ b/3-terrarium/2-intro-to-css/README.md @@ -5,7 +5,7 @@ ## Pre-Lecture Quiz -[Pre-lecture quiz](.github/pre-lecture-quiz.md) +[Pre-lecture quiz](https://nice-beach-0fe9e9d0f.azurestaticapps.net/quiz/17) ### Introduction @@ -252,7 +252,7 @@ To complete the post-lecture quiz, go through this Learn module: [Style your HTM ## Post-Lecture Quiz -[Post-lecture quiz](.github/post-lecture-quiz.md) +[Post-lecture quiz](https://nice-beach-0fe9e9d0f.azurestaticapps.net/quiz/18) ## Review & Self Study diff --git a/3-terrarium/3-intro-to-DOM-and-closures/README.md b/3-terrarium/3-intro-to-DOM-and-closures/README.md index 7c0f93ae..329aa963 100644 --- a/3-terrarium/3-intro-to-DOM-and-closures/README.md +++ b/3-terrarium/3-intro-to-DOM-and-closures/README.md @@ -5,7 +5,7 @@ ## Pre-Lecture Quiz -[Pre-lecture quiz](.github/pre-lecture-quiz.md) +[Pre-lecture quiz](https://nice-beach-0fe9e9d0f.azurestaticapps.net/quiz/19) ### Introduction @@ -201,7 +201,7 @@ Add new event handler to your closure to do something more to the plants; for ex ## Post-Lecture Quiz -[Post-lecture quiz](.github/post-lecture-quiz.md) +[Post-lecture quiz](https://nice-beach-0fe9e9d0f.azurestaticapps.net/quiz/20) ## Review & Self Study diff --git a/4-typing-game/typing-game/README.md b/4-typing-game/typing-game/README.md index 7a10fd91..68145a62 100644 --- a/4-typing-game/typing-game/README.md +++ b/4-typing-game/typing-game/README.md @@ -2,7 +2,7 @@ ## Pre-Lecture Quiz -[Pre-lecture quiz](../.github/pre-lecture-quiz.md) +[Pre-lecture quiz](https://nice-beach-0fe9e9d0f.azurestaticapps.net/quiz/21) ## Event driven programming @@ -326,7 +326,7 @@ Add more functionality ## Post-Lecture Quiz -[Post-lecture quiz](../.github/post-lecture-quiz.md) +[Post-lecture quiz](https://nice-beach-0fe9e9d0f.azurestaticapps.net/quiz/22) ## Review & Self Study diff --git a/5-browser-extension/1-about-browsers/README.md b/5-browser-extension/1-about-browsers/README.md index aeeff00b..7a17c0b2 100644 --- a/5-browser-extension/1-about-browsers/README.md +++ b/5-browser-extension/1-about-browsers/README.md @@ -5,7 +5,7 @@ ## Pre-Lecture Quiz -[Pre-lecture quiz](.github/pre-lecture-quiz.md) +[Pre-lecture quiz](https://nice-beach-0fe9e9d0f.azurestaticapps.net/quiz/23) ### Introduction @@ -150,7 +150,7 @@ Take a look at a browser extension store and install one to your browser. You ca ## Post-Lecture Quiz -[Post-lecture quiz](.github/post-lecture-quiz.md) +[Post-lecture quiz](https://nice-beach-0fe9e9d0f.azurestaticapps.net/quiz/24) ## Review & Self Study diff --git a/5-browser-extension/2-forms-browsers-local-storage/README.md b/5-browser-extension/2-forms-browsers-local-storage/README.md index 5e75b983..078aeacc 100644 --- a/5-browser-extension/2-forms-browsers-local-storage/README.md +++ b/5-browser-extension/2-forms-browsers-local-storage/README.md @@ -2,7 +2,7 @@ ## Pre-Lecture Quiz -[Pre-lecture quiz](.github/pre-lecture-quiz.md) +[Pre-lecture quiz](https://nice-beach-0fe9e9d0f.azurestaticapps.net/quiz/25) ### Introduction @@ -210,7 +210,7 @@ We've discussed several types of API so far in these lessons. Choose a web API a ## Post-Lecture Quiz -[Post-lecture quiz](.github/post-lecture-quiz.md) +[Post-lecture quiz](https://nice-beach-0fe9e9d0f.azurestaticapps.net/quiz/26) ## Review & Self Study diff --git a/5-browser-extension/3-background-tasks-and-performance/README.md b/5-browser-extension/3-background-tasks-and-performance/README.md index f05fa66e..2eb7aa82 100644 --- a/5-browser-extension/3-background-tasks-and-performance/README.md +++ b/5-browser-extension/3-background-tasks-and-performance/README.md @@ -2,7 +2,7 @@ ## Pre-Lecture Quiz -[Pre-lecture quiz](.github/pre-lecture-quiz.md) +[Pre-lecture quiz](https://nice-beach-0fe9e9d0f.azurestaticapps.net/quiz/27) ### Introduction @@ -147,7 +147,7 @@ Investigate some open source web sites have been around a long time ago, and, ba ## Post-Lecture Quiz -[Post-lecture quiz](.github/post-lecture-quiz.md) +[Post-lecture quiz](https://nice-beach-0fe9e9d0f.azurestaticapps.net/quiz/28) ## Review & Self Study From 41c74e4875be29f6b4ae09329dbfe96b4861a86d Mon Sep 17 00:00:00 2001 From: Jen Looper Date: Wed, 30 Dec 2020 20:22:16 -0500 Subject: [PATCH 16/16] adding quiz titles --- quiz-app/src/components/Quiz.vue | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/quiz-app/src/components/Quiz.vue b/quiz-app/src/components/Quiz.vue index f1f504ea..08ac27cf 100644 --- a/quiz-app/src/components/Quiz.vue +++ b/quiz-app/src/components/Quiz.vue @@ -1,7 +1,10 @@