From 0e92b32e7241bca1136f10509b1e0f36c4efe96d Mon Sep 17 00:00:00 2001 From: nikita Date: Mon, 26 Feb 2018 17:02:08 +0530 Subject: [PATCH] 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 | 59 ++++++++++++++++++++++------------------------------------- 400-SOURCECODE/AIAHTML5.Web/content/data/json/le/qz_dat_ly.json | 170 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++------- 400-SOURCECODE/AIAHTML5.Web/content/images/LE/qz_dat_ly/LS-02.jpg | Bin 0 -> 249992 bytes 400-SOURCECODE/AIAHTML5.Web/content/images/LE/qz_dat_ly/LS-03.jpg | Bin 0 -> 189968 bytes 400-SOURCECODE/AIAHTML5.Web/content/images/LE/qz_dat_ly/LS-04.jpg | Bin 0 -> 245254 bytes 400-SOURCECODE/AIAHTML5.Web/content/images/LE/qz_dat_ly/LS-05.jpg | Bin 0 -> 185461 bytes 400-SOURCECODE/AIAHTML5.Web/content/images/LE/qz_dat_ly/LS-06.jpg | Bin 0 -> 189389 bytes 400-SOURCECODE/AIAHTML5.Web/content/images/LE/qz_dat_ly/LS-07.jpg | Bin 0 -> 183163 bytes 400-SOURCECODE/AIAHTML5.Web/content/images/LE/qz_dat_ly/LS-08.jpg | Bin 0 -> 171186 bytes 9 files changed, 185 insertions(+), 44 deletions(-) create mode 100644 400-SOURCECODE/AIAHTML5.Web/content/images/LE/qz_dat_ly/LS-02.jpg create mode 100644 400-SOURCECODE/AIAHTML5.Web/content/images/LE/qz_dat_ly/LS-03.jpg create mode 100644 400-SOURCECODE/AIAHTML5.Web/content/images/LE/qz_dat_ly/LS-04.jpg create mode 100644 400-SOURCECODE/AIAHTML5.Web/content/images/LE/qz_dat_ly/LS-05.jpg create mode 100644 400-SOURCECODE/AIAHTML5.Web/content/images/LE/qz_dat_ly/LS-06.jpg create mode 100644 400-SOURCECODE/AIAHTML5.Web/content/images/LE/qz_dat_ly/LS-07.jpg create mode 100644 400-SOURCECODE/AIAHTML5.Web/content/images/LE/qz_dat_ly/LS-08.jpg diff --git a/400-SOURCECODE/AIAHTML5.Web/app/controllers/LabExercController.js b/400-SOURCECODE/AIAHTML5.Web/app/controllers/LabExercController.js index 1b73ae9..54c7979 100644 --- a/400-SOURCECODE/AIAHTML5.Web/app/controllers/LabExercController.js +++ b/400-SOURCECODE/AIAHTML5.Web/app/controllers/LabExercController.js @@ -137,24 +137,10 @@ function ($scope, $rootScope, pages, log, $http,$timeout, DataService, $filter, function (result) { $scope.LabExData = result; - //get saved labExercis var keywords = $location.search(); $scope.labExercideIdentifier = (keywords.labexercise.replace('.json', '')).split('dat_')[1]; - //var labExerciseInfo = { - // userId: JSON.parse(localStorage.getItem('loggedInUserDetails')).Id, - // identifier: $scope.labExercideIdentifier, - //}; - - //LabExerciseService.GetLabExercise(labExerciseInfo) - // .then( - - // function (labResult) { - // if (labResult != undefined && labResult != AIAConstants.SAVED_LAB_EXERCISE_NOT_FOUND) { - // $scope.SavedLabExercise = labResult; - // $scope.quiznumber = $scope.SavedLabExercise.lastQuestion; - - //layout the original question data - + + $.each(result.LabExercise, function (index, value) { $scope.LabExerciseName = result.LabExercise[index].Topic; if (result.LabExercise[index].Slug == keywords.labexercise) { @@ -187,8 +173,6 @@ function ($scope, $rootScope, pages, log, $http,$timeout, DataService, $filter, $scope.Imagepath = keywords.labexercise + "/" + result.LabExercise[index].Questions[index1].ImagePath; } $scope.ShowHideDiv(result.LabExercise[index].Questions[index1].Options[0].textalign); - - //show saved data } }); @@ -202,9 +186,7 @@ function ($scope, $rootScope, pages, log, $http,$timeout, DataService, $filter, } },100); - // $scope.ShowSavedLabExercise(); - //$scope.quiznumber++; - + } }); @@ -655,29 +637,33 @@ function ($scope, $rootScope, pages, log, $http,$timeout, DataService, $filter, //from database var lastQuestion = $scope.quiznumber; - var lastQuestionDetails; - - - if ($scope.isNextOrPreviousClicked == true && $scope.DraggedList != undefined && $scope.DraggedList.length > 0) { + var lastQuestionDetails; + var lastQuestionAnswers; - //show question, as user opted in this attempt - //prepare draggelist from data which is created for saving + //if user opted this question, it will have entry in LabExerciseUserData + var thisQuestiondataInLabExerciseUserData = new jinqJs() + .from($scope.LabExerciseUserData) + .where('QuestionNo == ' + $scope.quiznumber) + .select(); - var lastQuestionDetails = new jinqJs() - .from($scope.LabExerciseUserData) - .where('QuestionNo == ' + lastQuestion) - .select(); + + //if this exists in LabExerciseUserData, show the new opted else show from database + if (thisQuestiondataInLabExerciseUserData.length > 0){ + - } - else{ + lastQuestionDetails = thisQuestiondataInLabExerciseUserData; + lastQuestionAnswers = lastQuestionDetails[0].UserAnswer.split(','); + } + + else{ - lastQuestionDetails = new jinqJs() + lastQuestionDetails = new jinqJs() .from($scope.SavedLabExercise.labExercise) .where('QuestionNo == ' + lastQuestion) .select(); - } + lastQuestionAnswers = lastQuestionDetails[0].UserAnswers.split(','); + } $scope.QustionAnsKeyValue = []; - var lastQuestionAnswers = lastQuestionDetails[0].UserAnswers.split(','); for (var i = 0; i < lastQuestionAnswers.length; i++) { var num = i + 1; $scope.QustionAnsKeyValue.push({ blockbox: 'T' + num, text: lastQuestionAnswers[i] }); @@ -707,7 +693,6 @@ function ($scope, $rootScope, pages, log, $http,$timeout, DataService, $filter, .where('BoxName == ' + value.blockbox) .select(); if (value.text != "") { - // $scope.DraggedList.push({ "id": 'blockbox-' + value.blockbox, "optionName": value.blockbox, "Value": value.text, "topcoord": questionOptionBox[0].topcoord, "leftcoord": questionOptionBox[0].leftcoord }); $scope.DraggedList.push({ "id": value.blockbox, "optionName": value.blockbox, "Value": value.text, "topcoord": questionOptionBox[0].topcoord, "leftcoord": questionOptionBox[0].leftcoord }); } diff --git a/400-SOURCECODE/AIAHTML5.Web/content/data/json/le/qz_dat_ly.json b/400-SOURCECODE/AIAHTML5.Web/content/data/json/le/qz_dat_ly.json index c331d1f..c7cc911 100644 --- a/400-SOURCECODE/AIAHTML5.Web/content/data/json/le/qz_dat_ly.json +++ b/400-SOURCECODE/AIAHTML5.Web/content/data/json/le/qz_dat_ly.json @@ -19,9 +19,9 @@ "Number": "2", "Title": "Drag the labels to the correct location on the image.", "activityTitle": "Cisterna Chyli", - "ImagePath":"LS-02.JPG", - "OptionBox": [{"BoxName": "T1","topcoord":"97","leftcoord":"8","Answervalue":"","QuizText":""},{"BoxName": "T2","topcoord":"136","leftcoord":"8","Answervalue":"","QuizText":""}, - {"BoxName": "T3","topcoord":"256","leftcoord":"8","Answervalue":"","QuizText":""},{"BoxName": "T4","topcoord":"329","leftcoord":"8","Answervalue":"","QuizText":""}], + "ImagePath":"LS-02.jpg", + "OptionBox": [{"BoxName": "T1","topcoord":"41","leftcoord":"7","Answervalue":"","QuizText":""},{"BoxName": "T2","topcoord":"349","leftcoord":"8","Answervalue":"","QuizText":""}, + {"BoxName": "T3","topcoord":"53","leftcoord":"622","Answervalue":"","QuizText":""},{"BoxName": "T4","topcoord":"386","leftcoord":"622","Answervalue":"","QuizText":""}], "Options": [{"OptionNumber": "A","OptionTitle": "Thoracic duct","textalign":"left"},{"OptionNumber": "B","OptionTitle": "Lumbar lymph node","textalign":"right"}, {"OptionNumber": "C","OptionTitle": "Cisterna chyli","textalign":"left"},{"OptionNumber": "D","OptionTitle": "Intercostal lymph node","textalign":"right"}], "correctResponse": [{"OptionBox": "T1","Answer": "D"},{"OptionBox": "T2","Answer": "C"},{"OptionBox": "T3","Answer": "A"},{"OptionBox": "T4","Answer": "B"}] @@ -30,11 +30,167 @@ "Title": "Drag the labels to the correct location on the image.", "activityTitle": "Cisterna Chyli", "ImagePath":"LS-03.JPG", - "OptionBox": [{"BoxName": "T1","topcoord":"97","leftcoord":"8","Answervalue":"","QuizText":""},{"BoxName": "T2","topcoord":"136","leftcoord":"8","Answervalue":"","QuizText":""}, - {"BoxName": "T3","topcoord":"256","leftcoord":"8","Answervalue":"","QuizText":""},{"BoxName": "T4","topcoord":"329","leftcoord":"8","Answervalue":"","QuizText":""}], - "Options": [{"OptionNumber": "A","OptionTitle": "Thoracic duct"},{"OptionNumber": "B","OptionTitle": "Lumbar lymph node"}, - {"OptionNumber": "C","OptionTitle": "Cisterna chyli"},{"OptionNumber": "D","OptionTitle": "Intercostal lymph node"}], + "OptionBox": [{"BoxName": "T1","topcoord":"76","leftcoord":"14","Answervalue":"","QuizText":""}, + {"BoxName": "T2","topcoord":"170","leftcoord":"14","Answervalue":"","QuizText":""}, + {"BoxName": "T3","topcoord":"12","leftcoord":"682","Answervalue":"","QuizText":""}, + {"BoxName": "T4","topcoord":"68","leftcoord":"682","Answervalue":"","QuizText":""}, + {"BoxName": "T5","topcoord":"113","leftcoord":"682","Answervalue":"","QuizText":""}, + {"BoxName": "T6","topcoord":"214","leftcoord":"682","Answervalue":"","QuizText":""}], + "Options": [{"OptionNumber": "A","OptionTitle": "Spleen","textalign":"bottom"}, + {"OptionNumber": "B","OptionTitle": "Splenic vein","textalign":"bottom"}, + {"OptionNumber": "C","OptionTitle": "Splenic artery","textalign":"bottom"}, + {"OptionNumber": "D","OptionTitle": "Pancreas","textalign":"bottom"}, + {"OptionNumber": "E","OptionTitle": "Gallbladder","textalign":"bottom"}, + {"OptionNumber": "F","OptionTitle": "Portal vein","textalign":"bottom"}], + "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"}] + },{ + "Number": "4", + "Title": "Drag the labels to the correct location on the image.", + "activityTitle": "Cisterna Chyli", + "ImagePath":"LS-04.JPG", + "OptionBox": [{"BoxName": "T1","topcoord":"101","leftcoord":"11","Answervalue":"","QuizText":""}, + {"BoxName": "T2","topcoord":"407","leftcoord":"11","Answervalue":"","QuizText":""}, + {"BoxName": "T3","topcoord":"120","leftcoord":"617","Answervalue":"","QuizText":""}, + {"BoxName": "T4","topcoord":"319","leftcoord":"617","Answervalue":"","QuizText":""}], + "Options": [{"OptionNumber": "A","OptionTitle": "Thoracic duct","textalign":"bottom"}, + {"OptionNumber": "B","OptionTitle": "Cisterna chyli","textalign":"bottom"}, + {"OptionNumber": "C","OptionTitle": "Lumbar lymph node","textalign":"bottom"}, + {"OptionNumber": "D","OptionTitle": "Lymph vessel","textalign":"bottom"}], "correctResponse": [{"OptionBox": "T1","Answer": "D"},{"OptionBox": "T2","Answer": "C"},{"OptionBox": "T3","Answer": "A"},{"OptionBox": "T4","Answer": "B"}] + },{ + "Number": "5", + "Title": "Drag the labels to the correct location on the image.", + "activityTitle": "Thymus", + "ImagePath":"LS-05.JPG", + "OptionBox": [{"BoxName": "T1","topcoord":"15","leftcoord":"13","Answervalue":"","QuizText":""}, + {"BoxName": "T2","topcoord":"50","leftcoord":"13","Answervalue":"","QuizText":""}, + {"BoxName": "T3","topcoord":"85","leftcoord":"13","Answervalue":"","QuizText":""}, + {"BoxName": "T4","topcoord":"121","leftcoord":"13","Answervalue":"","QuizText":""}, + {"BoxName": "T5","topcoord":"169","leftcoord":"13","Answervalue":"","QuizText":""}, + {"BoxName": "T6","topcoord":"14","leftcoord":"721","Answervalue":"","QuizText":""}, + {"BoxName": "T7","topcoord":"110","leftcoord":"721","Answervalue":"","QuizText":""}, + {"BoxName": "T8","topcoord":"150","leftcoord":"721","Answervalue":"","QuizText":""}], + "Options": [{"OptionNumber": "A","OptionTitle": "Epiglottis","textalign":"bottom"}, + {"OptionNumber": "B","OptionTitle": "Thoracic duct","textalign":"bottom"}, + {"OptionNumber": "C","OptionTitle": "Left brachiocephalic vein","textalign":"bottom"}, + {"OptionNumber": "D","OptionTitle": "Thymus gland","textalign":"bottom"}, + {"OptionNumber": "E","OptionTitle": "Trachea","textalign":"bottom"}, + {"OptionNumber": "F","OptionTitle": "Cricoid cartilage","textalign":"bottom"}, + {"OptionNumber": "G","OptionTitle": "Thyroid cartilage","textalign":"bottom"}, + {"OptionNumber": "H","OptionTitle": "Hyoid bone","textalign":"bottom"}], + "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"}] + },{ + "Number": "6", + "Title": "Drag the labels to the correct location on the image.", + "activityTitle": "Thyroid", + "ImagePath":"LS-06.JPG", + "OptionBox": [{"BoxName": "T1","topcoord":"34","leftcoord":"12","Answervalue":"","QuizText":""}, + {"BoxName": "T2","topcoord":"355","leftcoord":"12","Answervalue":"","QuizText":""}, + {"BoxName": "T3","topcoord":"408","leftcoord":"12","Answervalue":"","QuizText":""}, + {"BoxName": "T4","topcoord":"256","leftcoord":"620","Answervalue":"","QuizText":""}, + {"BoxName": "T5","topcoord":"306","leftcoord":"620","Answervalue":"","QuizText":""}, + {"BoxName": "T6","topcoord":"382","leftcoord":"620","Answervalue":"","QuizText":""}], + "Options": [{"OptionNumber": "A","OptionTitle": "Pituitary gland","textalign":"left"}, + {"OptionNumber": "B","OptionTitle": "Hyoid bone","textalign":"left"}, + {"OptionNumber": "C","OptionTitle": "Thyroid cartilage","textalign":"left"}, + {"OptionNumber": "D","OptionTitle": "Thyroid gland","textalign":"right"}, + {"OptionNumber": "E","OptionTitle": "Inferior parathyroid gland","textalign":"right"}, + {"OptionNumber": "F","OptionTitle": "Superior parathyroid gland","textalign":"right"}], + "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"}] + },{ + "Number": "7", + "Title": "Drag the labels to the correct location on the image.", + "activityTitle": "Tonsils", + "ImagePath":"LS-07.JPG", + "OptionBox": [{"BoxName": "T1","topcoord":"89","leftcoord":"10","Answervalue":"","QuizText":""}, + {"BoxName": "T2","topcoord":"174","leftcoord":"10","Answervalue":"","QuizText":""}, + {"BoxName": "T3","topcoord":"374","leftcoord":"10","Answervalue":"","QuizText":""}, + {"BoxName": "T4","topcoord":"122","leftcoord":"620","Answervalue":"","QuizText":""}, + {"BoxName": "T5","topcoord":"162","leftcoord":"620","Answervalue":"","QuizText":""}, + {"BoxName": "T6","topcoord":"199","leftcoord":"620","Answervalue":"","QuizText":""}], + "Options": [{"OptionNumber": "A","OptionTitle": "Pharyngeal tonsil","textalign":"left"}, + {"OptionNumber": "B","OptionTitle": "Nasopharynx","textalign":"left"}, + {"OptionNumber": "C","OptionTitle": "Oropharynx","textalign":"left"}, + {"OptionNumber": "D","OptionTitle": "Internal jugular vein","textalign":"right"}, + {"OptionNumber": "E","OptionTitle": "Palatine tonsil","textalign":"right"}, + {"OptionNumber": "F","OptionTitle": "Lingual tonsil","textalign":"right"}], + "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"}] + },{ + "Number": "8", + "Title": "Drag the labels to the correct location on the image.", + "activityTitle": "Tonsils", + "ImagePath":"LS-08.JPG", + "OptionBox": [{"BoxName": "T1","topcoord":"102","leftcoord":"14","Answervalue":"","QuizText":""}, + {"BoxName": "T2","topcoord":"211","leftcoord":"14","Answervalue":"","QuizText":""}, + {"BoxName": "T3","topcoord":"447","leftcoord":"14","Answervalue":"","QuizText":""}, + {"BoxName": "T4","topcoord":"3","leftcoord":"616","Answervalue":"","QuizText":""}, + {"BoxName": "T5","topcoord":"109","leftcoord":"616","Answervalue":"","QuizText":""}, + {"BoxName": "T6","topcoord":"192","leftcoord":"616","Answervalue":"","QuizText":""}, + {"BoxName": "T7","topcoord":"388","leftcoord":"616","Answervalue":"","QuizText":""}], + "Options": [{"OptionNumber": "A","OptionTitle": "Lingual tonsil","textalign":"left"}, + {"OptionNumber": "B","OptionTitle": "Epiglotis","textalign":"left"}, + {"OptionNumber": "C","OptionTitle": "Palatine tonsil","textalign":"left"}, + {"OptionNumber": "D","OptionTitle": "Jugulodigastric lymph node","textalign":"right"}, + {"OptionNumber": "E","OptionTitle": "Deep cervical lymph node","textalign":"right"}, + {"OptionNumber": "F","OptionTitle": "Submandibular lymph node","textalign":"right"}, + {"OptionNumber": "G","OptionTitle": "Submental lymph node","textalign":"right"}], + "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"}] + },{ + "Number": "9", + "Title": "Complete the statements below.", + "ImagePath":"", + "activityTitle": "Tonsils II", + "OptionBox": [{"BoxName": "T1","topcoord":"-273","leftcoord":"-74","Answervalue":"","QuizText":"The -----------------------------------  tonsils are found at the back of the throat."}, + {"BoxName": "T2","topcoord":"-231","leftcoord":"-74","Answervalue":"","QuizText":"The -----------------------------------  tonsils are found in the nasopharynx."}, + {"BoxName": "T3","topcoord":"-190","leftcoord":"-74","Answervalue":"","QuizText":"The -----------------------------------  tonsils are found at the base of the tongue."}, + {"BoxName": "T4","topcoord":"-149","leftcoord":"-74","Answervalue":"","QuizText":"The -----------------------------------  tonsils surround the openings of the auditory tubes into the pharynx."}], + "Options": [{"OptionNumber": "A","OptionTitle": "palatine","textalign":"bottom"},{"OptionNumber": "B","OptionTitle": "pharyngeal","textalign":"bottom"}, + {"OptionNumber": "C","OptionTitle": "lingual","textalign":"bottom"},{"OptionNumber": "D","OptionTitle": "tubal","textalign":"bottom"}], + "correctResponse": [{"OptionBox": "T1","Answer": "A"},{"OptionBox": "T2","Answer": "B"},{"OptionBox": "T3","Answer": "C"}, + {"OptionBox": "T4","Answer": "D"}] + },{ + "Number": "10", + "Title": "Complete the statements below.", + "ImagePath":"", + "activityTitle": "Lymphatic Glands", + "OptionBox": [{"BoxName": "T1","topcoord":"-273","leftcoord":"-74","Answervalue":"","QuizText":"The -----------------------------------  filter lymph and house lymphocytes to fight infection."}, + {"BoxName": "T2","topcoord":"-231","leftcoord":"-74","Answervalue":"","QuizText":"The -----------------------------------  is active in childhood but becomes less functional as we age."}, + {"BoxName": "T3","topcoord":"-190","leftcoord":"-74","Answervalue":"","QuizText":"The -----------------------------------  is responsible for filtering blood rather than lymph and also aids in the recycling of red blood cells."}, + {"BoxName": "T4","topcoord":"-149","leftcoord":"-74","Answervalue":"","QuizText":"The -----------------------------------  are found within the nasal and oral respiratory passageways to filter pathogens that may be breathed in through the air."}], + "Options": [{"OptionNumber": "A","OptionTitle": "lymph nodes","textalign":"bottom"},{"OptionNumber": "B","OptionTitle": "thymus","textalign":"bottom"}, + {"OptionNumber": "C","OptionTitle": "spleen","textalign":"bottom"},{"OptionNumber": "D","OptionTitle": "tonsils","textalign":"bottom"}], + "correctResponse": [{"OptionBox": "T1","Answer": "A"},{"OptionBox": "T2","Answer": "B"},{"OptionBox": "T3","Answer": "C"}, + {"OptionBox": "T4","Answer": "D"}] + },{ + "Number": "11", + "Title": "Complete the statements below.", + "ImagePath":"", + "activityTitle": "Cells", + "OptionBox": [{"BoxName": "T1","topcoord":"-273","leftcoord":"-98","Answervalue":"","QuizText":" -----------------------------------  cells are responsible for Humoral immunity."}, + {"BoxName": "T2","topcoord":"-231","leftcoord":"-98","Answervalue":"","QuizText":" -----------------------------------  cells are responsible for Cell-mediated immunity."}, + {"BoxName": "T3","topcoord":"-190","leftcoord":"-98","Answervalue":"","QuizText":" -----------------------------------  cells are responsible for the majority of antibody production."}, + {"BoxName": "T4","topcoord":"-149","leftcoord":"-98","Answervalue":"","QuizText":" -----------------------------------  cells can recognize a pathogen that the body has seen in the past."}], + "Options": [{"OptionNumber": "A","OptionTitle": "B lymphocytes","textalign":"bottom"}, + {"OptionNumber": "B","OptionTitle": "T lymphocytes","textalign":"bottom"}, + {"OptionNumber": "C","OptionTitle": "Plasma","textalign":"bottom"}, + {"OptionNumber": "D","OptionTitle": "Memory","textalign":"bottom"}], + "correctResponse": [{"OptionBox": "T1","Answer": "A"},{"OptionBox": "T2","Answer": "B"},{"OptionBox": "T3","Answer": "C"}, + {"OptionBox": "T4","Answer": "D"}] + },{ + "Number": "12", + "Title": "Complete the statements below.", + "ImagePath":"", + "activityTitle": "Immunity", + "OptionBox": [{"BoxName": "T1","topcoord":"-273","leftcoord":"-98","Answervalue":"","QuizText":" -----------------------------------  immunity results from coming in contact with a pathogen and contracting a disease."}, + {"BoxName": "T2","topcoord":"-231","leftcoord":"-98","Answervalue":"","QuizText":" -----------------------------------  immunity results from receiving a vaccination."}, + {"BoxName": "T3","topcoord":"-190","leftcoord":"-98","Answervalue":"","QuizText":" -----------------------------------  immunity results from mom passing antibodies to the child via the placenta and breast milk."}, + {"BoxName": "T4","topcoord":"-149","leftcoord":"-98","Answervalue":"","QuizText":" -----------------------------------  immunity results from receiving an injection of serum containing antibodies made by another individual or animal."}], + "Options": [{"OptionNumber": "A","OptionTitle": "Active natural","textalign":"bottom"}, + {"OptionNumber": "B","OptionTitle": "Active artificial","textalign":"bottom"}, + {"OptionNumber": "C","OptionTitle": "Passive natural","textalign":"bottom"}, + {"OptionNumber": "D","OptionTitle": "Passive artificial","textalign":"bottom"}], + "correctResponse": [{"OptionBox": "T1","Answer": "A"},{"OptionBox": "T2","Answer": "B"},{"OptionBox": "T3","Answer": "C"}, + {"OptionBox": "T4","Answer": "D"}] }] }] } \ No newline at end of file diff --git a/400-SOURCECODE/AIAHTML5.Web/content/images/LE/qz_dat_ly/LS-02.jpg b/400-SOURCECODE/AIAHTML5.Web/content/images/LE/qz_dat_ly/LS-02.jpg new file mode 100644 index 0000000..30e0476 Binary files /dev/null and b/400-SOURCECODE/AIAHTML5.Web/content/images/LE/qz_dat_ly/LS-02.jpg differ diff --git a/400-SOURCECODE/AIAHTML5.Web/content/images/LE/qz_dat_ly/LS-03.jpg b/400-SOURCECODE/AIAHTML5.Web/content/images/LE/qz_dat_ly/LS-03.jpg new file mode 100644 index 0000000..6cb963c Binary files /dev/null and b/400-SOURCECODE/AIAHTML5.Web/content/images/LE/qz_dat_ly/LS-03.jpg differ diff --git a/400-SOURCECODE/AIAHTML5.Web/content/images/LE/qz_dat_ly/LS-04.jpg b/400-SOURCECODE/AIAHTML5.Web/content/images/LE/qz_dat_ly/LS-04.jpg new file mode 100644 index 0000000..18bb6c1 Binary files /dev/null and b/400-SOURCECODE/AIAHTML5.Web/content/images/LE/qz_dat_ly/LS-04.jpg differ diff --git a/400-SOURCECODE/AIAHTML5.Web/content/images/LE/qz_dat_ly/LS-05.jpg b/400-SOURCECODE/AIAHTML5.Web/content/images/LE/qz_dat_ly/LS-05.jpg new file mode 100644 index 0000000..0a05818 Binary files /dev/null and b/400-SOURCECODE/AIAHTML5.Web/content/images/LE/qz_dat_ly/LS-05.jpg differ diff --git a/400-SOURCECODE/AIAHTML5.Web/content/images/LE/qz_dat_ly/LS-06.jpg b/400-SOURCECODE/AIAHTML5.Web/content/images/LE/qz_dat_ly/LS-06.jpg new file mode 100644 index 0000000..4f4e48f Binary files /dev/null and b/400-SOURCECODE/AIAHTML5.Web/content/images/LE/qz_dat_ly/LS-06.jpg differ diff --git a/400-SOURCECODE/AIAHTML5.Web/content/images/LE/qz_dat_ly/LS-07.jpg b/400-SOURCECODE/AIAHTML5.Web/content/images/LE/qz_dat_ly/LS-07.jpg new file mode 100644 index 0000000..6856122 Binary files /dev/null and b/400-SOURCECODE/AIAHTML5.Web/content/images/LE/qz_dat_ly/LS-07.jpg differ diff --git a/400-SOURCECODE/AIAHTML5.Web/content/images/LE/qz_dat_ly/LS-08.jpg b/400-SOURCECODE/AIAHTML5.Web/content/images/LE/qz_dat_ly/LS-08.jpg new file mode 100644 index 0000000..d11ea98 Binary files /dev/null and b/400-SOURCECODE/AIAHTML5.Web/content/images/LE/qz_dat_ly/LS-08.jpg differ -- libgit2 0.21.4