-
Notifications
You must be signed in to change notification settings - Fork 90
/
questions.js
164 lines (164 loc) · 4.13 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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
const questions = [
{
question: "How often do you find yourself happy?",
options: [
{ value: 5, text: "Frequently" },
{ value: 3, text: "Sometimes" },
{ value: 1, text: "Neutral" },
{ value: 0, text: "Rarely" },
],
},
{
question: "Do you often experience feelings of excitement and enthusiasm?",
options: [
{ value: 5, text: "Frequently" },
{ value: 3, text: "Sometimes" },
{ value: 1, text: "Neutral" },
{ value: 0, text: "Rarely" },
],
},
{
question:
"How frequently do you feel grateful for the good things in your life?",
options: [
{ value: 5, text: "Frequently" },
{ value: 3, text: "Sometimes" },
{ value: 1, text: "Neutral" },
{ value: 0, text: "Rarely" },
],
},
{
question: "Do you feel jealous at some times?",
options: [
{ value: 0, text: "Affermative" },
{ value: 5, text: "Negative" },
],
},
{
question:
"Do you actively seek out new challenges to keep yourself engaged?",
options: [
{ value: 5, text: "Frequently" },
{ value: 3, text: "Sometimes" },
{ value: 1, text: "Neutral" },
{ value: 0, text: "Rarely" },
],
},
{
question:
"How often do you lose track of time, when you're doing activities you enjoy?",
options: [
{ value: 5, text: "Frequently" },
{ value: 3, text: "Sometimes" },
{ value: 1, text: "Neutral" },
{ value: 0, text: "Rarely" },
],
},
{
question: "How often do you get completely absorbed in what you're doing?",
options: [
{ value: 5, text: "Frequently" },
{ value: 3, text: "Sometimes" },
{ value: 1, text: "Neutral" },
{ value: 0, text: "Rarely" },
],
},
{
question: "Can you dance without fear in public?",
options: [
{ value: 5, text: "Affermative" },
{ value: 0, text: "Negative" },
],
},
{
question:
"Do you feel like you have a support system of friends and family?",
options: [
{ value: 5, text: "Affermative" },
{ value: 0, text: "Negative" },
],
},
{
question:
"How often do you spend quality time with people who uplift and inspire you?",
options: [
{ value: 5, text: "Frequently" },
{ value: 3, text: "Sometimes" },
{ value: 1, text: "Neutral" },
{ value: 0, text: "Rarely" },
],
},
{
question:
"Do you feel comfortable sharing your thoughts and feelings with others?",
options: [
{ value: 5, text: "Affermative" },
{ value: 0, text: "Negative" },
],
},
{
question: "Do you feel you need a partner?",
options: [
{ value: 0, text: "Affermative" },
{ value: 5, text: "Negative" },
],
},
{
question: "Do you feel a sense of purpose and direction in your life?",
options: [
{ value: 6, text: "Affermative" },
{ value: 0, text: "Negative" },
],
},
{
question:
"Do you feel that your life has a deeper meaning beyond just day-to-day activities?",
options: [
{ value: 5, text: "Affermative" },
{ value: 0, text: "Negative" },
],
},
{
question: "Do you spend negative time on socials?",
options: [
{ value: 0, text: "Affermative" },
{ value: 5, text: "Rarely" },
],
},
{
question: "Do you like going to college/school/office?",
options: [
{ value: 5, text: "Affermative" },
{ value: 0, text: "Negative" },
],
},
{
question: "Have you achieved any major goals?",
options: [
{ value: 5, text: "Affermative" },
{ value: 0, text: "Negative" },
],
},
{
question: "Do you think your Parents are proud of you?",
options: [
{ value: 5, text: "Affermative" },
{ value: 0, text: "Negative" },
],
},
{
question: "Do you think people respect you?",
options: [
{ value: 5, text: "Affermative" },
{ value: 0, text: "Negative" },
],
},
{
question: "Do you think you have done good in your life so far?",
options: [
{ value: 5, text: "Affermative" },
{ value: 0, text: "Negative" },
],
},
];
module.exports = questions;