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-1.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": 101,
9 "title": "Introduction to AI: Pre Quiz",
10 "quiz": [
11 {
12 "questionText": "A famous 19th century proto-computer engineer was",
13 "answerOptions": [
14 {
15 "answerText": "Charles Barkley",
16 "isCorrect": false
17 },
18 {
19 "answerText": "Charles Babbage",
20 "isCorrect": true
21 },
22 {
23 "answerText": "Charles Darwin",
24 "isCorrect": false
25 }
26 ]
27 },
28 {
29 "questionText": "Weak AI is a system designed to solve many tasks",
30 "answerOptions": [
31 {
32 "answerText": "True",
33 "isCorrect": false
34 },
35 {
36 "answerText": "False",
37 "isCorrect": true
38 }
39 ]
40 },
41 {
42 "questionText": "Chat bots are an example of truly intelligent systems",
43 "answerOptions": [
44 {
45 "answerText": "false, they are usually designed by a series of rules.",
46 "isCorrect": false
47 },
48 {
49 "answerText": "true, they are usually considered to be 'intelligent",
50 "isCorrect": false
51 },
52 {
53 "answerText": "false, but they are increasingly able to pass Turing tests as they become more sophisticated.",
54 "isCorrect": true
55 }
56 ]
57 }
58 ]
59 },
60 {
61 "id": 201,
62 "title": "Introduction to AI: Post-Quiz",
63 "quiz": [
64 {
65 "questionText": "A top-down approach to AI is a model of reasoning called",
66 "answerOptions": [
67 {
68 "answerText": "strategic reasoning",
69 "isCorrect": false
70 },
71 {
72 "answerText": "symbolic reasoning",
73 "isCorrect": true
74 },
75 {
76 "answerText": "synergistic reasoning",
77 "isCorrect": false
78 }
79 ]
80 },
81 {
82 "questionText": "A bottom-up approach to AI is based on neural networks",
83 "answerOptions": [
84 {
85 "answerText": "True",
86 "isCorrect": true
87 },
88 {
89 "answerText": "False",
90 "isCorrect": false
91 }
92 ]
93 },
94 {
95 "questionText": "The AI Winter occurred in this era",
96 "answerOptions": [
97 {
98 "answerText": "1950s",
99 "isCorrect": false
100 },
101 {
102 "answerText": "1960s",
103 "isCorrect": false
104 },
105 {
106 "answerText": "1970s",
107 "isCorrect": true
108 }
109 ]
110 }
111 ]
112 }
113 ]
114 }
115]