-
Notifications
You must be signed in to change notification settings - Fork 0
/
questions.js
93 lines (93 loc) · 2.02 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
/*jslint es6:true*/
const questions = [
{
question: "$$(b^8)(b^4)$$",
ans1: "\\(b^2\\)",
ans2: "\\(b^{12}\\)",
ans3: "\\(b^4\\)",
ans4: "\\(b^{32}\\)",
answer: "\\(b^{12}\\)",
ansValue: 2
},
{
question: "$$(12b^8)(-6b^6)$$",
ans1: "\\(6b^2\\)",
ans2: "\\(-72b^{48}\\)",
ans3: "\\(72b^{14}\\)",
ans4: "\\(-72b^{14}\\)",
answer: "\\(-72b^{14}\\)",
ansValue: 4
},
{
question: "$$b^8 \\over b^2$$",
ans1: "\\(b^{6}\\)",
ans2: "\\(b^{10}\\)",
ans3: "\\(b^{4}\\)",
ans4: "\\(b^{16}\\)",
answer: "\\(b^{6}\\)",
ansValue: 1
},
{
question: "$$18b^6 \\over 9b^3$$",
ans1: "\\(9b^{3}\\)",
ans2: "\\(2b^{3}\\)",
ans3: "\\(9b^{9}\\)",
ans4: "\\(2b^{2}\\)",
answer: "\\(2b^{3}\\)",
ansValue: 2
},
{
question: "$$(b^8)^6$$",
ans1: "\\(b^{14}\\)",
ans2: "\\(b^{2}\\)",
ans3: "\\(b^{48}\\)",
ans4: "\\(b^{2}\\)",
answer: "\\(b^{48}\\)",
ansValue: 3
},
{
question: "$$(5b^3)^2$$",
ans1: "\\(5b^{6}\\)",
ans2: "\\(25b^{5}\\)",
ans3: "\\(5b^{5}\\)",
ans4: "\\(25b^{6}\\)",
answer: "\\(25b^{6}\\)",
ansValue: 4
},
{
question: "$$(a^4 b^3)^3$$",
ans1: "\\(a^4 b^3\\)",
ans2: "\\(a^7 b^6\\)",
ans3: "\\(a^{12} b^9\\)",
ans4: "\\(a^7 b^9\\)",
answer: "\\(a^{12} b^9\\)",
ansValue: 3
},
{
question: "$$b^{-8}$$",
ans1: "\\(1 \\over b^8\\)",
ans2: "\\(1 \\over b^{-8}\\)",
ans3: "\\(b^{8}\\)",
ans4: "\\(-b^8\\)",
answer: "\\(1 \\over b^8\\)",
ansValue: 1
},
{
question: "$$b^8 \\over b^{-6}$$",
ans1: "\\(b^{14}\\)",
ans2: "\\(b^{2}\\)",
ans3: "\\(b^{-48}\\)",
ans4: "\\(1 \\over b^{14}\\\)",
answer: "\\(b^{14}\\)",
ansValue: 1
},
{
question: "$$(6a^{-4}b^8c^4)^0$$",
ans1: "\\(6b^8c^4 \\over a^{4}\\)",
ans2: "\\(6\\)",
ans3: "\\(6b^8 \\over a^{4}\\)",
ans4: "\\(1\\)",
answer: "\\(1\\)",
ansValue: 4
}
];