microsoft/AI-For-Beginners

Public

mirrored fromhttps://github.com/microsoft/AI-For-BeginnersAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
a031591b2f58ce281ec432541d2d9b527ef35601

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

etc/quiz-app/src/assets/translations/en/lesson-13.json

115lines · modecode

1[
2 {
3 "title": "AI for Beginners: Quizzes",
4 "complete": "Congratulations, you completed the quiz!",
5 "error": "Sorry, try again",
6 "quizzes": [
7 {
8 "id": 113,
9 "title": "Text Representation: Pre Quiz",
10 "quiz": [
11 {
12 "questionText": "Each word in a Bag of Words is linked to a vector index",
13 "answerOptions": [
14 {
15 "answerText": "true",
16 "isCorrect": true
17 },
18 {
19 "answerText": "false",
20 "isCorrect": false
21 }
22 ]
23 },
24 {
25 "questionText": "Text can be represented using _____ approaches",
26 "answerOptions": [
27 {
28 "answerText": "1",
29 "isCorrect": false
30 },
31 {
32 "answerText": "2",
33 "isCorrect": true
34 },
35 {
36 "answerText": "3",
37 "isCorrect": false
38 }
39 ]
40 },
41 {
42 "questionText": "Character level representation represents each _____ as a number",
43 "answerOptions": [
44 {
45 "answerText": "letter",
46 "isCorrect": true
47 },
48 {
49 "answerText": "word",
50 "isCorrect": false
51 },
52 {
53 "answerText": "symbol",
54 "isCorrect": false
55 }
56 ]
57 }
58 ]
59 },
60 {
61 "id": 213,
62 "title": "Text Representation: Post Quiz",
63 "quiz": [
64 {
65 "questionText": "Word level representation represents _____ as a number",
66 "answerOptions": [
67 {
68 "answerText": "letter",
69 "isCorrect": false
70 },
71 {
72 "answerText": "word",
73 "isCorrect": true
74 },
75 {
76 "answerText": "symbol",
77 "isCorrect": false
78 }
79 ]
80 },
81 {
82 "questionText": "N-Grams refers to _____",
83 "answerOptions": [
84 {
85 "answerText": "combination of n number of words and symbols",
86 "isCorrect": false
87 },
88 {
89 "answerText": "combination of n number of letters",
90 "isCorrect": false
91 },
92 {
93 "answerText": "combination of n number of Words",
94 "isCorrect": true
95 }
96 ]
97 },
98 {
99 "questionText": "The main drawback of N-gram is that the vocabulary size grows fast",
100 "answerOptions": [
101 {
102 "answerText": "true",
103 "isCorrect": true
104 },
105 {
106 "answerText": "false",
107 "isCorrect": false
108 }
109 ]
110 }
111 ]
112 }
113 ]
114 }
115]