-
Notifications
You must be signed in to change notification settings - Fork 0
/
questions.js
95 lines (95 loc) · 2.42 KB
/
questions.js
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
87
88
89
90
91
92
93
94
95
let questions = [
{
question: 'Em qual elemento HTML nós colocamos o javascript?',
options: [
'tag js',
'tag script',
'tag scripting',
'tag javascript'
],
answer: 1
},
{
question: 'Onde é o local certo de colocar o javascript?',
options: [
'Na tag body',
'Na tag head',
'Tanto na tag body quanto a head estão corretas'
],
answer: 2
},
{
question: 'Qual a sintaxe correta para adicionar um arquivo javascript externo na tag script?',
options: [
'name="xxx.js"',
'src="xxx.js"',
'href="xxx.js"'
],
answer: 1
},
{
question: 'Um arquivo javascript externo precisa ter a tag script',
options: [
'Verdade',
'Falso'
],
answer: 1
},
{
question: 'Como escrever um "Olá Mundo" em um alertbox?',
options: [
'alertBox("Olá Mundo")',
'msgBox("Olá Mundo")',
'msg("Olá Mundo")',
'alert("Olá Mundo")'
],
answer: 3
},
{
question: 'Como você cria uma função no Javascript?',
options: [
'function:minhaFuncao()',
'function = minhaFuncao()',
'function minhaFuncao()'
],
answer: 2
},
{
question: 'Como chamar uma função chamada "minhaFuncao"?',
options: [
'call minhaFuncao',
'call function minhaFuncao',
'minhaFuncao()'
],
answer: 2
},
{
question: 'Como escrever uma condicional IF no Javascript?',
options: [
'if i = 5',
'if i == 5 then',
'if (i == 5)',
'if i = 5 then'
],
answer: 2
},
{
question: 'Como fazer um if que executa um código caso "i" for diferente de 5',
options: [
'if (i != 5)',
'if (i <> 5)',
'if i <> 5',
'if i =! 5 then'
],
answer: 0
},
{
question: 'Como o loop while começa?',
options: [
'while (i <= 10)',
'while (i <= 10; i++)',
'while i = 1 to 10'
],
answer: 0
},
];