From bae620a91e52aabee9b400372c9e5451a6caaaf9 Mon Sep 17 00:00:00 2001 From: Ornella Altunyan <44654695+ornellaalt@users.noreply.github.com> Date: Fri, 25 Jun 2021 11:03:34 -0700 Subject: [PATCH] Add NLP 5 pre-quiz --- quiz-app/src/assets/translations/en.json | 32 ++++++++++++------------ 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/quiz-app/src/assets/translations/en.json b/quiz-app/src/assets/translations/en.json index de6000698..11ad6e5ad 100644 --- a/quiz-app/src/assets/translations/en.json +++ b/quiz-app/src/assets/translations/en.json @@ -2151,48 +2151,48 @@ "title": "NLP 5: Pre-Lecture Quiz", "quiz": [ { - "questionText": "q1", + "questionText": "Why is it important to clean data before analyzing it?", "answerOptions": [ { - "answerText": "a", + "answerText": "Some columns might have missing or incorrect data", "isCorrect": "false" }, { - "answerText": "b", - "isCorrect": "true" + "answerText": "Messy data can lead to false conclusions about the dataset", + "isCorrect": "false" }, { - "answerText": "c", - "isCorrect": "false" + "answerText": "Both of the above", + "isCorrect": "true" } ] }, { - "questionText": "q2", + "questionText": "What is one example of a strategy for cleaning data?", "answerOptions": [ { - "answerText": "a", + "answerText": "removing columns/rows that aren't useful for answering a specific question", "isCorrect": "true" }, { - "answerText": "b", + "answerText": "getting rid of verified values that don't fit your hypothesis", + "isCorrect": "false" + }, + { + "answerText": "moving the outliers to a separate table and running the calculations for that table to see if they match", "isCorrect": "false" } ] }, { - "questionText": "q3", + "questionText": "It can be useful to categorize data using a Tag column.", "answerOptions": [ { - "answerText": "a", - "isCorrect": "false" - }, - { - "answerText": "b", + "answerText": "true", "isCorrect": "true" }, { - "answerText": "c", + "answerText": "false", "isCorrect": "false" } ]