Commit a45bba015c331b149519b1b7442cb82cfcb6e2b4
1 parent
80656ba9
changes done and create json for Respiratory system.
Showing
21 changed files
with
352 additions
and
135 deletions
400-SOURCECODE/AIAHTML5.Web/app/controllers/LabExercController.js
... | ... | @@ -48,9 +48,9 @@ function ($scope, $rootScope, pages, log, $http, DataService, $filter, $location |
48 | 48 | $scope.getLabExerciseModules = function () { |
49 | 49 | //debugger; |
50 | 50 | $scope.LabExerciseModules1 = null; |
51 | - var commondataJsonPath = '~/../content/data/json/le/LabExercise.json'; | |
51 | + var labExerciseModulePath = '~/../content/data/json/le/labexercise.json'; | |
52 | 52 | |
53 | - DataService.getAnotherJson(commondataJsonPath).then( | |
53 | + DataService.getAnotherJson(labExerciseModulePath).then( | |
54 | 54 | function (result) { |
55 | 55 | //debugger; |
56 | 56 | //alert(JSON.stringify(result)); |
... | ... | @@ -68,7 +68,7 @@ function ($scope, $rootScope, pages, log, $http, DataService, $filter, $location |
68 | 68 | if (title != null) { |
69 | 69 | $scope.LabExerciseQuiz = title; |
70 | 70 | $scope.LabExerciseName = title.Topic; |
71 | - $location.url("/lab-exercises-detail?topic=" + (title.Slug || "")); | |
71 | + $location.url("/lab-exercises-detail?labexercise=" + (title.Slug || "")); | |
72 | 72 | } |
73 | 73 | |
74 | 74 | } |
... | ... | @@ -76,18 +76,18 @@ function ($scope, $rootScope, pages, log, $http, DataService, $filter, $location |
76 | 76 | |
77 | 77 | $scope.GetQuizByTopic = function () { |
78 | 78 | var keywords = $location.search(); |
79 | - $scope.LabExerciseName = keywords.topic; | |
79 | + $scope.LabExerciseName = keywords.labexercise; | |
80 | 80 | $scope.LabExerciseModules = null; |
81 | 81 | $scope.LabExerciseBoxes = null; |
82 | - var commondataJsonPath = '~/../content/data/json/le/' + $scope.LabExerciseName + '.json'; | |
82 | + var labExerciseModulePath = '~/../content/data/json/le/' + $scope.LabExerciseName + '.json'; | |
83 | 83 | |
84 | - DataService.getAnotherJson(commondataJsonPath).then( | |
84 | + DataService.getAnotherJson(labExerciseModulePath).then( | |
85 | 85 | function (result) { |
86 | 86 | //debugger; |
87 | 87 | // alert(JSON.stringify(result.LabExercise)); |
88 | 88 | $.each(result.LabExercise, function (index, value) { |
89 | 89 | $scope.LabExerciseName = result.LabExercise[index].Topic; |
90 | - if (result.LabExercise[index].Slug == keywords.topic) { | |
90 | + if (result.LabExercise[index].Slug == keywords.labexercise) { | |
91 | 91 | |
92 | 92 | $scope.TotalNumberofQuiz = result.LabExercise[index].NumberofQuestions; |
93 | 93 | $.each(result.LabExercise[index].Questions, function (index1, value1) { |
... | ... | @@ -105,7 +105,7 @@ function ($scope, $rootScope, pages, log, $http, DataService, $filter, $location |
105 | 105 | $scope.LabExerciseModules = result.LabExercise[index].Questions[index1]; |
106 | 106 | $scope.activityTitle = result.LabExercise[index].Questions[index1].activityTitle; |
107 | 107 | $scope.Title = result.LabExercise[index].Questions[index1].Title; |
108 | - $scope.Imagepath = keywords.topic + "/" + result.LabExercise[index].Questions[index1].ImagePath; | |
108 | + $scope.Imagepath = keywords.labexercise + "/" + result.LabExercise[index].Questions[index1].ImagePath; | |
109 | 109 | } |
110 | 110 | $scope.ShowHideDiv(result.LabExercise[index].Questions[index1].Options[0].textalign); |
111 | 111 | } |
... | ... | @@ -166,12 +166,12 @@ function ($scope, $rootScope, pages, log, $http, DataService, $filter, $location |
166 | 166 | if (id == "divoptions" || id == "divleft" || id == "divright") { |
167 | 167 | var item = $('#' + $scope.dragableId).html(); |
168 | 168 | var rindex = $scope.DraggedList.indexOf(item); |
169 | - var commondataJsonPath = '~/../content/data/json/le/' + keywords.topic + '.json'; | |
170 | - DataService.getAnotherJson(commondataJsonPath).then( | |
169 | + var labExerciseModulePath = '~/../content/data/json/le/' + keywords.labexercise + '.json'; | |
170 | + DataService.getAnotherJson(labExerciseModulePath).then( | |
171 | 171 | function (result) { |
172 | 172 | |
173 | 173 | $.each(result.LabExercise, function (index, value) { |
174 | - if (result.LabExercise[index].Slug == keywords.topic) { | |
174 | + if (result.LabExercise[index].Slug == keywords.labexercise) { | |
175 | 175 | $.each(result.LabExercise[index].Questions, function (index1, value1) { |
176 | 176 | if (result.LabExercise[index].Questions[index1].Number == $scope.quiznumber) { |
177 | 177 | var Options = result.LabExercise[index].Questions[index1].Options; |
... | ... | @@ -202,11 +202,11 @@ function ($scope, $rootScope, pages, log, $http, DataService, $filter, $location |
202 | 202 | } |
203 | 203 | else { |
204 | 204 | |
205 | - var commondataJsonPath = '~/../content/data/json/le/' + keywords.topic + '.json'; | |
206 | - DataService.getAnotherJson(commondataJsonPath).then( | |
205 | + var labExerciseModulePath = '~/../content/data/json/le/' + keywords.labexercise + '.json'; | |
206 | + DataService.getAnotherJson(labExerciseModulePath).then( | |
207 | 207 | function (result) { |
208 | 208 | $.each(result.LabExercise, function (index, value) { |
209 | - if (result.LabExercise[index].Slug == keywords.topic) { | |
209 | + if (result.LabExercise[index].Slug == keywords.labexercise) { | |
210 | 210 | $.each(result.LabExercise[index].Questions, function (index1, value1) { |
211 | 211 | if (result.LabExercise[index].Questions[index1].Number == $scope.quiznumber) { |
212 | 212 | var Options = result.LabExercise[index].Questions[index1].OptionBox; |
... | ... | @@ -260,12 +260,12 @@ function ($scope, $rootScope, pages, log, $http, DataService, $filter, $location |
260 | 260 | |
261 | 261 | $scope.ReviewAttempt = function () { |
262 | 262 | var keywords = $location.search(); |
263 | - var commondataJsonPath = '~/../content/data/json/le/' + keywords.topic + '.json'; | |
264 | - DataService.getAnotherJson(commondataJsonPath).then( | |
263 | + var labExerciseModulePath = '~/../content/data/json/le/' + keywords.labexercise + '.json'; | |
264 | + DataService.getAnotherJson(labExerciseModulePath).then( | |
265 | 265 | function (result) { |
266 | 266 | //alert(result) |
267 | 267 | $.each(result.LabExercise, function (index, value) { |
268 | - if (result.LabExercise[index].Slug == keywords.topic) { | |
268 | + if (result.LabExercise[index].Slug == keywords.labexercise) { | |
269 | 269 | $.each(result.LabExercise[index].Questions, function (index1, value1) { |
270 | 270 | if (result.LabExercise[index].Questions[index1].Number == $scope.quiznumber) { |
271 | 271 | var correctResponse = result.LabExercise[index].Questions[index1].correctResponse; | ... | ... |
400-SOURCECODE/AIAHTML5.Web/content/data/json/le/CS.json
400-SOURCECODE/AIAHTML5.Web/content/data/json/le/DS.json
400-SOURCECODE/AIAHTML5.Web/content/data/json/le/ES.json
400-SOURCECODE/AIAHTML5.Web/content/data/json/le/LS.json
400-SOURCECODE/AIAHTML5.Web/content/data/json/le/LabExercise.json
1 | 1 | ๏ปฟ{ |
2 | 2 | "LabExercise": [{ |
3 | 3 | "Topic": "Cardivascular System", |
4 | - "Slug": "CS", | |
4 | + "Slug": "cs", | |
5 | 5 | "TopicImagePath": "lab-exercises-1.jpg", |
6 | 6 | "NumberofQuestions": "18" |
7 | 7 | },{ |
8 | 8 | "Topic": "Digestive System", |
9 | - "Slug": "DS", | |
9 | + "Slug": "ds", | |
10 | 10 | "TopicImagePath": "lab-exercises-2.jpg", |
11 | 11 | "NumberofQuestions": "12" |
12 | 12 | },{ |
13 | 13 | "Topic": "Endocrine System", |
14 | - "Slug": "ES", | |
14 | + "Slug": "es", | |
15 | 15 | "TopicImagePath": "lab-exercises-3.jpg", |
16 | 16 | "NumberofQuestions": "12" |
17 | 17 | },{ |
18 | 18 | "Topic": "Lymphatic System", |
19 | - "Slug": "LS", | |
19 | + "Slug": "ls", | |
20 | 20 | "TopicImagePath": "lab-exercises-4.jpg", |
21 | 21 | "NumberofQuestions": "15" |
22 | 22 | },{ |
23 | 23 | "Topic": "Muscular System", |
24 | - "Slug": "MS", | |
24 | + "Slug": "ms", | |
25 | 25 | "TopicImagePath": "lab-exercises-5.jpg", |
26 | 26 | "NumberofQuestions": "13" |
27 | 27 | },{ |
28 | 28 | "Topic": "Nervous System", |
29 | - "Slug": "NS", | |
29 | + "Slug": "ns", | |
30 | 30 | "TopicImagePath": "lab-exercises-6.jpg", |
31 | 31 | "NumberofQuestions": "15" |
32 | 32 | },{ |
33 | 33 | "Topic": "Reproductive System", |
34 | - "Slug": "RP", | |
34 | + "Slug": "rp", | |
35 | 35 | "TopicImagePath": "lab-exercises-7.jpg", |
36 | 36 | "NumberofQuestions": "15" |
37 | 37 | },{ |
38 | 38 | "Topic": "Respiratory System", |
39 | - "Slug": "RS", | |
39 | + "Slug": "rs", | |
40 | 40 | "TopicImagePath": "lab-exercises-8.jpg", |
41 | - "NumberofQuestions": "15" | |
41 | + "NumberofQuestions": "13" | |
42 | 42 | },{ |
43 | 43 | "Topic": "Skeletal System", |
44 | - "Slug": "SK", | |
44 | + "Slug": "sk", | |
45 | 45 | "TopicImagePath": "lab-exercises-9.jpg", |
46 | 46 | "NumberofQuestions": "15" |
47 | 47 | },{ |
48 | 48 | "Topic": "Special System", |
49 | - "Slug": "SS", | |
49 | + "Slug": "ss", | |
50 | 50 | "TopicImagePath": "lab-exercises-10.jpg", |
51 | 51 | "NumberofQuestions": "15" |
52 | 52 | },{ |
53 | 53 | "Topic": "Urinary System", |
54 | - "Slug": "US", | |
54 | + "Slug": "us", | |
55 | 55 | "TopicImagePath": "lab-exercises-11.jpg", |
56 | 56 | "NumberofQuestions": "15" |
57 | 57 | }] | ... | ... |
400-SOURCECODE/AIAHTML5.Web/content/data/json/le/MS.json
400-SOURCECODE/AIAHTML5.Web/content/data/json/le/NS.json
1 | 1 | ๏ปฟ{"LabExercise" : [ |
2 | 2 | { |
3 | 3 | "Topic": "Nervous System", |
4 | - "Slug": "NS", | |
4 | + "Slug": "ns", | |
5 | 5 | "TopicImagePath": "lab-exercises-6.jpg", |
6 | 6 | "NumberofQuestions": "16", |
7 | 7 | "Questions": [ |
... | ... | @@ -13,9 +13,9 @@ |
13 | 13 | "OptionBox": [{"BoxName": "T1","topcoord":"108","leftcoord":"5","Answervalue":"","QuizText":""},{"BoxName": "T2","topcoord":"181","leftcoord":"5","Answervalue":"","QuizText":""}, |
14 | 14 | {"BoxName": "T3","topcoord":"267","leftcoord":"5","Answervalue":"","QuizText":""},{"BoxName": "T4","topcoord":"266","leftcoord":"616","Answervalue":"","QuizText":""} |
15 | 15 | ,{"BoxName": "T5","topcoord":"328","leftcoord":"616","Answervalue":"","QuizText":""}], |
16 | - "Options": [{"OptionNumber": "A","OptionTitle": "Ulnar nerve"},{"OptionNumber": "B","OptionTitle": "Median nerve"}, | |
17 | - {"OptionNumber": "C","OptionTitle": "Radial nerve"},{"OptionNumber": "D","OptionTitle": "Musculocutaneous nerve"} | |
18 | - ,{"OptionNumber": "E","OptionTitle": "Axillary nerve"}], | |
16 | + "Options": [{"OptionNumber": "A","OptionTitle": "Ulnar nerve","textalign":"left"},{"OptionNumber": "B","OptionTitle": "Median nerve","textalign":"left"}, | |
17 | + {"OptionNumber": "C","OptionTitle": "Radial nerve","textalign":"right"},{"OptionNumber": "D","OptionTitle": "Musculocutaneous nerve","textalign":"left"} | |
18 | + ,{"OptionNumber": "E","OptionTitle": "Axillary nerve","textalign":"right"}], | |
19 | 19 | "correctResponse": [{"OptionBox": "T1","Answer": "E"},{"OptionBox": "T2","Answer": "D"},{"OptionBox": "T3","Answer": "C"},{"OptionBox": "T4","Answer": "A"},{"OptionBox": "T5","Answer": "B"}] |
20 | 20 | },{ |
21 | 21 | "Number": "2", |
... | ... | @@ -25,9 +25,9 @@ |
25 | 25 | "OptionBox": [{"BoxName": "T1","topcoord":"201","leftcoord":"9","Answervalue":"","QuizText":""},{"BoxName": "T2","topcoord":"317","leftcoord":"9","Answervalue":"","QuizText":""}, |
26 | 26 | {"BoxName": "T3","topcoord":"65","leftcoord":"619","Answervalue":"","QuizText":""},{"BoxName": "T4","topcoord":"230","leftcoord":"619","Answervalue":"","QuizText":""}, |
27 | 27 | {"BoxName": "T5","topcoord":"371","leftcoord":"619","Answervalue":"","QuizText":""},{"BoxName": "T6","topcoord":"422","leftcoord":"619","Answervalue":"","QuizText":""}], |
28 | - "Options": [{"OptionNumber": "A","OptionTitle": "Frontal lobe"},{"OptionNumber": "B","OptionTitle": "Pituitary gland"}, | |
29 | - {"OptionNumber": "C","OptionTitle": "Mamillary body"},{"OptionNumber": "D","OptionTitle": "Cerebellum"}, | |
30 | - {"OptionNumber": "E","OptionTitle": "Occipital lobe"},{"OptionNumber": "F","OptionTitle": "Temporal lobe"}], | |
28 | + "Options": [{"OptionNumber": "A","OptionTitle": "Frontal lobe","textalign":"left"},{"OptionNumber": "B","OptionTitle": "Pituitary gland","textalign":"right"}, | |
29 | + {"OptionNumber": "C","OptionTitle": "Mamillary body","textalign":"left"},{"OptionNumber": "D","OptionTitle": "Cerebellum","textalign":"left"}, | |
30 | + {"OptionNumber": "E","OptionTitle": "Occipital lobe","textalign":"right"},{"OptionNumber": "F","OptionTitle": "Temporal lobe","textalign":"right"}], | |
31 | 31 | "correctResponse": [{"OptionBox": "T1","Answer": "B"},{"OptionBox": "T2","Answer": "F"},{"OptionBox": "T3","Answer": "A"},{"OptionBox": "T4","Answer": "C"}, |
32 | 32 | {"OptionBox": "T5","Answer": "D"},{"OptionBox": "T6","Answer": "E"}] |
33 | 33 | },{ |
... | ... | @@ -38,9 +38,9 @@ |
38 | 38 | "OptionBox": [{"BoxName": "T1","topcoord":"6","leftcoord":"4","Answervalue":"","QuizText":""},{"BoxName": "T2","topcoord":"166","leftcoord":"4","Answervalue":"","QuizText":""}, |
39 | 39 | {"BoxName": "T3","topcoord":"383","leftcoord":"4","Answervalue":"","QuizText":""},{"BoxName": "T4","topcoord":"196","leftcoord":"575","Answervalue":"","QuizText":""}, |
40 | 40 | {"BoxName": "T5","topcoord":"235","leftcoord":"575","Answervalue":"","QuizText":""},{"BoxName": "T6","topcoord":"346","leftcoord":"575","Answervalue":"","QuizText":""}], |
41 | - "Options": [{"OptionNumber": "A","OptionTitle": "Conus medullaris"},{"OptionNumber": "B","OptionTitle": "L5 spinal nerve"}, | |
42 | - {"OptionNumber": "C","OptionTitle": "Posterior superior iliac spine"},{"OptionNumber": "D","OptionTitle": "Filum terminale"}, | |
43 | - {"OptionNumber": "E","OptionTitle": "Coccyx"},{"OptionNumber": "F","OptionTitle": "Cauda equina"}], | |
41 | + "Options": [{"OptionNumber": "A","OptionTitle": "Conus medullaris","textalign":"left"},{"OptionNumber": "B","OptionTitle": "L5 spinal nerve","textalign":"right"}, | |
42 | + {"OptionNumber": "C","OptionTitle": "Posterior superior iliac spine","textalign":"left"},{"OptionNumber": "D","OptionTitle": "Filum terminale","textalign":"right"}, | |
43 | + {"OptionNumber": "E","OptionTitle": "Coccyx","textalign":"right"},{"OptionNumber": "F","OptionTitle": "Cauda equina","textalign":"left"}], | |
44 | 44 | "correctResponse": [{"OptionBox": "T1","Answer": "A"},{"OptionBox": "T2","Answer": "F"},{"OptionBox": "T3","Answer": "E"},{"OptionBox": "T4","Answer": "B"}, |
45 | 45 | {"OptionBox": "T5","Answer": "C"},{"OptionBox": "T6","Answer": "D"}] |
46 | 46 | },{ |
... | ... | @@ -50,8 +50,8 @@ |
50 | 50 | "ImagePath":"NS-04.JPG", |
51 | 51 | "OptionBox": [{"BoxName": "T1","topcoord":"91","leftcoord":"3","Answervalue":"","QuizText":""},{"BoxName": "T2","topcoord":"177","leftcoord":"3","Answervalue":"","QuizText":""}, |
52 | 52 | {"BoxName": "T3","topcoord":"86","leftcoord":"879","Answervalue":"","QuizText":""},{"BoxName": "T4","topcoord":"247","leftcoord":"879","Answervalue":"","QuizText":""}], |
53 | - "Options": [{"OptionNumber": "A","OptionTitle": "Ophthalmic division"},{"OptionNumber": "B","OptionTitle": "Maxillary division"}, | |
54 | - {"OptionNumber": "C","OptionTitle": "Mandibular division"},{"OptionNumber": "D","OptionTitle": "Trigeminal nerve"}], | |
53 | + "Options": [{"OptionNumber": "A","OptionTitle": "Ophthalmic division","textalign":"bottom"},{"OptionNumber": "B","OptionTitle": "Maxillary division","textalign":"bottom"}, | |
54 | + {"OptionNumber": "C","OptionTitle": "Mandibular division","textalign":"bottom"},{"OptionNumber": "D","OptionTitle": "Trigeminal nerve","textalign":"bottom"}], | |
55 | 55 | "correctResponse": [{"OptionBox": "T1","Answer": "D"},{"OptionBox": "T2","Answer": "C"},{"OptionBox": "T3","Answer": "A"},{"OptionBox": "T4","Answer": "B"}] |
56 | 56 | },{ |
57 | 57 | "Number": "5", |
... | ... | @@ -62,10 +62,10 @@ |
62 | 62 | {"BoxName": "T3","topcoord":"349","leftcoord":"7","Answervalue":"","QuizText":""},{"BoxName": "T4","topcoord":"120","leftcoord":"617","Answervalue":"","QuizText":""}, |
63 | 63 | {"BoxName": "T5","topcoord":"156","leftcoord":"617","Answervalue":"","QuizText":""},{"BoxName": "T6","topcoord":"284","leftcoord":"617","Answervalue":"","QuizText":""}, |
64 | 64 | {"BoxName": "T7","topcoord":"317","leftcoord":"617","Answervalue":"","QuizText":""},{"BoxName": "T8","topcoord":"350","leftcoord":"617","Answervalue":"","QuizText":""}], |
65 | - "Options": [{"OptionNumber": "A","OptionTitle": "Temporal branch"},{"OptionNumber": "B","OptionTitle": "Zygomatic branch"}, | |
66 | - {"OptionNumber": "C","OptionTitle": "Buccal branch"},{"OptionNumber": "D","OptionTitle": "Mandibular branch"}, | |
67 | - {"OptionNumber": "E","OptionTitle": "Masseter muscle"},{"OptionNumber": "F","OptionTitle": "Cervical branch"}, | |
68 | - {"OptionNumber": "G","OptionTitle": "Sternocleidomastoid muscle"},{"OptionNumber": "H","OptionTitle": "Parotid gland"}], | |
65 | + "Options": [{"OptionNumber": "A","OptionTitle": "Temporal branch","textalign":"left"},{"OptionNumber": "B","OptionTitle": "Zygomatic branch","textalign":"left"}, | |
66 | + {"OptionNumber": "C","OptionTitle": "Buccal branch","textalign":"left"},{"OptionNumber": "D","OptionTitle": "Mandibular branch","textalign":"right"}, | |
67 | + {"OptionNumber": "E","OptionTitle": "Masseter muscle","textalign":"right"},{"OptionNumber": "F","OptionTitle": "Cervical branch","textalign":"right"}, | |
68 | + {"OptionNumber": "G","OptionTitle": "Sternocleidomastoid muscle","textalign":"left"},{"OptionNumber": "H","OptionTitle": "Parotid gland","textalign":"right"}], | |
69 | 69 | "correctResponse": [{"OptionBox": "T1","Answer": "A"},{"OptionBox": "T2","Answer": "H"},{"OptionBox": "T3","Answer": "G"},{"OptionBox": "T4","Answer": "B"}, |
70 | 70 | {"OptionBox": "T5","Answer": "C"},{"OptionBox": "T6","Answer": "D"},{"OptionBox": "T7","Answer": "E"},{"OptionBox": "T8","Answer": "F"}] |
71 | 71 | },{ |
... | ... | @@ -77,10 +77,10 @@ |
77 | 77 | {"BoxName": "T3","topcoord":"261","leftcoord":"5","Answervalue":"","QuizText":""},{"BoxName": "T4","topcoord":"330","leftcoord":"5","Answervalue":"","QuizText":""}, |
78 | 78 | {"BoxName": "T5","topcoord":"58","leftcoord":"801","Answervalue":"","QuizText":""},{"BoxName": "T6","topcoord":"116","leftcoord":"801","Answervalue":"","QuizText":""}, |
79 | 79 | {"BoxName": "T7","topcoord":"185","leftcoord":"801","Answervalue":"","QuizText":""},{"BoxName": "T8","topcoord":"299","leftcoord":"801","Answervalue":"","QuizText":""}], |
80 | - "Options": [{"OptionNumber": "A","OptionTitle": "Parietal lobe"},{"OptionNumber": "B","OptionTitle": "Occipital lobe"}, | |
81 | - {"OptionNumber": "C","OptionTitle": "Cerebellum"},{"OptionNumber": "D","OptionTitle": "Medulla oblongata"}, | |
82 | - {"OptionNumber": "E","OptionTitle": "Spinal cord"},{"OptionNumber": "F","OptionTitle": "Pons"}, | |
83 | - {"OptionNumber": "G","OptionTitle": "Temporal lobe"},{"OptionNumber": "H","OptionTitle": "Frontal lobe"}], | |
80 | + "Options": [{"OptionNumber": "A","OptionTitle": "Parietal lobe","textalign":"bottom"},{"OptionNumber": "B","OptionTitle": "Occipital lobe","textalign":"bottom"}, | |
81 | + {"OptionNumber": "C","OptionTitle": "Cerebellum","textalign":"bottom"},{"OptionNumber": "D","OptionTitle": "Medulla oblongata","textalign":"bottom"}, | |
82 | + {"OptionNumber": "E","OptionTitle": "Spinal cord","textalign":"bottom"},{"OptionNumber": "F","OptionTitle": "Pons","textalign":"bottom"}, | |
83 | + {"OptionNumber": "G","OptionTitle": "Temporal lobe","textalign":"bottom"},{"OptionNumber": "H","OptionTitle": "Frontal lobe","textalign":"bottom"}], | |
84 | 84 | "correctResponse": [{"OptionBox": "T1","Answer": "H"},{"OptionBox": "T2","Answer": "G"},{"OptionBox": "T3","Answer": "F"},{"OptionBox": "T4","Answer": "E"}, |
85 | 85 | {"OptionBox": "T5","Answer": "A"},{"OptionBox": "T6","Answer": "B"},{"OptionBox": "T7","Answer": "C"},{"OptionBox": "T8","Answer": "D"}] |
86 | 86 | },{ |
... | ... | @@ -92,10 +92,10 @@ |
92 | 92 | {"BoxName": "T3","topcoord":"317","leftcoord":"9","Answervalue":"","QuizText":""},{"BoxName": "T4","topcoord":"67","leftcoord":"619","Answervalue":"","QuizText":""}, |
93 | 93 | {"BoxName": "T5","topcoord":"172","leftcoord":"619","Answervalue":"","QuizText":""},{"BoxName": "T6","topcoord":"255","leftcoord":"619","Answervalue":"","QuizText":""}, |
94 | 94 | {"BoxName": "T7","topcoord":"339","leftcoord":"619","Answervalue":"","QuizText":""},{"BoxName": "T8","topcoord":"399","leftcoord":"619","Answervalue":"","QuizText":""}], |
95 | - "Options": [{"OptionNumber": "A","OptionTitle": "Olfactory bulb"},{"OptionNumber": "B","OptionTitle": "Optic nerve"}, | |
96 | - {"OptionNumber": "C","OptionTitle": "Cerebellum"},{"OptionNumber": "D","OptionTitle": "Medulla oblongata"}, | |
97 | - {"OptionNumber": "E","OptionTitle": "Spinal cord"},{"OptionNumber": "F","OptionTitle": "Pons"}, | |
98 | - {"OptionNumber": "G","OptionTitle": "Temporal lobe"},{"OptionNumber": "H","OptionTitle": "Frontal lobe"}], | |
95 | + "Options": [{"OptionNumber": "A","OptionTitle": "Olfactory bulb","textalign":"left"},{"OptionNumber": "B","OptionTitle": "Optic nerve","textalign":"right"}, | |
96 | + {"OptionNumber": "C","OptionTitle": "Optic chiasma","textalign":"right"},{"OptionNumber": "D","OptionTitle": "Pituitary gland","textalign":"left"}, | |
97 | + {"OptionNumber": "E","OptionTitle": "Pons","textalign":"left"},{"OptionNumber": "F","OptionTitle": "Medulla oblongata","textalign":"left"}, | |
98 | + {"OptionNumber": "G","OptionTitle": "Spinal cord","textalign":"right"},{"OptionNumber": "H","OptionTitle": "Trigeminal nerve","textalign":"right"}], | |
99 | 99 | "correctResponse": [{"OptionBox": "T1","Answer": "D"},{"OptionBox": "T2","Answer": "H"},{"OptionBox": "T3","Answer": "F"},{"OptionBox": "T4","Answer": "A"}, |
100 | 100 | {"OptionBox": "T5","Answer": "B"},{"OptionBox": "T6","Answer": "C"},{"OptionBox": "T7","Answer": "E"},{"OptionBox": "T8","Answer": "G"}] |
101 | 101 | },{ |
... | ... | @@ -107,10 +107,10 @@ |
107 | 107 | {"BoxName": "T3","topcoord":"357","leftcoord":"5","Answervalue":"","QuizText":""},{"BoxName": "T4","topcoord":"52","leftcoord":"842","Answervalue":"","QuizText":""}, |
108 | 108 | {"BoxName": "T5","topcoord":"99","leftcoord":"842","Answervalue":"","QuizText":""},{"BoxName": "T6","topcoord":"187","leftcoord":"842","Answervalue":"","QuizText":""}, |
109 | 109 | {"BoxName": "T7","topcoord":"247","leftcoord":"842","Answervalue":"","QuizText":""}], |
110 | - "Options": [{"OptionNumber": "A","OptionTitle": "Psoas major muscle"},{"OptionNumber": "B","OptionTitle": "Iliacus muscle"}, | |
111 | - {"OptionNumber": "C","OptionTitle": "Inguinal ligament"},{"OptionNumber": "D","OptionTitle": "Sacral plexus"}, | |
112 | - {"OptionNumber": "E","OptionTitle": "Pudendal nerve"},{"OptionNumber": "F","OptionTitle": "Sciatic nerve"}, | |
113 | - {"OptionNumber": "G","OptionTitle": "Femoral nerve"}], | |
110 | + "Options": [{"OptionNumber": "A","OptionTitle": "Psoas major muscle","textalign":"bottom"},{"OptionNumber": "B","OptionTitle": "Iliacus muscle","textalign":"bottom"}, | |
111 | + {"OptionNumber": "C","OptionTitle": "Inguinal ligament","textalign":"bottom"},{"OptionNumber": "D","OptionTitle": "Sacral plexus","textalign":"bottom"}, | |
112 | + {"OptionNumber": "E","OptionTitle": "Pudendal nerve","textalign":"bottom"},{"OptionNumber": "F","OptionTitle": "Sciatic nerve","textalign":"bottom"}, | |
113 | + {"OptionNumber": "G","OptionTitle": "Femoral nerve","textalign":"bottom"}], | |
114 | 114 | "correctResponse": [{"OptionBox": "T1","Answer": "G"},{"OptionBox": "T2","Answer": "D"},{"OptionBox": "T3","Answer": "F"},{"OptionBox": "T4","Answer": "A"}, |
115 | 115 | {"OptionBox": "T5","Answer": "B"},{"OptionBox": "T6","Answer": "C"},{"OptionBox": "T7","Answer": "E"}] |
116 | 116 | },{ |
... | ... | @@ -122,10 +122,10 @@ |
122 | 122 | {"BoxName": "T3","topcoord":"171","leftcoord":"5","Answervalue":"","QuizText":""},{"BoxName": "T4","topcoord":"11","leftcoord":"517","Answervalue":"","QuizText":""}, |
123 | 123 | {"BoxName": "T5","topcoord":"63","leftcoord":"517","Answervalue":"","QuizText":""},{"BoxName": "T6","topcoord":"267","leftcoord":"517","Answervalue":"","QuizText":""}, |
124 | 124 | {"BoxName": "T7","topcoord":"427","leftcoord":"517","Answervalue":"","QuizText":""}], |
125 | - "Options": [{"OptionNumber": "A","OptionTitle": "Body of L1 vertebra"},{"OptionNumber": "B","OptionTitle": "Conus medullaris"}, | |
126 | - {"OptionNumber": "C","OptionTitle": "Body of L2 vertebra"},{"OptionNumber": "D","OptionTitle": "Filum terminale Internal terminal filum"}, | |
127 | - {"OptionNumber": "E","OptionTitle": "Body of S1 vertebra"},{"OptionNumber": "F","OptionTitle": "Coccyx"}, | |
128 | - {"OptionNumber": "G","OptionTitle": "Cauda equina"}], | |
125 | + "Options": [{"OptionNumber": "A","OptionTitle": "Body of L1 vertebra","textalign":"left"},{"OptionNumber": "B","OptionTitle": "Conus medullaris","textalign":"left"}, | |
126 | + {"OptionNumber": "C","OptionTitle": "Body of L2 vertebra","textalign":"right"},{"OptionNumber": "D","OptionTitle": "Filum terminale Internal terminal filum","textalign":"right"}, | |
127 | + {"OptionNumber": "E","OptionTitle": "Body of S1 vertebra","textalign":"left"},{"OptionNumber": "F","OptionTitle": "Coccyx","textalign":"left"}, | |
128 | + {"OptionNumber": "G","OptionTitle": "Cauda equina","textalign":"right"}], | |
129 | 129 | "correctResponse": [{"OptionBox": "T1","Answer": "B"},{"OptionBox": "T2","Answer": "D"},{"OptionBox": "T3","Answer": "G"},{"OptionBox": "T4","Answer": "A"}, |
130 | 130 | {"OptionBox": "T5","Answer": "C"},{"OptionBox": "T6","Answer": "E"},{"OptionBox": "T7","Answer": "F"}] |
131 | 131 | },{ |
... | ... | @@ -137,12 +137,12 @@ |
137 | 137 | {"BoxName": "T3","topcoord":"142","leftcoord":"6","Answervalue":"","QuizText":""},{"BoxName": "T4","topcoord":"247","leftcoord":"6","Answervalue":"","QuizText":""}, |
138 | 138 | {"BoxName": "T5","topcoord":"23","leftcoord":"783","Answervalue":"","QuizText":""},{"BoxName": "T6","topcoord":"77","leftcoord":"783","Answervalue":"","QuizText":""}, |
139 | 139 | {"BoxName": "T7","topcoord":"149","leftcoord":"783","Answervalue":"","QuizText":""},{"BoxName": "T8","topcoord":"244","leftcoord":"783","Answervalue":"","QuizText":""}], |
140 | - "Options": [{"OptionNumber": "A","OptionTitle": "Olfactory bulb"},{"OptionNumber": "B","OptionTitle": "Optic nerve"}, | |
141 | - {"OptionNumber": "C","OptionTitle": "Cerebellum"},{"OptionNumber": "D","OptionTitle": "Medulla oblongata"}, | |
142 | - {"OptionNumber": "E","OptionTitle": "Spinal cord"},{"OptionNumber": "F","OptionTitle": "Pons"}, | |
143 | - {"OptionNumber": "G","OptionTitle": "Temporal lobe"},{"OptionNumber": "H","OptionTitle": "Frontal lobe"}], | |
144 | - "correctResponse": [{"OptionBox": "T1","Answer": "D"},{"OptionBox": "T2","Answer": "H"},{"OptionBox": "T3","Answer": "F"},{"OptionBox": "T4","Answer": "A"}, | |
145 | - {"OptionBox": "T5","Answer": "B"},{"OptionBox": "T6","Answer": "C"},{"OptionBox": "T7","Answer": "E"},{"OptionBox": "T8","Answer": "G"}] | |
140 | + "Options": [{"OptionNumber": "A","OptionTitle": "Ventral nerve root","textalign":"bottom"},{"OptionNumber": "B","OptionTitle": "Dorsal nerve root","textalign":"bottom"}, | |
141 | + {"OptionNumber": "C","OptionTitle": "Dorsal root ganglion","textalign":"bottom"},{"OptionNumber": "D","OptionTitle": "Spinal nerve","textalign":"bottom"}, | |
142 | + {"OptionNumber": "E","OptionTitle": "Arachnoid mater","textalign":"bottom"},{"OptionNumber": "F","OptionTitle": "Dura mater","textalign":"bottom"}, | |
143 | + {"OptionNumber": "G","OptionTitle": "Pia mater","textalign":"bottom"},{"OptionNumber": "H","OptionTitle": "White matter","textalign":"bottom"}], | |
144 | + "correctResponse": [{"OptionBox": "T1","Answer": "H"},{"OptionBox": "T2","Answer": "C"},{"OptionBox": "T3","Answer": "G"},{"OptionBox": "T4","Answer": "F"}, | |
145 | + {"OptionBox": "T5","Answer": "B"},{"OptionBox": "T6","Answer": "D"},{"OptionBox": "T7","Answer": "A"},{"OptionBox": "T8","Answer": "E"}] | |
146 | 146 | },{ |
147 | 147 | "Number": "11", |
148 | 148 | "Title": "Drag the labels to the correct location on the image.", |
... | ... | @@ -152,10 +152,10 @@ |
152 | 152 | {"BoxName": "T3","topcoord":"270","leftcoord":"6","Answervalue":"","QuizText":""},{"BoxName": "T4","topcoord":"340","leftcoord":"6","Answervalue":"","QuizText":""}, |
153 | 153 | {"BoxName": "T5","topcoord":"34","leftcoord":"616","Answervalue":"","QuizText":""},{"BoxName": "T6","topcoord":"110","leftcoord":"616","Answervalue":"","QuizText":""}, |
154 | 154 | {"BoxName": "T7","topcoord":"210","leftcoord":"616","Answervalue":"","QuizText":""},{"BoxName": "T8","topcoord":"284","leftcoord":"616","Answervalue":"","QuizText":""}], |
155 | - "Options": [{"OptionNumber": "A","OptionTitle": "Superior cervical ganglion"},{"OptionNumber": "B","OptionTitle": "Middle cervical ganglion"}, | |
156 | - {"OptionNumber": "C","OptionTitle": "Thoracic duct"},{"OptionNumber": "D","OptionTitle": "Thoracic sympathetic ganglion"}, | |
157 | - {"OptionNumber": "E","OptionTitle": "White ramus communicans"},{"OptionNumber": "F","OptionTitle": "Gray ramus communicans"}, | |
158 | - {"OptionNumber": "G","OptionTitle": "Brachial plexus"},{"OptionNumber": "H","OptionTitle": "Phrenic nerve"}], | |
155 | + "Options": [{"OptionNumber": "A","OptionTitle": "Superior cervical ganglion","textalign":"right"},{"OptionNumber": "B","OptionTitle": "Middle cervical ganglion","textalign":"right"}, | |
156 | + {"OptionNumber": "C","OptionTitle": "Thoracic duct","textalign":"right"},{"OptionNumber": "D","OptionTitle": "Thoracic sympathetic ganglion","textalign":"left"}, | |
157 | + {"OptionNumber": "E","OptionTitle": "White ramus communicans","textalign":"left"},{"OptionNumber": "F","OptionTitle": "Gray ramus communicans","textalign":"left"}, | |
158 | + {"OptionNumber": "G","OptionTitle": "Brachial plexus","textalign":"right"},{"OptionNumber": "H","OptionTitle": "Phrenic nerve","textalign":"left"}], | |
159 | 159 | "correctResponse": [{"OptionBox": "T1","Answer": "H"},{"OptionBox": "T2","Answer": "G"},{"OptionBox": "T3","Answer": "F"},{"OptionBox": "T4","Answer": "E"}, |
160 | 160 | {"OptionBox": "T5","Answer": "A"},{"OptionBox": "T6","Answer": "B"},{"OptionBox": "T7","Answer": "C"},{"OptionBox": "T8","Answer": "D"}] |
161 | 161 | },{ |
... | ... | @@ -167,10 +167,10 @@ |
167 | 167 | {"BoxName": "T3","topcoord":"223","leftcoord":"4","Answervalue":"","QuizText":""},{"BoxName": "T4","topcoord":"260","leftcoord":"4","Answervalue":"","QuizText":""}, |
168 | 168 | {"BoxName": "T5","topcoord":"50","leftcoord":"821","Answervalue":"","QuizText":""},{"BoxName": "T6","topcoord":"126","leftcoord":"821","Answervalue":"","QuizText":""}, |
169 | 169 | {"BoxName": "T7","topcoord":"181","leftcoord":"821","Answervalue":"","QuizText":""},{"BoxName": "T8","topcoord":"256","leftcoord":"821","Answervalue":"","QuizText":""}], |
170 | - "Options": [{"OptionNumber": "A","OptionTitle": "Intercostal nerve"},{"OptionNumber": "B","OptionTitle": "Spinal cord"}, | |
171 | - {"OptionNumber": "C","OptionTitle": "Dorsal nerve root"},{"OptionNumber": "D","OptionTitle": "Ventral nerve root"}, | |
172 | - {"OptionNumber": "E","OptionTitle": "Dorsal root ganglion"},{"OptionNumber": "F","OptionTitle": "Dorsal ramus"}, | |
173 | - {"OptionNumber": "G","OptionTitle": "Ventral ramus"},{"OptionNumber": "H","OptionTitle": "Sympathetic ganglion"}], | |
170 | + "Options": [{"OptionNumber": "A","OptionTitle": "Intercostal nerve","textalign":"bottom"},{"OptionNumber": "B","OptionTitle": "Spinal cord","textalign":"bottom"}, | |
171 | + {"OptionNumber": "C","OptionTitle": "Dorsal nerve root","textalign":"bottom"},{"OptionNumber": "D","OptionTitle": "Ventral nerve root","textalign":"bottom"}, | |
172 | + {"OptionNumber": "E","OptionTitle": "Dorsal root ganglion","textalign":"bottom"},{"OptionNumber": "F","OptionTitle": "Dorsal ramus","textalign":"bottom"}, | |
173 | + {"OptionNumber": "G","OptionTitle": "Ventral ramus","textalign":"bottom"},{"OptionNumber": "H","OptionTitle": "Sympathetic ganglion","textalign":"bottom"}], | |
174 | 174 | "correctResponse": [{"OptionBox": "T1","Answer": "B"},{"OptionBox": "T2","Answer": "A"},{"OptionBox": "T3","Answer": "D"},{"OptionBox": "T4","Answer": "F"}, |
175 | 175 | {"OptionBox": "T5","Answer": "C"},{"OptionBox": "T6","Answer": "E"},{"OptionBox": "T7","Answer": "G"},{"OptionBox": "T8","Answer": "H"}] |
176 | 176 | },{ |
... | ... | @@ -180,8 +180,8 @@ |
180 | 180 | "ImagePath":"NS-13.JPG", |
181 | 181 | "OptionBox": [{"BoxName": "T1","topcoord":"32","leftcoord":"6","Answervalue":"","QuizText":""},{"BoxName": "T2","topcoord":"234","leftcoord":"5","Answervalue":"","QuizText":""}, |
182 | 182 | {"BoxName": "T3","topcoord":"38","leftcoord":"616","Answervalue":"","QuizText":""},{"BoxName": "T4","topcoord":"181","leftcoord":"616","Answervalue":"","QuizText":""}], |
183 | - "Options": [{"OptionNumber": "A","OptionTitle": "Cerebellum"},{"OptionNumber": "B","OptionTitle": "Precentral gyrus"}, | |
184 | - {"OptionNumber": "C","OptionTitle": "Central sulcus"},{"OptionNumber": "D","OptionTitle": "Postcentral gyrus"}], | |
183 | + "Options": [{"OptionNumber": "A","OptionTitle": "Cerebellum","textalign":"right"},{"OptionNumber": "B","OptionTitle": "Precentral gyrus","textalign":"right"}, | |
184 | + {"OptionNumber": "C","OptionTitle": "Central sulcus","textalign":"left"},{"OptionNumber": "D","OptionTitle": "Postcentral gyrus","textalign":"left"}], | |
185 | 185 | "correctResponse": [{"OptionBox": "T1","Answer": "D"},{"OptionBox": "T2","Answer": "A"},{"OptionBox": "T3","Answer": "C"},{"OptionBox": "T4","Answer": "B"}] |
186 | 186 | },{ |
187 | 187 | "Number": "14", |
... | ... | @@ -192,10 +192,10 @@ |
192 | 192 | {"BoxName": "T3","topcoord":"215","leftcoord":"4","Answervalue":"","QuizText":""},{"BoxName": "T4","topcoord":"288","leftcoord":"4","Answervalue":"","QuizText":""}, |
193 | 193 | {"BoxName": "T5","topcoord":"358","leftcoord":"4","Answervalue":"","QuizText":""},{"BoxName": "T6","topcoord":"47","leftcoord":"616","Answervalue":"","QuizText":""}, |
194 | 194 | {"BoxName": "T7","topcoord":"130","leftcoord":"616","Answervalue":"","QuizText":""},{"BoxName": "T8","topcoord":"222","leftcoord":"616","Answervalue":"","QuizText":""}], |
195 | - "Options": [{"OptionNumber": "A","OptionTitle": "Fornix"},{"OptionNumber": "B","OptionTitle": "Septum pellucidum"}, | |
196 | - {"OptionNumber": "C","OptionTitle": "Corpus callosum"},{"OptionNumber": "D","OptionTitle": "Superior sagittal sinus"}, | |
197 | - {"OptionNumber": "E","OptionTitle": "Choroid plexus"},{"OptionNumber": "F","OptionTitle": "Third ventricle"}, | |
198 | - {"OptionNumber": "G","OptionTitle": "Cerebral aqueduct"},{"OptionNumber": "H","OptionTitle": "Fourth ventricle"}], | |
195 | + "Options": [{"OptionNumber": "A","OptionTitle": "Fornix","textalign":"left"},{"OptionNumber": "B","OptionTitle": "Septum pellucidum","textalign":"left"}, | |
196 | + {"OptionNumber": "C","OptionTitle": "Corpus callosum","textalign":"right"},{"OptionNumber": "D","OptionTitle": "Superior sagittal sinus","textalign":"right"}, | |
197 | + {"OptionNumber": "E","OptionTitle": "Choroid plexus","textalign":"right"},{"OptionNumber": "F","OptionTitle": "Third ventricle","textalign":"left"}, | |
198 | + {"OptionNumber": "G","OptionTitle": "Cerebral aqueduct","textalign":"left"},{"OptionNumber": "H","OptionTitle": "Fourth ventricle","textalign":"right"}], | |
199 | 199 | "correctResponse": [{"OptionBox": "T1","Answer": "C"},{"OptionBox": "T2","Answer": "B"},{"OptionBox": "T3","Answer": "A"},{"OptionBox": "T4","Answer": "F"}, |
200 | 200 | {"OptionBox": "T5","Answer": "G"},{"OptionBox": "T6","Answer": "D"},{"OptionBox": "T7","Answer": "E"},{"OptionBox": "T8","Answer": "H"}] |
201 | 201 | },{ |
... | ... | @@ -207,10 +207,10 @@ |
207 | 207 | {"BoxName": "T3","topcoord":"246","leftcoord":"6","Answervalue":"","QuizText":""},{"BoxName": "T4","topcoord":"301","leftcoord":"6","Answervalue":"","QuizText":""}, |
208 | 208 | {"BoxName": "T5","topcoord":"358","leftcoord":"6","Answervalue":"","QuizText":""},{"BoxName": "T6","topcoord":"52","leftcoord":"616","Answervalue":"","QuizText":""}, |
209 | 209 | {"BoxName": "T7","topcoord":"144","leftcoord":"616","Answervalue":"","QuizText":""},{"BoxName": "T8","topcoord":"249","leftcoord":"616","Answervalue":"","QuizText":""}], |
210 | - "Options": [{"OptionNumber": "A","OptionTitle": "Neurohypophysis"},{"OptionNumber": "B","OptionTitle": "Infundibulum"}, | |
211 | - {"OptionNumber": "C","OptionTitle": "Optic chiasma"},{"OptionNumber": "D","OptionTitle": "Hypothalamus"}, | |
212 | - {"OptionNumber": "E","OptionTitle": "Mamillary body"},{"OptionNumber": "F","OptionTitle": "Thalamus"}, | |
213 | - {"OptionNumber": "G","OptionTitle": "Interthalamic adhesion"},{"OptionNumber": "H","OptionTitle": "Pineal body"}], | |
210 | + "Options": [{"OptionNumber": "A","OptionTitle": "Neurohypophysis","textalign":"left"},{"OptionNumber": "B","OptionTitle": "Infundibulum","textalign":"right"}, | |
211 | + {"OptionNumber": "C","OptionTitle": "Optic chiasma","textalign":"left"},{"OptionNumber": "D","OptionTitle": "Hypothalamus","textalign":"left"}, | |
212 | + {"OptionNumber": "E","OptionTitle": "Mamillary body","textalign":"left"},{"OptionNumber": "F","OptionTitle": "Thalamus","textalign":"right"}, | |
213 | + {"OptionNumber": "G","OptionTitle": "Interthalamic adhesion","textalign":"right"},{"OptionNumber": "H","OptionTitle": "Pineal body","textalign":"right"}], | |
214 | 214 | "correctResponse": [{"OptionBox": "T1","Answer": "D"},{"OptionBox": "T2","Answer": "E"},{"OptionBox": "T3","Answer": "C"},{"OptionBox": "T4","Answer": "B"}, |
215 | 215 | {"OptionBox": "T5","Answer": "A"},{"OptionBox": "T6","Answer": "F"},{"OptionBox": "T7","Answer": "G"},{"OptionBox": "T8","Answer": "H"}] |
216 | 216 | },{ |
... | ... | @@ -222,10 +222,10 @@ |
222 | 222 | {"BoxName": "T3","topcoord":"295","leftcoord":"4","Answervalue":"","QuizText":""},{"BoxName": "T4","topcoord":"356","leftcoord":"4","Answervalue":"","QuizText":""}, |
223 | 223 | {"BoxName": "T5","topcoord":"94","leftcoord":"616","Answervalue":"","QuizText":""},{"BoxName": "T6","topcoord":"168","leftcoord":"616","Answervalue":"","QuizText":""}, |
224 | 224 | {"BoxName": "T7","topcoord":"214","leftcoord":"616","Answervalue":"","QuizText":""},{"BoxName": "T8","topcoord":"294","leftcoord":"616","Answervalue":"","QuizText":""}], |
225 | - "Options": [{"OptionNumber": "A","OptionTitle": "Frontal sinus"},{"OptionNumber": "B","OptionTitle": "Sphenoidal sinus"}, | |
226 | - {"OptionNumber": "C","OptionTitle": "Superior colliculus"},{"OptionNumber": "D","OptionTitle": "Inferior colliculus"}, | |
227 | - {"OptionNumber": "E","OptionTitle": "Pons"},{"OptionNumber": "F","OptionTitle": "Cerebellum"}, | |
228 | - {"OptionNumber": "G","OptionTitle": "Arbor vitae"},{"OptionNumber": "H","OptionTitle": "Medulla oblongata"}], | |
225 | + "Options": [{"OptionNumber": "A","OptionTitle": "Frontal sinus","textalign":"right"},{"OptionNumber": "B","OptionTitle": "Sphenoidal sinus","textalign":"right"}, | |
226 | + {"OptionNumber": "C","OptionTitle": "Superior colliculus","textalign":"right"},{"OptionNumber": "D","OptionTitle": "Inferior colliculus","textalign":"left"}, | |
227 | + {"OptionNumber": "E","OptionTitle": "Pons","textalign":"left"},{"OptionNumber": "F","OptionTitle": "Cerebellum","textalign":"right"}, | |
228 | + {"OptionNumber": "G","OptionTitle": "Arbor vitae","textalign":"left"},{"OptionNumber": "H","OptionTitle": "Medulla oblongata","textalign":"left"}], | |
229 | 229 | "correctResponse": [{"OptionBox": "T1","Answer": "A"},{"OptionBox": "T2","Answer": "B"},{"OptionBox": "T3","Answer": "E"},{"OptionBox": "T4","Answer": "H"}, |
230 | 230 | {"OptionBox": "T5","Answer": "C"},{"OptionBox": "T6","Answer": "D"},{"OptionBox": "T7","Answer": "F"},{"OptionBox": "T8","Answer": "G"}] |
231 | 231 | }] | ... | ... |
400-SOURCECODE/AIAHTML5.Web/content/data/json/le/RP.json
1 | 1 | ๏ปฟ{"LabExercise" : [ |
2 | 2 | { |
3 | 3 | "Topic": "Reproductive System", |
4 | - "Slug": "RP", | |
4 | + "Slug": "rp", | |
5 | 5 | "TopicImagePath": "lab-exercises-7.jpg", |
6 | 6 | "NumberofQuestions": "12", |
7 | 7 | "Questions": [ |
... | ... | @@ -13,9 +13,9 @@ |
13 | 13 | "OptionBox": [{"BoxName": "T1","topcoord":"168","leftcoord":"4","Answervalue":"","QuizText":""},{"BoxName": "T2","topcoord":"219","leftcoord":"4","Answervalue":"","QuizText":""}, |
14 | 14 | {"BoxName": "T3","topcoord":"22","leftcoord":"614","Answervalue":"","QuizText":""},{"BoxName": "T4","topcoord":"202","leftcoord":"614","Answervalue":"","QuizText":""}, |
15 | 15 | {"BoxName": "T5","topcoord":"290","leftcoord":"614","Answervalue":"","QuizText":""},{"BoxName": "T6","topcoord":"343","leftcoord":"614","Answervalue":"","QuizText":""}], |
16 | - "Options": [{"OptionNumber": "A","OptionTitle": "Ovary"},{"OptionNumber": "B","OptionTitle": "Round ligament of uterus"}, | |
17 | - {"OptionNumber": "C","OptionTitle": "Ureter"},{"OptionNumber": "D","OptionTitle": "Uterus"}, | |
18 | - {"OptionNumber": "E","OptionTitle": "Urinary bladder"},{"OptionNumber": "F","OptionTitle": "Urethra"}], | |
16 | + "Options": [{"OptionNumber": "A","OptionTitle": "Ovary","textalign":"left"},{"OptionNumber": "B","OptionTitle": "Round ligament of uterus","textalign":"left"}, | |
17 | + {"OptionNumber": "C","OptionTitle": "Ureter","textalign":"right"},{"OptionNumber": "D","OptionTitle": "Uterus","textalign":"right"}, | |
18 | + {"OptionNumber": "E","OptionTitle": "Urinary bladder","textalign":"left"},{"OptionNumber": "F","OptionTitle": "Urethra","textalign":"right"}], | |
19 | 19 | "correctResponse": [{"OptionBox": "T1","Answer": "A"},{"OptionBox": "T2","Answer": "B"},{"OptionBox": "T3","Answer": "C"},{"OptionBox": "T4","Answer": "D"}, |
20 | 20 | {"OptionBox": "T5","Answer": "E"},{"OptionBox": "T6","Answer": "F"}] |
21 | 21 | },{ |
... | ... | @@ -27,10 +27,10 @@ |
27 | 27 | {"BoxName": "T3","topcoord":"212","leftcoord":"2","Answervalue":"","QuizText":""},{"BoxName": "T4","topcoord":"274","leftcoord":"2","Answervalue":"","QuizText":""}, |
28 | 28 | {"BoxName": "T5","topcoord":"91","leftcoord":"855","Answervalue":"","QuizText":""},{"BoxName": "T6","topcoord":"148","leftcoord":"855","Answervalue":"","QuizText":""}, |
29 | 29 | {"BoxName": "T7","topcoord":"184","leftcoord":"855","Answervalue":"","QuizText":""},{"BoxName": "T8","topcoord":"306","leftcoord":"855","Answervalue":"","QuizText":""}], |
30 | - "Options": [{"OptionNumber": "A","OptionTitle": "Left ovary"},{"OptionNumber": "B","OptionTitle": "Pubic symphysis"}, | |
31 | - {"OptionNumber": "C","OptionTitle": "Fundus of uterus"},{"OptionNumber": "D","OptionTitle": "Urinary bladder"}, | |
32 | - {"OptionNumber": "E","OptionTitle": "Vagina"},{"OptionNumber": "F","OptionTitle": "Labium minus"}, | |
33 | - {"OptionNumber": "G","OptionTitle": "Urethra"},{"OptionNumber": "H","OptionTitle": "Clitoris"}], | |
30 | + "Options": [{"OptionNumber": "A","OptionTitle": "Left ovary","textalign":"bottom"},{"OptionNumber": "B","OptionTitle": "Pubic symphysis","textalign":"bottom"}, | |
31 | + {"OptionNumber": "C","OptionTitle": "Fundus of uterus","textalign":"bottom"},{"OptionNumber": "D","OptionTitle": "Urinary bladder","textalign":"bottom"}, | |
32 | + {"OptionNumber": "E","OptionTitle": "Vagina","textalign":"bottom"},{"OptionNumber": "F","OptionTitle": "Labium minus","textalign":"bottom"}, | |
33 | + {"OptionNumber": "G","OptionTitle": "Urethra","textalign":"bottom"},{"OptionNumber": "H","OptionTitle": "Clitoris","textalign":"bottom"}], | |
34 | 34 | "correctResponse": [{"OptionBox": "T1","Answer": "C"},{"OptionBox": "T2","Answer": "D"},{"OptionBox": "T3","Answer": "B"},{"OptionBox": "T4","Answer": "H"}, |
35 | 35 | {"OptionBox": "T5","Answer": "A"},{"OptionBox": "T6","Answer": "G"},{"OptionBox": "T7","Answer": "E"},{"OptionBox": "T8","Answer": "F"}] |
36 | 36 | },{ |
... | ... | @@ -42,10 +42,10 @@ |
42 | 42 | {"BoxName": "T3","topcoord":"188","leftcoord":"5","Answervalue":"","QuizText":""},{"BoxName": "T4","topcoord":"233","leftcoord":"5","Answervalue":"","QuizText":""}, |
43 | 43 | {"BoxName": "T5","topcoord":"58","leftcoord":"944","Answervalue":"","QuizText":""},{"BoxName": "T6","topcoord":"104","leftcoord":"944","Answervalue":"","QuizText":""}, |
44 | 44 | {"BoxName": "T7","topcoord":"219","leftcoord":"944","Answervalue":"","QuizText":""},{"BoxName": "T8","topcoord":"300","leftcoord":"944","Answervalue":"","QuizText":""}], |
45 | - "Options": [{"OptionNumber": "A","OptionTitle": "Left ovary"},{"OptionNumber": "B","OptionTitle": "Pubic symphysis"}, | |
46 | - {"OptionNumber": "C","OptionTitle": "Fundus of uterus"},{"OptionNumber": "D","OptionTitle": "Urinary bladder"}, | |
47 | - {"OptionNumber": "E","OptionTitle": "Vagina"},{"OptionNumber": "F","OptionTitle": "Labium minus"}, | |
48 | - {"OptionNumber": "G","OptionTitle": "Urethra"},{"OptionNumber": "H","OptionTitle": "Clitoris"}], | |
45 | + "Options": [{"OptionNumber": "A","OptionTitle": "Left ovary","textalign":"bottom"},{"OptionNumber": "B","OptionTitle": "Pubic symphysis","textalign":"bottom"}, | |
46 | + {"OptionNumber": "C","OptionTitle": "Fundus of uterus","textalign":"bottom"},{"OptionNumber": "D","OptionTitle": "Urinary bladder","textalign":"bottom"}, | |
47 | + {"OptionNumber": "E","OptionTitle": "Vagina","textalign":"bottom"},{"OptionNumber": "F","OptionTitle": "Labium minus","textalign":"bottom"}, | |
48 | + {"OptionNumber": "G","OptionTitle": "Urethra","textalign":"bottom"},{"OptionNumber": "H","OptionTitle": "Clitoris","textalign":"bottom"}], | |
49 | 49 | "correctResponse": [{"OptionBox": "T1","Answer": "C"},{"OptionBox": "T2","Answer": "D"},{"OptionBox": "T3","Answer": "B"},{"OptionBox": "T4","Answer": "H"}, |
50 | 50 | {"OptionBox": "T5","Answer": "A"},{"OptionBox": "T6","Answer": "G"},{"OptionBox": "T7","Answer": "E"},{"OptionBox": "T8","Answer": "F"}] |
51 | 51 | },{ |
... | ... | @@ -55,8 +55,8 @@ |
55 | 55 | "ImagePath":"RP-04.JPG", |
56 | 56 | "OptionBox": [{"BoxName": "T1","topcoord":"80","leftcoord":"2","Answervalue":"","QuizText":""},{"BoxName": "T2","topcoord":"187","leftcoord":"2","Answervalue":"","QuizText":""}, |
57 | 57 | {"BoxName": "T3","topcoord":"103","leftcoord":"975","Answervalue":"","QuizText":""},{"BoxName": "T4","topcoord":"241","leftcoord":"975","Answervalue":"","QuizText":""}], |
58 | - "Options": [{"OptionNumber": "A","OptionTitle": "Pubic symphysis"},{"OptionNumber": "B","OptionTitle": "Epididymis"}, | |
59 | - {"OptionNumber": "C","OptionTitle": "Ductus deferens"},{"OptionNumber": "D","OptionTitle": "Testis"}], | |
58 | + "Options": [{"OptionNumber": "A","OptionTitle": "Pubic symphysis","textalign":"bottom"},{"OptionNumber": "B","OptionTitle": "Epididymis","textalign":"bottom"}, | |
59 | + {"OptionNumber": "C","OptionTitle": "Ductus deferens","textalign":"bottom"},{"OptionNumber": "D","OptionTitle": "Testis","textalign":"bottom"}], | |
60 | 60 | "correctResponse": [{"OptionBox": "T1","Answer": "A"},{"OptionBox": "T2","Answer": "B"},{"OptionBox": "T3","Answer": "C"},{"OptionBox": "T4","Answer": "D"}] |
61 | 61 | },{ |
62 | 62 | "Number": "5", |
... | ... | @@ -67,10 +67,10 @@ |
67 | 67 | {"BoxName": "T3","topcoord":"196","leftcoord":"7","Answervalue":"","QuizText":""},{"BoxName": "T4","topcoord":"276","leftcoord":"7","Answervalue":"","QuizText":""}, |
68 | 68 | {"BoxName": "T5","topcoord":"327","leftcoord":"7","Answervalue":"","QuizText":""},{"BoxName": "T6","topcoord":"95","leftcoord":"860","Answervalue":"","QuizText":""}, |
69 | 69 | {"BoxName": "T7","topcoord":"140","leftcoord":"860","Answervalue":"","QuizText":""},{"BoxName": "T8","topcoord":"190","leftcoord":"860","Answervalue":"","QuizText":""}], |
70 | - "Options": [{"OptionNumber": "A","OptionTitle": "Corpus cavernosum"},{"OptionNumber": "B","OptionTitle": "Corpus spongiosum"}, | |
71 | - {"OptionNumber": "C","OptionTitle": "Ureter"},{"OptionNumber": "D","OptionTitle": "Seminal vesicle"}, | |
72 | - {"OptionNumber": "E","OptionTitle": "Prostate gland"},{"OptionNumber": "F","OptionTitle": "Ductus deferens"}, | |
73 | - {"OptionNumber": "G","OptionTitle": "Epididymis"},{"OptionNumber": "H","OptionTitle": "Testis"}], | |
70 | + "Options": [{"OptionNumber": "A","OptionTitle": "Corpus cavernosum","textalign":"bottom"},{"OptionNumber": "B","OptionTitle": "Corpus spongiosum","textalign":"bottom"}, | |
71 | + {"OptionNumber": "C","OptionTitle": "Ureter","textalign":"bottom"},{"OptionNumber": "D","OptionTitle": "Seminal vesicle","textalign":"bottom"}, | |
72 | + {"OptionNumber": "E","OptionTitle": "Prostate gland","textalign":"bottom"},{"OptionNumber": "F","OptionTitle": "Ductus deferens","textalign":"bottom"}, | |
73 | + {"OptionNumber": "G","OptionTitle": "Epididymis","textalign":"bottom"},{"OptionNumber": "H","OptionTitle": "Testis","textalign":"bottom"}], | |
74 | 74 | "correctResponse": [{"OptionBox": "T1","Answer": "F"},{"OptionBox": "T2","Answer": "A"},{"OptionBox": "T3","Answer": "B"},{"OptionBox": "T4","Answer": "G"}, |
75 | 75 | {"OptionBox": "T5","Answer": "H"},{"OptionBox": "T6","Answer": "C"},{"OptionBox": "T7","Answer": "D"},{"OptionBox": "T8","Answer": "E"}] |
76 | 76 | },{ |
... | ... | @@ -82,10 +82,10 @@ |
82 | 82 | {"BoxName": "T3","topcoord":"178","leftcoord":"7","Answervalue":"","QuizText":""},{"BoxName": "T4","topcoord":"218","leftcoord":"7","Answervalue":"","QuizText":""}, |
83 | 83 | {"BoxName": "T5","topcoord":"106","leftcoord":"763","Answervalue":"","QuizText":""},{"BoxName": "T6","topcoord":"188","leftcoord":"763","Answervalue":"","QuizText":""}, |
84 | 84 | {"BoxName": "T7","topcoord":"292","leftcoord":"763","Answervalue":"","QuizText":""},{"BoxName": "T8","topcoord":"334","leftcoord":"763","Answervalue":"","QuizText":""}], |
85 | - "Options": [{"OptionNumber": "A","OptionTitle": "Ductus deferens"},{"OptionNumber": "B","OptionTitle": "Prostate gland"}, | |
86 | - {"OptionNumber": "C","OptionTitle": "Urinary Bladder"},{"OptionNumber": "D","OptionTitle": "Testis"}, | |
87 | - {"OptionNumber": "E","OptionTitle": "Epididymis"},{"OptionNumber": "F","OptionTitle": "Membranous part of urethra"}, | |
88 | - {"OptionNumber": "G","OptionTitle": "Prostatic part of urethra"},{"OptionNumber": "H","OptionTitle": "Seminal vesicle"}], | |
85 | + "Options": [{"OptionNumber": "A","OptionTitle": "Ductus deferens","textalign":"bottom"},{"OptionNumber": "B","OptionTitle": "Prostate gland","textalign":"bottom"}, | |
86 | + {"OptionNumber": "C","OptionTitle": "Urinary Bladder","textalign":"bottom"},{"OptionNumber": "D","OptionTitle": "Testis","textalign":"bottom"}, | |
87 | + {"OptionNumber": "E","OptionTitle": "Epididymis","textalign":"bottom"},{"OptionNumber": "F","OptionTitle": "Membranous part of urethra","textalign":"bottom"}, | |
88 | + {"OptionNumber": "G","OptionTitle": "Prostatic part of urethra","textalign":"bottom"},{"OptionNumber": "H","OptionTitle": "Seminal vesicle","textalign":"bottom"}], | |
89 | 89 | "correctResponse": [{"OptionBox": "T1","Answer": "A"},{"OptionBox": "T2","Answer": "H"},{"OptionBox": "T3","Answer": "G"},{"OptionBox": "T4","Answer": "F"}, |
90 | 90 | {"OptionBox": "T5","Answer": "C"},{"OptionBox": "T6","Answer": "B"},{"OptionBox": "T7","Answer": "E"},{"OptionBox": "T8","Answer": "D"}] |
91 | 91 | },{ |
... | ... | @@ -95,39 +95,75 @@ |
95 | 95 | "ImagePath":"RP-07.JPG", |
96 | 96 | "OptionBox": [{"BoxName": "T1","topcoord":"159","leftcoord":"7","Answervalue":"","QuizText":""},{"BoxName": "T2","topcoord":"195","leftcoord":"7","Answervalue":"","QuizText":""}, |
97 | 97 | {"BoxName": "T3","topcoord":"97","leftcoord":"820","Answervalue":"","QuizText":""},{"BoxName": "T4","topcoord":"158","leftcoord":"820","Answervalue":"","QuizText":""}], |
98 | - "Options": [{"OptionNumber": "A","OptionTitle": "Urethra"},{"OptionNumber": "B","OptionTitle": "Prostate gland"}, | |
99 | - {"OptionNumber": "C","OptionTitle": "Urinary Bladder"},{"OptionNumber": "D","OptionTitle": "Ejaculatory duct"}], | |
98 | + "Options": [{"OptionNumber": "A","OptionTitle": "Urethra","textalign":"bottom"},{"OptionNumber": "B","OptionTitle": "Prostate gland","textalign":"bottom"}, | |
99 | + {"OptionNumber": "C","OptionTitle": "Urinary Bladder","textalign":"bottom"},{"OptionNumber": "D","OptionTitle": "Ejaculatory duct","textalign":"bottom"}], | |
100 | 100 | "correctResponse": [{"OptionBox": "T1","Answer": "B"},{"OptionBox": "T2","Answer": "A"},{"OptionBox": "T3","Answer": "C"},{"OptionBox": "T4","Answer": "D"}] |
101 | 101 | },{ |
102 | 102 | "Number": "8", |
103 | 103 | "Title": "Complete the statements below.", |
104 | 104 | "activityTitle": "Male Reproductive II", |
105 | 105 | "ImagePath":"", |
106 | - "OptionBox": [{"BoxName": "T1","topcoord":"-191","leftcoord":"-131","Answervalue":"","QuizText":"________________________ is the surgical removal of the foreskin (prepuce) from the glans penis."}, | |
107 | - {"BoxName": "T2","topcoord":"-156","leftcoord":"-131","Answervalue":"","QuizText":"________________________ is a condition of undescended testes that can lead to sterility or cancer if not corrected."}, | |
108 | - {"BoxName": "T3","topcoord":"-122","leftcoord":"-131","Answervalue":"","QuizText":"________________________ is the inability to either achieve or maintain an erection."}, | |
109 | - {"BoxName": "T4","topcoord":"-88","leftcoord":"-131","Answervalue":"","QuizText":"________________________ is a low sperm count and is one of the main causes of male infertility."}, | |
110 | - {"BoxName": "T5","topcoord":"-54","leftcoord":"-131","Answervalue":"","QuizText":"________________________ is a sterilizing procedure for men where the vas deferens is severed and sutured."}], | |
111 | - "Options": [{"OptionNumber": "A","OptionTitle": "Circumcision"},{"OptionNumber": "B","OptionTitle": "Cryptorchidism"}, | |
112 | - {"OptionNumber": "C","OptionTitle": "Impotence"},{"OptionNumber": "D","OptionTitle": "Oligospermia"}, | |
113 | - {"OptionNumber": "E","OptionTitle": "Vasectomy"}], | |
106 | + "OptionBox": [{"BoxName": "T1","topcoord":"-191","leftcoord":"-54","Answervalue":"","QuizText":"________________________ is the surgical removal of the foreskin (prepuce) from the glans penis."}, | |
107 | + {"BoxName": "T2","topcoord":"-156","leftcoord":"-54","Answervalue":"","QuizText":"________________________ is a condition of undescended testes that can lead to sterility or cancer if not corrected."}, | |
108 | + {"BoxName": "T3","topcoord":"-122","leftcoord":"-54","Answervalue":"","QuizText":"________________________ is the inability to either achieve or maintain an erection."}, | |
109 | + {"BoxName": "T4","topcoord":"-88","leftcoord":"-54","Answervalue":"","QuizText":"________________________ is a low sperm count and is one of the main causes of male infertility."}, | |
110 | + {"BoxName": "T5","topcoord":"-54","leftcoord":"-54","Answervalue":"","QuizText":"________________________ is a sterilizing procedure for men where the vas deferens is severed and sutured."}], | |
111 | + "Options": [{"OptionNumber": "A","OptionTitle": "Circumcision","textalign":"bottom"},{"OptionNumber": "B","OptionTitle": "Cryptorchidism","textalign":"bottom"}, | |
112 | + {"OptionNumber": "C","OptionTitle": "Impotence","textalign":"bottom"},{"OptionNumber": "D","OptionTitle": "Oligospermia","textalign":"bottom"}, | |
113 | + {"OptionNumber": "E","OptionTitle": "Vasectomy","textalign":"bottom"}], | |
114 | 114 | "correctResponse": [{"OptionBox": "T1","Answer": "A"},{"OptionBox": "T2","Answer": "B"},{"OptionBox": "T3","Answer": "C"},{"OptionBox": "T4","Answer": "D"},{"OptionBox": "T5","Answer": "E"}] |
115 | 115 | },{ |
116 | 116 | "Number": "9", |
117 | 117 | "Title": "Complete the statements below.", |
118 | 118 | "activityTitle": "Female Reproductive", |
119 | 119 | "ImagePath":"", |
120 | - "OptionBox": [{"BoxName": "T1","topcoord":"-224","leftcoord":"-131","Answervalue":"","QuizText":"________________________ is the monthly discharge of the endometrial lining of the uterus."}, | |
121 | - {"BoxName": "T2","topcoord":"-191","leftcoord":"-131","Answervalue":"","QuizText":"________________________ is a womanำณ first menstrual period."}, | |
122 | - {"BoxName": "T3","topcoord":"-156","leftcoord":"-131","Answervalue":"","QuizText":"________________________ is an uncomfortable and often painful menstrual period."}, | |
123 | - {"BoxName": "T4","topcoord":"-122","leftcoord":"-131","Answervalue":"","QuizText":"________________________ is the cessation of monthly menstrual periods once a woman is beyond her reproductive years."}, | |
124 | - {"BoxName": "T5","topcoord":"-88","leftcoord":"-131","Answervalue":"","QuizText":"________________________ is the surgical removal of the uterus."}, | |
125 | - {"BoxName": "T6","topcoord":"-54","leftcoord":"-131","Answervalue":"","QuizText":"________________________ is a sterilizing procedure for women where the uterine tubes are severed and sutured."}], | |
126 | - "Options": [{"OptionNumber": "A","OptionTitle": "Menses"},{"OptionNumber": "B","OptionTitle": "Menarchy"}, | |
127 | - {"OptionNumber": "C","OptionTitle": "Dysmenorrhea"},{"OptionNumber": "D","OptionTitle": "Menopause"}, | |
128 | - {"OptionNumber": "E","OptionTitle": "Hysterectomy"},{"OptionNumber": "F","OptionTitle": "Tubal ligation"}], | |
120 | + "OptionBox": [{"BoxName": "T1","topcoord":"-224","leftcoord":"-54","Answervalue":"","QuizText":"________________________ is the monthly discharge of the endometrial lining of the uterus."}, | |
121 | + {"BoxName": "T2","topcoord":"-191","leftcoord":"-54","Answervalue":"","QuizText":"________________________ is a womanำณ first menstrual period."}, | |
122 | + {"BoxName": "T3","topcoord":"-156","leftcoord":"-54","Answervalue":"","QuizText":"________________________ is an uncomfortable and often painful menstrual period."}, | |
123 | + {"BoxName": "T4","topcoord":"-122","leftcoord":"-54","Answervalue":"","QuizText":"________________________ is the cessation of monthly menstrual periods once a woman is beyond her reproductive years."}, | |
124 | + {"BoxName": "T5","topcoord":"-88","leftcoord":"-54","Answervalue":"","QuizText":"________________________ is the surgical removal of the uterus."}, | |
125 | + {"BoxName": "T6","topcoord":"-54","leftcoord":"-54","Answervalue":"","QuizText":"________________________ is a sterilizing procedure for women where the uterine tubes are severed and sutured."}], | |
126 | + "Options": [{"OptionNumber": "A","OptionTitle": "Menses","textalign":"bottom"},{"OptionNumber": "B","OptionTitle": "Menarchy","textalign":"bottom"}, | |
127 | + {"OptionNumber": "C","OptionTitle": "Dysmenorrhea","textalign":"bottom"},{"OptionNumber": "D","OptionTitle": "Menopause","textalign":"bottom"}, | |
128 | + {"OptionNumber": "E","OptionTitle": "Hysterectomy","textalign":"bottom"},{"OptionNumber": "F","OptionTitle": "Tubal ligation","textalign":"bottom"}], | |
129 | 129 | "correctResponse": [{"OptionBox": "T1","Answer": "A"},{"OptionBox": "T2","Answer": "B"},{"OptionBox": "T3","Answer": "C"},{"OptionBox": "T4","Answer": "D"}, |
130 | 130 | {"OptionBox": "T5","Answer": "E"},{"OptionBox": "T6","Answer": "F"}] |
131 | + },{ | |
132 | + "Number": "10", | |
133 | + "Title": "Complete the statements below.", | |
134 | + "activityTitle": "Male Reproductive II", | |
135 | + "ImagePath":"", | |
136 | + "OptionBox": [{"BoxName": "T1","topcoord":"-156","leftcoord":"219","Answervalue":"","QuizText":"The sac containing the testes is called the ________________________."}, | |
137 | + {"BoxName": "T2","topcoord":"-122","leftcoord":"387","Answervalue":"","QuizText":"The singular part of the penis surrounding the penile urethra is the ________________________."}, | |
138 | + {"BoxName": "T3","topcoord":"-88","leftcoord":"536","Answervalue":"","QuizText":"The paired structures of the penis responsible for the rigidity of the erection are called the ________________________."}, | |
139 | + {"BoxName": "T4","topcoord":"-54","leftcoord":"217","Answervalue":"","QuizText":"The enlarged tip of the penis is called the ________________________."}], | |
140 | + "Options": [{"OptionNumber": "A","OptionTitle": "scrotum","textalign":"bottom"},{"OptionNumber": "B","OptionTitle": "corpus spongiosum","textalign":"bottom"}, | |
141 | + {"OptionNumber": "C","OptionTitle": "corpora cavernosa","textalign":"bottom"},{"OptionNumber": "D","OptionTitle": "glans penis","textalign":"bottom"}], | |
142 | + "correctResponse": [{"OptionBox": "T1","Answer": "A"},{"OptionBox": "T2","Answer": "B"},{"OptionBox": "T3","Answer": "C"},{"OptionBox": "T4","Answer": "D"}] | |
143 | + },{ | |
144 | + "Number": "11", | |
145 | + "Title": "Complete the statements below.", | |
146 | + "activityTitle": "Accessory Glands", | |
147 | + "ImagePath":"", | |
148 | + "OptionBox": [{"BoxName": "T1","topcoord":"-156","leftcoord":"-27","Answervalue":"","QuizText":"The ________________________ are the paired accessory glands that lie on the posterior bladder wall that produce approximately 60% of the volume of semen."}, | |
149 | + {"BoxName": "T2","topcoord":"-122","leftcoord":"-27","Answervalue":"","QuizText":"The ________________________ gland surrounds the urethra and it contributes approximately one third of the semen volume."}, | |
150 | + {"BoxName": "T3","topcoord":"-88","leftcoord":"885","Answervalue":"","QuizText":"The small, paired glands at the base of the penis that produce a lubricating, alkaline secretion into the urethra prior to ejaculation are called the ________________________ glands."}, | |
151 | + {"BoxName": "T4","topcoord":"-54","leftcoord":"514","Answervalue":"","QuizText":"The paired tubes that carry sperm from the epididymus to the ejaculatory duct are the ________________________ ."}], | |
152 | + "Options": [{"OptionNumber": "A","OptionTitle": "seminal vesicles","textalign":"bottom"},{"OptionNumber": "B","OptionTitle": "prostate","textalign":"bottom"}, | |
153 | + {"OptionNumber": "C","OptionTitle": "bulbourethral","textalign":"bottom"},{"OptionNumber": "D","OptionTitle": "vas deferens","textalign":"bottom"}], | |
154 | + "correctResponse": [{"OptionBox": "T1","Answer": "A"},{"OptionBox": "T2","Answer": "B"},{"OptionBox": "T3","Answer": "C"},{"OptionBox": "T4","Answer": "D"}] | |
155 | + },{ | |
156 | + "Number": "12", | |
157 | + "Title": "Complete the statements below.", | |
158 | + "activityTitle": "Hormones", | |
159 | + "ImagePath":"", | |
160 | + "OptionBox": [{"BoxName": "T1","topcoord":"-156","leftcoord":"735","Answervalue":"","QuizText":"The hormone produced by the testes that causes development of the secondary sexual characteristics in a male is called ________________________ ."}, | |
161 | + {"BoxName": "T2","topcoord":"-122","leftcoord":"755","Answervalue":"","QuizText":"The hormone produced by the ovaries that causes development of the secondary sexual characteristics in a female is called ________________________ ."}, | |
162 | + {"BoxName": "T3","topcoord":"-89","leftcoord":"917","Answervalue":"","QuizText":"The hormone secreted by the corpus luteum that sustains the thickness of the endometrium during the secretory phase of the uterine cycle is called ________________________ ."}, | |
163 | + {"BoxName": "T4","topcoord":"-54","leftcoord":"620","Answervalue":"","QuizText":"The hormone secreted by the sustentacular cells of the testes in response to spermatogenesis is called ________________________ ."}], | |
164 | + "Options": [{"OptionNumber": "A","OptionTitle": "testosterone","textalign":"bottom"},{"OptionNumber": "B","OptionTitle": "estrogen","textalign":"bottom"}, | |
165 | + {"OptionNumber": "C","OptionTitle": "progesterone","textalign":"bottom"},{"OptionNumber": "D","OptionTitle": "inhibin","textalign":"bottom"}], | |
166 | + "correctResponse": [{"OptionBox": "T1","Answer": "A"},{"OptionBox": "T2","Answer": "B"},{"OptionBox": "T3","Answer": "C"},{"OptionBox": "T4","Answer": "D"}] | |
131 | 167 | }] |
132 | 168 | }] |
133 | 169 | } |
134 | 170 | \ No newline at end of file | ... | ... |
400-SOURCECODE/AIAHTML5.Web/content/data/json/le/rs.json
0 โ 100644
1 | +๏ปฟ{"LabExercise" : [ | |
2 | + { | |
3 | + "Topic": "Respiratory System", | |
4 | + "Slug": "rs", | |
5 | + "TopicImagePath": "lab-exercises-8.jpg", | |
6 | + "NumberofQuestions": "13", | |
7 | + "Questions": [ | |
8 | + { | |
9 | + "Number": "1", | |
10 | + "Title": "Drag the labels to the correct location on the image.", | |
11 | + "activityTitle": "Thorax (Lat)", | |
12 | + "ImagePath":"RS-01.JPG", | |
13 | + "OptionBox": [{"BoxName": "T1","topcoord":"57","leftcoord":"4","Answervalue":"","QuizText":""},{"BoxName": "T2","topcoord":"163","leftcoord":"4","Answervalue":"","QuizText":""}, | |
14 | + {"BoxName": "T3","topcoord":"55","leftcoord":"614","Answervalue":"","QuizText":""},{"BoxName": "T4","topcoord":"155","leftcoord":"614","Answervalue":"","QuizText":""}, | |
15 | + {"BoxName": "T5","topcoord":"274","leftcoord":"614","Answervalue":"","QuizText":""},{"BoxName": "T6","topcoord":"392","leftcoord":"614","Answervalue":"","QuizText":""}], | |
16 | + "Options": [{"OptionNumber": "A","OptionTitle": "Trachea","textalign":"right"},{"OptionNumber": "B","OptionTitle": "Right primary bronchus","textalign":"left"}, | |
17 | + {"OptionNumber": "C","OptionTitle": "Superior vena cava","textalign":"right"},{"OptionNumber": "D","OptionTitle": "Phrenic nerve","textalign":"left"}, | |
18 | + {"OptionNumber": "E","OptionTitle": "Pericardial sac","textalign":"left"},{"OptionNumber": "F","OptionTitle": "Diaphragm","textalign":"right"}], | |
19 | + "correctResponse": [{"OptionBox": "T1","Answer": "A"},{"OptionBox": "T2","Answer": "B"},{"OptionBox": "T3","Answer": "C"},{"OptionBox": "T4","Answer": "D"}, | |
20 | + {"OptionBox": "T5","Answer": "E"},{"OptionBox": "T6","Answer": "F"}] | |
21 | + },{ | |
22 | + "Number": "2", | |
23 | + "Title": "Drag the labels to the correct location on the image.", | |
24 | + "activityTitle": "Nasal Cavity (Med)", | |
25 | + "ImagePath":"RS-02.JPG", | |
26 | + "OptionBox": [{"BoxName": "T1","topcoord":"165","leftcoord":"3","Answervalue":"","QuizText":""},{"BoxName": "T2","topcoord":"203","leftcoord":"3","Answervalue":"","QuizText":""}, | |
27 | + {"BoxName": "T3","topcoord":"239","leftcoord":"3","Answervalue":"","QuizText":""},{"BoxName": "T4","topcoord":"308","leftcoord":"3","Answervalue":"","QuizText":""}, | |
28 | + {"BoxName": "T5","topcoord":"30","leftcoord":"614","Answervalue":"","QuizText":""},{"BoxName": "T6","topcoord":"99","leftcoord":"614","Answervalue":"","QuizText":""}, | |
29 | + {"BoxName": "T7","topcoord":"159","leftcoord":"614","Answervalue":"","QuizText":""},{"BoxName": "T8","topcoord":"246","leftcoord":"614","Answervalue":"","QuizText":""}], | |
30 | + "Options": [{"OptionNumber": "A","OptionTitle": "Vestibule","textalign":"left"},{"OptionNumber": "B","OptionTitle": "Inferior nasal concha","textalign":"right"}, | |
31 | + {"OptionNumber": "C","OptionTitle": "Middle nasal concha","textalign":"right"},{"OptionNumber": "D","OptionTitle": "Frontal sinus","textalign":"left"}, | |
32 | + {"OptionNumber": "E","OptionTitle": "Superior nasal concha","textalign":"right"},{"OptionNumber": "F","OptionTitle": "Sphenoidal sinus","textalign":"left"}, | |
33 | + {"OptionNumber": "G","OptionTitle": "Pharyngeal tonsil","textalign":"left"},{"OptionNumber": "H","OptionTitle": "Auditory tube","textalign":"right"}], | |
34 | + "correctResponse": [{"OptionBox": "T1","Answer": "A"},{"OptionBox": "T2","Answer": "B"},{"OptionBox": "T3","Answer": "C"},{"OptionBox": "T4","Answer": "D"}, | |
35 | + {"OptionBox": "T5","Answer": "E"},{"OptionBox": "T6","Answer": "F"},{"OptionBox": "T7","Answer": "E"},{"OptionBox": "T8","Answer": "F"}] | |
36 | + },{ | |
37 | + "Number": "3", | |
38 | + "Title": "Drag the labels to the correct location on the image.", | |
39 | + "activityTitle": "Pharynx (Med)", | |
40 | + "ImagePath":"RS-03.JPG", | |
41 | + "OptionBox": [{"BoxName": "T1","topcoord":"241","leftcoord":"3","Answervalue":"","QuizText":""},{"BoxName": "T2","topcoord":"304","leftcoord":"3","Answervalue":"","QuizText":""}, | |
42 | + {"BoxName": "T3","topcoord":"360","leftcoord":"3","Answervalue":"","QuizText":""},{"BoxName": "T4","topcoord":"113","leftcoord":"614","Answervalue":"","QuizText":""}, | |
43 | + {"BoxName": "T5","topcoord":"190","leftcoord":"614","Answervalue":"","QuizText":""},{"BoxName": "T6","topcoord":"253","leftcoord":"614","Answervalue":"","QuizText":""}, | |
44 | + {"BoxName": "T7","topcoord":"306","leftcoord":"614","Answervalue":"","QuizText":""},{"BoxName": "T8","topcoord":"360","leftcoord":"614","Answervalue":"","QuizText":""}], | |
45 | + "Options": [{"OptionNumber": "A","OptionTitle": "Nasopharynx","textalign":"right"},{"OptionNumber": "B","OptionTitle": "Oropharynx","textalign":"left"}, | |
46 | + {"OptionNumber": "C","OptionTitle": "Laryngopharynx","textalign":"right"},{"OptionNumber": "D","OptionTitle": "Cricoid cartilage","textalign":"left"}, | |
47 | + {"OptionNumber": "E","OptionTitle": "Esophagus","textalign":"left"},{"OptionNumber": "F","OptionTitle": "Trachea","textalign":"right"}, | |
48 | + {"OptionNumber": "G","OptionTitle": "Thyroid cartilage","textalign":"left"},{"OptionNumber": "H","OptionTitle": "Epiglottis","textalign":"right"}], | |
49 | + "correctResponse": [{"OptionBox": "T1","Answer": "H"},{"OptionBox": "T2","Answer": "G"},{"OptionBox": "T3","Answer": "F"},{"OptionBox": "T4","Answer": "A"}, | |
50 | + {"OptionBox": "T5","Answer": "B"},{"OptionBox": "T6","Answer": "C"},{"OptionBox": "T7","Answer": "D"},{"OptionBox": "T8","Answer": "E"}] | |
51 | + },{ | |
52 | + "Number": "4", | |
53 | + "Title": "Drag the labels to the correct location on the image.", | |
54 | + "activityTitle": "Larynx (Ant)", | |
55 | + "ImagePath":"RS-04.JPG", | |
56 | + "OptionBox": [{"BoxName": "T1","topcoord":"83","leftcoord":"4","Answervalue":"","QuizText":""},{"BoxName": "T2","topcoord":"233","leftcoord":"4","Answervalue":"","QuizText":""}, | |
57 | + {"BoxName": "T3","topcoord":"412","leftcoord":"4","Answervalue":"","QuizText":""},{"BoxName": "T4","topcoord":"72","leftcoord":"614","Answervalue":"","QuizText":""}, | |
58 | + {"BoxName": "T5","topcoord":"226","leftcoord":"614","Answervalue":"","QuizText":""},{"BoxName": "T6","topcoord":"393","leftcoord":"614","Answervalue":"","QuizText":""}], | |
59 | + "Options": [{"OptionNumber": "A","OptionTitle": "Epiglottis","textalign":"right"},{"OptionNumber": "B","OptionTitle": "Hyoid bone","textalign":"left"}, | |
60 | + {"OptionNumber": "C","OptionTitle": "Laryngeal prominence","textalign":"right"},{"OptionNumber": "D","OptionTitle": "Thyroid cartilage","textalign":"left"}, | |
61 | + {"OptionNumber": "E","OptionTitle": "Cricoid cartilage","textalign":"left"},{"OptionNumber": "F","OptionTitle": "Trachea","textalign":"right"}], | |
62 | + "correctResponse": [{"OptionBox": "T1","Answer": "B"},{"OptionBox": "T2","Answer": "C"},{"OptionBox": "T3","Answer": "F"},{"OptionBox": "T4","Answer": "A"}, | |
63 | + {"OptionBox": "T5","Answer": "D"},{"OptionBox": "T6","Answer": "E"}] | |
64 | + },{ | |
65 | + "Number": "5", | |
66 | + "Title": "Drag the labels to the correct location on the image.", | |
67 | + "activityTitle": "Larynx (Sup)", | |
68 | + "ImagePath":"RS-05.JPG", | |
69 | + "OptionBox": [{"BoxName": "T1","topcoord":"9","leftcoord":"4","Answervalue":"","QuizText":""},{"BoxName": "T2","topcoord":"60","leftcoord":"4","Answervalue":"","QuizText":""}, | |
70 | + {"BoxName": "T3","topcoord":"202","leftcoord":"4","Answervalue":"","QuizText":""},{"BoxName": "T4","topcoord":"160","leftcoord":"923","Answervalue":"","QuizText":""}, | |
71 | + {"BoxName": "T5","topcoord":"248","leftcoord":"923","Answervalue":"","QuizText":""}], | |
72 | + "Options": [{"OptionNumber": "A","OptionTitle": "Hyoid bone","textalign":"bottom"},{"OptionNumber": "B","OptionTitle": "Epiglottis","textalign":"bottom"}, | |
73 | + {"OptionNumber": "C","OptionTitle": "Vocal ligament","textalign":"bottom"},{"OptionNumber": "D","OptionTitle": "Cricoid cartilage","textalign":"bottom"}, | |
74 | + {"OptionNumber": "E","OptionTitle": "Glottis","textalign":"bottom"}], | |
75 | + "correctResponse": [{"OptionBox": "T1","Answer": "A"},{"OptionBox": "T2","Answer": "B"},{"OptionBox": "T3","Answer": "E"},{"OptionBox": "T4","Answer": "C"}, | |
76 | + {"OptionBox": "T5","Answer": "D"}] | |
77 | + },{ | |
78 | + "Number": "6", | |
79 | + "Title": "Drag the labels to the correct location on the image.", | |
80 | + "activityTitle": "Larynx (Post)", | |
81 | + "ImagePath":"RS-06.JPG", | |
82 | + "OptionBox": [{"BoxName": "T1","topcoord":"92","leftcoord":"3","Answervalue":"","QuizText":""},{"BoxName": "T2","topcoord":"196","leftcoord":"3","Answervalue":"","QuizText":""}, | |
83 | + {"BoxName": "T3","topcoord":"431","leftcoord":"3","Answervalue":"","QuizText":""},{"BoxName": "T4","topcoord":"12","leftcoord":"614","Answervalue":"","QuizText":""}, | |
84 | + {"BoxName": "T5","topcoord":"190","leftcoord":"614","Answervalue":"","QuizText":""},{"BoxName": "T6","topcoord":"240","leftcoord":"614","Answervalue":"","QuizText":""}, | |
85 | + {"BoxName": "T7","topcoord":"325","leftcoord":"614","Answervalue":"","QuizText":""},{"BoxName": "T8","topcoord":"426","leftcoord":"614","Answervalue":"","QuizText":""}], | |
86 | + "Options": [{"OptionNumber": "A","OptionTitle": "Hyoid bone","textalign":"right"},{"OptionNumber": "B","OptionTitle": "Epiglottis","textalign":"left"}, | |
87 | + {"OptionNumber": "C","OptionTitle": "Corniculate cartilage","textalign":"right"},{"OptionNumber": "D","OptionTitle": "Thyroid cartilage","textalign":"right"}, | |
88 | + {"OptionNumber": "E","OptionTitle": "Arytenoid cartilage","textalign":"left"},{"OptionNumber": "F","OptionTitle": "Cricoid cartilage","textalign":"left"}, | |
89 | + {"OptionNumber": "G","OptionTitle": "Tracheal cartilage","textalign":"left"},{"OptionNumber": "H","OptionTitle": "Tracheal membrane","textalign":"right"}], | |
90 | + "correctResponse": [{"OptionBox": "T1","Answer": "A"},{"OptionBox": "T2","Answer": "C"},{"OptionBox": "T3","Answer": "H"},{"OptionBox": "T4","Answer": "B"}, | |
91 | + {"OptionBox": "T5","Answer": "D"},{"OptionBox": "T6","Answer": "E"},{"OptionBox": "T7","Answer": "F"},{"OptionBox": "T8","Answer": "G"}] | |
92 | + },{ | |
93 | + "Number": "7", | |
94 | + "Title": "Drag the labels to the correct location on the image.", | |
95 | + "activityTitle": "Lungs", | |
96 | + "ImagePath":"RS-07.JPG", | |
97 | + "OptionBox": [{"BoxName": "T1","topcoord":"113","leftcoord":"6","Answervalue":"","QuizText":""},{"BoxName": "T2","topcoord":"169","leftcoord":"6","Answervalue":"","QuizText":""}, | |
98 | + {"BoxName": "T3","topcoord":"206","leftcoord":"6","Answervalue":"","QuizText":""},{"BoxName": "T4","topcoord":"285","leftcoord":"6","Answervalue":"","QuizText":""}, | |
99 | + {"BoxName": "T5","topcoord":"332","leftcoord":"6","Answervalue":"","QuizText":""},{"BoxName": "T6","topcoord":"142","leftcoord":"823","Answervalue":"","QuizText":""}, | |
100 | + {"BoxName": "T7","topcoord":"223","leftcoord":"823","Answervalue":"","QuizText":""},{"BoxName": "T8","topcoord":"297","leftcoord":"823","Answervalue":"","QuizText":""}], | |
101 | + "Options": [{"OptionNumber": "A","OptionTitle": "Left superior lobe","textalign":"bottom"},{"OptionNumber": "B","OptionTitle": "Left oblique fissue","textalign":"bottom"}, | |
102 | + {"OptionNumber": "C","OptionTitle": "Left inferior lobe","textalign":"bottom"},{"OptionNumber": "D","OptionTitle": "Right inferior lobe","textalign":"bottom"}, | |
103 | + {"OptionNumber": "E","OptionTitle": "Right oblique fissure","textalign":"bottom"},{"OptionNumber": "F","OptionTitle": "Right middle lobe","textalign":"bottom"}, | |
104 | + {"OptionNumber": "G","OptionTitle": "Right horizontal fissure","textalign":"bottom"},{"OptionNumber": "H","OptionTitle": "Right superior lobe","textalign":"bottom"}], | |
105 | + "correctResponse": [{"OptionBox": "T1","Answer": "H"},{"OptionBox": "T2","Answer": "G"},{"OptionBox": "T3","Answer": "F"},{"OptionBox": "T4","Answer": "E"}, | |
106 | + {"OptionBox": "T5","Answer": "D"},{"OptionBox": "T6","Answer": "A"},{"OptionBox": "T7","Answer": "B"},{"OptionBox": "T8","Answer": "C"}] | |
107 | + },{ | |
108 | + "Number": "8", | |
109 | + "Title": "Drag the labels to the correct location on the image.", | |
110 | + "activityTitle": "Diaphragm", | |
111 | + "ImagePath":"RS-08.JPG", | |
112 | + "OptionBox": [{"BoxName": "T1","topcoord":"43","leftcoord":"3","Answervalue":"","QuizText":""},{"BoxName": "T2","topcoord":"92","leftcoord":"3","Answervalue":"","QuizText":""}, | |
113 | + {"BoxName": "T3","topcoord":"302","leftcoord":"3","Answervalue":"","QuizText":""},{"BoxName": "T4","topcoord":"341","leftcoord":"3","Answervalue":"","QuizText":""}, | |
114 | + {"BoxName": "T5","topcoord":"71","leftcoord":"613","Answervalue":"","QuizText":""},{"BoxName": "T6","topcoord":"181","leftcoord":"613","Answervalue":"","QuizText":""}, | |
115 | + {"BoxName": "T7","topcoord":"222","leftcoord":"613","Answervalue":"","QuizText":""},{"BoxName": "T8","topcoord":"342","leftcoord":"613","Answervalue":"","QuizText":""}], | |
116 | + "Options": [{"OptionNumber": "A","OptionTitle": "Pericardial sac","textalign":"bottom"},{"OptionNumber": "B","OptionTitle": "External intercostal muscle","textalign":"bottom"}, | |
117 | + {"OptionNumber": "C","OptionTitle": "Internal intercostal muscle","textalign":"bottom"},{"OptionNumber": "D","OptionTitle": "Liver","textalign":"bottom"}, | |
118 | + {"OptionNumber": "E","OptionTitle": "Diaphragm","textalign":"bottom"},{"OptionNumber": "F","OptionTitle": "Parietal pleura","textalign":"bottom"}, | |
119 | + {"OptionNumber": "G","OptionTitle": "Thymus","textalign":"bottom"},{"OptionNumber": "H","OptionTitle": "Trachea","textalign":"bottom"}], | |
120 | + "correctResponse": [{"OptionBox": "T1","Answer": "H"},{"OptionBox": "T2","Answer": "G"},{"OptionBox": "T3","Answer": "E"},{"OptionBox": "T4","Answer": "F"}, | |
121 | + {"OptionBox": "T5","Answer": "A"},{"OptionBox": "T6","Answer": "B"},{"OptionBox": "T7","Answer": "C"},{"OptionBox": "T8","Answer": "D"}] | |
122 | + },{ | |
123 | + "Number": "9", | |
124 | + "Title": "Drag the labels to the correct location on the image.", | |
125 | + "activityTitle": "Pulmonary Vessels", | |
126 | + "ImagePath":"RS-09.JPG", | |
127 | + "OptionBox": [{"BoxName": "T1","topcoord":"27","leftcoord":"3","Answervalue":"","QuizText":""},{"BoxName": "T2","topcoord":"109","leftcoord":"3","Answervalue":"","QuizText":""}, | |
128 | + {"BoxName": "T3","topcoord":"186","leftcoord":"3","Answervalue":"","QuizText":""},{"BoxName": "T4","topcoord":"268","leftcoord":"3","Answervalue":"","QuizText":""}, | |
129 | + {"BoxName": "T5","topcoord":"329","leftcoord":"3","Answervalue":"","QuizText":""},{"BoxName": "T6","topcoord":"47","leftcoord":"859","Answervalue":"","QuizText":""}, | |
130 | + {"BoxName": "T7","topcoord":"179","leftcoord":"859","Answervalue":"","QuizText":""},{"BoxName": "T8","topcoord":"284","leftcoord":"859","Answervalue":"","QuizText":""}], | |
131 | + "Options": [{"OptionNumber": "A","OptionTitle": "Right pulmonary artery","textalign":"bottom"},{"OptionNumber": "B","OptionTitle": "Right pulmonary vein","textalign":"bottom"}, | |
132 | + {"OptionNumber": "C","OptionTitle": "Esophagus","textalign":"bottom"},{"OptionNumber": "D","OptionTitle": "Aorta","textalign":"bottom"}, | |
133 | + {"OptionNumber": "E","OptionTitle": "Diaphragm","textalign":"bottom"},{"OptionNumber": "F","OptionTitle": "Right inferior lobe","textalign":"bottom"}, | |
134 | + {"OptionNumber": "G","OptionTitle": "Right middle lobe","textalign":"bottom"},{"OptionNumber": "H","OptionTitle": "Right superior lobe","textalign":"bottom"}], | |
135 | + "correctResponse": [{"OptionBox": "T1","Answer": "H"},{"OptionBox": "T2","Answer": "G"},{"OptionBox": "T3","Answer": "E"},{"OptionBox": "T4","Answer": "F"}, | |
136 | + {"OptionBox": "T5","Answer": "A"},{"OptionBox": "T6","Answer": "B"},{"OptionBox": "T7","Answer": "C"},{"OptionBox": "T8","Answer": "D"}] | |
137 | + },{ | |
138 | + "Number": "10", | |
139 | + "Title": "Drag the labels to the correct location on the image.", | |
140 | + "activityTitle": "Frontal Bronchi", | |
141 | + "ImagePath":"RS-10.JPG", | |
142 | + "OptionBox": [{"BoxName": "T1","topcoord":"18","leftcoord":"3","Answervalue":"","QuizText":""},{"BoxName": "T2","topcoord":"59","leftcoord":"3","Answervalue":"","QuizText":""}, | |
143 | + {"BoxName": "T3","topcoord":"263","leftcoord":"3","Answervalue":"","QuizText":""},{"BoxName": "T4","topcoord":"311","leftcoord":"3","Answervalue":"","QuizText":""}, | |
144 | + {"BoxName": "T5","topcoord":"44","leftcoord":"802","Answervalue":"","QuizText":""},{"BoxName": "T6","topcoord":"92","leftcoord":"802","Answervalue":"","QuizText":""}, | |
145 | + {"BoxName": "T7","topcoord":"159","leftcoord":"802","Answervalue":"","QuizText":""},{"BoxName": "T8","topcoord":"269","leftcoord":"802","Answervalue":"","QuizText":""}], | |
146 | + "Options": [{"OptionNumber": "A","OptionTitle": "Epiglottis","textalign":"bottom"},{"OptionNumber": "B","OptionTitle": "Cricoid cartilage","textalign":"bottom"}, | |
147 | + {"OptionNumber": "C","OptionTitle": "Trachea","textalign":"bottom"},{"OptionNumber": "D","OptionTitle": "Left primary bronchus","textalign":"bottom"}, | |
148 | + {"OptionNumber": "E","OptionTitle": "Esophagus","textalign":"bottom"},{"OptionNumber": "F","OptionTitle": "Right primary bronchus","textalign":"bottom"}, | |
149 | + {"OptionNumber": "G","OptionTitle": "Thyroid cartilage","textalign":"bottom"},{"OptionNumber": "H","OptionTitle": "Hyoid bone","textalign":"bottom"}], | |
150 | + "correctResponse": [{"OptionBox": "T1","Answer": "H"},{"OptionBox": "T2","Answer": "G"},{"OptionBox": "T3","Answer": "F"},{"OptionBox": "T4","Answer": "E"}, | |
151 | + {"OptionBox": "T5","Answer": "A"},{"OptionBox": "T6","Answer": "B"},{"OptionBox": "T7","Answer": "C"},{"OptionBox": "T8","Answer": "D"}] | |
152 | + },{ | |
153 | + "Number": "11", | |
154 | + "Title": "Drag the labels to the correct location on the image.", | |
155 | + "activityTitle": "Bronchial Tree", | |
156 | + "ImagePath":"RS-11.JPG", | |
157 | + "OptionBox": [{"BoxName": "T1","topcoord":"22","leftcoord":"3","Answervalue":"","QuizText":""},{"BoxName": "T2","topcoord":"307","leftcoord":"3","Answervalue":"","QuizText":""}, | |
158 | + {"BoxName": "T3","topcoord":"376","leftcoord":"3","Answervalue":"","QuizText":""},{"BoxName": "T4","topcoord":"419","leftcoord":"3","Answervalue":"","QuizText":""}, | |
159 | + {"BoxName": "T5","topcoord":"128","leftcoord":"614","Answervalue":"","QuizText":""},{"BoxName": "T6","topcoord":"210","leftcoord":"614","Answervalue":"","QuizText":""}, | |
160 | + {"BoxName": "T7","topcoord":"353","leftcoord":"614","Answervalue":"","QuizText":""},{"BoxName": "T8","topcoord":"422","leftcoord":"614","Answervalue":"","QuizText":""}], | |
161 | + "Options": [{"OptionNumber": "A","OptionTitle": "Right primary bronchus","textalign":"bottom"},{"OptionNumber": "B","OptionTitle": "Left primary bronchus","textalign":"bottom"}, | |
162 | + {"OptionNumber": "C","OptionTitle": "Left superior secondary bronchus","textalign":"bottom"},{"OptionNumber": "D","OptionTitle": "Left inferior secondary bronchus","textalign":"bottom"}, | |
163 | + {"OptionNumber": "E","OptionTitle": "Right inferior secondary bronchus","textalign":"bottom"},{"OptionNumber": "F","OptionTitle": "Right middle secondary bronchus","textalign":"bottom"}, | |
164 | + {"OptionNumber": "G","OptionTitle": "Right superior secondary bronchus","textalign":"bottom"},{"OptionNumber": "H","OptionTitle": "Trachea","textalign":"bottom"}], | |
165 | + "correctResponse": [{"OptionBox": "T1","Answer": "H"},{"OptionBox": "T2","Answer": "G"},{"OptionBox": "T3","Answer": "F"},{"OptionBox": "T4","Answer": "E"}, | |
166 | + {"OptionBox": "T5","Answer": "A"},{"OptionBox": "T6","Answer": "B"},{"OptionBox": "T7","Answer": "C"},{"OptionBox": "T8","Answer": "D"}] | |
167 | + },{ | |
168 | + "Number": "12", | |
169 | + "Title": "Complete the statements below.", | |
170 | + "activityTitle": "Pulmonary Ventilation", | |
171 | + "ImagePath":"", | |
172 | + "OptionBox": [{"BoxName": "T1","topcoord":"22","leftcoord":"3","Answervalue":"","QuizText":"The movement of air into and out of the lungs is called ______________________ ."}, | |
173 | + {"BoxName": "T2","topcoord":"307","leftcoord":"3","Answervalue":"","QuizText":"The exchange of gases between the alveoli of the lungs and the blood is called ______________________ ."}, | |
174 | + {"BoxName": "T3","topcoord":"376","leftcoord":"3","Answervalue":"","QuizText":"The exchange of gases between the blood and tissues is called ________________________ respiration."}, | |
175 | + {"BoxName": "T4","topcoord":"419","leftcoord":"3","Answervalue":"","QuizText":"The amount of air exchanged during quiet, restful breathing is called ______________________ volume."}], | |
176 | + "Options": [{"OptionNumber": "A","OptionTitle": "ventilation","textalign":"bottom"},{"OptionNumber": "B","OptionTitle": "external","textalign":"bottom"}, | |
177 | + {"OptionNumber": "C","OptionTitle": "internal","textalign":"bottom"},{"OptionNumber": "D","OptionTitle": "tidal","textalign":"bottom"}], | |
178 | + "correctResponse": [{"OptionBox": "T1","Answer": "A"},{"OptionBox": "T2","Answer": "B"},{"OptionBox": "T3","Answer": "C"},{"OptionBox": "T4","Answer": "D"}] | |
179 | + }] | |
180 | + }] | |
181 | +} | |
0 | 182 | \ No newline at end of file | ... | ... |
400-SOURCECODE/AIAHTML5.Web/content/images/LE/RS/RS-01.JPG
0 โ 100644
88.7 KB
400-SOURCECODE/AIAHTML5.Web/content/images/LE/RS/RS-02.JPG
0 โ 100644
69.2 KB
400-SOURCECODE/AIAHTML5.Web/content/images/LE/RS/RS-03.JPG
0 โ 100644
75.5 KB
400-SOURCECODE/AIAHTML5.Web/content/images/LE/RS/RS-04.JPG
0 โ 100644
40.7 KB
400-SOURCECODE/AIAHTML5.Web/content/images/LE/RS/RS-05.JPG
0 โ 100644
48.3 KB
400-SOURCECODE/AIAHTML5.Web/content/images/LE/RS/RS-06.JPG
0 โ 100644
43.5 KB
400-SOURCECODE/AIAHTML5.Web/content/images/LE/RS/RS-07.JPG
0 โ 100644
68.3 KB
400-SOURCECODE/AIAHTML5.Web/content/images/LE/RS/RS-08.JPG
0 โ 100644
69.3 KB
400-SOURCECODE/AIAHTML5.Web/content/images/LE/RS/RS-09.JPG
0 โ 100644
82 KB
400-SOURCECODE/AIAHTML5.Web/content/images/LE/RS/RS-10.JPG
0 โ 100644
77.3 KB
400-SOURCECODE/AIAHTML5.Web/content/images/LE/RS/RS-11.JPG
0 โ 100644
49 KB