From 24a9345576a9402b2a4ce0902c287548a8f4604b Mon Sep 17 00:00:00 2001 From: Ornella Altunyan <44654695+ornellaalt@users.noreply.github.com> Date: Fri, 25 Jun 2021 11:13:12 -0700 Subject: [PATCH] NLP 5 quiz 2 --- quiz-app/src/assets/translations/en.json | 30 ++++++++++++------------ 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/quiz-app/src/assets/translations/en.json b/quiz-app/src/assets/translations/en.json index 11ad6e5ad..ae358aef2 100644 --- a/quiz-app/src/assets/translations/en.json +++ b/quiz-app/src/assets/translations/en.json @@ -2204,48 +2204,48 @@ "title": "NLP 5: Post-Lecture Quiz", "quiz": [ { - "questionText": "q1", + "questionText": "What is the goal of the dataset?", "answerOptions": [ { - "answerText": "a", + "answerText": "to see how many negative and positive reviews there are for hotels across the world", "isCorrect": "false" }, { - "answerText": "b", + "answerText": "to add sentiment and columns that will help you choose the best hotel", "isCorrect": "true" }, { - "answerText": "c", + "answerText": "to analyze why people leave specific reviews", "isCorrect": "false" } ] }, { - "questionText": "q2", + "questionText": "What are stop words?", "answerOptions": [ { - "answerText": "a", - "isCorrect": "true" + "answerText": "common English words that do not change the sentiment of a sentence", + "isCorrect": "false" }, { - "answerText": "b", + "answerText": "words that you can remove to speed up sentiment analysis", "isCorrect": "false" + }, + { + "answerText": "both of the above", + "isCorrect": "true" } ] }, { - "questionText": "q3", + "questionText": "To test the sentiment analysis, make sure it matches the reviewer's score for the same review.", "answerOptions": [ { - "answerText": "a", - "isCorrect": "false" - }, - { - "answerText": "b", + "answerText": "true", "isCorrect": "true" }, { - "answerText": "c", + "answerText": "false", "isCorrect": "false" } ]