Commit 0e92b32e7241bca1136f10509b1e0f36c4efe96d

Authored by Nikita Kulshreshtha
1 parent cc635ed7

on next and previous user can see the attempted choice.

Added json and images for lymphatic questions
400-SOURCECODE/AIAHTML5.Web/app/controllers/LabExercController.js
... ... @@ -137,24 +137,10 @@ function ($scope, $rootScope, pages, log, $http,$timeout, DataService, $filter,
137 137 function (result) {
138 138 $scope.LabExData = result;
139 139  
140   - //get saved labExercis
141 140 var keywords = $location.search();
142 141 $scope.labExercideIdentifier = (keywords.labexercise.replace('.json', '')).split('dat_')[1];
143   - //var labExerciseInfo = {
144   - // userId: JSON.parse(localStorage.getItem('loggedInUserDetails')).Id,
145   - // identifier: $scope.labExercideIdentifier,
146   - //};
147   -
148   - //LabExerciseService.GetLabExercise(labExerciseInfo)
149   - // .then(
150   -
151   - // function (labResult) {
152   - // if (labResult != undefined && labResult != AIAConstants.SAVED_LAB_EXERCISE_NOT_FOUND) {
153   - // $scope.SavedLabExercise = labResult;
154   - // $scope.quiznumber = $scope.SavedLabExercise.lastQuestion;
155   -
156   - //layout the original question data
157   -
  142 +
  143 +
158 144 $.each(result.LabExercise, function (index, value) {
159 145 $scope.LabExerciseName = result.LabExercise[index].Topic;
160 146 if (result.LabExercise[index].Slug == keywords.labexercise) {
... ... @@ -187,8 +173,6 @@ function ($scope, $rootScope, pages, log, $http,$timeout, DataService, $filter,
187 173 $scope.Imagepath = keywords.labexercise + "/" + result.LabExercise[index].Questions[index1].ImagePath;
188 174 }
189 175 $scope.ShowHideDiv(result.LabExercise[index].Questions[index1].Options[0].textalign);
190   -
191   - //show saved data
192 176  
193 177 }
194 178 });
... ... @@ -202,9 +186,7 @@ function ($scope, $rootScope, pages, log, $http,$timeout, DataService, $filter,
202 186 }
203 187 },100);
204 188  
205   - // $scope.ShowSavedLabExercise();
206   - //$scope.quiznumber++;
207   -
  189 +
