Akshayram1 commited on
Commit
7b2799b
·
verified ·
1 Parent(s): 13a0a25

Create assets/questionnaire.json

Browse files
Files changed (1) hide show
  1. assets/questionnaire.json +137 -0
assets/questionnaire.json ADDED
@@ -0,0 +1,137 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "questionnaire": [
3
+ {
4
+ "section": "Subject Knowledge",
5
+ "questions": [
6
+ {
7
+ "type": "slider",
8
+ "question": "Rate your Mathematics proficiency (1-10)",
9
+ "min": 1,
10
+ "max": 10,
11
+ "default": 5
12
+ },
13
+ {
14
+ "type": "slider",
15
+ "question": "Rate your Physics proficiency (1-10)",
16
+ "min": 1,
17
+ "max": 10,
18
+ "default": 5
19
+ },
20
+ {
21
+ "type": "slider",
22
+ "question": "Rate your Chemistry proficiency (1-10)",
23
+ "min": 1,
24
+ "max": 10,
25
+ "default": 5
26
+ }
27
+ ]
28
+ },
29
+ {
30
+ "section": "Study Habits",
31
+ "questions": [
32
+ {
33
+ "type": "number",
34
+ "question": "How many hours do you study daily?",
35
+ "min": 0,
36
+ "max": 16,
37
+ "default": 4
38
+ },
39
+ {
40
+ "type": "select_slider",
41
+ "question": "How would you rate your time management skills?",
42
+ "options": ["Poor", "Average", "Good", "Excellent"],
43
+ "default": "Average"
44
+ },
45
+ {
46
+ "type": "radio",
47
+ "question": "What is your primary study method?",
48
+ "options": [
49
+ "Self-study",
50
+ "Coaching classes",
51
+ "Group study",
52
+ "Online courses"
53
+ ]
54
+ }
55
+ ]
56
+ },
57
+ {
58
+ "section": "Problem Solving",
59
+ "questions": [
60
+ {
61
+ "type": "radio",
62
+ "question": "What is your preferred problem-solving approach?",
63
+ "options": [
64
+ "Conceptual Understanding",
65
+ "Formula Memorization",
66
+ "Practice Problems"
67
+ ]
68
+ },
69
+ {
70
+ "type": "slider",
71
+ "question": "Rate your problem-solving speed (1-10)",
72
+ "min": 1,
73
+ "max": 10,
74
+ "default": 5
75
+ },
76
+ {
77
+ "type": "select",
78
+ "question": "Which subject do you find most challenging?",
79
+ "options": ["Mathematics", "Physics", "Chemistry"]
80
+ }
81
+ ]
82
+ },
83
+ {
84
+ "section": "Stress Management",
85
+ "questions": [
86
+ {
87
+ "type": "select_slider",
88
+ "question": "How would you describe your current stress level?",
89
+ "options": ["Very Low", "Low", "Moderate", "High", "Very High"],
90
+ "default": "Moderate"
91
+ },
92
+ {
93
+ "type": "radio",
94
+ "question": "How do you typically manage stress?",
95
+ "options": [
96
+ "Exercise/Sports",
97
+ "Meditation",
98
+ "Entertainment",
99
+ "Talking to friends/family",
100
+ "I don't manage stress"
101
+ ]
102
+ },
103
+ {
104
+ "type": "slider",
105
+ "question": "Rate your sleep quality (1-10)",
106
+ "min": 1,
107
+ "max": 10,
108
+ "default": 5
109
+ }
110
+ ]
111
+ },
112
+ {
113
+ "section": "Study Resources",
114
+ "questions": [
115
+ {
116
+ "type": "multiselect",
117
+ "question": "Which resources do you use for preparation?",
118
+ "options": [
119
+ "NCERT Books",
120
+ "Reference Books",
121
+ "Online Videos",
122
+ "Coaching Material",
123
+ "Mock Tests",
124
+ "Mobile Apps"
125
+ ]
126
+ },
127
+ {
128
+ "type": "slider",
129
+ "question": "How satisfied are you with your current resources? (1-10)",
130
+ "min": 1,
131
+ "max": 10,
132
+ "default": 5
133
+ }
134
+ ]
135
+ }
136
+ ]
137
+ }