Commit ab1b6261b5894186be03076e9417861e66701489

Authored by Nikita Kulshreshtha
1 parent 0663ce5c

added new json files

save function call was missing during previous merge. added that
400-SOURCECODE/AIAHTML5.Web/app/controllers/LabExercController.js
@@ -219,21 +219,23 @@ function ($scope, $rootScope, pages, log, $http,$timeout, DataService, $filter, @@ -219,21 +219,23 @@ function ($scope, $rootScope, pages, log, $http,$timeout, DataService, $filter,
219 // $scope.UserAnswersForAllQuestions.push({ 'QuestionNo': $scope.quiznumber, 'UserAnswer': "" }) 219 // $scope.UserAnswersForAllQuestions.push({ 'QuestionNo': $scope.quiznumber, 'UserAnswer': "" })
220 //} 220 //}
221 $scope.isNextOrPreviousClicked = true; 221 $scope.isNextOrPreviousClicked = true;
  222 + $scope.dragableId = "";
  223 +
  224 +
222 225
223 if ($scope.quiznumber != $scope.TotalNumberofQuiz) 226 if ($scope.quiznumber != $scope.TotalNumberofQuiz)
224 { 227 {
225 $scope.CreateLabExerciseDataToSave(); 228 $scope.CreateLabExerciseDataToSave();
226 } 229 }
227 230
228 -  
229 231
230 -  
231 - // console.log($rootScope.selectedDivArray);  
232 - $scope.dragableId = "";  
233 if ($scope.quiznumber == $scope.TotalNumberofQuiz) 232 if ($scope.quiznumber == $scope.TotalNumberofQuiz)
234 return; 233 return;
235 else 234 else
236 - $scope.quiznumber++; 235 + $scope.quiznumber++;
  236 +
  237 + // console.log($rootScope.selectedDivArray);
  238 +
237 239
238 240
239 if ($scope.quiznumber == $scope.TotalNumberofQuiz) { 241 if ($scope.quiznumber == $scope.TotalNumberofQuiz) {
@@ -318,8 +320,16 @@ function ($scope, $rootScope, pages, log, $http,$timeout, DataService, $filter, @@ -318,8 +320,16 @@ function ($scope, $rootScope, pages, log, $http,$timeout, DataService, $filter,
318 console.log($scope.usersCorrectQuestData); 320 console.log($scope.usersCorrectQuestData);
319 $("#resultLabData").empty(); 321 $("#resultLabData").empty();
320 for (var i = 0; i <= $scope.usersCorrectQuestData.length - 1; i++) { 322 for (var i = 0; i <= $scope.usersCorrectQuestData.length - 1; i++) {
321 - var labExerciseHtml = $("#resultLabData").append("<tr><td>" + $scope.usersCorrectQuestData[i].QuestionNo + "</td><td>" + $scope.usersCorrectQuestData[i].title + "</td><td>" + $scope.usersCorrectQuestData[i].CorrectStatus + "</td><td><button ng-click='reviewAttemptAnswer($event);' id=" + $scope.usersCorrectQuestData[i].QuestionNo + " class='btn btn-danger btn-sm'><i class='fa fa-times'></i> Review</button></td></tr>");  
322 - $compile(labExerciseHtml)($scope); 323 + if ($scope.usersCorrectQuestData[i].CorrectStatus == "Correct") {
  324 + var labExerciseHtml = $("#resultLabData").append("<tr><td>" + $scope.usersCorrectQuestData[i].QuestionNo + "</td><td>" + $scope.usersCorrectQuestData[i].title + "</td><td>" + $scope.usersCorrectQuestData[i].CorrectStatus + "</td><td><button ng-click='reviewAttemptAnswer($event);' id=" + $scope.usersCorrectQuestData[i].QuestionNo + " class='btn btn-sm' style='background-color:#007ab3;border-color:#007ab3;color:#ffffff;'><i class='fa fa-times'></i> Review</button></td></tr>");
  325 + $compile(labExerciseHtml)($scope);
  326 + }
  327 + else
  328 + {
  329 + var labExerciseHtml = $("#resultLabData").append("<tr><td>" + $scope.usersCorrectQuestData[i].QuestionNo + "</td><td>" + $scope.usersCorrectQuestData[i].title + "</td><td>" + $scope.usersCorrectQuestData[i].CorrectStatus + "</td><td><button ng-click='reviewAttemptAnswer($event);' id=" + $scope.usersCorrectQuestData[i].QuestionNo + " class='btn btn-sm' style=' background-color:#d9534f;border-color:#d9534f;color:#ffffff;'><i class='fa fa-times'></i> Review</button></td></tr>");
  330 + $compile(labExerciseHtml)($scope);
  331 + }
  332 +
323 } 333 }
324 } 334 }
325 335
@@ -635,7 +645,8 @@ function ($scope, $rootScope, pages, log, $http,$timeout, DataService, $filter, @@ -635,7 +645,8 @@ function ($scope, $rootScope, pages, log, $http,$timeout, DataService, $filter,
635 title: $scope.activityTitle 645 title: $scope.activityTitle
636 646
637 } 647 }
638 - alert("$scope.MaxScore=" + $scope.MaxScore + ", " + "$scope.Score=" + $scope.Score); 648 + console.log($scope.LabExerciseAttemptedData);
  649 +
639 if ($scope.MaxScore == $scope.Score) 650 if ($scope.MaxScore == $scope.Score)
640 { 651 {
641 $scope.usersCorrectQuestData.push({ 652 $scope.usersCorrectQuestData.push({
@@ -646,7 +657,8 @@ function ($scope, $rootScope, pages, log, $http,$timeout, DataService, $filter, @@ -646,7 +657,8 @@ function ($scope, $rootScope, pages, log, $http,$timeout, DataService, $filter,
646 DragItems: $scope.DragItems, 657 DragItems: $scope.DragItems,
647 Score: $scope.Score, 658 Score: $scope.Score,
648 title: $scope.activityTitle, 659 title: $scope.activityTitle,
649 - CorrectStatus : 'Correct' 660 + CorrectStatus: 'Correct'
  661 +
650 }); 662 });
651 } 663 }
652 else 664 else
@@ -660,6 +672,7 @@ function ($scope, $rootScope, pages, log, $http,$timeout, DataService, $filter, @@ -660,6 +672,7 @@ function ($scope, $rootScope, pages, log, $http,$timeout, DataService, $filter,
660 Score: $scope.Score, 672 Score: $scope.Score,
661 title: $scope.activityTitle, 673 title: $scope.activityTitle,
662 CorrectStatus: 'Incorrect' 674 CorrectStatus: 'Incorrect'
  675 +
663 }); 676 });
664 } 677 }
665 678
@@ -742,7 +755,14 @@ function ($scope, $rootScope, pages, log, $http,$timeout, DataService, $filter, @@ -742,7 +755,14 @@ function ($scope, $rootScope, pages, log, $http,$timeout, DataService, $filter,
742 .select(); 755 .select();
743 for (var i = 0; i < cr[0].correctResponse.length; i++) { 756 for (var i = 0; i < cr[0].correctResponse.length; i++) {
744 var blankBox = cr[0].correctResponse[i].OptionBox; 757 var blankBox = cr[0].correctResponse[i].OptionBox;
745 - var option = cr[0].correctResponse[i].Answer; 758 +
  759 + var option;
  760 + if (cr[0].correctResponse[i].Answer.indexOf('|') != -1) {
  761 + var multipleanswer = cr[0].correctResponse[i].Answer.split('|');
  762 + option = multipleanswer[0];
  763 + }
  764 + else
  765 + option = cr[0].correctResponse[i].Answer;
746 766
747 var options = new jinqJs() 767 var options = new jinqJs()
748 .from(cr[0].Options) 768 .from(cr[0].Options)
@@ -815,8 +835,6 @@ function ($scope, $rootScope, pages, log, $http,$timeout, DataService, $filter, @@ -815,8 +835,6 @@ function ($scope, $rootScope, pages, log, $http,$timeout, DataService, $filter,
815 835
816 $scope.ShowSavedLabExercise = function () { 836 $scope.ShowSavedLabExercise = function () {
817 837
818 -  
819 -  
820 //from database 838 //from database
821 839
822 var lastQuestion = $scope.quiznumber; 840 var lastQuestion = $scope.quiznumber;
400-SOURCECODE/AIAHTML5.Web/app/views/LabExerc/lab-exercises-detail.html
@@ -66,7 +66,7 @@ @@ -66,7 +66,7 @@
66 <div class="btn-group pull-left marginR5"> 66 <div class="btn-group pull-left marginR5">
67 <button class="btn btn-sm btn-primary" style="display:none;" ng-click="SubmitAttempt()" id="quizSubmitBtn">Submit</button> 67 <button class="btn btn-sm btn-primary" style="display:none;" ng-click="SubmitAttempt()" id="quizSubmitBtn">Submit</button>
68 <button class="btn btn-sm btn-primary" style="display:none;" id="reportBtn" ng-click="ReportGen()">Report</button> 68 <button class="btn btn-sm btn-primary" style="display:none;" id="reportBtn" ng-click="ReportGen()">Report</button>
69 - <button class="btn btn-sm btn-primary" id="saveBtn">Save</button> 69 + <button class="btn btn-sm btn-primary" id="saveBtn" ng-click="SaveAnswer()">Save</button>
70 <button class="btn btn-sm btn-primary" id="reviewBtn" ng-click="ReviewAttempt()">Review Your Attempt</button> 70 <button class="btn btn-sm btn-primary" id="reviewBtn" ng-click="ReviewAttempt()">Review Your Attempt</button>
71 <button class="btn btn-sm btn-primary" id="resetBtn" ng-click="resetQuiz()">Reset</button> 71 <button class="btn btn-sm btn-primary" id="resetBtn" ng-click="resetQuiz()">Reset</button>
72 </div> 72 </div>
400-SOURCECODE/AIAHTML5.Web/content/data/json/le/qz_dat_ca.json
@@ -10,11 +10,11 @@ @@ -10,11 +10,11 @@
10 "Title": "Drag the labels to the correct location on the image.", 10 "Title": "Drag the labels to the correct location on the image.",
11 "activityTitle": "Heart & Great Vessels I", 11 "activityTitle": "Heart & Great Vessels I",
12 "ImagePath":"CS-01.JPG", 12 "ImagePath":"CS-01.JPG",
13 - "OptionBox": [{"BoxName": "T1","topcoord":"121","leftcoord":"23","Answervalue":"","QuizText":""},{"BoxName": "T3","topcoord":"112","leftcoord":"960","Answervalue":"","QuizText":""},  
14 - {"BoxName": "T4","topcoord":"194","leftcoord":"23","Answervalue":"","QuizText":""},{"BoxName": "T5","topcoord":"168","leftcoord":"960","Answervalue":"","QuizText":""},  
15 - {"BoxName": "T3","topcoord":"252","leftcoord":"23","Answervalue":"","QuizText":""},{"BoxName": "T6","topcoord":"210","leftcoord":"960","Answervalue":"","QuizText":""},  
16 - {"BoxName": "T7","topcoord":"250","leftcoord":"960","Answervalue":"","QuizText":""},{"BoxName": "T8","topcoord":"292","leftcoord":"960","Answervalue":"","QuizText":""}],  
17 - "Options": [{"OptionNumber": "A","OptionTitle": "Right brachiocephalic vein","textalign":"bottom"},{"OptionNumber": "B","OptionTitle": "Brachiocephalic artery","textalign":"bottom"}, 13 + "OptionBox": [{"BoxName": "T1","topcoord":"10","leftcoord":"2","Answervalue":"","QuizText":""},{"BoxName": "T2","topcoord":"197","leftcoord":"2","Answervalue":"","QuizText":""},
  14 + {"BoxName": "T3","topcoord":"275","leftcoord":"2","Answervalue":"","QuizText":""},{"BoxName": "T4","topcoord":"396","leftcoord":"2","Answervalue":"","QuizText":""},
  15 + {"BoxName": "T5","topcoord":"436","leftcoord":"2","Answervalue":"","QuizText":""},{"BoxName": "T6","topcoord":"207","leftcoord":"584","Answervalue":"","QuizText":""},
  16 + {"BoxName": "T7","topcoord":"282","leftcoord":"584","Answervalue":"","QuizText":""}],
  17 + "Options": [{"OptionNumber": "A","OptionTitle": "Right brachiocephalic vein","textalign":"bottom"},{"OptionNumber": "B","OptionTitle": "Brachiocephalic artery","textalign":"bottom"},
18 {"OptionNumber": "C","OptionTitle": "Superior vena cava","textalign":"bottom"},{"OptionNumber": "D","OptionTitle": "Pulmonary trunk","textalign":"bottom"}, 18 {"OptionNumber": "C","OptionTitle": "Superior vena cava","textalign":"bottom"},{"OptionNumber": "D","OptionTitle": "Pulmonary trunk","textalign":"bottom"},
19 {"OptionNumber": "E","OptionTitle": "Aorta","textalign":"bottom"},{"OptionNumber": "F","OptionTitle": "Right ventricle","textalign":"bottom"}, 19 {"OptionNumber": "E","OptionTitle": "Aorta","textalign":"bottom"},{"OptionNumber": "F","OptionTitle": "Right ventricle","textalign":"bottom"},
20 {"OptionNumber": "G","OptionTitle": "Left ventricle","textalign":"bottom"},{"OptionNumber": "H","OptionTitle": "Right atrium","textalign":"bottom"}], 20 {"OptionNumber": "G","OptionTitle": "Left ventricle","textalign":"bottom"},{"OptionNumber": "H","OptionTitle": "Right atrium","textalign":"bottom"}],
@@ -26,9 +26,9 @@ @@ -26,9 +26,9 @@
26 "Title": "Drag the labels to the correct location on the image.", 26 "Title": "Drag the labels to the correct location on the image.",
27 "ImagePath":"CS-02.JPG", 27 "ImagePath":"CS-02.JPG",
28 "activityTitle": "Heart & Great Vessels II", 28 "activityTitle": "Heart & Great Vessels II",
29 - "OptionBox": [{"BoxName": "T1","topcoord":"45","leftcoord":"23","Answervalue":"","QuizText":""},{"BoxName": "T2","topcoord":"83","leftcoord":"23","Answervalue":"","QuizText":""},  
30 - {"BoxName": "T3","topcoord":"214","leftcoord":"23","Answervalue":"","QuizText":""},{"BoxName": "T4","topcoord":"256","leftcoord":"23","Answervalue":"","QuizText":""},  
31 - {"BoxName": "T5","topcoord":"412","leftcoord":"23","Answervalue":"","QuizText":""},{"BoxName": "T6","topcoord":"9","leftcoord":"612","Answervalue":"","QuizText":""}, 29 + "OptionBox": [{"BoxName": "T1","topcoord":"45","leftcoord":"24","Answervalue":"","QuizText":""},{"BoxName": "T2","topcoord":"83","leftcoord":"24","Answervalue":"","QuizText":""},
  30 + {"BoxName": "T3","topcoord":"214","leftcoord":"24","Answervalue":"","QuizText":""},{"BoxName": "T4","topcoord":"256","leftcoord":"24","Answervalue":"","QuizText":""},
  31 + {"BoxName": "T5","topcoord":"412","leftcoord":"24","Answervalue":"","QuizText":""},{"BoxName": "T6","topcoord":"9","leftcoord":"612","Answervalue":"","QuizText":""},
32 {"BoxName": "T7","topcoord":"101","leftcoord":"612","Answervalue":"","QuizText":""},{"BoxName": "T8","topcoord":"190","leftcoord":"612","Answervalue":"","QuizText":""}], 32 {"BoxName": "T7","topcoord":"101","leftcoord":"612","Answervalue":"","QuizText":""},{"BoxName": "T8","topcoord":"190","leftcoord":"612","Answervalue":"","QuizText":""}],
33 "Options": [{"OptionNumber": "A","OptionTitle": "Left common carotid artery","textalign":"left"},{"OptionNumber": "B","OptionTitle": "Brachiocephalic trunk","textalign":"left"}, 33 "Options": [{"OptionNumber": "A","OptionTitle": "Left common carotid artery","textalign":"left"},{"OptionNumber": "B","OptionTitle": "Brachiocephalic trunk","textalign":"left"},
34 {"OptionNumber": "C","OptionTitle": "Left subclavian artery","textalign":"left"},{"OptionNumber": "D","OptionTitle": "Left brachiocephalic vein","textalign":"left"}, 34 {"OptionNumber": "C","OptionTitle": "Left subclavian artery","textalign":"left"},{"OptionNumber": "D","OptionTitle": "Left brachiocephalic vein","textalign":"left"},
@@ -137,7 +137,7 @@ @@ -137,7 +137,7 @@
137 "activityTitle": "Arteries of Lower Limb", 137 "activityTitle": "Arteries of Lower Limb",
138 "OptionBox": [{"BoxName": "T1","topcoord":"98","leftcoord":"12","Answervalue":"","QuizText":""},{"BoxName": "T2","topcoord":"231","leftcoord":"12","Answervalue":"","QuizText":""}, 138 "OptionBox": [{"BoxName": "T1","topcoord":"98","leftcoord":"12","Answervalue":"","QuizText":""},{"BoxName": "T2","topcoord":"231","leftcoord":"12","Answervalue":"","QuizText":""},
139 {"BoxName": "T3","topcoord":"311","leftcoord":"12","Answervalue":"","QuizText":""},{"BoxName": "T4","topcoord":"41","leftcoord":"580","Answervalue":"","QuizText":""}, 139 {"BoxName": "T3","topcoord":"311","leftcoord":"12","Answervalue":"","QuizText":""},{"BoxName": "T4","topcoord":"41","leftcoord":"580","Answervalue":"","QuizText":""},
140 - {"BoxName": "T5","topcoord":"94","leftcoord":"580","Answervalue":"","QuizText":""},{"BoxName": "T6","topcoord":"404","leftcoord":"580","Answervalue":"","QuizText":""}], 140 + {"BoxName": "T5","topcoord":"94","leftcoord":"580","Answervalue":"","QuizText":""},{"BoxName": "T6","topcoord":"403","leftcoord":"580","Answervalue":"","QuizText":""}],
141 "Options": [{"OptionNumber": "A","OptionTitle": "Common iliac artery","textalign":"left"},{"OptionNumber": "B","OptionTitle": "Internal iliac artery","textalign":"left"}, 141 "Options": [{"OptionNumber": "A","OptionTitle": "Common iliac artery","textalign":"left"},{"OptionNumber": "B","OptionTitle": "Internal iliac artery","textalign":"left"},
142 {"OptionNumber": "C","OptionTitle": "External iliac artery","textalign":"left"},{"OptionNumber": "D","OptionTitle": "Lateral circumflex femoral artery","textalign":"right"}, 142 {"OptionNumber": "C","OptionTitle": "External iliac artery","textalign":"left"},{"OptionNumber": "D","OptionTitle": "Lateral circumflex femoral artery","textalign":"right"},
143 {"OptionNumber": "E","OptionTitle": "Deep femoral artery","textalign":"right"},{"OptionNumber": "F","OptionTitle": "Femoral artery","textalign":"right"}], 143 {"OptionNumber": "E","OptionTitle": "Deep femoral artery","textalign":"right"},{"OptionNumber": "F","OptionTitle": "Femoral artery","textalign":"right"}],
@@ -161,7 +161,7 @@ @@ -161,7 +161,7 @@
161 "ImagePath":"CS-11.JPG", 161 "ImagePath":"CS-11.JPG",
162 "activityTitle": "Veins of Head & Neck", 162 "activityTitle": "Veins of Head & Neck",
163 "OptionBox": [{"BoxName": "T1","topcoord":"130","leftcoord":"7","Answervalue":"","QuizText":""},{"BoxName": "T2","topcoord":"210","leftcoord":"7","Answervalue":"","QuizText":""}, 163 "OptionBox": [{"BoxName": "T1","topcoord":"130","leftcoord":"7","Answervalue":"","QuizText":""},{"BoxName": "T2","topcoord":"210","leftcoord":"7","Answervalue":"","QuizText":""},
164 - {"BoxName": "T3","topcoord":"403","leftcoord":"7","Answervalue":"","QuizText":""},{"BoxName": "T4","topcoord":"189","leftcoord":"615","Answervalue":"","QuizText":""}, 164 + {"BoxName": "T3","topcoord":"403","leftcoord":"7","Answervalue":"","QuizText":""},{"BoxName": "189","topcoord":"189","leftcoord":"615","Answervalue":"","QuizText":""},
165 {"BoxName": "T5","topcoord":"246","leftcoord":"615","Answervalue":"","QuizText":""},{"BoxName": "T6","topcoord":"413","leftcoord":"615","Answervalue":"","QuizText":""}], 165 {"BoxName": "T5","topcoord":"246","leftcoord":"615","Answervalue":"","QuizText":""},{"BoxName": "T6","topcoord":"413","leftcoord":"615","Answervalue":"","QuizText":""}],
166 "Options": [{"OptionNumber": "A","OptionTitle": "External jugular vein","textalign":"left"},{"OptionNumber": "B","OptionTitle": "Occipital vein","textalign":"left"}, 166 "Options": [{"OptionNumber": "A","OptionTitle": "External jugular vein","textalign":"left"},{"OptionNumber": "B","OptionTitle": "Occipital vein","textalign":"left"},
167 {"OptionNumber": "C","OptionTitle": "Common facial vein","textalign":"left"},{"OptionNumber": "D","OptionTitle": "Internal jugular vein","textalign":"right"}, 167 {"OptionNumber": "C","OptionTitle": "Common facial vein","textalign":"left"},{"OptionNumber": "D","OptionTitle": "Internal jugular vein","textalign":"right"},
@@ -209,7 +209,7 @@ @@ -209,7 +209,7 @@
209 "OptionBox": [{"BoxName": "T1","topcoord":"62","leftcoord":"8","Answervalue":"","QuizText":""},{"BoxName": "T2","topcoord":"123","leftcoord":"8","Answervalue":"","QuizText":""}, 209 "OptionBox": [{"BoxName": "T1","topcoord":"62","leftcoord":"8","Answervalue":"","QuizText":""},{"BoxName": "T2","topcoord":"123","leftcoord":"8","Answervalue":"","QuizText":""},
210 {"BoxName": "T3","topcoord":"173","leftcoord":"8","Answervalue":""},{"BoxName": "T4","topcoord":"287","leftcoord":"8","Answervalue":"","QuizText":""}, 210 {"BoxName": "T3","topcoord":"173","leftcoord":"8","Answervalue":""},{"BoxName": "T4","topcoord":"287","leftcoord":"8","Answervalue":"","QuizText":""},
211 {"BoxName": "T5","topcoord":"375","leftcoord":"8","Answervalue":"","QuizText":""},{"BoxName": "T6","topcoord":"17","leftcoord":"618","Answervalue":"","QuizText":""}, 211 {"BoxName": "T5","topcoord":"375","leftcoord":"8","Answervalue":"","QuizText":""},{"BoxName": "T6","topcoord":"17","leftcoord":"618","Answervalue":"","QuizText":""},
212 - {"BoxName": "T7","topcoord":"295","leftcoord":"618","Answervalue":"","QuizText":""},{"BoxName": "T8","topcoord":"387","leftcoord":"618","Answervalue":"","QuizText":""}], 212 + {"BoxName": "T7","topcoord":"296","leftcoord":"618","Answervalue":"","QuizText":""},{"BoxName": "T8","topcoord":"388","leftcoord":"618","Answervalue":"","QuizText":""}],
213 "Options": [{"OptionNumber": "A","OptionTitle": "Ulnar vein","textalign":"left"},{"OptionNumber": "B","OptionTitle": "Superficial palmar venous arch","textalign":"left"}, 213 "Options": [{"OptionNumber": "A","OptionTitle": "Ulnar vein","textalign":"left"},{"OptionNumber": "B","OptionTitle": "Superficial palmar venous arch","textalign":"left"},
214 {"OptionNumber": "C","OptionTitle": "Deep palmar venous arch","textalign":"left"},{"OptionNumber": "D","OptionTitle": "Radial vein","textalign":"left"}, 214 {"OptionNumber": "C","OptionTitle": "Deep palmar venous arch","textalign":"left"},{"OptionNumber": "D","OptionTitle": "Radial vein","textalign":"left"},
215 {"OptionNumber": "E","OptionTitle": "Brachial vein","textalign":"right"},{"OptionNumber": "F","OptionTitle": "Basilic vein","textalign":"right"} 215 {"OptionNumber": "E","OptionTitle": "Brachial vein","textalign":"right"},{"OptionNumber": "F","OptionTitle": "Basilic vein","textalign":"right"}
@@ -265,12 +265,14 @@ @@ -265,12 +265,14 @@
265 "Title": "Complete the statements below.", 265 "Title": "Complete the statements below.",
266 "ImagePath":"", 266 "ImagePath":"",
267 "activityTitle": "Chambers of the Heart", 267 "activityTitle": "Chambers of the Heart",
268 - "OptionBox": [{"BoxName": "T1","topcoord":"-156","leftcoord":"-91","Answervalue":"","QuizText":"The _________________________ receives oxygenated blood from the lungs."},  
269 - {"BoxName": "T2","topcoord":"-122","leftcoord":"-91","Answervalue":"","QuizText":"The _________________________ receives deoxygenated blood from the body systems."},  
270 - {"BoxName": "T3","topcoord":"-88","leftcoord":"-91","Answervalue":"","QuizText":"The _________________________ ejects deoxygenated blood to the lungs."},  
271 - {"BoxName": "T4","topcoord":"-54","leftcoord":"-91","Answervalue":"","QuizText":"The _________________________ ejects oxygenated blood into the aorta."}],  
272 - "Options": [{"OptionNumber": "A","OptionTitle": "left atrium","textalign":"bottom"},{"OptionNumber": "B","OptionTitle": "right atrium","textalign":"bottom"},  
273 - {"OptionNumber": "C","OptionTitle": "right ventricle","textalign":"bottom"},{"OptionNumber": "D","OptionTitle": "left ventricle","textalign":"bottom"}], 268 + "OptionBox": [{"BoxName": "T1","topcoord":"-169","leftcoord":"-94","Answervalue":"","QuizText":"The <span style='position: absolute;border: 0px solid rgb(51, 51, 51); background: rgb(232, 232, 232);height:30px;width:160px;top:154px;' id='blockbox-T1' droppable='true' ></span>-----------------------------------&nbsp; receives oxygenated blood from the lungs."},
  269 + {"BoxName": "T2","topcoord":"-130","leftcoord":"-94","Answervalue":"","QuizText":"The <span style='position: absolute;border: 0px solid rgb(51, 51, 51); background: rgb(232, 232, 232);height:30px;width:160px;top:192px;' id='blockbox-T2' droppable='true'></span>-----------------------------------&nbsp; receives deoxygenated blood from the body systems."},
  270 + {"BoxName": "T3","topcoord":"-91","leftcoord":"-94","Answervalue":"","QuizText":"The <span style='position: absolute;border: 0px solid rgb(51, 51, 51); background: rgb(232, 232, 232);height:30px;width:160px;top:233px;' id='blockbox-T3' droppable='true'></span>-----------------------------------&nbsp; ejects deoxygenated blood to the lungs."},
  271 + {"BoxName": "T4","topcoord":"-53","leftcoord":"-94","Answervalue":"","QuizText":"The <span style='position: absolute;border: 0px solid rgb(51, 51, 51); background: rgb(232, 232, 232);height:30px;width:160px;top:271px;' id='blockbox-T4' droppable='true'></span>-----------------------------------&nbsp; ejects oxygenated blood into the aorta."}],
  272 + "Options": [{"OptionNumber": "A","OptionTitle": "left atrium","textalign":"bottom"},
  273 + {"OptionNumber": "B","OptionTitle": "right atrium","textalign":"bottom"},
  274 + {"OptionNumber": "C","OptionTitle": "right ventricle","textalign":"bottom"},
  275 + {"OptionNumber": "D","OptionTitle": "left ventricle","textalign":"bottom"}],
274 "correctResponse": [{"OptionBox": "T1","Answer": "A"},{"OptionBox": "T2","Answer": "B"},{"OptionBox": "T3","Answer": "C"}, 276 "correctResponse": [{"OptionBox": "T1","Answer": "A"},{"OptionBox": "T2","Answer": "B"},{"OptionBox": "T3","Answer": "C"},
275 {"OptionBox": "T4","Answer": "D"}] 277 {"OptionBox": "T4","Answer": "D"}]
276 } 278 }
400-SOURCECODE/AIAHTML5.Web/content/data/json/le/qz_dat_di.json
@@ -155,73 +155,69 @@ @@ -155,73 +155,69 @@
155 "Title": "Complete the statements below.", 155 "Title": "Complete the statements below.",
156 "activityTitle": "Digestive Process", 156 "activityTitle": "Digestive Process",
157 "ImagePath":"", 157 "ImagePath":"",
158 - "OptionBox": [{"BoxName": "T1","topcoord":"-224","leftcoord":"-51","Answervalue":"","QuizText":"_________________________ is the introduction of food into the GI tract."},  
159 - {"BoxName": "T2","topcoord":"-190","leftcoord":"-51","Answervalue":"","QuizText":"_________________________ is the moving of food along the GI tract with alternating muscle contractions."},  
160 - {"BoxName": "T3","topcoord":"-156","leftcoord":"-51","Answervalue":"","QuizText":"_________________________ is the mixing and breaking down food into smaller fragments without disrupting chemical bonds."},  
161 - {"BoxName": "T4","topcoord":"-122","leftcoord":"-51","Answervalue":"","QuizText":"_________________________ is the breaking down large food molecules to their building blocks by enzymes."},  
162 - {"BoxName": "T5","topcoord":"-88","leftcoord":"-51","Answervalue":"","QuizText":"_________________________ is the transport of digested end products from the GI tract into the blood or lymph."},  
163 - {"BoxName": "T6","topcoord":"-54","leftcoord":"-51","Answervalue":"","QuizText":"_________________________ is the elimination of indigestible residues from the GI tract via the anus."}], 158 + "OptionBox": [{"BoxName": "T1","topcoord":"-249","leftcoord":"-59","Answervalue":"","QuizText":"<span style='position: absolute;border: 0px solid rgb(51, 51, 51); background: rgb(232, 232, 232);height:30px;width:160px;top:212px;' id='blockbox-T1' droppable='true' ></span>-----------------------------------&nbsp; is the introduction of food into the GI tract."},
  159 + {"BoxName": "T2","topcoord":"-210","leftcoord":"-59","Answervalue":"","QuizText":"<span style='position: absolute;border: 0px solid rgb(51, 51, 51); background: rgb(232, 232, 232);height:30px;width:160px;top:254px;' id='blockbox-T2' droppable='true'></span>-----------------------------------&nbsp; is the moving of food along the GI tract with alternating muscle contractions."},
  160 + {"BoxName": "T3","topcoord":"-170","leftcoord":"-59","Answervalue":"","QuizText":"<span style='position: absolute;border: 0px solid rgb(51, 51, 51); background: rgb(232, 232, 232);height:30px;width:160px;top:295px;' id='blockbox-T3' droppable='true'></span>-----------------------------------&nbsp; is the mixing and breaking down food into smaller fragments without disrupting chemical bonds."},
  161 + {"BoxName": "T4","topcoord":"-133","leftcoord":"-59","Answervalue":"","QuizText":"<span style='position: absolute;border: 0px solid rgb(51, 51, 51); background: rgb(232, 232, 232);height:30px;width:160px;top:337px;' id='blockbox-T4' droppable='true'></span>-----------------------------------&nbsp; is the breaking down large food molecules to their building blocks by enzymes."},
  162 + {"BoxName": "T5","topcoord":"-91","leftcoord":"-59","Answervalue":"","QuizText":"<span style='position: absolute;border: 0px solid rgb(51, 51, 51); background: rgb(232, 232, 232);height:30px;width:160px;top:377px;' id='blockbox-T5' droppable='true'></span>-----------------------------------&nbsp; is the transport of digested end products from the GI tract into the blood or lymph."},
  163 + {"BoxName": "T6","topcoord":"-53","leftcoord":"-59","Answervalue":"","QuizText":"<span style='position: absolute;border: 0px solid rgb(51, 51, 51); background: rgb(232, 232, 232);height:30px;width:160px;top:416px;' id='blockbox-T6' droppable='true'></span>-----------------------------------&nbsp; is the elimination of indigestible residues from the GI tract via the anus."}],
164 "Options": [{"OptionNumber": "A","OptionTitle": "Ingestion","textalign":"bottom"},{"OptionNumber": "B","OptionTitle": "Propulsion","textalign":"bottom"}, 164 "Options": [{"OptionNumber": "A","OptionTitle": "Ingestion","textalign":"bottom"},{"OptionNumber": "B","OptionTitle": "Propulsion","textalign":"bottom"},
165 {"OptionNumber": "C","OptionTitle": "Mechanical digestion","textalign":"bottom"},{"OptionNumber": "D","OptionTitle": "Chemical digestion","textalign":"bottom"}, 165 {"OptionNumber": "C","OptionTitle": "Mechanical digestion","textalign":"bottom"},{"OptionNumber": "D","OptionTitle": "Chemical digestion","textalign":"bottom"},
166 {"OptionNumber": "E","OptionTitle": "Absorption","textalign":"bottom"},{"OptionNumber": "F","OptionTitle": "Defecation","textalign":"bottom"}], 166 {"OptionNumber": "E","OptionTitle": "Absorption","textalign":"bottom"},{"OptionNumber": "F","OptionTitle": "Defecation","textalign":"bottom"}],
167 "correctResponse": [{"OptionBox": "T1","Answer": "A"},{"OptionBox": "T2","Answer": "B"},{"OptionBox": "T3","Answer": "C"},{"OptionBox": "T4","Answer": "D"}, 167 "correctResponse": [{"OptionBox": "T1","Answer": "A"},{"OptionBox": "T2","Answer": "B"},{"OptionBox": "T3","Answer": "C"},{"OptionBox": "T4","Answer": "D"},
168 - {"OptionBox": "T5","Answer": "E"},{"OptionBox": "T6","Answer": "F"}] 168 + {"OptionBox": "T5","Answer": "E"},{"OptionBox": "T6","Answer": "F"}]
169 }, 169 },
170 { 170 {
171 "Number": "12", 171 "Number": "12",
172 "Title": "Complete the statements below.", 172 "Title": "Complete the statements below.",
173 "activityTitle": "Anatomy I", 173 "activityTitle": "Anatomy I",
174 "ImagePath":"", 174 "ImagePath":"",
175 - "OptionBox": [{"BoxName": "T1","topcoord":"-156","leftcoord":"-51","Answervalue":"","QuizText":"_________________________ is the initial site for carbohydrate digestion."},  
176 - {"BoxName": "T2","topcoord":"-122","leftcoord":"-51","Answervalue":"","QuizText":"_________________________ is the initial site for protein digestion."},  
177 - {"BoxName": "T3","topcoord":"-88","leftcoord":"-51","Answervalue":"","QuizText":"_________________________ is the primary site for fat digestion."},  
178 - {"BoxName": "T4","topcoord":"-54","leftcoord":"-51","Answervalue":"","QuizText":"_________________________ has both exocrine and endocrine functions."}], 175 + "OptionBox": [{"BoxName": "T1","topcoord":"-170","leftcoord":"-59","Answervalue":"","QuizText":"<span style='position: absolute;border: 0px solid rgb(51, 51, 51); background: rgb(232, 232, 232);height:30px;width:160px;top:212px;' id='blockbox-T1' droppable='true' ></span>-----------------------------------&nbsp; is the initial site for carbohydrate digestion."},
  176 + {"BoxName": "T2","topcoord":"-133","leftcoord":"-59","Answervalue":"","QuizText":"<span style='position: absolute;border: 0px solid rgb(51, 51, 51); background: rgb(232, 232, 232);height:30px;width:160px;top:254px;' id='blockbox-T2' droppable='true'></span>-----------------------------------&nbsp; is the initial site for protein digestion."},
  177 + {"BoxName": "T3","topcoord":"-91","leftcoord":"-59","Answervalue":"","QuizText":"<span style='position: absolute;border: 0px solid rgb(51, 51, 51); background: rgb(232, 232, 232);height:30px;width:160px;top:295px;' id='blockbox-T3' droppable='true'></span>-----------------------------------&nbsp; is the primary site for fat digestion."},
  178 + {"BoxName": "T4","topcoord":"-53","leftcoord":"-59","Answervalue":"","QuizText":"<span style='position: absolute;border: 0px solid rgb(51, 51, 51); background: rgb(232, 232, 232);height:30px;width:160px;top:337px;' id='blockbox-T4' droppable='true'></span>-----------------------------------&nbsp; has both exocrine and endocrine functions."}],
179 "Options": [{"OptionNumber": "A","OptionTitle": "mouth","textalign":"bottom"},{"OptionNumber": "B","OptionTitle": "stomach","textalign":"bottom"}, 179 "Options": [{"OptionNumber": "A","OptionTitle": "mouth","textalign":"bottom"},{"OptionNumber": "B","OptionTitle": "stomach","textalign":"bottom"},
180 {"OptionNumber": "C","OptionTitle": "small intestine","textalign":"bottom"},{"OptionNumber": "D","OptionTitle": "pancreas","textalign":"bottom"}], 180 {"OptionNumber": "C","OptionTitle": "small intestine","textalign":"bottom"},{"OptionNumber": "D","OptionTitle": "pancreas","textalign":"bottom"}],
181 - "correctResponse": [{"OptionBox": "T1","Answer": "A"},{"OptionBox": "T2","Answer": "B"},{"OptionBox": "T3","Answer": "C"},  
182 - {"OptionBox": "T4","Answer": "D"}] 181 + "correctResponse": [{"OptionBox": "T1","Answer": "A"},{"OptionBox": "T2","Answer": "B"},{"OptionBox": "T3","Answer": "C"},{"OptionBox": "T4","Answer": "D"}]
183 }, 182 },
184 { 183 {
185 "Number": "13", 184 "Number": "13",
186 "Title": "Complete the statements below.", 185 "Title": "Complete the statements below.",
187 "activityTitle": "Anatomy II", 186 "activityTitle": "Anatomy II",
188 "ImagePath":"", 187 "ImagePath":"",
189 - "OptionBox": [{"BoxName": "T1","topcoord":"-156","leftcoord":"-51","Answervalue":"","QuizText":"_________________________ is the major site for nutrient absorption."},  
190 - {"BoxName": "T2","topcoord":"-122","leftcoord":"-51","Answervalue":"","QuizText":"_________________________ is the major site for water absorption."},  
191 - {"BoxName": "T3","topcoord":"-88","leftcoord":"-51","Answervalue":"","QuizText":"_________________________ is responsible for producing bile."},  
192 - {"BoxName": "T4","topcoord":"-54","leftcoord":"-51","Answervalue":"","QuizText":"_________________________ is the major storage site for bile."}], 188 + "OptionBox": [{"BoxName": "T1","topcoord":"-170","leftcoord":"-59","Answervalue":"","QuizText":"<span style='position: absolute;border: 0px solid rgb(51, 51, 51); background: rgb(232, 232, 232);height:30px;width:160px;top:212px;' id='blockbox-T1' droppable='true' ></span>-----------------------------------&nbsp; is the major site for nutrient absorption."},
  189 + {"BoxName": "T2","topcoord":"-133","leftcoord":"-59","Answervalue":"","QuizText":"<span style='position: absolute;border: 0px solid rgb(51, 51, 51); background: rgb(232, 232, 232);height:30px;width:160px;top:254px;' id='blockbox-T2' droppable='true'></span>-----------------------------------&nbsp; is the major site for water absorption."},
  190 + {"BoxName": "T3","topcoord":"-91","leftcoord":"-59","Answervalue":"","QuizText":"<span style='position: absolute;border: 0px solid rgb(51, 51, 51); background: rgb(232, 232, 232);height:30px;width:160px;top:295px;' id='blockbox-T3' droppable='true'></span>-----------------------------------&nbsp; is responsible for producing bile."},
  191 + {"BoxName": "T4","topcoord":"-53","leftcoord":"-59","Answervalue":"","QuizText":"<span style='position: absolute;border: 0px solid rgb(51, 51, 51); background: rgb(232, 232, 232);height:30px;width:160px;top:337px;' id='blockbox-T4' droppable='true'></span>-----------------------------------&nbsp; is the major storage site for bile."}],
193 "Options": [{"OptionNumber": "A","OptionTitle": "small intestine","textalign":"bottom"},{"OptionNumber": "B","OptionTitle": "large intestine","textalign":"bottom"}, 192 "Options": [{"OptionNumber": "A","OptionTitle": "small intestine","textalign":"bottom"},{"OptionNumber": "B","OptionTitle": "large intestine","textalign":"bottom"},
194 {"OptionNumber": "C","OptionTitle": "liver","textalign":"bottom"},{"OptionNumber": "D","OptionTitle": "gallbladder","textalign":"bottom"}], 193 {"OptionNumber": "C","OptionTitle": "liver","textalign":"bottom"},{"OptionNumber": "D","OptionTitle": "gallbladder","textalign":"bottom"}],
195 - "correctResponse": [{"OptionBox": "T1","Answer": "A"},{"OptionBox": "T2","Answer": "B"},{"OptionBox": "T3","Answer": "C"},  
196 - {"OptionBox": "T4","Answer": "D"}] 194 + "correctResponse": [{"OptionBox": "T1","Answer": "A"},{"OptionBox": "T2","Answer": "B"},{"OptionBox": "T3","Answer": "C"},{"OptionBox": "T4","Answer": "D"}]
197 }, 195 },
198 { 196 {
199 "Number": "14", 197 "Number": "14",
200 "Title": "Complete the statements below.", 198 "Title": "Complete the statements below.",
201 "activityTitle": "Digestion", 199 "activityTitle": "Digestion",
202 "ImagePath":"", 200 "ImagePath":"",
203 - "OptionBox": [{"BoxName": "T1","topcoord":"-156","leftcoord":"-51","Answervalue":"","QuizText":"_________________________ is responsible for initiating carbohydrate digestion."},  
204 - {"BoxName": "T2","topcoord":"-122","leftcoord":"-51","Answervalue":"","QuizText":"_________________________ is responsible for initiating protein digestion."},  
205 - {"BoxName": "T3","topcoord":"-88","leftcoord":"-51","Answervalue":"","QuizText":"_________________________ is responsible for the majority of fat digestion."},  
206 - {"BoxName": "T4","topcoord":"-54","leftcoord":"-51","Answervalue":"","QuizText":"_________________________ acts as an emulsifying agent before fat digestion can begin."}], 201 + "OptionBox": [{"BoxName": "T1","topcoord":"-170","leftcoord":"-59","Answervalue":"","QuizText":"<span style='position: absolute;border: 0px solid rgb(51, 51, 51); background: rgb(232, 232, 232);height:30px;width:160px;top:212px;' id='blockbox-T1' droppable='true' ></span>-----------------------------------&nbsp; is responsible for initiating carbohydrate digestion."},
  202 + {"BoxName": "T2","topcoord":"-133","leftcoord":"-59","Answervalue":"","QuizText":"<span style='position: absolute;border: 0px solid rgb(51, 51, 51); background: rgb(232, 232, 232);height:30px;width:160px;top:254px;' id='blockbox-T2' droppable='true'></span>-----------------------------------&nbsp; is responsible for initiating protein digestion."},
  203 + {"BoxName": "T3","topcoord":"-91","leftcoord":"-59","Answervalue":"","QuizText":"<span style='position: absolute;border: 0px solid rgb(51, 51, 51); background: rgb(232, 232, 232);height:30px;width:160px;top:295px;' id='blockbox-T3' droppable='true'></span>-----------------------------------&nbsp; is responsible for the majority of fat digestion."},
  204 + {"BoxName": "T4","topcoord":"-53","leftcoord":"-59","Answervalue":"","QuizText":"<span style='position: absolute;border: 0px solid rgb(51, 51, 51); background: rgb(232, 232, 232);height:30px;width:160px;top:337px;' id='blockbox-T4' droppable='true'></span>-----------------------------------&nbsp; acts as an emulsifying agent before fat digestion can begin."}],
207 "Options": [{"OptionNumber": "A","OptionTitle": "Amylase","textalign":"bottom"},{"OptionNumber": "B","OptionTitle": "Pepsin","textalign":"bottom"}, 205 "Options": [{"OptionNumber": "A","OptionTitle": "Amylase","textalign":"bottom"},{"OptionNumber": "B","OptionTitle": "Pepsin","textalign":"bottom"},
208 {"OptionNumber": "C","OptionTitle": "Lipase","textalign":"bottom"},{"OptionNumber": "D","OptionTitle": "Bile","textalign":"bottom"}], 206 {"OptionNumber": "C","OptionTitle": "Lipase","textalign":"bottom"},{"OptionNumber": "D","OptionTitle": "Bile","textalign":"bottom"}],
209 - "correctResponse": [{"OptionBox": "T1","Answer": "A"},{"OptionBox": "T2","Answer": "B"},{"OptionBox": "T3","Answer": "C"},  
210 - {"OptionBox": "T4","Answer": "D"}] 207 + "correctResponse": [{"OptionBox": "T1","Answer": "A"},{"OptionBox": "T2","Answer": "B"},{"OptionBox": "T3","Answer": "C"},{"OptionBox": "T4","Answer": "D"}]
211 }, 208 },
212 { 209 {
213 "Number": "15", 210 "Number": "15",
214 "Title": "Complete the statements below.", 211 "Title": "Complete the statements below.",
215 "activityTitle": "Digestion", 212 "activityTitle": "Digestion",
216 "ImagePath":"", 213 "ImagePath":"",
217 - "OptionBox": [{"BoxName": "T1","topcoord":"-156","leftcoord":"-51","Answervalue":"","QuizText":"_________________________ layer of the digestive tract comes in direct contact with undigested food."},  
218 - {"BoxName": "T2","topcoord":"-122","leftcoord":"-51","Answervalue":"","QuizText":"_________________________ layer of the digestive tract contains blood vessels, lymphatic vessels, and glands."},  
219 - {"BoxName": "T3","topcoord":"-88","leftcoord":"-51","Answervalue":"","QuizText":"_________________________ layer of the digestive tract is responsible for peristalsis."},  
220 - {"BoxName": "T4","topcoord":"-54","leftcoord":"-51","Answervalue":"","QuizText":"_________________________ is the outer layer of the digestive tract."}], 214 + "OptionBox": [{"BoxName": "T1","topcoord":"-170","leftcoord":"-59","Answervalue":"","QuizText":"<span style='position: absolute;border: 0px solid rgb(51, 51, 51); background: rgb(232, 232, 232);height:30px;width:160px;top:212px;' id='blockbox-T1' droppable='true' ></span>-----------------------------------&nbsp; layer of the digestive tract comes in direct contact with undigested food."},
  215 + {"BoxName": "T2","topcoord":"-133","leftcoord":"-59","Answervalue":"","QuizText":"<span style='position: absolute;border: 0px solid rgb(51, 51, 51); background: rgb(232, 232, 232);height:30px;width:160px;top:254px;' id='blockbox-T2' droppable='true'></span>-----------------------------------&nbsp; layer of the digestive tract contains blood vessels, lymphatic vessels, and glands."},
  216 + {"BoxName": "T3","topcoord":"-91","leftcoord":"-59","Answervalue":"","QuizText":"<span style='position: absolute;border: 0px solid rgb(51, 51, 51); background: rgb(232, 232, 232);height:30px;width:160px;top:295px;' id='blockbox-T3' droppable='true'></span>-----------------------------------&nbsp; layer of the digestive tract is responsible for peristalsis."},
  217 + {"BoxName": "T4","topcoord":"-53","leftcoord":"-59","Answervalue":"","QuizText":"<span style='position: absolute;border: 0px solid rgb(51, 51, 51); background: rgb(232, 232, 232);height:30px;width:160px;top:337px;' id='blockbox-T4' droppable='true'></span>-----------------------------------&nbsp; is the outer layer of the digestive tract."}],
221 "Options": [{"OptionNumber": "A","OptionTitle": "mucosa","textalign":"bottom"},{"OptionNumber": "B","OptionTitle": "submucosa","textalign":"bottom"}, 218 "Options": [{"OptionNumber": "A","OptionTitle": "mucosa","textalign":"bottom"},{"OptionNumber": "B","OptionTitle": "submucosa","textalign":"bottom"},
222 {"OptionNumber": "C","OptionTitle": "muscularis","textalign":"bottom"},{"OptionNumber": "D","OptionTitle": "serosa","textalign":"bottom"}], 219 {"OptionNumber": "C","OptionTitle": "muscularis","textalign":"bottom"},{"OptionNumber": "D","OptionTitle": "serosa","textalign":"bottom"}],
223 - "correctResponse": [{"OptionBox": "T1","Answer": "A"},{"OptionBox": "T2","Answer": "B"},{"OptionBox": "T3","Answer": "C"},  
224 - {"OptionBox": "T4","Answer": "D"}] 220 + "correctResponse": [{"OptionBox": "T1","Answer": "A"},{"OptionBox": "T2","Answer": "B"},{"OptionBox": "T3","Answer": "C"},{"OptionBox": "T4","Answer": "D"}]
225 } 221 }
226 ] 222 ]
227 } 223 }
400-SOURCECODE/AIAHTML5.Web/content/data/json/le/qz_dat_en.json
@@ -113,8 +113,8 @@ @@ -113,8 +113,8 @@
113 "Title": "Drag the labels to the correct location on the image.", 113 "Title": "Drag the labels to the correct location on the image.",
114 "activityTitle": "Glands of the Head & Neck", 114 "activityTitle": "Glands of the Head & Neck",
115 "ImagePath":"ES-08.JPG", 115 "ImagePath":"ES-08.JPG",
116 - "OptionBox": [{"BoxName": "T1","topcoord":"40","leftcoord":"4","Answervalue":"","QuizText":""},{"BoxName": "T2","topcoord":"82","leftcoord":"4","Answervalue":"","QuizText":""},  
117 - {"BoxName": "T3","topcoord":"188","leftcoord":"4","Answervalue":"","QuizText":""},{"BoxName": "T4","topcoord":"327","leftcoord":"4","Answervalue":"","QuizText":""}, 116 + "OptionBox": [{"BoxName": "T1","topcoord":"40","leftcoord":"5","Answervalue":"","QuizText":""},{"BoxName": "T2","topcoord":"82","leftcoord":"5","Answervalue":"","QuizText":""},
  117 + {"BoxName": "T3","topcoord":"188","leftcoord":"5","Answervalue":"","QuizText":""},{"BoxName": "T4","topcoord":"327","leftcoord":"5","Answervalue":"","QuizText":""},
118 {"BoxName": "T5","topcoord":"46","leftcoord":"942","Answervalue":"","QuizText":""},{"BoxName": "T6","topcoord":"149","leftcoord":"942","Answervalue":"","QuizText":""}, 118 {"BoxName": "T5","topcoord":"46","leftcoord":"942","Answervalue":"","QuizText":""},{"BoxName": "T6","topcoord":"149","leftcoord":"942","Answervalue":"","QuizText":""},
119 {"BoxName": "T7","topcoord":"187","leftcoord":"942","Answervalue":"","QuizText":""},{"BoxName": "T8","topcoord":"254","leftcoord":"942","Answervalue":"","QuizText":""}], 119 {"BoxName": "T7","topcoord":"187","leftcoord":"942","Answervalue":"","QuizText":""},{"BoxName": "T8","topcoord":"254","leftcoord":"942","Answervalue":"","QuizText":""}],
120 "Options": [{"OptionNumber": "A","OptionTitle": "Cricoid cartilage","textalign":"bottom"},{"OptionNumber": "B","OptionTitle": "Thyroid gland","textalign":"bottom"}, 120 "Options": [{"OptionNumber": "A","OptionTitle": "Cricoid cartilage","textalign":"bottom"},{"OptionNumber": "B","OptionTitle": "Thyroid gland","textalign":"bottom"},
@@ -129,10 +129,10 @@ @@ -129,10 +129,10 @@
129 "Title": "Complete the statements below.", 129 "Title": "Complete the statements below.",
130 "activityTitle": "Endocrine Glands", 130 "activityTitle": "Endocrine Glands",
131 "ImagePath":"", 131 "ImagePath":"",
132 - "OptionBox": [{"BoxName": "T1","topcoord":"-156","leftcoord":"-25","Answervalue":"","QuizText":"The ________________________ gland is connected to the hypothalamus by the infundibulum and stores ADH and oxytocin."},  
133 - {"BoxName": "T2","topcoord":"-122","leftcoord":"-25","Answervalue":"","QuizText":"The ________________________ gland secretes several tropic hormones such as TSH, ACTH, FSH, and LH."},  
134 - {"BoxName": "T3","topcoord":"-88","leftcoord":"-25","Answervalue":"","QuizText":"The ________________________ gland secretes the hormone responsible for maintaining the body's metabolic rate."},  
135 - {"BoxName": "T4","topcoord":"-54","leftcoord":"-25","Answervalue":"","QuizText":"The ________________________ is known as the body's stress gland."}], 132 + "OptionBox": [{"BoxName": "T1","topcoord":"-169","leftcoord":"-31","Answervalue":"","QuizText":"The <span style='position: absolute;border: 0px solid rgb(51, 51, 51); background: rgb(232, 232, 232);height:30px;width:160px;top:212px;' id='blockbox-T1' droppable='true' ></span>-----------------------------------&nbsp; gland is connected to the hypothalamus by the infundibulum and stores ADH and oxytocin."},
  133 + {"BoxName": "T2","topcoord":"-130","leftcoord":"-31","Answervalue":"","QuizText":"The <span style='position: absolute;border: 0px solid rgb(51, 51, 51); background: rgb(232, 232, 232);height:30px;width:160px;top:254px;' id='blockbox-T2' droppable='true'></span>-----------------------------------&nbsp; gland secretes several tropic hormones such as TSH, ACTH, FSH, and LH."},
  134 + {"BoxName": "T3","topcoord":"-91","leftcoord":"-31","Answervalue":"","QuizText":"The <span style='position: absolute;border: 0px solid rgb(51, 51, 51); background: rgb(232, 232, 232);height:30px;width:160px;top:295px;' id='blockbox-T3' droppable='true'></span>-----------------------------------&nbsp; gland secretes the hormone responsible for maintaining the body's metabolic rate."},
  135 + {"BoxName": "T4","topcoord":"-53","leftcoord":"-31","Answervalue":"","QuizText":"The <span style='position: absolute;border: 0px solid rgb(51, 51, 51); background: rgb(232, 232, 232);height:30px;width:160px;top:337px;' id='blockbox-T4' droppable='true'></span>-----------------------------------&nbsp; is known as the body's stress gland."}],
136 "Options": [{"OptionNumber": "A","OptionTitle": "neurohypohysis","textalign":"bottom"},{"OptionNumber": "B","OptionTitle": "adenohypophysis","textalign":"bottom"}, 136 "Options": [{"OptionNumber": "A","OptionTitle": "neurohypohysis","textalign":"bottom"},{"OptionNumber": "B","OptionTitle": "adenohypophysis","textalign":"bottom"},
137 {"OptionNumber": "C","OptionTitle": "thyroid","textalign":"bottom"},{"OptionNumber": "D","OptionTitle": "adrenal gland","textalign":"bottom"}], 137 {"OptionNumber": "C","OptionTitle": "thyroid","textalign":"bottom"},{"OptionNumber": "D","OptionTitle": "adrenal gland","textalign":"bottom"}],
138 "correctResponse": [{"OptionBox": "T1","Answer": "A"},{"OptionBox": "T2","Answer": "B"},{"OptionBox": "T3","Answer": "C"},{"OptionBox": "T4","Answer": "D"}] 138 "correctResponse": [{"OptionBox": "T1","Answer": "A"},{"OptionBox": "T2","Answer": "B"},{"OptionBox": "T3","Answer": "C"},{"OptionBox": "T4","Answer": "D"}]
@@ -142,10 +142,10 @@ @@ -142,10 +142,10 @@
142 "Title": "Complete the statements below.", 142 "Title": "Complete the statements below.",
143 "activityTitle": "Hormones I", 143 "activityTitle": "Hormones I",
144 "ImagePath":"", 144 "ImagePath":"",
145 - "OptionBox": [{"BoxName": "T1","topcoord":"-156","leftcoord":"-54","Answervalue":"","QuizText":" ________________________ is responsible for sperm production and maturation of the ova."},  
146 - {"BoxName": "T2","topcoord":"-122","leftcoord":"-54","Answervalue":"","QuizText":" ________________________ is responsible for increasing the production of male and female sex hormones."},  
147 - {"BoxName": "T3","topcoord":"-88","leftcoord":"-54","Answervalue":"","QuizText":" ________________________ stimulates the thyroid gland to produce thyroid hormone."},  
148 - {"BoxName": "T4","topcoord":"-54","leftcoord":"-54","Answervalue":"","QuizText":" ________________________ stimulates the adrenal gland to release glucocorticoid hormones."}], 145 + "OptionBox": [{"BoxName": "T1","topcoord":"-169","leftcoord":"-59","Answervalue":"","QuizText":"<span style='position: absolute;border: 0px solid rgb(51, 51, 51); background: rgb(232, 232, 232);height:30px;width:160px;top:212px;' id='blockbox-T1' droppable='true' ></span>-----------------------------------&nbsp; is responsible for sperm production and maturation of the ova."},
  146 + {"BoxName": "T2","topcoord":"-130","leftcoord":"-59","Answervalue":"","QuizText":"<span style='position: absolute;border: 0px solid rgb(51, 51, 51); background: rgb(232, 232, 232);height:30px;width:160px;top:254px;' id='blockbox-T2' droppable='true'></span>-----------------------------------&nbsp; is responsible for increasing the production of male and female sex hormones."},
  147 + {"BoxName": "T3","topcoord":"-91","leftcoord":"-59","Answervalue":"","QuizText":"<span style='position: absolute;border: 0px solid rgb(51, 51, 51); background: rgb(232, 232, 232);height:30px;width:160px;top:295px;' id='blockbox-T3' droppable='true'></span>-----------------------------------&nbsp; stimulates the thyroid gland to produce thyroid hormone."},
  148 + {"BoxName": "T4","topcoord":"-53","leftcoord":"-59","Answervalue":"","QuizText":"<span style='position: absolute;border: 0px solid rgb(51, 51, 51); background: rgb(232, 232, 232);height:30px;width:160px;top:337px;' id='blockbox-T4' droppable='true'></span>-----------------------------------&nbsp; stimulates the adrenal gland to release glucocorticoid hormones."}],
149 "Options": [{"OptionNumber": "A","OptionTitle": "FSH","textalign":"bottom"},{"OptionNumber": "B","OptionTitle": "LH","textalign":"bottom"}, 149 "Options": [{"OptionNumber": "A","OptionTitle": "FSH","textalign":"bottom"},{"OptionNumber": "B","OptionTitle": "LH","textalign":"bottom"},
150 {"OptionNumber": "C","OptionTitle": "TH","textalign":"bottom"},{"OptionNumber": "D","OptionTitle": "ACTH","textalign":"bottom"}], 150 {"OptionNumber": "C","OptionTitle": "TH","textalign":"bottom"},{"OptionNumber": "D","OptionTitle": "ACTH","textalign":"bottom"}],
151 "correctResponse": [{"OptionBox": "T1","Answer": "A"},{"OptionBox": "T2","Answer": "B"},{"OptionBox": "T3","Answer": "C"},{"OptionBox": "T4","Answer": "D"}] 151 "correctResponse": [{"OptionBox": "T1","Answer": "A"},{"OptionBox": "T2","Answer": "B"},{"OptionBox": "T3","Answer": "C"},{"OptionBox": "T4","Answer": "D"}]
@@ -155,10 +155,10 @@ @@ -155,10 +155,10 @@
155 "Title": "Complete the statements below.", 155 "Title": "Complete the statements below.",
156 "activityTitle": "Hormones II", 156 "activityTitle": "Hormones II",
157 "ImagePath":"", 157 "ImagePath":"",
158 - "OptionBox": [{"BoxName": "T1","topcoord":"-156","leftcoord":"-54","Answervalue":"","QuizText":" _________________________ stimulates uterine contraction."},  
159 - {"BoxName": "T2","topcoord":"-122","leftcoord":"-54","Answervalue":"","QuizText":"_________________________ stimulates milk production."},  
160 - {"BoxName": "T3","topcoord":"-88","leftcoord":"-54","Answervalue":"","QuizText":"_________________________ stimulates water reabsorption."},  
161 - {"BoxName": "T4","topcoord":"-54","leftcoord":"-54","Answervalue":"","QuizText":"_________________________ stimulates sodium reabsorption."}], 158 + "OptionBox": [{"BoxName": "T1","topcoord":"-169","leftcoord":"-59","Answervalue":"","QuizText":"<span style='position: absolute;border: 0px solid rgb(51, 51, 51); background: rgb(232, 232, 232);height:30px;width:160px;top:212px;' id='blockbox-T1' droppable='true' ></span>-----------------------------------&nbsp; stimulates uterine contraction."},
  159 + {"BoxName": "T2","topcoord":"-130","leftcoord":"-59","Answervalue":"","QuizText":"<span style='position: absolute;border: 0px solid rgb(51, 51, 51); background: rgb(232, 232, 232);height:30px;width:160px;top:254px;' id='blockbox-T2' droppable='true'></span>-----------------------------------&nbsp; stimulates milk production."},
  160 + {"BoxName": "T3","topcoord":"-91","leftcoord":"-59","Answervalue":"","QuizText":"<span style='position: absolute;border: 0px solid rgb(51, 51, 51); background: rgb(232, 232, 232);height:30px;width:160px;top:295px;' id='blockbox-T3' droppable='true'></span>-----------------------------------&nbsp; stimulates water reabsorption."},
  161 + {"BoxName": "T4","topcoord":"-53","leftcoord":"-59","Answervalue":"","QuizText":"<span style='position: absolute;border: 0px solid rgb(51, 51, 51); background: rgb(232, 232, 232);height:30px;width:160px;top:337px;' id='blockbox-T4' droppable='true'></span>-----------------------------------&nbsp; stimulates sodium reabsorption."}],
162 "Options": [{"OptionNumber": "A","OptionTitle": "Oxytocin","textalign":"bottom"},{"OptionNumber": "B","OptionTitle": "Prolactin","textalign":"bottom"}, 162 "Options": [{"OptionNumber": "A","OptionTitle": "Oxytocin","textalign":"bottom"},{"OptionNumber": "B","OptionTitle": "Prolactin","textalign":"bottom"},
163 {"OptionNumber": "C","OptionTitle": "ADH","textalign":"bottom"},{"OptionNumber": "D","OptionTitle": "Aldosterone","textalign":"bottom"}], 163 {"OptionNumber": "C","OptionTitle": "ADH","textalign":"bottom"},{"OptionNumber": "D","OptionTitle": "Aldosterone","textalign":"bottom"}],
164 "correctResponse": [{"OptionBox": "T1","Answer": "A"},{"OptionBox": "T2","Answer": "B"},{"OptionBox": "T3","Answer": "C"},{"OptionBox": "T4","Answer": "D"}] 164 "correctResponse": [{"OptionBox": "T1","Answer": "A"},{"OptionBox": "T2","Answer": "B"},{"OptionBox": "T3","Answer": "C"},{"OptionBox": "T4","Answer": "D"}]
@@ -168,10 +168,10 @@ @@ -168,10 +168,10 @@
168 "Title": "Complete the statements below.", 168 "Title": "Complete the statements below.",
169 "activityTitle": "Endocrine Glands", 169 "activityTitle": "Endocrine Glands",
170 "ImagePath":"", 170 "ImagePath":"",
171 - "OptionBox": [{"BoxName": "T1","topcoord":"-156","leftcoord":"-22","Answervalue":"","QuizText":"The _________________________ hormone acts primarily on skeletal muscle and bone tissue."},  
172 - {"BoxName": "T2","topcoord":"-122","leftcoord":"-22","Answervalue":"","QuizText":"The _________________________ hormone is secreted by the adrenal medulla in response to stress."},  
173 - {"BoxName": "T3","topcoord":"-88","leftcoord":"-22","Answervalue":"","QuizText":"The _________________________ hormone is secreted by the kidney and promotes red blood cell production."},  
174 - {"BoxName": "T4","topcoord":"-54","leftcoord":"-22","Answervalue":"","QuizText":"The _________________________ hormone is an anti-inflammatory and also responds to chronic stress."}], 171 + "OptionBox": [{"BoxName": "T1","topcoord":"-169","leftcoord":"-31","Answervalue":"","QuizText":"The <span style='position: absolute;border: 0px solid rgb(51, 51, 51); background: rgb(232, 232, 232);height:30px;width:160px;top:212px;' id='blockbox-T1' droppable='true' ></span>-----------------------------------&nbsp; hormone acts primarily on skeletal muscle and bone tissue."},
  172 + {"BoxName": "T2","topcoord":"-130","leftcoord":"-31","Answervalue":"","QuizText":"The <span style='position: absolute;border: 0px solid rgb(51, 51, 51); background: rgb(232, 232, 232);height:30px;width:160px;top:254px;' id='blockbox-T2' droppable='true'></span>-----------------------------------&nbsp; hormone is secreted by the adrenal medulla in response to stress."},
  173 + {"BoxName": "T3","topcoord":"-91","leftcoord":"-31","Answervalue":"","QuizText":"The <span style='position: absolute;border: 0px solid rgb(51, 51, 51); background: rgb(232, 232, 232);height:30px;width:160px;top:295px;' id='blockbox-T3' droppable='true'></span>-----------------------------------&nbsp; hormone is secreted by the kidney and promotes red blood cell production."},
  174 + {"BoxName": "T4","topcoord":"-53","leftcoord":"-31","Answervalue":"","QuizText":"The <span style='position: absolute;border: 0px solid rgb(51, 51, 51); background: rgb(232, 232, 232);height:30px;width:160px;top:337px;' id='blockbox-T4' droppable='true'></span>-----------------------------------&nbsp; hormone is an anti-inflammatory and also responds to chronic stress."}],
175 "Options": [{"OptionNumber": "A","OptionTitle": "growth","textalign":"bottom"},{"OptionNumber": "B","OptionTitle": "epinephrine","textalign":"bottom"}, 175 "Options": [{"OptionNumber": "A","OptionTitle": "growth","textalign":"bottom"},{"OptionNumber": "B","OptionTitle": "epinephrine","textalign":"bottom"},
176 {"OptionNumber": "C","OptionTitle": "erythropoietin","textalign":"bottom"},{"OptionNumber": "D","OptionTitle": "cortisol","textalign":"bottom"}], 176 {"OptionNumber": "C","OptionTitle": "erythropoietin","textalign":"bottom"},{"OptionNumber": "D","OptionTitle": "cortisol","textalign":"bottom"}],
177 "correctResponse": [{"OptionBox": "T1","Answer": "A"},{"OptionBox": "T2","Answer": "B"},{"OptionBox": "T3","Answer": "C"},{"OptionBox": "T4","Answer": "D"}] 177 "correctResponse": [{"OptionBox": "T1","Answer": "A"},{"OptionBox": "T2","Answer": "B"},{"OptionBox": "T3","Answer": "C"},{"OptionBox": "T4","Answer": "D"}]
400-SOURCECODE/AIAHTML5.Web/content/data/json/le/qz_dat_ly.json
@@ -140,10 +140,10 @@ @@ -140,10 +140,10 @@
140 "Title": "Complete the statements below.", 140 "Title": "Complete the statements below.",
141 "ImagePath":"", 141 "ImagePath":"",
142 "activityTitle": "Tonsils II", 142 "activityTitle": "Tonsils II",
143 - "OptionBox": [{"BoxName": "T1","topcoord":"-273","leftcoord":"-74","Answervalue":"","QuizText":"The <span style='position: absolute;border: 0px solid rgb(51, 51, 51); background: rgb(232, 232, 232);height:30px;width:160px;top:126px;' id='blockbox-T1' droppable='true' ></span>-----------------------------------&nbsp; tonsils are found at the back of the throat."},  
144 - {"BoxName": "T2","topcoord":"-231","leftcoord":"-74","Answervalue":"","QuizText":"The <span style='position: absolute;border: 0px solid rgb(51, 51, 51); background: rgb(232, 232, 232);height:30px;width:160px;top:168px;' id='blockbox-T2' droppable='true'></span>-----------------------------------&nbsp; tonsils are found in the nasopharynx."},  
145 - {"BoxName": "T3","topcoord":"-190","leftcoord":"-74","Answervalue":"","QuizText":"The <span style='position: absolute;border: 0px solid rgb(51, 51, 51); background: rgb(232, 232, 232);height:30px;width:160px;top:209px;' id='blockbox-T3' droppable='true'></span>-----------------------------------&nbsp; tonsils are found at the base of the tongue."},  
146 - {"BoxName": "T4","topcoord":"-149","leftcoord":"-74","Answervalue":"","QuizText":"The <span style='position: absolute;border: 0px solid rgb(51, 51, 51); background: rgb(232, 232, 232);height:30px;width:160px;top:250px;' id='blockbox-T4' droppable='true'></span>-----------------------------------&nbsp; tonsils surround the openings of the auditory tubes into the pharynx."}], 143 + "OptionBox": [{"BoxName": "T1","topcoord":"-227","leftcoord":"-74","Answervalue":"","QuizText":"The <span style='position: absolute;border: 0px solid rgb(51, 51, 51); background: rgb(232, 232, 232);height:30px;width:160px;top:215px;' id='blockbox-T1' droppable='true' ></span>-----------------------------------&nbsp; tonsils are found at the back of the throat."},
  144 + {"BoxName": "T2","topcoord":"-188","leftcoord":"-74","Answervalue":"","QuizText":"The <span style='position: absolute;border: 0px solid rgb(51, 51, 51); background: rgb(232, 232, 232);height:30px;width:160px;top:255px;' id='blockbox-T2' droppable='true'></span>-----------------------------------&nbsp; tonsils are found in the nasopharynx."},
  145 + {"BoxName": "T3","topcoord":"-147","leftcoord":"-74","Answervalue":"","QuizText":"The <span style='position: absolute;border: 0px solid rgb(51, 51, 51); background: rgb(232, 232, 232);height:30px;width:160px;top:296px;' id='blockbox-T3' droppable='true'></span>-----------------------------------&nbsp; tonsils are found at the base of the tongue."},
  146 + {"BoxName": "T4","topcoord":"-107","leftcoord":"-74","Answervalue":"","QuizText":"The <span style='position: absolute;border: 0px solid rgb(51, 51, 51); background: rgb(232, 232, 232);height:30px;width:160px;top:336px;' id='blockbox-T4' droppable='true'></span>-----------------------------------&nbsp; tonsils surround the openings of the auditory tubes into the pharynx."}],
147 "Options": [{"OptionNumber": "A","OptionTitle": "palatine","textalign":"bottom"},{"OptionNumber": "B","OptionTitle": "pharyngeal","textalign":"bottom"}, 147 "Options": [{"OptionNumber": "A","OptionTitle": "palatine","textalign":"bottom"},{"OptionNumber": "B","OptionTitle": "pharyngeal","textalign":"bottom"},
148 {"OptionNumber": "C","OptionTitle": "lingual","textalign":"bottom"},{"OptionNumber": "D","OptionTitle": "tubal","textalign":"bottom"}], 148 {"OptionNumber": "C","OptionTitle": "lingual","textalign":"bottom"},{"OptionNumber": "D","OptionTitle": "tubal","textalign":"bottom"}],
149 "correctResponse": [{"OptionBox": "T1","Answer": "A"},{"OptionBox": "T2","Answer": "B"},{"OptionBox": "T3","Answer": "C"}, 149 "correctResponse": [{"OptionBox": "T1","Answer": "A"},{"OptionBox": "T2","Answer": "B"},{"OptionBox": "T3","Answer": "C"},
@@ -153,10 +153,10 @@ @@ -153,10 +153,10 @@
153 "Title": "Complete the statements below.", 153 "Title": "Complete the statements below.",
154 "ImagePath":"", 154 "ImagePath":"",
155 "activityTitle": "Lymphatic Glands", 155 "activityTitle": "Lymphatic Glands",
156 - "OptionBox": [{"BoxName": "T1","topcoord":"-273","leftcoord":"-74","Answervalue":"","QuizText":"The <span style='position: absolute;border: 0px solid rgb(51, 51, 51); background: rgb(232, 232, 232);height:30px;width:160px;top:126px;' id='blockbox-T1' droppable='true' ></span>-----------------------------------&nbsp; filter lymph and house lymphocytes to fight infection."},  
157 - {"BoxName": "T2","topcoord":"-231","leftcoord":"-74","Answervalue":"","QuizText":"The <span style='position: absolute;border: 0px solid rgb(51, 51, 51); background: rgb(232, 232, 232);height:30px;width:160px;top:168px;' id='blockbox-T2' droppable='true'></span>-----------------------------------&nbsp; is active in childhood but becomes less functional as we age."},  
158 - {"BoxName": "T3","topcoord":"-190","leftcoord":"-74","Answervalue":"","QuizText":"The <span style='position: absolute;border: 0px solid rgb(51, 51, 51); background: rgb(232, 232, 232);height:30px;width:160px;top:209px;' id='blockbox-T3' droppable='true'></span>-----------------------------------&nbsp; is responsible for filtering blood rather than lymph and also aids in the recycling of red blood cells."},  
159 - {"BoxName": "T4","topcoord":"-149","leftcoord":"-74","Answervalue":"","QuizText":"The <span style='position: absolute;border: 0px solid rgb(51, 51, 51); background: rgb(232, 232, 232);height:30px;width:160px;top:250px;' id='blockbox-T4' droppable='true'></span>-----------------------------------&nbsp; are found within the nasal and oral respiratory passageways to filter pathogens that may be breathed in through the air."}], 156 + "OptionBox": [{"BoxName": "T1","topcoord":"-227","leftcoord":"-74","Answervalue":"","QuizText":"The <span style='position: absolute;border: 0px solid rgb(51, 51, 51); background: rgb(232, 232, 232);height:30px;width:160px;top:215px;' id='blockbox-T1' droppable='true' ></span>-----------------------------------&nbsp; filter lymph and house lymphocytes to fight infection."},
  157 + {"BoxName": "T2","topcoord":"-188","leftcoord":"-74","Answervalue":"","QuizText":"The <span style='position: absolute;border: 0px solid rgb(51, 51, 51); background: rgb(232, 232, 232);height:30px;width:160px;top:255px;' id='blockbox-T2' droppable='true'></span>-----------------------------------&nbsp; is active in childhood but becomes less functional as we age."},
  158 + {"BoxName": "T3","topcoord":"-147","leftcoord":"-74","Answervalue":"","QuizText":"The <span style='position: absolute;border: 0px solid rgb(51, 51, 51); background: rgb(232, 232, 232);height:30px;width:160px;top:296px;' id='blockbox-T3' droppable='true'></span>-----------------------------------&nbsp; is responsible for filtering blood rather than lymph and also aids in the recycling of red blood cells."},
  159 + {"BoxName": "T4","topcoord":"-107","leftcoord":"-74","Answervalue":"","QuizText":"The <span style='position: absolute;border: 0px solid rgb(51, 51, 51); background: rgb(232, 232, 232);height:30px;width:160px;top:336px;' id='blockbox-T4' droppable='true'></span>-----------------------------------&nbsp; are found within the nasal and oral respiratory passageways to filter pathogens that may be breathed in through the air."}],
160 "Options": [{"OptionNumber": "A","OptionTitle": "lymph nodes","textalign":"bottom"},{"OptionNumber": "B","OptionTitle": "thymus","textalign":"bottom"}, 160 "Options": [{"OptionNumber": "A","OptionTitle": "lymph nodes","textalign":"bottom"},{"OptionNumber": "B","OptionTitle": "thymus","textalign":"bottom"},
161 {"OptionNumber": "C","OptionTitle": "spleen","textalign":"bottom"},{"OptionNumber": "D","OptionTitle": "tonsils","textalign":"bottom"}], 161 {"OptionNumber": "C","OptionTitle": "spleen","textalign":"bottom"},{"OptionNumber": "D","OptionTitle": "tonsils","textalign":"bottom"}],
162 "correctResponse": [{"OptionBox": "T1","Answer": "A"},{"OptionBox": "T2","Answer": "B"},{"OptionBox": "T3","Answer": "C"}, 162 "correctResponse": [{"OptionBox": "T1","Answer": "A"},{"OptionBox": "T2","Answer": "B"},{"OptionBox": "T3","Answer": "C"},
@@ -166,10 +166,10 @@ @@ -166,10 +166,10 @@
166 "Title": "Complete the statements below.", 166 "Title": "Complete the statements below.",
167 "ImagePath":"", 167 "ImagePath":"",
168 "activityTitle": "Cells", 168 "activityTitle": "Cells",
169 - "OptionBox": [{"BoxName": "T1","topcoord":"-273","leftcoord":"-98","Answervalue":"","QuizText":" <span style='position: absolute;border: 0px solid rgb(51, 51, 51); background: rgb(232, 232, 232);height:30px;width:160px;top:126px;' id='blockbox-T1' droppable='true' ></span>-----------------------------------&nbsp; cells are responsible for <b>Humoral</b> immunity."},  
170 - {"BoxName": "T2","topcoord":"-231","leftcoord":"-98","Answervalue":"","QuizText":" <span style='position: absolute;border: 0px solid rgb(51, 51, 51); background: rgb(232, 232, 232);height:30px;width:160px;top:168px;' id='blockbox-T2' droppable='true'></span>-----------------------------------&nbsp; cells are responsible for <b>Cell-mediated</b> immunity."},  
171 - {"BoxName": "T3","topcoord":"-190","leftcoord":"-98","Answervalue":"","QuizText":" <span style='position: absolute;border: 0px solid rgb(51, 51, 51); background: rgb(232, 232, 232);height:30px;width:160px;top:209px;' id='blockbox-T3' droppable='true'></span>-----------------------------------&nbsp; cells are responsible for the majority of antibody production."},  
172 - {"BoxName": "T4","topcoord":"-149","leftcoord":"-98","Answervalue":"","QuizText":" <span style='position: absolute;border: 0px solid rgb(51, 51, 51); background: rgb(232, 232, 232);height:30px;width:160px;top:250px;' id='blockbox-T4' droppable='true'></span>-----------------------------------&nbsp; cells can recognize a pathogen that the body has seen in the past."}], 169 + "OptionBox": [{"BoxName": "T1","topcoord":"-227","leftcoord":"-98","Answervalue":"","QuizText":" <span style='position: absolute;border: 0px solid rgb(51, 51, 51); background: rgb(232, 232, 232);height:30px;width:160px;top:215px;' id='blockbox-T1' droppable='true' ></span>-----------------------------------&nbsp; cells are responsible for <b>Humoral</b> immunity."},
  170 + {"BoxName": "T2","topcoord":"-188","leftcoord":"-98","Answervalue":"","QuizText":" <span style='position: absolute;border: 0px solid rgb(51, 51, 51); background: rgb(232, 232, 232);height:30px;width:160px;top:255px;' id='blockbox-T2' droppable='true'></span>-----------------------------------&nbsp; cells are responsible for <b>Cell-mediated</b> immunity."},
  171 + {"BoxName": "T3","topcoord":"-147","leftcoord":"-98","Answervalue":"","QuizText":" <span style='position: absolute;border: 0px solid rgb(51, 51, 51); background: rgb(232, 232, 232);height:30px;width:160px;top:296px;' id='blockbox-T3' droppable='true'></span>-----------------------------------&nbsp; cells are responsible for the majority of antibody production."},
  172 + {"BoxName": "T4","topcoord":"-107","leftcoord":"-98","Answervalue":"","QuizText":" <span style='position: absolute;border: 0px solid rgb(51, 51, 51); background: rgb(232, 232, 232);height:30px;width:160px;top:336px;' id='blockbox-T4' droppable='true'></span>-----------------------------------&nbsp; cells can recognize a pathogen that the body has seen in the past."}],
173 "Options": [{"OptionNumber": "A","OptionTitle": "B lymphocytes","textalign":"bottom"}, 173 "Options": [{"OptionNumber": "A","OptionTitle": "B lymphocytes","textalign":"bottom"},
174 {"OptionNumber": "B","OptionTitle": "T lymphocytes","textalign":"bottom"}, 174 {"OptionNumber": "B","OptionTitle": "T lymphocytes","textalign":"bottom"},
175 {"OptionNumber": "C","OptionTitle": "Plasma","textalign":"bottom"}, 175 {"OptionNumber": "C","OptionTitle": "Plasma","textalign":"bottom"},
@@ -181,10 +181,10 @@ @@ -181,10 +181,10 @@
181 "Title": "Complete the statements below.", 181 "Title": "Complete the statements below.",
182 "ImagePath":"", 182 "ImagePath":"",
183 "activityTitle": "Immunity", 183 "activityTitle": "Immunity",
184 - "OptionBox": [{"BoxName": "T1","topcoord":"-273","leftcoord":"-98","Answervalue":"","QuizText":" <span style='position: absolute;border: 0px solid rgb(51, 51, 51); background: rgb(232, 232, 232);height:30px;width:160px;top:126px;' id='blockbox-T1' droppable='true' ></span>-----------------------------------&nbsp; immunity results from coming in contact with a pathogen and contracting a disease."},  
185 - {"BoxName": "T2","topcoord":"-231","leftcoord":"-98","Answervalue":"","QuizText":" <span style='position: absolute;border: 0px solid rgb(51, 51, 51); background: rgb(232, 232, 232);height:30px;width:160px;top:168px;' id='blockbox-T2' droppable='true'></span>-----------------------------------&nbsp; immunity results from receiving a vaccination."},  
186 - {"BoxName": "T3","topcoord":"-190","leftcoord":"-98","Answervalue":"","QuizText":" <span style='position: absolute;border: 0px solid rgb(51, 51, 51); background: rgb(232, 232, 232);height:30px;width:160px;top:209px;' id='blockbox-T3' droppable='true'></span>-----------------------------------&nbsp; immunity results from mom passing antibodies to the child via the placenta and breast milk."},  
187 - {"BoxName": "T4","topcoord":"-149","leftcoord":"-98","Answervalue":"","QuizText":" <span style='position: absolute;border: 0px solid rgb(51, 51, 51); background: rgb(232, 232, 232);height:30px;width:160px;top:250px;' id='blockbox-T4' droppable='true'></span>-----------------------------------&nbsp; immunity results from receiving an injection of serum containing antibodies made by another individual or animal."}], 184 + "OptionBox": [{"BoxName": "T1","topcoord":"-227","leftcoord":"-98","Answervalue":"","QuizText":" <span style='position: absolute;border: 0px solid rgb(51, 51, 51); background: rgb(232, 232, 232);height:30px;width:160px;top:215px;' id='blockbox-T1' droppable='true' ></span>-----------------------------------&nbsp; immunity results from coming in contact with a pathogen and contracting a disease."},
  185 + {"BoxName": "T2","topcoord":"-188","leftcoord":"-98","Answervalue":"","QuizText":" <span style='position: absolute;border: 0px solid rgb(51, 51, 51); background: rgb(232, 232, 232);height:30px;width:160px;top:255px;' id='blockbox-T2' droppable='true'></span>-----------------------------------&nbsp; immunity results from receiving a vaccination."},
  186 + {"BoxName": "T3","topcoord":"-147","leftcoord":"-98","Answervalue":"","QuizText":" <span style='position: absolute;border: 0px solid rgb(51, 51, 51); background: rgb(232, 232, 232);height:30px;width:160px;top:296px;' id='blockbox-T3' droppable='true'></span>-----------------------------------&nbsp; immunity results from mom passing antibodies to the child via the placenta and breast milk."},
  187 + {"BoxName": "T4","topcoord":"-107","leftcoord":"-98","Answervalue":"","QuizText":" <span style='position: absolute;border: 0px solid rgb(51, 51, 51); background: rgb(232, 232, 232);height:30px;width:160px;top:336px;' id='blockbox-T4' droppable='true'></span>-----------------------------------&nbsp; immunity results from receiving an injection of serum containing antibodies made by another individual or animal."}],
188 "Options": [{"OptionNumber": "A","OptionTitle": "Active natural","textalign":"bottom"}, 188 "Options": [{"OptionNumber": "A","OptionTitle": "Active natural","textalign":"bottom"},
189 {"OptionNumber": "B","OptionTitle": "Active artificial","textalign":"bottom"}, 189 {"OptionNumber": "B","OptionTitle": "Active artificial","textalign":"bottom"},
190 {"OptionNumber": "C","OptionTitle": "Passive natural","textalign":"bottom"}, 190 {"OptionNumber": "C","OptionTitle": "Passive natural","textalign":"bottom"},
400-SOURCECODE/AIAHTML5.Web/content/data/json/le/qz_dat_mu.json
@@ -170,10 +170,10 @@ @@ -170,10 +170,10 @@
170 "Title": "Complete the statements below.", 170 "Title": "Complete the statements below.",
171 "ImagePath":"", 171 "ImagePath":"",
172 "activityTitle": "Muscles of the Upper Limb", 172 "activityTitle": "Muscles of the Upper Limb",
173 - "OptionBox": [{"BoxName": "T1","topcoord":"-156","leftcoord":"-22","Answervalue":"","QuizText":"The _________________________ muscle is the major abductor of the shoulder."},  
174 - {"BoxName": "T2","topcoord":"-122","leftcoord":"-22","Answervalue":"","QuizText":"The _________________________ muscle is the major extensor of the arm and forearm."},  
175 - {"BoxName": "T3","topcoord":"-88","leftcoord":"-22","Answervalue":"","QuizText":"The _________________________ muscle flexes both the arm and forearm."},  
176 - {"BoxName": "T4","topcoord":"-54","leftcoord":"-22","Answervalue":"","QuizText":"The _________________________ muscle adducts, medially rotates, and extends the humerus."}], 173 + "OptionBox": [{"BoxName": "T1","topcoord":"-169","leftcoord":"-31","Answervalue":"","QuizText":"The <span style='position: absolute;border: 0px solid rgb(51, 51, 51); background: rgb(232, 232, 232);height:30px;width:160px;top:212px;' id='blockbox-T1' droppable='true' ></span>-----------------------------------&nbsp; muscle is the major abductor of the shoulder."},
  174 + {"BoxName": "T2","topcoord":"-130","leftcoord":"-31","Answervalue":"","QuizText":"The <span style='position: absolute;border: 0px solid rgb(51, 51, 51); background: rgb(232, 232, 232);height:30px;width:160px;top:254px;' id='blockbox-T2' droppable='true'></span>-----------------------------------&nbsp; muscle is the major extensor of the arm and forearm."},
  175 + {"BoxName": "T3","topcoord":"-91","leftcoord":"-31","Answervalue":"","QuizText":"The <span style='position: absolute;border: 0px solid rgb(51, 51, 51); background: rgb(232, 232, 232);height:30px;width:160px;top:295px;' id='blockbox-T3' droppable='true'></span>-----------------------------------&nbsp; muscle flexes both the arm and forearm."},
  176 + {"BoxName": "T4","topcoord":"-53","leftcoord":"-31","Answervalue":"","QuizText":"The <span style='position: absolute;border: 0px solid rgb(51, 51, 51); background: rgb(232, 232, 232);height:30px;width:160px;top:337px;' id='blockbox-T4' droppable='true'></span>-----------------------------------&nbsp; muscle adducts, medially rotates, and extends the humerus."}],
177 "Options": [{"OptionNumber": "A","OptionTitle": "deltoid","textalign":"bottom"},{"OptionNumber": "B","OptionTitle": "triceps brachii","textalign":"bottom"}, 177 "Options": [{"OptionNumber": "A","OptionTitle": "deltoid","textalign":"bottom"},{"OptionNumber": "B","OptionTitle": "triceps brachii","textalign":"bottom"},
178 {"OptionNumber": "C","OptionTitle": "right ventricle","textalign":"bottom"},{"OptionNumber": "D","OptionTitle": "latissimus dorsi","textalign":"bottom"}], 178 {"OptionNumber": "C","OptionTitle": "right ventricle","textalign":"bottom"},{"OptionNumber": "D","OptionTitle": "latissimus dorsi","textalign":"bottom"}],
179 "correctResponse": [{"OptionBox": "T1","Answer": "A"},{"OptionBox": "T2","Answer": "B"},{"OptionBox": "T3","Answer": "C"}, 179 "correctResponse": [{"OptionBox": "T1","Answer": "A"},{"OptionBox": "T2","Answer": "B"},{"OptionBox": "T3","Answer": "C"},
@@ -183,14 +183,13 @@ @@ -183,14 +183,13 @@
183 "Title": "Complete the statements below.", 183 "Title": "Complete the statements below.",
184 "ImagePath":"", 184 "ImagePath":"",
185 "activityTitle": "Muscles of the Lower Limb", 185 "activityTitle": "Muscles of the Lower Limb",
186 - "OptionBox": [{"BoxName": "T1","topcoord":"-156","leftcoord":"-22","Answervalue":"","QuizText":"The _________________________ extends the knee and flexes the hip."},  
187 - {"BoxName": "T2","topcoord":"-122","leftcoord":"-22","Answervalue":"","QuizText":"The _________________________ flexes the knee and extends the hip."},  
188 - {"BoxName": "T3","topcoord":"-88","leftcoord":"-22","Answervalue":"","QuizText":"The _________________________ muscle causes plantar flexion of the ankle."},  
189 - {"BoxName": "T4","topcoord":"-54","leftcoord":"-22","Answervalue":"","QuizText":"The _________________________ muscle causes dorsiflexion of the ankle."}], 186 + "OptionBox": [{"BoxName": "T1","topcoord":"-169","leftcoord":"-31","Answervalue":"","QuizText":"The <span style='position: absolute;border: 0px solid rgb(51, 51, 51); background: rgb(232, 232, 232);height:30px;width:160px;top:212px;' id='blockbox-T1' droppable='true' ></span>-----------------------------------&nbsp; extends the knee and flexes the hip."},
  187 + {"BoxName": "T2","topcoord":"-130","leftcoord":"-31","Answervalue":"","QuizText":"The <span style='position: absolute;border: 0px solid rgb(51, 51, 51); background: rgb(232, 232, 232);height:30px;width:160px;top:254px;' id='blockbox-T2' droppable='true'></span>-----------------------------------&nbsp; flexes the knee and extends the hip."},
  188 + {"BoxName": "T3","topcoord":"-91","leftcoord":"-31","Answervalue":"","QuizText":"The <span style='position: absolute;border: 0px solid rgb(51, 51, 51); background: rgb(232, 232, 232);height:30px;width:160px;top:295px;' id='blockbox-T3' droppable='true'></span>-----------------------------------&nbsp; muscle causes plantar flexion of the ankle."},
  189 + {"BoxName": "T4","topcoord":"-53","leftcoord":"-31","Answervalue":"","QuizText":"The <span style='position: absolute;border: 0px solid rgb(51, 51, 51); background: rgb(232, 232, 232);height:30px;width:160px;top:337px;' id='blockbox-T4' droppable='true'></span>-----------------------------------&nbsp; muscle causes dorsiflexion of the ankle."}],
190 "Options": [{"OptionNumber": "A","OptionTitle": "rectus femoris","textalign":"bottom"},{"OptionNumber": "B","OptionTitle": "biceps femoris","textalign":"bottom"}, 190 "Options": [{"OptionNumber": "A","OptionTitle": "rectus femoris","textalign":"bottom"},{"OptionNumber": "B","OptionTitle": "biceps femoris","textalign":"bottom"},
191 {"OptionNumber": "C","OptionTitle": "gastrocnemius","textalign":"bottom"},{"OptionNumber": "D","OptionTitle": "tibialis anterior","textalign":"bottom"}], 191 {"OptionNumber": "C","OptionTitle": "gastrocnemius","textalign":"bottom"},{"OptionNumber": "D","OptionTitle": "tibialis anterior","textalign":"bottom"}],
192 - "correctResponse": [{"OptionBox": "T1","Answer": "A"},{"OptionBox": "T2","Answer": "B"},{"OptionBox": "T3","Answer": "C"},  
193 - {"OptionBox": "T4","Answer": "D"}] 192 + "correctResponse": [{"OptionBox": "T1","Answer": "A"},{"OptionBox": "T2","Answer": "B"},{"OptionBox": "T3","Answer": "C"},{"OptionBox": "T4","Answer": "D"}]
194 }] 193 }]
195 }] 194 }]
196 } 195 }
197 \ No newline at end of file 196 \ No newline at end of file
400-SOURCECODE/AIAHTML5.Web/content/data/json/le/qz_dat_rp.json
@@ -10,9 +10,9 @@ @@ -10,9 +10,9 @@
10 "Title": "Drag the labels to the correct location on the image.", 10 "Title": "Drag the labels to the correct location on the image.",
11 "activityTitle": "Female Pelvic Organs", 11 "activityTitle": "Female Pelvic Organs",
12 "ImagePath":"RP-01.JPG", 12 "ImagePath":"RP-01.JPG",
13 - "OptionBox": [{"BoxName": "T1","topcoord":"168","leftcoord":"4","Answervalue":"","QuizText":""},{"BoxName": "T2","topcoord":"219","leftcoord":"4","Answervalue":"","QuizText":""},  
14 - {"BoxName": "T3","topcoord":"22","leftcoord":"614","Answervalue":"","QuizText":""},{"BoxName": "T4","topcoord":"202","leftcoord":"614","Answervalue":"","QuizText":""},  
15 - {"BoxName": "T5","topcoord":"290","leftcoord":"614","Answervalue":"","QuizText":""},{"BoxName": "T6","topcoord":"343","leftcoord":"614","Answervalue":"","QuizText":""}], 13 + "OptionBox": [{"BoxName": "T1","topcoord":"168","leftcoord":"5","Answervalue":"","QuizText":""},{"BoxName": "T2","topcoord":"219","leftcoord":"5","Answervalue":"","QuizText":""},
  14 + {"BoxName": "T3","topcoord":"22","leftcoord":"615","Answervalue":"","QuizText":""},{"BoxName": "T4","topcoord":"202","leftcoord":"615","Answervalue":"","QuizText":""},
  15 + {"BoxName": "T5","topcoord":"290","leftcoord":"615","Answervalue":"","QuizText":""},{"BoxName": "T6","topcoord":"343","leftcoord":"615","Answervalue":"","QuizText":""}],
16 "Options": [{"OptionNumber": "A","OptionTitle": "Ovary","textalign":"left"},{"OptionNumber": "B","OptionTitle": "Round ligament of uterus","textalign":"left"}, 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"}, 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"}], 18 {"OptionNumber": "E","OptionTitle": "Urinary bladder","textalign":"left"},{"OptionNumber": "F","OptionTitle": "Urethra","textalign":"right"}],
@@ -103,11 +103,11 @@ @@ -103,11 +103,11 @@
103 "Title": "Complete the statements below.", 103 "Title": "Complete the statements below.",
104 "activityTitle": "Male Reproductive II", 104 "activityTitle": "Male Reproductive II",
105 "ImagePath":"", 105 "ImagePath":"",
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."}], 106 + "OptionBox": [{"BoxName": "T1","topcoord":"-210","leftcoord":"-59","Answervalue":"","QuizText":"<span style='position: absolute;border: 0px solid rgb(51, 51, 51); background: rgb(232, 232, 232);height:30px;width:160px;top:212px;' id='blockbox-T1' droppable='true' ></span>----------------------------------&nbsp;&nbsp; is the surgical removal of the foreskin (prepuce) from the glans penis."},
  107 + {"BoxName": "T2","topcoord":"-170","leftcoord":"-59","Answervalue":"","QuizText":"<span style='position: absolute;border: 0px solid rgb(51, 51, 51); background: rgb(232, 232, 232);height:30px;width:160px;top:254px;' id='blockbox-T2' droppable='true'></span>----------------------------------&nbsp;&nbsp; is a condition of undescended testes that can lead to sterility or cancer if not corrected."},
  108 + {"BoxName": "T3","topcoord":"-133","leftcoord":"-59","Answervalue":"","QuizText":"<span style='position: absolute;border: 0px solid rgb(51, 51, 51); background: rgb(232, 232, 232);height:30px;width:160px;top:295px;' id='blockbox-T3' droppable='true'></span>----------------------------------&nbsp;&nbsp; is the inability to either achieve or maintain an erection."},
  109 + {"BoxName": "T4","topcoord":"-91","leftcoord":"-59","Answervalue":"","QuizText":"<span style='position: absolute;border: 0px solid rgb(51, 51, 51); background: rgb(232, 232, 232);height:30px;width:160px;top:337px;' id='blockbox-T4' droppable='true'></span>----------------------------------&nbsp;&nbsp; is a low sperm count and is one of the main causes of male infertility."},
  110 + {"BoxName": "T5","topcoord":"-53","leftcoord":"-59","Answervalue":"","QuizText":"<span style='position: absolute;border: 0px solid rgb(51, 51, 51); background: rgb(232, 232, 232);height:30px;width:160px;top:377px;' id='blockbox-T5' droppable='true'></span>----------------------------------&nbsp;&nbsp; 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"}, 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"}, 112 {"OptionNumber": "C","OptionTitle": "Impotence","textalign":"bottom"},{"OptionNumber": "D","OptionTitle": "Oligospermia","textalign":"bottom"},
113 {"OptionNumber": "E","OptionTitle": "Vasectomy","textalign":"bottom"}], 113 {"OptionNumber": "E","OptionTitle": "Vasectomy","textalign":"bottom"}],
@@ -117,12 +117,12 @@ @@ -117,12 +117,12 @@
117 "Title": "Complete the statements below.", 117 "Title": "Complete the statements below.",
118 "activityTitle": "Female Reproductive", 118 "activityTitle": "Female Reproductive",
119 "ImagePath":"", 119 "ImagePath":"",
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."}], 120 + "OptionBox": [{"BoxName": "T1","topcoord":"-249","leftcoord":"-59","Answervalue":"","QuizText":"<span style='position: absolute;border: 0px solid rgb(51, 51, 51); background: rgb(232, 232, 232);height:30px;width:160px;top:212px;' id='blockbox-T1' droppable='true' ></span>----------------------------------&nbsp;&nbsp; is the monthly discharge of the endometrial lining of the uterus."},
  121 + {"BoxName": "T2","topcoord":"-210","leftcoord":"-59","Answervalue":"","QuizText":"<span style='position: absolute;border: 0px solid rgb(51, 51, 51); background: rgb(232, 232, 232);height:30px;width:160px;top:254px;' id='blockbox-T2' droppable='true'></span>----------------------------------&nbsp;&nbsp; is a womanำณ first menstrual period."},
  122 + {"BoxName": "T3","topcoord":"-170","leftcoord":"-59","Answervalue":"","QuizText":"<span style='position: absolute;border: 0px solid rgb(51, 51, 51); background: rgb(232, 232, 232);height:30px;width:160px;top:295px;' id='blockbox-T3' droppable='true'></span>----------------------------------&nbsp;&nbsp; is an uncomfortable and often painful menstrual period."},
  123 + {"BoxName": "T4","topcoord":"-133","leftcoord":"-59","Answervalue":"","QuizText":"<span style='position: absolute;border: 0px solid rgb(51, 51, 51); background: rgb(232, 232, 232);height:30px;width:160px;top:337px;' id='blockbox-T4' droppable='true'></span>----------------------------------&nbsp;&nbsp; is the cessation of monthly menstrual periods once a woman is beyond her reproductive years."},
  124 + {"BoxName": "T5","topcoord":"-91","leftcoord":"-59","Answervalue":"","QuizText":"<span style='position: absolute;border: 0px solid rgb(51, 51, 51); background: rgb(232, 232, 232);height:30px;width:160px;top:377px;' id='blockbox-T5' droppable='true'></span>----------------------------------&nbsp;&nbsp; is the surgical removal of the uterus."},
  125 + {"BoxName": "T6","topcoord":"-53","leftcoord":"-59","Answervalue":"","QuizText":"<span style='position: absolute;border: 0px solid rgb(51, 51, 51); background: rgb(232, 232, 232);height:30px;width:160px;top:418px;' id='blockbox-T6' droppable='true'></span>----------------------------------&nbsp;&nbsp; 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"}, 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"}, 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"}], 128 {"OptionNumber": "E","OptionTitle": "Hysterectomy","textalign":"bottom"},{"OptionNumber": "F","OptionTitle": "Tubal ligation","textalign":"bottom"}],
@@ -133,10 +133,10 @@ @@ -133,10 +133,10 @@
133 "Title": "Complete the statements below.", 133 "Title": "Complete the statements below.",
134 "activityTitle": "Male Reproductive II", 134 "activityTitle": "Male Reproductive II",
135 "ImagePath":"", 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 ________________________."}], 136 + "OptionBox": [{"BoxName": "T1","topcoord":"-169","leftcoord":"214","Answervalue":"","QuizText":"The sac containing the testes is called the <span style='position: absolute;border: 0px solid rgb(51, 51, 51); background: rgb(232, 232, 232);height:30px;width:160px;top:212px;' id='blockbox-T1' droppable='true' ></span>----------------------------------&nbsp;&nbsp;."},
  137 + {"BoxName": "T2","topcoord":"-131","leftcoord":"382","Answervalue":"","QuizText":"The singular part of the penis surrounding the penile urethra is the <span style='position: absolute;border: 0px solid rgb(51, 51, 51); background: rgb(232, 232, 232);height:30px;width:160px;top:254px;' id='blockbox-T2' droppable='true'></span>----------------------------------&nbsp;&nbsp;."},
  138 + {"BoxName": "T3","topcoord":"-92","leftcoord":"532","Answervalue":"","QuizText":"The paired structures of the penis responsible for the rigidity of the erection are called the <span style='position: absolute;border: 0px solid rgb(51, 51, 51); background: rgb(232, 232, 232);height:30px;width:160px;top:295px;' id='blockbox-T3' droppable='true'></span>----------------------------------&nbsp;&nbsp;."},
  139 + {"BoxName": "T4","topcoord":"-53","leftcoord":"212","Answervalue":"","QuizText":"The enlarged tip of the penis is called the <span style='position: absolute;border: 0px solid rgb(51, 51, 51); background: rgb(232, 232, 232);height:30px;width:160px;top:337px;' id='blockbox-T4' droppable='true'></span>----------------------------------&nbsp;&nbsp;."}],
140 "Options": [{"OptionNumber": "A","OptionTitle": "scrotum","textalign":"bottom"},{"OptionNumber": "B","OptionTitle": "corpus spongiosum","textalign":"bottom"}, 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"}], 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"}] 142 "correctResponse": [{"OptionBox": "T1","Answer": "A"},{"OptionBox": "T2","Answer": "B"},{"OptionBox": "T3","Answer": "C"},{"OptionBox": "T4","Answer": "D"}]
@@ -145,10 +145,10 @@ @@ -145,10 +145,10 @@
145 "Title": "Complete the statements below.", 145 "Title": "Complete the statements below.",
146 "activityTitle": "Accessory Glands", 146 "activityTitle": "Accessory Glands",
147 "ImagePath":"", 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 ________________________ ."}], 148 + "OptionBox": [{"BoxName": "T1","topcoord":"-169","leftcoord":"-31","Answervalue":"","QuizText":"The <span style='position: absolute;border: 0px solid rgb(51, 51, 51); background: rgb(232, 232, 232);height:30px;width:160px;top:212px;' id='blockbox-T1' droppable='true' ></span>----------------------------------&nbsp;&nbsp; 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":"-130","leftcoord":"-31","Answervalue":"","QuizText":"The <span style='position: absolute;border: 0px solid rgb(51, 51, 51); background: rgb(232, 232, 232);height:30px;width:160px;top:254px;' id='blockbox-T2' droppable='true'></span>----------------------------------&nbsp;&nbsp; gland surrounds the urethra and it contributes approximately one third of the semen volume."},
  150 + {"BoxName": "T3","topcoord":"-92","leftcoord":"880","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 <span style='position: absolute;border: 0px solid rgb(51, 51, 51); background: rgb(232, 232, 232);height:30px;width:160px;top:295px;' id='blockbox-T3' droppable='true'></span>----------------------------------&nbsp;&nbsp; glands."},
  151 + {"BoxName": "T4","topcoord":"-53","leftcoord":"507","Answervalue":"","QuizText":"The paired tubes that carry sperm from the epididymus to the ejaculatory duct are the <span style='position: absolute;border: 0px solid rgb(51, 51, 51); background: rgb(232, 232, 232);height:30px;width:160px;top:337px;' id='blockbox-T4' droppable='true'></span>----------------------------------&nbsp;&nbsp; ."}],
