From 2c23a2339909b4149159796ccf6691658cbc5486 Mon Sep 17 00:00:00 2001 From: Jen Looper Date: Tue, 5 Jan 2021 09:28:26 -0500 Subject: [PATCH] Quiz question clarifications --- quiz-app/src/assets/translations/en.json | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/quiz-app/src/assets/translations/en.json b/quiz-app/src/assets/translations/en.json index b24b5ad5..d45f25ba 100644 --- a/quiz-app/src/assets/translations/en.json +++ b/quiz-app/src/assets/translations/en.json @@ -2199,7 +2199,7 @@ "title": "Lesson 22 - Bank Project - Build a Login and Registration Form: Pre-Lecture Quiz", "quiz": [ { - "questionText": "HTML forms allow to send user input to a server without using JavaScript", + "questionText": "HTML forms allow you to send user input to a server without using JavaScript", "answerOptions": [ { "answerText": "true", @@ -2257,15 +2257,15 @@ ] }, { - "questionText": "How can you define how a form is sent to the server?", + "questionText": "A URL is sent to a server in which part of a form?", "answerOptions": [ { - "answerText": "using the action attribute", - "isCorrect": "false" + "answerText": "the action attribute", + "isCorrect": "true" }, { - "answerText": "using the method attribute", - "isCorrect": "true" + "answerText": "the method attribute", + "isCorrect": "false" }, { "answerText": "both", @@ -2297,10 +2297,10 @@ "title": "Lesson 23 - Bank Project - Methods of Fetching and Using Data: Pre-Lecture Quiz", "quiz": [ { - "questionText": "You can fetch data from a server synchronously in a browser", + "questionText": "You usually fetch data from a server synchronously in a browser", "answerOptions": [ { - "answerText": "true", + "answerText": "true, but async is best!", "isCorrect": "true" }, {