-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdb.json
More file actions
86 lines (80 loc) · 2.12 KB
/
db.json
File metadata and controls
86 lines (80 loc) · 2.12 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"bg": "https://images7.alphacoders.com/679/679140.png",
"title": "Quiz Python",
"description": "Teste os seus conhecimentos sobre Python",
"questions": [
{
"image": "https://media0.giphy.com/media/rbRlURYMrUNfG/source.gif",
"title": "Qual é a sintaxe correta: ",
"description": "Gerar 'Hello World' em Python",
"answer": 3,
"alternatives": [
" p('Hello World')",
"echo('Hello World)';",
" echo Hello World",
"print('Hello World')"
]
},
{
"image": "https://media0.giphy.com/media/rbRlURYMrUNfG/source.gif",
"title": "Como você insere:",
"description": "Comentários no código Python?",
"answer": 0,
"alternatives": [
"#This is a comment",
" /*This is a comment*/",
" //This is a comment"
]
},
{
"image": "https://media0.giphy.com/media/rbRlURYMrUNfG/source.gif",
"title": "Qual a extensão correta:",
"description": "Para Arquivos Python?",
"answer": 2,
"alternatives": [
".pyth",
".pt",
".py"
]
},
{
"image": "https://media0.giphy.com/media/rbRlURYMrUNfG/source.gif",
"title": "Qual a maneira correta:",
"description": "Cria função em Python?",
"answer": 1,
"alternatives": [
"function mufunction():",
"def myFunction():",
"create myFunction():"
]
},
{
"image": "https://media0.giphy.com/media/rbRlURYMrUNfG/source.gif",
"title": "Qual o operador:",
"description": "Usado para multiplicar em Python?",
"answer": 3,
"alternatives": [
"%",
"+",
"#",
"*"
]
}
],
"external": [
"https://aluraquiz-css.omariosouto.vercel.app/",
"https://aluraquiz-devsoutinho.omariosouto.vercel.app/"
],
"theme": {
"colors": {
"primary": "rgba(76,149,212,1)",
"secondary": "#29b6f6",
"third" : "rgba(75,214,91,1)",
"mainBg": "#171B35",
"contrastText": "#FFFFFF",
"wrong": "#FF5722",
"success": "#4CAF50"
},
"borderRadius": "4px"
}
}