152 "Options": [{"OptionNumber": "A","OptionTitle": "seminal vesicles","textalign":"bottom"},{"OptionNumber": "B","OptionTitle": "prostate","textalign":"bottom"}, 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"}], 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"}] 154 "correctResponse": [{"OptionBox": "T1","Answer": "A"},{"OptionBox": "T2","Answer": "B"},{"OptionBox": "T3","Answer": "C"},{"OptionBox": "T4","Answer": "D"}]
@@ -157,10 +157,10 @@ @@ -157,10 +157,10 @@
157 "Title": "Complete the statements below.", 157 "Title": "Complete the statements below.",
158 "activityTitle": "Hormones", 158 "activityTitle": "Hormones",
159 "ImagePath":"", 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 ________________________ ."}], 160 + "OptionBox": [{"BoxName": "T1","topcoord":"-169","leftcoord":"729","Answervalue":"","QuizText":"The hormone produced by the testes that causes development of the secondary sexual characteristics in a male is called <span style='position: absolute;border: 0px solid rgb(51, 51, 51); background: rgb(232, 232, 232);height:30px;width:160px;top:212px;' id='blockbox-T1' droppable='true' ></span>----------------------------------&nbsp;&nbsp; ."},
  161 + {"BoxName": "T2","topcoord":"-131","leftcoord":"750","Answervalue":"","QuizText":"The hormone produced by the ovaries that causes development of the secondary sexual characteristics in a female is called <span style='position: absolute;border: 0px solid rgb(51, 51, 51); background: rgb(232, 232, 232);height:30px;width:160px;top:254px;' id='blockbox-T2' droppable='true'></span>----------------------------------&nbsp;&nbsp; ."},
  162 + {"BoxName": "T3","topcoord":"-92","leftcoord":"912","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 <span style='position: absolute;border: 0px solid rgb(51, 51, 51); background: rgb(232, 232, 232);height:30px;width:160px;top:295px;' id='blockbox-T3' droppable='true'></span>----------------------------------&nbsp;&nbsp; ."},
  163 + {"BoxName": "T4","topcoord":"-53","leftcoord":"614","Answervalue":"","QuizText":"The hormone secreted by the sustentacular cells of the testes in response to spermatogenesis is called <span style='position: absolute;border: 0px solid rgb(51, 51, 51); background: rgb(232, 232, 232);height:30px;width:160px;top:337px;' id='blockbox-T4' droppable='true'></span>----------------------------------&nbsp;&nbsp; ."}],