208 190 }
209 191  
210 192 });
... ... @@ -655,29 +637,33 @@ function ($scope, $rootScope, pages, log, $http,$timeout, DataService, $filter,
655 637 //from database
656 638  
657 639 var lastQuestion = $scope.quiznumber;
658   - var lastQuestionDetails;
659   -
660   -
661   - if ($scope.isNextOrPreviousClicked == true && $scope.DraggedList != undefined && $scope.DraggedList.length > 0) {
  640 + var lastQuestionDetails;
  641 + var lastQuestionAnswers;
662 642  
663   - //show question, as user opted in this attempt
664   - //prepare draggelist from data which is created for saving
  643 + //if user opted this question, it will have entry in LabExerciseUserData
  644 + var thisQuestiondataInLabExerciseUserData = new jinqJs()
  645 + .from($scope.LabExerciseUserData)
  646 + .where('QuestionNo == ' + $scope.quiznumber)
  647 + .select();
665 648  
666   - var lastQuestionDetails = new jinqJs()
667   - .from($scope.LabExerciseUserData)
668   - .where('QuestionNo == ' + lastQuestion)
669   - .select();
  649 +
  650 + //if this exists in LabExerciseUserData, show the new opted else show from database
  651 + if (thisQuestiondataInLabExerciseUserData.length > 0){
  652 +
670 653  
671   - }
672   - else{
  654 + lastQuestionDetails = thisQuestiondataInLabExerciseUserData;
  655 + lastQuestionAnswers = lastQuestionDetails[0].UserAnswer.split(',');
  656 + }
  657 +
  658 + else{
673 659  
674   - lastQuestionDetails = new jinqJs()
  660 + lastQuestionDetails = new jinqJs()
675 661 .from($scope.SavedLabExercise.labExercise)
676 662 .where('QuestionNo == ' + lastQuestion)
677 663 .select();
678   - }
  664 + lastQuestionAnswers = lastQuestionDetails[0].UserAnswers.split(',');
  665 + }
679 666 $scope.QustionAnsKeyValue = [];
680   - var lastQuestionAnswers = lastQuestionDetails[0].UserAnswers.split(',');
681 667 for (var i = 0; i < lastQuestionAnswers.length; i++) {
682 668 var num = i + 1;
683 669 $scope.QustionAnsKeyValue.push({ blockbox: 'T' + num, text: lastQuestionAnswers[i] });
... ... @@ -707,7 +693,6 @@ function ($scope, $rootScope, pages, log, $http,$timeout, DataService, $filter,
707 693 .where('BoxName == ' + value.blockbox)
708 694 .select();
709 695 if (value.text != "") {
710   - // $scope.DraggedList.push({ "id": 'blockbox-' + value.blockbox, "optionName": value.blockbox, "Value": value.text, "topcoord": questionOptionBox[0].topcoord, "leftcoord": questionOptionBox[0].leftcoord });
711 696 $scope.DraggedList.push({ "id": value.blockbox, "optionName": value.blockbox, "Value": value.text, "topcoord": questionOptionBox[0].topcoord, "leftcoord": questionOptionBox[0].leftcoord });
712 697  
713 698 }
... ...
400-SOURCECODE/AIAHTML5.Web/content/data/json/le/qz_dat_ly.json
... ... @@ -19,9 +19,9 @@
19 19 "Number": "2",
20 20 "Title": "Drag the labels to the correct location on the image.",
21 21 "activityTitle": "Cisterna Chyli",
22   - "ImagePath":"LS-02.JPG",
23   - "OptionBox": [{"BoxName": "T1","topcoord":"97","leftcoord":"8","Answervalue":"","QuizText":""},{"BoxName": "T2","topcoord":"136","leftcoord":"8","Answervalue":"","QuizText":""},
24   - {"BoxName": "T3","topcoord":"256","leftcoord":"8","Answervalue":"","QuizText":""},{"BoxName": "T4","topcoord":"329","leftcoord":"8","Answervalue":"","QuizText":""}],
  22 + "ImagePath":"LS-02.jpg",
  23 + "OptionBox": [{"BoxName": "T1","topcoord":"41","leftcoord":"7","Answervalue":"","QuizText":""},{"BoxName": "T2","topcoord":"349","leftcoord":"8","Answervalue":"","QuizText":""},
  24 + {"BoxName": "T3","topcoord":"53","leftcoord":"622","Answervalue":"","QuizText":""},{"BoxName": "T4","topcoord":"386","leftcoord":"622","Answervalue":"","QuizText":""}],
25 25 "Options": [{"OptionNumber": "A","OptionTitle": "Thoracic duct","textalign":"left"},{"OptionNumber": "B","OptionTitle": "Lumbar lymph node","textalign":"right"},
26 26 {"OptionNumber": "C","OptionTitle": "Cisterna chyli","textalign":"left"},{"OptionNumber": "D","OptionTitle": "Intercostal lymph node","textalign":"right"}],
27 27 "correctResponse": [{"OptionBox": "T1","Answer": "D"},{"OptionBox": "T2","Answer": "C"},{"OptionBox": "T3","Answer": "A"},{"OptionBox": "T4","Answer": "B"}]
... ... @@ -30,11 +30,167 @@
30 30 "Title": "Drag the labels to the correct location on the image.",
31 31 "activityTitle": "Cisterna Chyli",
32 32 "ImagePath":"LS-03.JPG",
33   - "OptionBox": [{"BoxName": "T1","topcoord":"97","leftcoord":"8","Answervalue":"","QuizText":""},{"BoxName": "T2","topcoord":"136","leftcoord":"8","Answervalue":"","QuizText":""},
34   - {"BoxName": "T3","topcoord":"256","leftcoord":"8","Answervalue":"","QuizText":""},{"BoxName": "T4","topcoord":"329","leftcoord":"8","Answervalue":"","QuizText":""}],
35   - "Options": [{"OptionNumber": "A","OptionTitle": "Thoracic duct"},{"OptionNumber": "B","OptionTitle": "Lumbar lymph node"},
36   - {"OptionNumber": "C","OptionTitle": "Cisterna chyli"},{"OptionNumber": "D","OptionTitle": "Intercostal lymph node"}],
  33 + "OptionBox": [{"BoxName": "T1","topcoord":"76","leftcoord":"14","Answervalue":"","QuizText":""},
  34 + {"BoxName": "T2","topcoord":"170","leftcoord":"14","Answervalue":"","QuizText":""},
  35 + {"BoxName": "T3","topcoord":"12","leftcoord":"682","Answervalue":"","QuizText":""},
  36 + {"BoxName": "T4","topcoord":"68","leftcoord":"682","Answervalue":"","QuizText":""},
  37 + {"BoxName": "T5","topcoord":"113","leftcoord":"682","Answervalue":"","QuizText":""},
  38 + {"BoxName": "T6","topcoord":"214","leftcoord":"682","Answervalue":"","QuizText":""}],
  39 + "Options": [{"OptionNumber": "A","OptionTitle": "Spleen","textalign":"bottom"},
  40 + {"OptionNumber": "B","OptionTitle": "Splenic vein","textalign":"bottom"},
  41 + {"OptionNumber": "C","OptionTitle": "Splenic artery","textalign":"bottom"},
  42 + {"OptionNumber": "D","OptionTitle": "Pancreas","textalign":"bottom"},
  43 + {"OptionNumber": "E","OptionTitle": "Gallbladder","textalign":"bottom"},
  44 + {"OptionNumber": "F","OptionTitle": "Portal vein","textalign":"bottom"}],
  45 + "correctResponse": [{"OptionBox": "T1","Answer": "F"},{"OptionBox": "T2","Answer": "E"},{"OptionBox": "T3","Answer": "A"},{"OptionBox": "T4","Answer": "B"},{"OptionBox": "T5","Answer": "C"},{"OptionBox": "T6","Answer": "D"}]
  46 + },{
  47 + "Number": "4",
  48 + "Title": "Drag the labels to the correct location on the image.",
  49 + "activityTitle": "Cisterna Chyli",
  50 + "ImagePath":"LS-04.JPG",
  51 + "OptionBox": [{"BoxName": "T1","topcoord":"101","leftcoord":"11","Answervalue":"","QuizText":""},
  52 + {"BoxName": "T2","topcoord":"407","leftcoord":"11","Answervalue":"","QuizText":""},
  53 + {"BoxName": "T3","topcoord":"120","leftcoord":"617","Answervalue":"","QuizText":""},
  54 + {"BoxName": "T4","topcoord":"319","leftcoord":"617","Answervalue":"","QuizText":""}],
  55 + "Options": [{"OptionNumber": "A","OptionTitle": "Thoracic duct","textalign":"bottom"},
  56 + {"OptionNumber": "B","OptionTitle": "Cisterna chyli","textalign":"bottom"},
  57 + {"OptionNumber": "C","OptionTitle": "Lumbar lymph node","textalign":"bottom"},
  58 + {"OptionNumber": "D","OptionTitle": "Lymph vessel","textalign":"bottom"}],
37 59 "correctResponse": [{"OptionBox": "T1","Answer": "D"},{"OptionBox": "T2","Answer": "C"},{"OptionBox": "T3","Answer": "A"},{"OptionBox": "T4","Answer": "B"}]
  60 + },{
  61 + "Number": "5",
  62 + "Title": "Drag the labels to the correct location on the image.",
  63 + "activityTitle": "Thymus",
  64 + "ImagePath":"LS-05.JPG",
  65 + "OptionBox": [{"BoxName": "T1","topcoord":"15","leftcoord":"13","Answervalue":"","QuizText":""},
  66 + {"BoxName": "T2","topcoord":"50","leftcoord":"13","Answervalue":"","QuizText":""},
  67 + {"BoxName": "T3","topcoord":"85","leftcoord":"13","Answervalue":"","QuizText":""},
  68 + {"BoxName": "T4","topcoord":"121","leftcoord":"13","Answervalue":"","QuizText":""},
  69 + {"BoxName": "T5","topcoord":"169","leftcoord":"13","Answervalue":"","QuizText":""},
  70 + {"BoxName": "T6","topcoord":"14","leftcoord":"721","Answervalue":"","QuizText":""},
  71 + {"BoxName": "T7","topcoord":"110","leftcoord":"721","Answervalue":"","QuizText":""},
  72 + {"BoxName": "T8","topcoord":"150","leftcoord":"721","Answervalue":"","QuizText":""}],
  73 + "Options": [{"OptionNumber": "A","OptionTitle": "Epiglottis","textalign":"bottom"},
  74 + {"OptionNumber": "B","OptionTitle": "Thoracic duct","textalign":"bottom"},
  75 + {"OptionNumber": "C","OptionTitle": "Left brachiocephalic vein","textalign":"bottom"},
  76 + {"OptionNumber": "D","OptionTitle": "Thymus gland","textalign":"bottom"},
  77 + {"OptionNumber": "E","OptionTitle": "Trachea","textalign":"bottom"},
  78 + {"OptionNumber": "F","OptionTitle": "Cricoid cartilage","textalign":"bottom"},
  79 + {"OptionNumber": "G","OptionTitle": "Thyroid cartilage","textalign":"bottom"},
  80 + {"OptionNumber": "H","OptionTitle": "Hyoid bone","textalign":"bottom"}],
  81 + "correctResponse": [{"OptionBox": "T1","Answer": "H"},{"OptionBox": "T2","Answer": "G"},{"OptionBox": "T3","Answer": "F"},{"OptionBox": "T4","Answer": "E"},{"OptionBox": "T5","Answer": "D"},{"OptionBox": "T6","Answer": "A"},{"OptionBox": "T7","Answer": "B"},{"OptionBox": "T8","Answer": "C"}]
  82 + },{
  83 + "Number": "6",
  84 + "Title": "Drag the labels to the correct location on the image.",
  85 + "activityTitle": "Thyroid",
  86 + "ImagePath":"LS-06.JPG",
  87 + "OptionBox": [{"BoxName": "T1","topcoord":"34","leftcoord":"12","Answervalue":"","QuizText":""},
  88 + {"BoxName": "T2","topcoord":"355","leftcoord":"12","Answervalue":"","QuizText":""},
  89 + {"BoxName": "T3","topcoord":"408","leftcoord":"12","Answervalue":"","QuizText":""},
  90 + {"BoxName": "T4","topcoord":"256","leftcoord":"620","Answervalue":"","QuizText":""},
  91 + {"BoxName": "T5","topcoord":"306","leftcoord":"620","Answervalue":"","QuizText":""},
  92 + {"BoxName": "T6","topcoord":"382","leftcoord":"620","Answervalue":"","QuizText":""}],
  93 + "Options": [{"OptionNumber": "A","OptionTitle": "Pituitary gland","textalign":"left"},
  94 + {"OptionNumber": "B","OptionTitle": "Hyoid bone","textalign":"left"},
  95 + {"OptionNumber": "C","OptionTitle": "Thyroid cartilage","textalign":"left"},
  96 + {"OptionNumber": "D","OptionTitle": "Thyroid gland","textalign":"right"},
  97 + {"OptionNumber": "E","OptionTitle": "Inferior parathyroid gland","textalign":"right"},
  98 + {"OptionNumber": "F","OptionTitle": "Superior parathyroid gland","textalign":"right"}],
  99 + "correctResponse": [{"OptionBox": "T1","Answer": "A"},{"OptionBox": "T2","Answer": "F"},{"OptionBox": "T3","Answer": "E"},{"OptionBox": "T4","Answer": "B"},{"OptionBox": "T5","Answer": "C"},{"OptionBox": "T6","Answer": "D"}]
  100 + },{
  101 + "Number": "7",
  102 + "Title": "Drag the labels to the correct location on the image.",
  103 + "activityTitle": "Tonsils",
  104 + "ImagePath":"LS-07.JPG",
  105 + "OptionBox": [{"BoxName": "T1","topcoord":"89","leftcoord":"10","Answervalue":"","QuizText":""},
  106 + {"BoxName": "T2","topcoord":"174","leftcoord":"10","Answervalue":"","QuizText":""},
  107 + {"BoxName": "T3","topcoord":"374","leftcoord":"10","Answervalue":"","QuizText":""},
  108 + {"BoxName": "T4","topcoord":"122","leftcoord":"620","Answervalue":"","QuizText":""},
  109 + {"BoxName": "T5","topcoord":"162","leftcoord":"620","Answervalue":"","QuizText":""},
  110 + {"BoxName": "T6","topcoord":"199","leftcoord":"620","Answervalue":"","QuizText":""}],
  111 + "Options": [{"OptionNumber": "A","OptionTitle": "Pharyngeal tonsil","textalign":"left"},
  112 + {"OptionNumber": "B","OptionTitle": "Nasopharynx","textalign":"left"},
  113 + {"OptionNumber": "C","OptionTitle": "Oropharynx","textalign":"left"},
  114 + {"OptionNumber": "D","OptionTitle": "Internal jugular vein","textalign":"right"},
  115 + {"OptionNumber": "E","OptionTitle": "Palatine tonsil","textalign":"right"},
  116 + {"OptionNumber": "F","OptionTitle": "Lingual tonsil","textalign":"right"}],
  117 + "correctResponse": [{"OptionBox": "T1","Answer": "A"},{"OptionBox": "T2","Answer": "C"},{"OptionBox": "T3","Answer": "D"},{"OptionBox": "T4","Answer": "B"},{"OptionBox": "T5","Answer": "E"},{"OptionBox": "T6","Answer": "F"}]
  118 + },{
  119 + "Number": "8",
  120 + "Title": "Drag the labels to the correct location on the image.",
  121 + "activityTitle": "Tonsils",
  122 + "ImagePath":"LS-08.JPG",
  123 + "OptionBox": [{"BoxName": "T1","topcoord":"102","leftcoord":"14","Answervalue":"","QuizText":""},
  124 + {"BoxName": "T2","topcoord":"211","leftcoord":"14","Answervalue":"","QuizText":""},
  125 + {"BoxName": "T3","topcoord":"447","leftcoord":"14","Answervalue":"","QuizText":""},
  126 + {"BoxName": "T4","topcoord":"3","leftcoord":"616","Answervalue":"","QuizText":""},
  127 + {"BoxName": "T5","topcoord":"109","leftcoord":"616","Answervalue":"","QuizText":""},
  128 + {"BoxName": "T6","topcoord":"192","leftcoord":"616","Answervalue":"","QuizText":""},
  129 + {"BoxName": "T7","topcoord":"388","leftcoord":"616","Answervalue":"","QuizText":""}],
  130 + "Options": [{"OptionNumber": "A","OptionTitle": "Lingual tonsil","textalign":"left"},
  131 + {"OptionNumber": "B","OptionTitle": "Epiglotis","textalign":"left"},
  132 + {"OptionNumber": "C","OptionTitle": "Palatine tonsil","textalign":"left"},
  133 + {"OptionNumber": "D","OptionTitle": "Jugulodigastric lymph node","textalign":"right"},
  134 + {"OptionNumber": "E","OptionTitle": "Deep cervical lymph node","textalign":"right"},
  135 + {"OptionNumber": "F","OptionTitle": "Submandibular lymph node","textalign":"right"},
  136 + {"OptionNumber": "G","OptionTitle": "Submental lymph node","textalign":"right"}],
  137 + "correctResponse": [{"OptionBox": "T1","Answer": "A"},{"OptionBox": "T2","Answer": "C"},{"OptionBox": "T3","Answer": "G"},{"OptionBox": "T4","Answer": "B"},{"OptionBox": "T5","Answer": "D"},{"OptionBox": "T6","Answer": "E"},{"OptionBox": "T7","Answer": "F"}]
  138 + },{
  139 + "Number": "9",
  140 + "Title": "Complete the statements below.",
  141 + "ImagePath":"",
  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."}],
  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"}],
  149 + "correctResponse": [{"OptionBox": "T1","Answer": "A"},{"OptionBox": "T2","Answer": "B"},{"OptionBox": "T3","Answer": "C"},
  150 + {"OptionBox": "T4","Answer": "D"}]
  151 + },{
  152 + "Number": "10",
  153 + "Title": "Complete the statements below.",
  154 + "ImagePath":"",
  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."}],
  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"}],
  162 + "correctResponse": [{"OptionBox": "T1","Answer": "A"},{"OptionBox": "T2","Answer": "B"},{"OptionBox": "T3","Answer": "C"},
  163 + {"OptionBox": "T4","Answer": "D"}]
  164 + },{
  165 + "Number": "11",
  166 + "Title": "Complete the statements below.",
  167 + "ImagePath":"",
  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."}],
  173 + "Options": [{"OptionNumber": "A","OptionTitle": "B lymphocytes","textalign":"bottom"},
  174 + {"OptionNumber": "B","OptionTitle": "T lymphocytes","textalign":"bottom"},
  175 + {"OptionNumber": "C","OptionTitle": "Plasma","textalign":"bottom"},
  176 + {"OptionNumber": "D","OptionTitle": "Memory","textalign":"bottom"}],
  177 + "correctResponse": [{"OptionBox": "T1","Answer": "A"},{"OptionBox": "T2","Answer": "B"},{"OptionBox": "T3","Answer": "C"},
  178 + {"OptionBox": "T4","Answer": "D"}]
  179 + },{
  180 + "Number": "12",
  181 + "Title": "Complete the statements below.",
  182 + "ImagePath":"",
  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."}],
  188 + "Options": [{"OptionNumber": "A","OptionTitle": "Active natural","textalign":"bottom"},
  189 + {"OptionNumber": "B","OptionTitle": "Active artificial","textalign":"bottom"},
  190 + {"OptionNumber": "C","OptionTitle": "Passive natural","textalign":"bottom"},
  191 + {"OptionNumber": "D","OptionTitle": "Passive artificial","textalign":"bottom"}],
  192 + "correctResponse": [{"OptionBox": "T1","Answer": "A"},{"OptionBox": "T2","Answer": "B"},{"OptionBox": "T3","Answer": "C"},
  193 + {"OptionBox": "T4","Answer": "D"}]
38 194 }]
39 195 }]
40 196 }
41 197 \ No newline at end of file
... ...
400-SOURCECODE/AIAHTML5.Web/content/images/LE/qz_dat_ly/LS-02.jpg 0 โ†’ 100644

244 KB

400-SOURCECODE/AIAHTML5.Web/content/images/LE/qz_dat_ly/LS-03.jpg 0 โ†’ 100644

186 KB

400-SOURCECODE/AIAHTML5.Web/content/images/LE/qz_dat_ly/LS-04.jpg 0 โ†’ 100644

240 KB

400-SOURCECODE/AIAHTML5.Web/content/images/LE/qz_dat_ly/LS-05.jpg 0 โ†’ 100644

181 KB

400-SOURCECODE/AIAHTML5.Web/content/images/LE/qz_dat_ly/LS-06.jpg 0 โ†’ 100644

185 KB

400-SOURCECODE/AIAHTML5.Web/content/images/LE/qz_dat_ly/LS-07.jpg 0 โ†’ 100644

179 KB

400-SOURCECODE/AIAHTML5.Web/content/images/LE/qz_dat_ly/LS-08.jpg 0 โ†’ 100644

167 KB