164 "Options": [{"OptionNumber": "A","OptionTitle": "testosterone","textalign":"bottom"},{"OptionNumber": "B","OptionTitle": "estrogen","textalign":"bottom"}, 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"}], 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"}] 166 "correctResponse": [{"OptionBox": "T1","Answer": "A"},{"OptionBox": "T2","Answer": "B"},{"OptionBox": "T3","Answer": "C"},{"OptionBox": "T4","Answer": "D"}]
400-SOURCECODE/AIAHTML5.Web/content/data/json/le/qz_dat_rs.json
@@ -169,10 +169,10 @@ @@ -169,10 +169,10 @@
169 "Title": "Complete the statements below.", 169 "Title": "Complete the statements below.",
170 "activityTitle": "Pulmonary Ventilation", 170 "activityTitle": "Pulmonary Ventilation",
171 "ImagePath":"", 171 "ImagePath":"",
172 - "OptionBox": [{"BoxName": "T1","topcoord":"-151","leftcoord":"260","Answervalue":"","QuizText":"The movement of air into and out of the lungs is called <span style='position: absolute;border: 0px solid rgb(51, 51, 51); background: rgb(232, 232, 232);height:30px;width:170px;top:154px;' id='blockbox-T1' droppable='true' ></span> <span> .</span>"},  
173 - {"BoxName": "T2","topcoord":"-119","leftcoord":"418","Answervalue":"","QuizText":"The exchange of gases between the alveoli of the lungs and the blood is called <span style='position: absolute;border: 0px solid rgb(51, 51, 51); background: rgb(232, 232, 232);height:30px;width:170px;top:186px;' id='blockbox-T2' droppable='true'></span><span> .</span>"},  
174 - {"BoxName": "T3","topcoord":"-88","leftcoord":"305","Answervalue":"","QuizText":"The exchange of gases between the blood and tissues is called <span style='position: absolute;border: 0px solid rgb(51, 51, 51); background: rgb(232, 232, 232);height:30px;width:170px;top:221px;' id='blockbox-T3' droppable='true'></span><span> respiration.</span>"},  
175 - {"BoxName": "T4","topcoord":"-54","leftcoord":"346","Answervalue":"","QuizText":"The amount of air exchanged during quiet, restful breathing is called <span style='position: absolute;border: 0px solid rgb(51, 51, 51); background: rgb(232, 232, 232);height:30px;width:185px;top:253px;' id='blockbox-T4' droppable='true'></span><span> volume.</span>"}], 172 + "OptionBox": [{"BoxName": "T1","topcoord":"-169","leftcoord":"258","Answervalue":"","QuizText":"The movement of air into and out of the lungs is called <span style='position: absolute;border: 0px solid rgb(51, 51, 51); background: rgb(232, 232, 232);height:30px;width:160px;top:212px;' id='blockbox-T1' droppable='true' ></span>----------------------------------&nbsp; <span> .</span>"},
  173 + {"BoxName": "T2","topcoord":"-130","leftcoord":"411","Answervalue":"","QuizText":"The exchange of gases between the alveoli of the lungs and the blood is called <span style='position: absolute;border: 0px solid rgb(51, 51, 51); background: rgb(232, 232, 232);height:30px;width:160px;top:254px;' id='blockbox-T2' droppable='true'></span>----------------------------------&nbsp;<span> .</span>"},
  174 + {"BoxName": "T3","topcoord":"-92","leftcoord":"309","Answervalue":"","QuizText":"The exchange of gases between the blood and tissues is called <span style='position: absolute;border: 0px solid rgb(51, 51, 51); background: rgb(232, 232, 232);height:30px;width:160px;top:295px;' id='blockbox-T3' droppable='true'></span>----------------------------------&nbsp;&nbsp;<span> respiration.</span>"},
  175 + {"BoxName": "T4","topcoord":"-50","leftcoord":"349","Answervalue":"","QuizText":"The amount of air exchanged during quiet, restful breathing is called <span style='position: absolute;border: 0px solid rgb(51, 51, 51); background: rgb(232, 232, 232);height:30px;width:160px;top:337px;' id='blockbox-T4' droppable='true'></span>----------------------------------&nbsp;&nbsp;<span> volume.</span>"}],
176 "Options": [{"OptionNumber": "A","OptionTitle": "ventilation","textalign":"bottom"},{"OptionNumber": "B","OptionTitle": "external","textalign":"bottom"}, 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"}], 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"}] 178 "correctResponse": [{"OptionBox": "T1","Answer": "A"},{"OptionBox": "T2","Answer": "B"},{"OptionBox": "T3","Answer": "C"},{"OptionBox": "T4","Answer": "D"}]
@@ -181,10 +181,10 @@ @@ -181,10 +181,10 @@
181 "Title": "Complete the statements below.", 181 "Title": "Complete the statements below.",
182 "activityTitle": "Respiratory Volumes", 182 "activityTitle": "Respiratory Volumes",
183 "ImagePath":"", 183 "ImagePath":"",
184 - "OptionBox": [{"BoxName": "T1","topcoord":"-148","leftcoord":"325","Answervalue":"","QuizText":"The active phase of breathing, drawing air into the lungs is called <span style='position: absolute;border: 0px solid rgb(51, 51, 51); background: rgb(232, 232, 232);height:30px;width:170px;top:154px;' id='blockbox-T1' droppable='true' ></span> <span>.</span>"},  
185 - {"BoxName": "T2","topcoord":"-119","leftcoord":"329","Answervalue":"","QuizText":"The passive phase of breathing when air leaves the lungs is called <span style='position: absolute;border: 0px solid rgb(51, 51, 51); background: rgb(232, 232, 232);height:30px;width:170px;top:186px;' id='blockbox-T2' droppable='true'></span><span>.</span>"},  
186 - {"BoxName": "T3","topcoord":"-82","leftcoord":"732","Answervalue":"","QuizText":"The disease characterized by narrow respiratory passageways obstructing the movement of air into and out of the lungs is called <span style='position: absolute;border: 0px solid rgb(51, 51, 51); background: rgb(232, 232, 232);height:30px;width:170px;top:221px;' id='blockbox-T3' droppable='true'></span><span>.</span>"},  
187 - {"BoxName": "T4","topcoord":"-50","leftcoord":"626","Answervalue":"","QuizText":"The disease characterized by a reduction in the number of alveoli and a loss of elasticity of lung tissue is called <span style='position: absolute;border: 0px solid rgb(51, 51, 51); background: rgb(232, 232, 232);height:30px;width:185px;top:253px;' id='blockbox-T4' droppable='true'></span><span>.</span>"}], 184 + "OptionBox": [{"BoxName": "T1","topcoord":"-169","leftcoord":"319","Answervalue":"","QuizText":"The active phase of breathing, drawing air into the lungs is called <span style='position: absolute;border: 0px solid rgb(51, 51, 51); background: rgb(232, 232, 232);height:30px;width:160px;top:212px;' id='blockbox-T1' droppable='true' ></span>----------------------------------&nbsp; <span>.</span>"},
  185 + {"BoxName": "T2","topcoord":"-130","leftcoord":"322","Answervalue":"","QuizText":"The passive phase of breathing when air leaves the lungs is called <span style='position: absolute;border: 0px solid rgb(51, 51, 51); background: rgb(232, 232, 232);height:30px;width:160px;top:254px;' id='blockbox-T2' droppable='true'></span>----------------------------------&nbsp; <span>.</span>"},
  186 + {"BoxName": "T3","topcoord":"-90","leftcoord":"734","Answervalue":"","QuizText":"The disease characterized by narrow respiratory passageways obstructing the movement of air into and out of the lungs is called <span style='position: absolute;border: 0px solid rgb(51, 51, 51); background: rgb(232, 232, 232);height:30px;width:160px;top:295px;' id='blockbox-T3' droppable='true'></span>----------------------------------&nbsp; <span>.</span>"},
  187 + {"BoxName": "T4","topcoord":"-50","leftcoord":"620","Answervalue":"","QuizText":"The disease characterized by a reduction in the number of alveoli and a loss of elasticity of lung tissue is called <span style='position: absolute;border: 0px solid rgb(51, 51, 51); background: rgb(232, 232, 232);height:30px;width:160px;top:337px;' id='blockbox-T4' droppable='true'></span>----------------------------------&nbsp; <span>.</span>"}],
188 "Options": [{"OptionNumber": "A","OptionTitle": "inhalation","textalign":"bottom"},{"OptionNumber": "B","OptionTitle": "exhalation","textalign":"bottom"}, 188 "Options": [{"OptionNumber": "A","OptionTitle": "inhalation","textalign":"bottom"},{"OptionNumber": "B","OptionTitle": "exhalation","textalign":"bottom"},
189 {"OptionNumber": "C","OptionTitle": "asthma","textalign":"bottom"},{"OptionNumber": "D","OptionTitle": "emphysema","textalign":"bottom"}], 189 {"OptionNumber": "C","OptionTitle": "asthma","textalign":"bottom"},{"OptionNumber": "D","OptionTitle": "emphysema","textalign":"bottom"}],
190 "correctResponse": [{"OptionBox": "T1","Answer": "A"},{"OptionBox": "T2","Answer": "B"},{"OptionBox": "T3","Answer": "C"},{"OptionBox": "T4","Answer": "D"}] 190 "correctResponse": [{"OptionBox": "T1","Answer": "A"},{"OptionBox": "T2","Answer": "B"},{"OptionBox": "T3","Answer": "C"},{"OptionBox": "T4","Answer": "D"}]
400-SOURCECODE/AIAHTML5.Web/content/data/json/le/qz_dat_ss.json 0 โ†’ 100644
  1 +๏ปฟ{"LabExercise" : [
  2 + {
  3 + "Topic": "Special System",
  4 + "Slug": "qz_dat_ss",
  5 + "TopicImagePath": "lab-exercises-10.jpg",
  6 + "NumberofQuestions": "12",
  7 + "Questions": [
  8 + {
  9 + "Number": "1",
  10 + "Title": "Drag the labels to the correct location on the image.",
  11 + "activityTitle": "External Ear",
  12 + "ImagePath":"SS-01.JPG",
  13 + "OptionBox": [{"BoxName": "T1","topcoord":"34","leftcoord":"2","Answervalue":"","QuizText":""},{"BoxName": "T2","topcoord":"204","leftcoord":"2","Answervalue":"","QuizText":""},
  14 + {"BoxName": "T3","topcoord":"226","leftcoord":"572","Answervalue":"","QuizText":""},{"BoxName": "T4","topcoord":"352","leftcoord":"572","Answervalue":"","QuizText":""}],
  15 + "Options": [{"OptionNumber": "A","OptionTitle": "Auricle","textalign":"right"},{"OptionNumber": "B","OptionTitle": "External acoustic meatus","textalign":"left"},
  16 + {"OptionNumber": "C","OptionTitle": "Tragus","textalign":"right"},{"OptionNumber": "D","OptionTitle": "Lobule","textalign":"left"}],
  17 + "correctResponse": [{"OptionBox": "T1","Answer": "A"},{"OptionBox": "T2","Answer": "B"},{"OptionBox": "T3","Answer": "C"},{"OptionBox": "T4","Answer": "D"}]
  18 + },{
  19 + "Number": "2",
  20 + "Title": "Drag the labels to the correct location on the image.",
  21 + "activityTitle": "Inner Ear",
  22 + "ImagePath":"SS-02.JPG",
  23 + "OptionBox": [{"BoxName": "T1","topcoord":"33","leftcoord":"2","Answervalue":"","QuizText":""},{"BoxName": "T2","topcoord":"125","leftcoord":"2","Answervalue":"","QuizText":""},
  24 + {"BoxName": "T3","topcoord":"170","leftcoord":"2","Answervalue":"","QuizText":""},{"BoxName": "T4","topcoord":"258","leftcoord":"2","Answervalue":"","QuizText":""},
  25 + {"BoxName": "T5","topcoord":"67","leftcoord":"878","Answervalue":"","QuizText":""},{"BoxName": "T6","topcoord":"172","leftcoord":"878","Answervalue":"","QuizText":""},
  26 + {"BoxName": "T7","topcoord":"231","leftcoord":"878","Answervalue":"","QuizText":""}],
  27 + "Options": [{"OptionNumber": "A","OptionTitle": "Anterior semicircular canal","textalign":"bottom"},{"OptionNumber": "B","OptionTitle": "Lateral semicircular canal","textalign":"bottom"},
  28 + {"OptionNumber": "C","OptionTitle": "Posterior semicircular canal","textalign":"bottom"},{"OptionNumber": "D","OptionTitle": "Vestibule","textalign":"bottom"},
  29 + {"OptionNumber": "E","OptionTitle": "Cochlear nerve","textalign":"bottom"},{"OptionNumber": "F","OptionTitle": "Vestibular nerve","textalign":"bottom"},
  30 + {"OptionNumber": "G","OptionTitle": "Cochlea","textalign":"bottom"}],
  31 + "correctResponse": [{"OptionBox": "T1","Answer": "E"},{"OptionBox": "T2","Answer": "F"},{"OptionBox": "T3","Answer": "D"},{"OptionBox": "T4","Answer": "C"},
  32 + {"OptionBox": "T5","Answer": "G"},{"OptionBox": "T6","Answer": "A"},{"OptionBox": "T7","Answer": "B"}]
  33 + },{
  34 + "Number": "3",
  35 + "Title": "Drag the labels to the correct location on the image.",
  36 + "activityTitle": "Middle Ear",
  37 + "ImagePath":"SS-03.JPG",
  38 + "OptionBox": [{"BoxName": "T1","topcoord":"50","leftcoord":"3","Answervalue":"","QuizText":""},{"BoxName": "T2","topcoord":"107","leftcoord":"3","Answervalue":"","QuizText":""},
  39 + {"BoxName": "T3","topcoord":"20","leftcoord":"840","Answervalue":"","QuizText":""},{"BoxName": "T4","topcoord":"82","leftcoord":"840","Answervalue":"","QuizText":""},
  40 + {"BoxName": "T5","topcoord":"129","leftcoord":"840","Answervalue":"","QuizText":""}],
  41 + "Options": [{"OptionNumber": "A","OptionTitle": "Tympanic membrane","textalign":"bottom"},{"OptionNumber": "B","OptionTitle": "Stapes","textalign":"bottom"},
  42 + {"OptionNumber": "C","OptionTitle": "External acoustic meatus","textalign":"bottom"},{"OptionNumber": "D","OptionTitle": "Malleus","textalign":"bottom"},
  43 + {"OptionNumber": "E","OptionTitle": "Incus","textalign":"bottom"}],
  44 + "correctResponse": [{"OptionBox": "T1","Answer": "A"},{"OptionBox": "T2","Answer": "B"},{"OptionBox": "T3","Answer": "C"},{"OptionBox": "T4","Answer": "D"},
  45 + {"OptionBox": "T5","Answer": "E"}]
  46 + },{
  47 + "Number": "4",
  48 + "Title": "Drag the labels to the correct location on the image.",
  49 + "activityTitle": "External Eye",
  50 + "ImagePath":"SS-04.JPG",
  51 + "OptionBox": [{"BoxName": "T1","topcoord":"26","leftcoord":"3","Answervalue":"","QuizText":""},{"BoxName": "T2","topcoord":"188","leftcoord":"3","Answervalue":"","QuizText":""},
  52 + {"BoxName": "T3","topcoord":"237","leftcoord":"3","Answervalue":"","QuizText":""},{"BoxName": "T4","topcoord":"326","leftcoord":"3","Answervalue":"","QuizText":""},
  53 + {"BoxName": "T5","topcoord":"78","leftcoord":"614","Answervalue":"","QuizText":""},{"BoxName": "T6","topcoord":"188","leftcoord":"614","Answervalue":"","QuizText":""},
  54 + {"BoxName": "T7","topcoord":"275","leftcoord":"614","Answervalue":"","QuizText":""},{"BoxName": "T8","topcoord":"322","leftcoord":"614","Answervalue":"","QuizText":""}],
  55 + "Options": [{"OptionNumber": "A","OptionTitle": "Conjunctiva","textalign":"left"},{"OptionNumber": "B","OptionTitle": "Iris","textalign":"left"},
  56 + {"OptionNumber": "C","OptionTitle": "Pupil","textalign":"right"},{"OptionNumber": "D","OptionTitle": "Sclera","textalign":"right"},
  57 + {"OptionNumber": "E","OptionTitle": "Maxilla","textalign":"right"},{"OptionNumber": "F","OptionTitle": "Zygomatic bone","textalign":"left"},
  58 + {"OptionNumber": "G","OptionTitle": "Frontal bone","textalign":"left"},{"OptionNumber": "H","OptionTitle": "Lacrimal bone","textalign":"right"}],
  59 + "correctResponse": [{"OptionBox": "T1","Answer": "G"},{"OptionBox": "T2","Answer": "H"},{"OptionBox": "T3","Answer": "F"},{"OptionBox": "T4","Answer": "E"},
  60 + {"OptionBox": "T5","Answer": "A"},{"OptionBox": "T6","Answer": "B"},{"OptionBox": "T7","Answer": "C"},{"OptionBox": "T8","Answer": "D"}]
  61 + },{
  62 + "Number": "5",
  63 + "Title": "Drag the labels to the correct location on the image.",
  64 + "activityTitle": "Eye Muscles",
  65 + "ImagePath":"SS-05.JPG",
  66 + "OptionBox": [{"BoxName": "T1","topcoord":"112","leftcoord":"5","Answervalue":"","QuizText":""},{"BoxName": "T2","topcoord":"168","leftcoord":"5","Answervalue":"","QuizText":""},
  67 + {"BoxName": "T3","topcoord":"287","leftcoord":"5","Answervalue":"","QuizText":""},{"BoxName": "T4","topcoord":"327","leftcoord":"5","Answervalue":"","QuizText":""},
  68 + {"BoxName": "T5","topcoord":"74","leftcoord":"922","Answervalue":"","QuizText":""},{"BoxName": "T6","topcoord":"120","leftcoord":"922","Answervalue":"","QuizText":""},
  69 + {"BoxName": "T7","topcoord":"201","leftcoord":"922","Answervalue":"","QuizText":""},{"BoxName": "T8","topcoord":"323","leftcoord":"922","Answervalue":"","QuizText":""}],
  70 + "Options": [{"OptionNumber": "A","OptionTitle": "Superior rectus","textalign":"bottom"},{"OptionNumber": "B","OptionTitle": "Superior oblique","textalign":"bottom"},
  71 + {"OptionNumber": "C","OptionTitle": "Medial rectus","textalign":"bottom"},{"OptionNumber": "D","OptionTitle": "Optic nerve","textalign":"bottom"},
  72 + {"OptionNumber": "E","OptionTitle": "Inferior rectus","textalign":"bottom"},{"OptionNumber": "F","OptionTitle": "Inferior oblique","textalign":"bottom"},
  73 + {"OptionNumber": "G","OptionTitle": "Lateral rectus","textalign":"bottom"},{"OptionNumber": "H","OptionTitle": "Levator palpebrae superioris","textalign":"bottom"}],
  74 + "correctResponse": [{"OptionBox": "T1","Answer": "A"},{"OptionBox": "T2","Answer": "G"},{"OptionBox": "T3","Answer": "E"},{"OptionBox": "T4","Answer": "F"},
  75 + {"OptionBox": "T5","Answer": "H"},{"OptionBox": "T6","Answer": "B"},{"OptionBox": "T7","Answer": "C"},{"OptionBox": "T8","Answer": "D"}]
  76 + },{
  77 + "Number": "6",
  78 + "Title": "Drag the labels to the correct location on the image.",
  79 + "activityTitle": "Eye Muscles (Lat)",
  80 + "ImagePath":"SS-06.JPG",
  81 + "OptionBox": [{"BoxName": "T1","topcoord":"80","leftcoord":"4","Answervalue":"","QuizText":""},{"BoxName": "T2","topcoord":"195","leftcoord":"4","Answervalue":"","QuizText":""},
  82 + {"BoxName": "T3","topcoord":"236","leftcoord":"4","Answervalue":"","QuizText":""},{"BoxName": "T4","topcoord":"271","leftcoord":"4","Answervalue":"","QuizText":""},
  83 + {"BoxName": "T5","topcoord":"92","leftcoord":"881","Answervalue":"","QuizText":""},{"BoxName": "T6","topcoord":"146","leftcoord":"881","Answervalue":"","QuizText":""},
  84 + {"BoxName": "T7","topcoord":"208","leftcoord":"881","Answervalue":"","QuizText":""},{"BoxName": "T8","topcoord":"332","leftcoord":"881","Answervalue":"","QuizText":""}],
  85 + "Options": [{"OptionNumber": "A","OptionTitle": "Superior rectus","textalign":"bottom"},{"OptionNumber": "B","OptionTitle": "Superior oblique","textalign":"bottom"},
  86 + {"OptionNumber": "C","OptionTitle": "Lateral rectus","textalign":"bottom"},{"OptionNumber": "D","OptionTitle": "Inferior oblique","textalign":"bottom"},
  87 + {"OptionNumber": "E","OptionTitle": "Inferior rectus","textalign":"bottom"},{"OptionNumber": "F","OptionTitle": "Medial rectus","textalign":"bottom"},
  88 + {"OptionNumber": "G","OptionTitle": "Optic nerve","textalign":"bottom"},{"OptionNumber": "H","OptionTitle": "Levator palpebrae superioris","textalign":"bottom"}],
  89 + "correctResponse": [{"OptionBox": "T1","Answer": "B"},{"OptionBox": "T2","Answer": "H"},{"OptionBox": "T3","Answer": "G"},{"OptionBox": "T4","Answer": "E"},
  90 + {"OptionBox": "T5","Answer": "A"},{"OptionBox": "T6","Answer": "C"},{"OptionBox": "T7","Answer": "D"},{"OptionBox": "T8","Answer": "F"}]
  91 + },{
  92 + "Number": "7",
  93 + "Title": "Drag the labels to the correct location on the image.",
  94 + "activityTitle": "Olfactory Nerve",
  95 + "ImagePath":"SS-07.JPG",
  96 + "OptionBox": [{"BoxName": "T1","topcoord":"37","leftcoord":"2","Answervalue":"","QuizText":""},{"BoxName": "T2","topcoord":"80","leftcoord":"2","Answervalue":"","QuizText":""},
  97 + {"BoxName": "T3","topcoord":"116","leftcoord":"2","Answervalue":"","QuizText":""},{"BoxName": "T4","topcoord":"272","leftcoord":"2","Answervalue":"","QuizText":""},
  98 + {"BoxName": "T5","topcoord":"69","leftcoord":"819","Answervalue":"","QuizText":""},{"BoxName": "T6","topcoord":"138","leftcoord":"819","Answervalue":"","QuizText":""},
  99 + {"BoxName": "T7","topcoord":"249","leftcoord":"819","Answervalue":"","QuizText":""},{"BoxName": "T8","topcoord":"343","leftcoord":"819","Answervalue":"","QuizText":""}],
  100 + "Options": [{"OptionNumber": "A","OptionTitle": "Frontal sinus","textalign":"bottom"},{"OptionNumber": "B","OptionTitle": "Olfactory nerve","textalign":"bottom"},
  101 + {"OptionNumber": "C","OptionTitle": "Olfactory bulb","textalign":"bottom"},{"OptionNumber": "D","OptionTitle": "Cribriform plate","textalign":"bottom"},
  102 + {"OptionNumber": "E","OptionTitle": "Superior nasal concha","textalign":"bottom"},{"OptionNumber": "F","OptionTitle": "Sphenoidal sinus","textalign":"bottom"},
  103 + {"OptionNumber": "G","OptionTitle": "Hard palate","textalign":"bottom"},{"OptionNumber": "H","OptionTitle": "External nares","textalign":"bottom"}],
  104 + "correctResponse": [{"OptionBox": "T1","Answer": "A"},{"OptionBox": "T2","Answer": "B"},{"OptionBox": "T3","Answer": "E"},{"OptionBox": "T4","Answer": "H"},
  105 + {"OptionBox": "T5","Answer": "C"},{"OptionBox": "T6","Answer": "F"},{"OptionBox": "T7","Answer": "D"},{"OptionBox": "T8","Answer": "G"}]
  106 + },{
  107 + "Number": "8",
  108 + "Title": "Drag the labels to the correct location on the image.",
  109 + "activityTitle": "Tongue",
  110 + "ImagePath":"SS-08.JPG",
  111 + "OptionBox": [{"BoxName": "T1","topcoord":"99","leftcoord":"4","Answervalue":"","QuizText":""},{"BoxName": "T2","topcoord":"179","leftcoord":"4","Answervalue":"","QuizText":""},
  112 + {"BoxName": "T3","topcoord":"258","leftcoord":"4","Answervalue":"","QuizText":""},{"BoxName": "T4","topcoord":"304","leftcoord":"4","Answervalue":"","QuizText":""},
  113 + {"BoxName": "T5","topcoord":"30","leftcoord":"614","Answervalue":"","QuizText":""},{"BoxName": "T6","topcoord":"103","leftcoord":"614","Answervalue":"","QuizText":""},
  114 + {"BoxName": "T7","topcoord":"148","leftcoord":"614","Answervalue":"","QuizText":""},{"BoxName": "T8","topcoord":"379","leftcoord":"614","Answervalue":"","QuizText":""}],
  115 + "Options": [{"OptionNumber": "A","OptionTitle": "Epiglottis","textalign":"left"},{"OptionNumber": "B","OptionTitle": "Palatine tonsil","textalign":"right"},
  116 + {"OptionNumber": "C","OptionTitle": "Sulcus terminalis","textalign":"left"},{"OptionNumber": "D","OptionTitle": "Fungiform papillae","textalign":"left"},
  117 + {"OptionNumber": "E","OptionTitle": "Filiform papillae","textalign":"left"},{"OptionNumber": "F","OptionTitle": "Foliate papillae","textalign":"right"},
  118 + {"OptionNumber": "G","OptionTitle": "Circumvallate papillae","textalign":"right"},{"OptionNumber": "H","OptionTitle": "Lingual tonsil","textalign":"right"}],
  119 + "correctResponse": [{"OptionBox": "T1","Answer": "H"},{"OptionBox": "T2","Answer": "G"},{"OptionBox": "T3","Answer": "F"},{"OptionBox": "T4","Answer": "E"},
  120 + {"OptionBox": "T5","Answer": "A"},{"OptionBox": "T6","Answer": "B"},{"OptionBox": "T7","Answer": "C"},{"OptionBox": "T8","Answer": "D"}]
  121 + },{
  122 + "Number": "9",
  123 + "Title": "Complete the statements below.",
  124 + "activityTitle": "Eye I",
  125 + "ImagePath":"",
  126 + "OptionBox": [{"BoxName": "T1","topcoord":"-169","leftcoord":"136","Answervalue":"","QuizText":"The white of the eye is known as the <span style='position: absolute;border: 0px solid rgb(51, 51, 51); background: rgb(232, 232, 232);height:30px;width:160px;top:212px;' id='blockbox-T1' droppable='true' ></span>----------------------------------&nbsp; <span> .</span>"},
  127 + {"BoxName": "T2","topcoord":"-130","leftcoord":"200","Answervalue":"","QuizText":"The colored portion of the eye is known as the <span style='position: absolute;border: 0px solid rgb(51, 51, 51); background: rgb(232, 232, 232);height:30px;width:160px;top:254px;' id='blockbox-T2' droppable='true'></span>-----------------------------------&nbsp;<span> .</span>"},
  128 + {"BoxName": "T3","topcoord":"-92","leftcoord":"386","Answervalue":"","QuizText":"The opening in the center of the colored portion of the eye is known as the <span style='position: absolute;border: 0px solid rgb(51, 51, 51); background: rgb(232, 232, 232);height:30px;width:160px;top:295px;' id='blockbox-T3' droppable='true'></span>-----------------------------------&nbsp;<span> respiration.</span>"},
  129 + {"BoxName": "T4","topcoord":"-52","leftcoord":"396","Answervalue":"","QuizText":"The clear outer covering over the anterior surface of the eye is known as the <span style='position: absolute;border: 0px solid rgb(51, 51, 51); background: rgb(232, 232, 232);height:30px;width:160px;top:337px;' id='blockbox-T4' droppable='true'></span><span>-----------------------------------&nbsp; volume.</span>"}],
  130 + "Options": [{"OptionNumber": "A","OptionTitle": "sclera","textalign":"bottom"},{"OptionNumber": "B","OptionTitle": "iris","textalign":"bottom"},
  131 + {"OptionNumber": "C","OptionTitle": "pupil","textalign":"bottom"},{"OptionNumber": "D","OptionTitle": "cornea","textalign":"bottom"}],
  132 + "correctResponse": [{"OptionBox": "T1","Answer": "A"},{"OptionBox": "T2","Answer": "B"},{"OptionBox": "T3","Answer": "C"},{"OptionBox": "T4","Answer": "D"}]
  133 + },{
  134 + "Number": "10",
  135 + "Title": "Complete the statements below.",
  136 + "activityTitle": "Eye II",
  137 + "ImagePath":"",
  138 + "OptionBox": [{"BoxName": "T1","topcoord":"-169","leftcoord":"219","Answervalue":"","QuizText":"The inner, neural layer of the eye is known as the <span style='position: absolute;border: 0px solid rgb(51, 51, 51); background: rgb(232, 232, 232);height:30px;width:160px;top:212px;' id='blockbox-T1' droppable='true' ></span> -----------------------------------&nbsp;<span> .</span>"},
  139 + {"BoxName": "T2","topcoord":"-130","leftcoord":"241","Answervalue":"","QuizText":"The middle, vascular layer of the eye is known as the <span style='position: absolute;border: 0px solid rgb(51, 51, 51); background: rgb(232, 232, 232);height:30px;width:160px;top:254px;' id='blockbox-T2' droppable='true'></span>-----------------------------------&nbsp;<span> .</span>"},
  140 + {"BoxName": "T3","topcoord":"-91","leftcoord":"339","Answervalue":"","QuizText":"The vascular membrane covering the outer surface of the eye is the <span style='position: absolute;border: 0px solid rgb(51, 51, 51); background: rgb(232, 232, 232);height:30px;width:160px;top:295px;' id='blockbox-T3' droppable='true'></span>-----------------------------------&nbsp;<span> .</span>"},
  141 + {"BoxName": "T4","topcoord":"-52","leftcoord":"121","Answervalue":"","QuizText":"Another name for the eyelid is the <span style='position: absolute;border: 0px solid rgb(51, 51, 51); background: rgb(232, 232, 232);height:30px;width:160px;top:337px;' id='blockbox-T4' droppable='true'></span>-----------------------------------&nbsp;<span> .</span>"}],
  142 + "Options": [{"OptionNumber": "A","OptionTitle": "retina","textalign":"bottom"},{"OptionNumber": "B","OptionTitle": "choroid","textalign":"bottom"},
  143 + {"OptionNumber": "C","OptionTitle": "conjunctiva","textalign":"bottom"},{"OptionNumber": "D","OptionTitle": "palpebra","textalign":"bottom"}],
  144 + "correctResponse": [{"OptionBox": "T1","Answer": "A"},{"OptionBox": "T2","Answer": "B"},{"OptionBox": "T3","Answer": "C"},{"OptionBox": "T4","Answer": "D"}]
  145 + },{
  146 + "Number": "11",
  147 + "Title": "Drag the labels to the correct location on the image.",
  148 + "activityTitle": "Ear I",
  149 + "ImagePath":"",
  150 + "OptionBox": [{"BoxName": "T1","topcoord":"-169","leftcoord":"251","Answervalue":"","QuizText":"The external, visible portion of the ear is known as the <span style='position: absolute;border: 0px solid rgb(51, 51, 51); background: rgb(232, 232, 232);height:30px;width:160px;top:212px;' id='blockbox-T1' droppable='true'></span> -----------------------------------&nbsp;<span> .</span>"},
  151 + {"BoxName": "T2","topcoord":"-130","leftcoord":"225","Answervalue":"","QuizText":"The region of the ear containing the ossicles is the <span style='position: absolute;border: 0px solid rgb(51, 51, 51); background: rgb(232, 232, 232);height:30px;width:160px;top:254px;' id='blockbox-T2' droppable='true'></span>-----------------------------------&nbsp;<span> .</span>"},
  152 + {"BoxName": "T3","topcoord":"-91","leftcoord":"420","Answervalue":"","QuizText":"The region of the ear containing the sense organs for hearing and balance is the <span style='position: absolute;border: 0px solid rgb(51, 51, 51); background: rgb(232, 232, 232);height:30px;width:160px;top:295px;' id='blockbox-T3' droppable='true'></span>-----------------------------------&nbsp;<span> .</span>"},
  153 + {"BoxName": "T4","topcoord":"-52","leftcoord":"321","Answervalue":"","QuizText":"The portion of the ear containing the receptors for hearing is the <span style='position: absolute;border: 0px solid rgb(51, 51, 51); background: rgb(232, 232, 232);height:30px;width:160px;top:337px;' id='blockbox-T4' droppable='true'></span>-----------------------------------&nbsp;<span> .</span>"}],
  154 + "Options": [{"OptionNumber": "A","OptionTitle": "auricle","textalign":"bottom"},{"OptionNumber": "B","OptionTitle": "middle","textalign":"bottom"},
  155 + {"OptionNumber": "C","OptionTitle": "internal","textalign":"bottom"},{"OptionNumber": "D","OptionTitle": "cochlea","textalign":"bottom"}],
  156 + "correctResponse": [{"OptionBox": "T1","Answer": "A"},{"OptionBox": "T2","Answer": "B"},{"OptionBox": "T3","Answer": "C"},{"OptionBox": "T4","Answer": "D"}]
  157 + },{
  158 + "Number": "12",
  159 + "Title": "Drag the labels to the correct location on the image.",
  160 + "activityTitle": "Ear II",
  161 + "ImagePath":"",
  162 + "OptionBox": [{"BoxName": "T1","topcoord":"-210","leftcoord":"341","Answervalue":"","QuizText":"The portion of the ear commonly referred to as the 'ear drum' is the <span style='position: absolute;border: 0px solid rgb(51, 51, 51); background: rgb(232, 232, 232);height:30px;width:160px;top:212px;' id='blockbox-T1' droppable='true' ></span>----------------------------------&nbsp;<span> .</span>"},
  163 + {"BoxName": "T2","topcoord":"-171","leftcoord":"380","Answervalue":"","QuizText":"The portion of the ear containing the receptors for dynamic balance is the <span style='position: absolute;border: 0px solid rgb(51, 51, 51); background: rgb(232, 232, 232);height:30px;width:160px;top:254px;' id='blockbox-T2' droppable='true'></span>----------------------------------&nbsp;<span> .</span>"},
  164 + {"BoxName": "T3","topcoord":"-130","leftcoord":"-77","Answervalue":"","QuizText":"The <span style='position: absolute;border: 0px solid rgb(51, 51, 51); background: rgb(232, 232, 232);height:30px;width:160px;top:295px;' id='blockbox-T3' droppable='true'></span>----------------------------------&nbsp;&nbsp; is the common name for the malleus."},
  165 + {"BoxName": "T4","topcoord":"-92","leftcoord":"-77","Answervalue":"","QuizText":"The <span style='position: absolute;border: 0px solid rgb(51, 51, 51); background: rgb(232, 232, 232);height:30px;width:160px;top:337px;' id='blockbox-T4' droppable='true'></span>----------------------------------&nbsp;&nbsp; is the common name for the incus."},
  166 + {"BoxName": "T5","topcoord":"-50","leftcoord":"-77","Answervalue":"","QuizText":"The <span style='position: absolute;border: 0px solid rgb(51, 51, 51); background: rgb(232, 232, 232);height:30px;width:160px;top:377px;' id='blockbox-T5' droppable='true'></span>----------------------------------&nbsp;&nbsp; is the common name for the stapes."}],
  167 + "Options": [{"OptionNumber": "A","OptionTitle": "tympanic membrane","textalign":"bottom"},{"OptionNumber": "B","OptionTitle": "semicircular canal","textalign":"bottom"},
  168 + {"OptionNumber": "C","OptionTitle": "hammer","textalign":"bottom"},{"OptionNumber": "D","OptionTitle": "anvil","textalign":"bottom"},
  169 + {"OptionNumber": "E","OptionTitle": "stirrup","textalign":"bottom"}],
  170 + "correctResponse": [{"OptionBox": "T1","Answer": "A"},{"OptionBox": "T2","Answer": "B"},{"OptionBox": "T3","Answer": "C"},{"OptionBox": "T4","Answer": "D"},{"OptionBox": "T5","Answer": "E"}]
  171 + }]
  172 + }]
  173 +}
0 \ No newline at end of file 174 \ No newline at end of file