questionlayoutrefactoring 0.1.68 → 0.1.70
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/components/Atoms/CustomButton/CustomButton.js +1 -1
- package/dist/components/Atoms/CustomButton/CustomButton.js.map +1 -1
- package/dist/components/Atoms/PrivacyTouchPoint/PrivacyTouchPoint.js +6 -6
- package/dist/components/Atoms/PrivacyTouchPoint/PrivacyTouchPoint.js.map +1 -1
- package/dist/components/Molecules/AccordianPay4/Accordian.js +14 -3
- package/dist/components/Molecules/AccordianPay4/Accordian.js.map +1 -1
- package/dist/components/Molecules/AccordianPay4/Accordian.stories.d.ts +1 -0
- package/dist/components/Molecules/AccordianPay4/Accordian.stories.js +11 -1
- package/dist/components/Molecules/AccordianPay4/Accordian.stories.js.map +1 -1
- package/dist/components/Molecules/HighChart/HighChart.js +1 -1
- package/dist/components/Molecules/HighChart/HighChart.js.map +1 -1
- package/dist/components/Molecules/HighChart/HighChartPie.js +1 -1
- package/dist/components/Molecules/HighChart/HighChartPie.js.map +1 -1
- package/dist/components/Molecules/SmartLearn/types.d.ts +2 -1
- package/dist/components/Molecules/Tutor/User/User.js +20 -3
- package/dist/components/Molecules/Tutor/User/User.js.map +1 -1
- package/dist/components/Molecules/Tutor/User/User.stories.d.ts +1 -0
- package/dist/components/Molecules/Tutor/User/User.stories.js +5 -1
- package/dist/components/Molecules/Tutor/User/User.stories.js.map +1 -1
- package/dist/components/Molecules/VideoView/VideoModal.js +1 -1
- package/dist/components/Molecules/VideoView/VideoModal.js.map +1 -1
- package/dist/components/Molecules/WallBanner/WallBanner.js +1 -1
- package/dist/components/Molecules/WallBanner/WallBanner.js.map +1 -1
- package/dist/components/Molecules/WallCard/WallCard.js +5 -5
- package/dist/components/Molecules/WallCard/WallCard.js.map +1 -1
- package/dist/components/Molecules/optionLayouts/Scq.js +7 -7
- package/dist/components/Molecules/optionLayouts/Scq.js.map +1 -1
- package/dist/components/Organisms/ActivityList/ActivityList.js +2 -2
- package/dist/components/Organisms/ActivityList/ActivityList.js.map +1 -1
- package/dist/components/Organisms/ReviewComponent/Review.js +1 -3
- package/dist/components/Organisms/ReviewComponent/Review.js.map +1 -1
- package/dist/components/Organisms/ReviewComponent/reviewUtils.js +2 -2
- package/dist/components/Organisms/ReviewComponent/reviewUtils.js.map +1 -1
- package/dist/components/Organisms/ReviewComponent/selectionUtils.d.ts +53 -9
- package/dist/components/Organisms/ReviewComponent/selectionUtils.js +112 -75
- package/dist/components/Organisms/ReviewComponent/selectionUtils.js.map +1 -1
- package/dist/components/Organisms/StudentEditor/StudentEditor.stories.d.ts +1 -0
- package/dist/components/Organisms/StudentEditor/StudentEditor.stories.js +43 -1
- package/dist/components/Organisms/StudentEditor/StudentEditor.stories.js.map +1 -1
- package/dist/components/Organisms/StudentEditor/components/MathKeyboard.d.ts +3 -2
- package/dist/components/Organisms/StudentEditor/components/MathKeyboard.js +55 -25
- package/dist/components/Organisms/StudentEditor/components/MathKeyboard.js.map +1 -1
- package/dist/components/Organisms/StudentEditor/components/MathKeyboardSME.d.ts +10 -0
- package/dist/components/Organisms/StudentEditor/components/MathKeyboardSME.js +93 -0
- package/dist/components/Organisms/StudentEditor/components/MathKeyboardSME.js.map +1 -0
- package/dist/components/Organisms/StudentEditor/components/MathModal.d.ts +3 -2
- package/dist/components/Organisms/StudentEditor/components/MathModal.js +93 -80
- package/dist/components/Organisms/StudentEditor/components/MathModal.js.map +1 -1
- package/dist/components/Organisms/StudentEditor/components/MathModalSME.d.ts +10 -0
- package/dist/components/Organisms/StudentEditor/components/MathModalSME.js +395 -0
- package/dist/components/Organisms/StudentEditor/components/MathModalSME.js.map +1 -0
- package/dist/components/Organisms/StudentEditor/components/TextEditor.js +5 -4
- package/dist/components/Organisms/StudentEditor/components/TextEditor.js.map +1 -1
- package/dist/components/Organisms/StudentEditor/components/mathModalStyles.d.ts +6 -0
- package/dist/components/Organisms/StudentEditor/components/mathModalStyles.js +10 -2
- package/dist/components/Organisms/StudentEditor/components/mathModalStyles.js.map +1 -1
- package/dist/components/Organisms/StudentEditor/utils/keyboard-config.d.ts +2115 -135
- package/dist/components/Organisms/StudentEditor/utils/keyboard-config.js +771 -379
- package/dist/components/Organisms/StudentEditor/utils/keyboard-config.js.map +1 -1
- package/dist/components/Organisms/StudentEditor/utils/keyboardConstants.d.ts +1779 -0
- package/dist/components/Organisms/StudentEditor/utils/keyboardConstants.js +1447 -0
- package/dist/components/Organisms/StudentEditor/utils/keyboardConstants.js.map +1 -0
- package/dist/components/Organisms/TableComponent/TableComponent.js +2 -2
- package/dist/components/Organisms/TableComponent/TableComponent.js.map +1 -1
- package/dist/utils/accordionConstants.d.ts +2 -0
- package/dist/utils/accordionConstants.js +2 -0
- package/dist/utils/accordionConstants.js.map +1 -1
- package/package.json +1 -1
|
@@ -2612,10 +2612,9 @@ export const comprehensionSelectionData: ({
|
|
|
2612
2612
|
solution: string;
|
|
2613
2613
|
uuid: string;
|
|
2614
2614
|
question_layout: string;
|
|
2615
|
-
options_layout:
|
|
2615
|
+
options_layout: never[];
|
|
2616
2616
|
answers_layout: string[];
|
|
2617
2617
|
sub_question: never[];
|
|
2618
|
-
cognitivLevel: string[];
|
|
2619
2618
|
version_uuid: string;
|
|
2620
2619
|
images_details: never[];
|
|
2621
2620
|
option_image_details: never[];
|
|
@@ -2629,9 +2628,8 @@ export const comprehensionSelectionData: ({
|
|
|
2629
2628
|
weight: string;
|
|
2630
2629
|
}[];
|
|
2631
2630
|
}[];
|
|
2632
|
-
hintandexplanations: never[];
|
|
2633
2631
|
rubric: {};
|
|
2634
|
-
|
|
2632
|
+
hintandexplanations: never[];
|
|
2635
2633
|
syllabusMapping: {
|
|
2636
2634
|
curriculum: {
|
|
2637
2635
|
id: string;
|
|
@@ -2654,21 +2652,21 @@ export const comprehensionSelectionData: ({
|
|
|
2654
2652
|
};
|
|
2655
2653
|
difficulty: {
|
|
2656
2654
|
id: string;
|
|
2657
|
-
title: string;
|
|
2658
2655
|
};
|
|
2659
2656
|
assessmentType: string;
|
|
2660
2657
|
cognitivLevel: string;
|
|
2661
2658
|
}[];
|
|
2662
2659
|
answer_schema: string;
|
|
2660
|
+
answers_key?: undefined;
|
|
2661
|
+
answers_index_hashed_keys?: undefined;
|
|
2662
|
+
showGreen?: undefined;
|
|
2663
2663
|
} | {
|
|
2664
2664
|
question_type: string;
|
|
2665
2665
|
solution: string;
|
|
2666
2666
|
uuid: string;
|
|
2667
2667
|
question_layout: string;
|
|
2668
|
-
options_layout:
|
|
2669
|
-
answers_layout: string[];
|
|
2668
|
+
options_layout: string[];
|
|
2670
2669
|
sub_question: never[];
|
|
2671
|
-
cognitivLevel: string[];
|
|
2672
2670
|
version_uuid: string;
|
|
2673
2671
|
images_details: never[];
|
|
2674
2672
|
option_image_details: never[];
|
|
@@ -2684,6 +2682,8 @@ export const comprehensionSelectionData: ({
|
|
|
2684
2682
|
}[];
|
|
2685
2683
|
rubric: {};
|
|
2686
2684
|
hintandexplanations: never[];
|
|
2685
|
+
answers_key: string[];
|
|
2686
|
+
answers_index_hashed_keys: string[];
|
|
2687
2687
|
syllabusMapping: {
|
|
2688
2688
|
curriculum: {
|
|
2689
2689
|
id: string;
|
|
@@ -2706,13 +2706,57 @@ export const comprehensionSelectionData: ({
|
|
|
2706
2706
|
};
|
|
2707
2707
|
difficulty: {
|
|
2708
2708
|
id: string;
|
|
2709
|
+
};
|
|
2710
|
+
assessmentType: string;
|
|
2711
|
+
cognitivLevel: string;
|
|
2712
|
+
}[];
|
|
2713
|
+
answer_schema: string;
|
|
2714
|
+
answers_layout?: undefined;
|
|
2715
|
+
showGreen?: undefined;
|
|
2716
|
+
} | {
|
|
2717
|
+
question_type: string;
|
|
2718
|
+
solution: string;
|
|
2719
|
+
uuid: string;
|
|
2720
|
+
question_layout: string;
|
|
2721
|
+
options_layout: string[];
|
|
2722
|
+
answers_layout: string[];
|
|
2723
|
+
sub_question: never[];
|
|
2724
|
+
version_uuid: string;
|
|
2725
|
+
images_details: never[];
|
|
2726
|
+
option_image_details: never[];
|
|
2727
|
+
solution_layout: never[];
|
|
2728
|
+
rubric: {};
|
|
2729
|
+
hintandexplanations: never[];
|
|
2730
|
+
answers_index_hashed_keys: never[];
|
|
2731
|
+
syllabusMapping: {
|
|
2732
|
+
curriculum: {
|
|
2733
|
+
id: string;
|
|
2709
2734
|
title: string;
|
|
2710
2735
|
};
|
|
2736
|
+
grade: {
|
|
2737
|
+
id: string;
|
|
2738
|
+
title: string;
|
|
2739
|
+
};
|
|
2740
|
+
subject: {
|
|
2741
|
+
id: string;
|
|
2742
|
+
title: string;
|
|
2743
|
+
};
|
|
2744
|
+
chapter: {
|
|
2745
|
+
id: string;
|
|
2746
|
+
title: string;
|
|
2747
|
+
};
|
|
2748
|
+
topic: {
|
|
2749
|
+
id: string;
|
|
2750
|
+
};
|
|
2751
|
+
difficulty: {
|
|
2752
|
+
id: string;
|
|
2753
|
+
};
|
|
2711
2754
|
assessmentType: string;
|
|
2712
2755
|
cognitivLevel: string;
|
|
2713
2756
|
}[];
|
|
2714
2757
|
answer_schema: string;
|
|
2715
|
-
|
|
2758
|
+
showGreen: boolean;
|
|
2759
|
+
answers_key?: undefined;
|
|
2716
2760
|
})[];
|
|
2717
2761
|
showGreen: boolean;
|
|
2718
2762
|
answers_key?: undefined;
|
|
@@ -4875,24 +4875,16 @@ exports.comprehensionSelectionData = [
|
|
|
4875
4875
|
"answer_schema": "1",
|
|
4876
4876
|
"sub_questions": [
|
|
4877
4877
|
{
|
|
4878
|
-
"question_type": "
|
|
4879
|
-
"solution": "<P>
|
|
4880
|
-
"uuid": "
|
|
4881
|
-
"question_layout": "
|
|
4882
|
-
"options_layout": [
|
|
4883
|
-
"They would feel warmer even with lower humidity.",
|
|
4884
|
-
"Their sweat would evaporate faster, and they would feel cooler.",
|
|
4885
|
-
"They would sweat less, as their body would not overheat as much.",
|
|
4886
|
-
"None of these"
|
|
4887
|
-
],
|
|
4878
|
+
"question_type": "15",
|
|
4879
|
+
"solution": "<P>4³ = 4 × 4 × 4 = 64<br>6³ = 6 × 6 × 6 = 216<br></P>",
|
|
4880
|
+
"uuid": "86054dea-181b-4e6a-b2ee-e00bf512742d",
|
|
4881
|
+
"question_layout": " Find the cube of 4 and 6.\n<br>",
|
|
4882
|
+
"options_layout": [],
|
|
4888
4883
|
"answers_layout": [
|
|
4889
|
-
"
|
|
4884
|
+
"<P>4³ = 4 × 4 × 4 = 64<br>6³ = 6 × 6 × 6 = 216\n<br><br></P>"
|
|
4890
4885
|
],
|
|
4891
4886
|
"sub_question": [],
|
|
4892
|
-
"
|
|
4893
|
-
"UnderStanding"
|
|
4894
|
-
],
|
|
4895
|
-
"version_uuid": "272c61d7-ce72-40f0-b1b3-4dce09ed70d2",
|
|
4887
|
+
"version_uuid": "397d1d7e-4d15-49b6-ac8b-16f5a57082d5",
|
|
4896
4888
|
"images_details": [],
|
|
4897
4889
|
"option_image_details": [],
|
|
4898
4890
|
"solution_layout": [
|
|
@@ -4900,8 +4892,8 @@ exports.comprehensionSelectionData = [
|
|
|
4900
4892
|
"layout_type": "Normal",
|
|
4901
4893
|
"data": [
|
|
4902
4894
|
{
|
|
4903
|
-
"text_layout": "
|
|
4904
|
-
"text": "
|
|
4895
|
+
"text_layout": "4³ = 4 × 4 × 4 = 64<br>6³ = 6 × 6 × 6 = 216<br>",
|
|
4896
|
+
"text": "4³ = 4 × 4 × 4 = 64 6³ = 6 × 6 × 6 = 216",
|
|
4905
4897
|
"media_type": "image",
|
|
4906
4898
|
"media": "",
|
|
4907
4899
|
"weight": ""
|
|
@@ -4909,9 +4901,8 @@ exports.comprehensionSelectionData = [
|
|
|
4909
4901
|
]
|
|
4910
4902
|
}
|
|
4911
4903
|
],
|
|
4912
|
-
"hintandexplanations": [],
|
|
4913
4904
|
"rubric": {},
|
|
4914
|
-
"
|
|
4905
|
+
"hintandexplanations": [],
|
|
4915
4906
|
"syllabusMapping": [
|
|
4916
4907
|
{
|
|
4917
4908
|
"curriculum": {
|
|
@@ -4919,23 +4910,22 @@ exports.comprehensionSelectionData = [
|
|
|
4919
4910
|
"title": "CBSE"
|
|
4920
4911
|
},
|
|
4921
4912
|
"grade": {
|
|
4922
|
-
"id": "
|
|
4923
|
-
"title": "Grade
|
|
4913
|
+
"id": "43141",
|
|
4914
|
+
"title": "Grade 8"
|
|
4924
4915
|
},
|
|
4925
4916
|
"subject": {
|
|
4926
|
-
"id": "
|
|
4927
|
-
"title": "
|
|
4917
|
+
"id": "43150",
|
|
4918
|
+
"title": "Mathematics"
|
|
4928
4919
|
},
|
|
4929
4920
|
"chapter": {
|
|
4930
|
-
"id": "
|
|
4931
|
-
"title": "
|
|
4921
|
+
"id": "91916",
|
|
4922
|
+
"title": "Cubes and Cube Roots"
|
|
4932
4923
|
},
|
|
4933
4924
|
"topic": {
|
|
4934
4925
|
"id": ""
|
|
4935
4926
|
},
|
|
4936
4927
|
"difficulty": {
|
|
4937
|
-
"id": "47120"
|
|
4938
|
-
"title": "Medium"
|
|
4928
|
+
"id": "47120"
|
|
4939
4929
|
},
|
|
4940
4930
|
"assessmentType": "Formative",
|
|
4941
4931
|
"cognitivLevel": "UnderStanding"
|
|
@@ -4944,24 +4934,16 @@ exports.comprehensionSelectionData = [
|
|
|
4944
4934
|
"answer_schema": "1"
|
|
4945
4935
|
},
|
|
4946
4936
|
{
|
|
4947
|
-
"question_type": "
|
|
4948
|
-
"solution": "<P>The
|
|
4949
|
-
"uuid": "
|
|
4950
|
-
"question_layout": "
|
|
4951
|
-
"options_layout": [
|
|
4952
|
-
"The color of the person's clothing",
|
|
4953
|
-
"The humidity of the environment",
|
|
4954
|
-
"The wind speed",
|
|
4955
|
-
"None of these"
|
|
4956
|
-
],
|
|
4937
|
+
"question_type": "15",
|
|
4938
|
+
"solution": "<P>The cubes of natural numbers grow rapidly:<br>1³ = 1; 2³ = 8; 3³ = 27; 4³ = 64; 5³ = 125<br>As the numbers increase, their cubes increase at a much faster rate.\n<br></P>",
|
|
4939
|
+
"uuid": "5ffafaef-89e7-4f1c-904a-818a74860bef",
|
|
4940
|
+
"question_layout": "What is the pattern observed in the cubes of the first five natural numbers?\n<br>",
|
|
4941
|
+
"options_layout": [],
|
|
4957
4942
|
"answers_layout": [
|
|
4958
|
-
"The
|
|
4943
|
+
"<P>The cubes of natural numbers grow rapidly:<br>1³ = 1; 2³ = 8; 3³ = 27; 4³ = 64; 5³ = 125<br>As the numbers increase, their cubes increase at a much faster rate.\n<br></P>"
|
|
4959
4944
|
],
|
|
4960
4945
|
"sub_question": [],
|
|
4961
|
-
"
|
|
4962
|
-
"UnderStanding"
|
|
4963
|
-
],
|
|
4964
|
-
"version_uuid": "399dd3b1-9dd4-4d23-b4af-881acfe04333",
|
|
4946
|
+
"version_uuid": "2d2aab98-fbb7-444c-ba2e-165632ab1f56",
|
|
4965
4947
|
"images_details": [],
|
|
4966
4948
|
"option_image_details": [],
|
|
4967
4949
|
"solution_layout": [
|
|
@@ -4969,8 +4951,8 @@ exports.comprehensionSelectionData = [
|
|
|
4969
4951
|
"layout_type": "Normal",
|
|
4970
4952
|
"data": [
|
|
4971
4953
|
{
|
|
4972
|
-
"text_layout": "The
|
|
4973
|
-
"text": "The
|
|
4954
|
+
"text_layout": "The cubes of natural numbers grow rapidly:<br>1³ = 1; 2³ = 8; 3³ = 27; 4³ = 64; 5³ = 125<br>As the numbers increase, their cubes increase at a much faster rate.\n<br>",
|
|
4955
|
+
"text": "The cubes of natural numbers grow rapidly: 1³ = 1; 2³ = 8; 3³ = 27; 4³ = 64; 5³ = 125 As the numbers increase, their cubes increase at a much faster rate.",
|
|
4974
4956
|
"media_type": "image",
|
|
4975
4957
|
"media": "",
|
|
4976
4958
|
"weight": ""
|
|
@@ -4978,9 +4960,8 @@ exports.comprehensionSelectionData = [
|
|
|
4978
4960
|
]
|
|
4979
4961
|
}
|
|
4980
4962
|
],
|
|
4981
|
-
"hintandexplanations": [],
|
|
4982
4963
|
"rubric": {},
|
|
4983
|
-
"
|
|
4964
|
+
"hintandexplanations": [],
|
|
4984
4965
|
"syllabusMapping": [
|
|
4985
4966
|
{
|
|
4986
4967
|
"curriculum": {
|
|
@@ -4988,23 +4969,22 @@ exports.comprehensionSelectionData = [
|
|
|
4988
4969
|
"title": "CBSE"
|
|
4989
4970
|
},
|
|
4990
4971
|
"grade": {
|
|
4991
|
-
"id": "
|
|
4992
|
-
"title": "Grade
|
|
4972
|
+
"id": "43141",
|
|
4973
|
+
"title": "Grade 8"
|
|
4993
4974
|
},
|
|
4994
4975
|
"subject": {
|
|
4995
|
-
"id": "
|
|
4996
|
-
"title": "
|
|
4976
|
+
"id": "43150",
|
|
4977
|
+
"title": "Mathematics"
|
|
4997
4978
|
},
|
|
4998
4979
|
"chapter": {
|
|
4999
|
-
"id": "
|
|
5000
|
-
"title": "
|
|
4980
|
+
"id": "91916",
|
|
4981
|
+
"title": "Cubes and Cube Roots"
|
|
5001
4982
|
},
|
|
5002
4983
|
"topic": {
|
|
5003
4984
|
"id": ""
|
|
5004
4985
|
},
|
|
5005
4986
|
"difficulty": {
|
|
5006
|
-
"id": "47120"
|
|
5007
|
-
"title": "Medium"
|
|
4987
|
+
"id": "47120"
|
|
5008
4988
|
},
|
|
5009
4989
|
"assessmentType": "Formative",
|
|
5010
4990
|
"cognitivLevel": "UnderStanding"
|
|
@@ -5013,19 +4993,18 @@ exports.comprehensionSelectionData = [
|
|
|
5013
4993
|
"answer_schema": "1"
|
|
5014
4994
|
},
|
|
5015
4995
|
{
|
|
5016
|
-
"question_type": "
|
|
5017
|
-
"solution": "<P>
|
|
5018
|
-
"uuid": "
|
|
5019
|
-
"question_layout": "
|
|
5020
|
-
"options_layout": [
|
|
5021
|
-
|
|
5022
|
-
"
|
|
4996
|
+
"question_type": "2",
|
|
4997
|
+
"solution": "<P>Because it was surrounded by water</P>",
|
|
4998
|
+
"uuid": "3838040e-07b0-4bb5-9e87-e2e25a9b3d16",
|
|
4999
|
+
"question_layout": "Why did the author believe Camusfearna would be a good location for keeping an otter?",
|
|
5000
|
+
"options_layout": [
|
|
5001
|
+
"Because it was surrounded by water",
|
|
5002
|
+
"Because it was in Southern Iraq",
|
|
5003
|
+
"Because his friend lived there",
|
|
5004
|
+
"Because it was close to a market"
|
|
5023
5005
|
],
|
|
5024
5006
|
"sub_question": [],
|
|
5025
|
-
"
|
|
5026
|
-
"UnderStanding"
|
|
5027
|
-
],
|
|
5028
|
-
"version_uuid": "9a8aabcc-5162-4dee-95d0-d3ae6e477740",
|
|
5007
|
+
"version_uuid": "3838040e-07b0-4bb5-9e87-e2e25a9b3d16",
|
|
5029
5008
|
"images_details": [],
|
|
5030
5009
|
"option_image_details": [],
|
|
5031
5010
|
"solution_layout": [
|
|
@@ -5033,8 +5012,8 @@ exports.comprehensionSelectionData = [
|
|
|
5033
5012
|
"layout_type": "Normal",
|
|
5034
5013
|
"data": [
|
|
5035
5014
|
{
|
|
5036
|
-
"text_layout": "
|
|
5037
|
-
"text": "
|
|
5015
|
+
"text_layout": "Because it was surrounded by water",
|
|
5016
|
+
"text": "Because it was surrounded by water",
|
|
5038
5017
|
"media_type": "image",
|
|
5039
5018
|
"media": "",
|
|
5040
5019
|
"weight": ""
|
|
@@ -5044,6 +5023,64 @@ exports.comprehensionSelectionData = [
|
|
|
5044
5023
|
],
|
|
5045
5024
|
"rubric": {},
|
|
5046
5025
|
"hintandexplanations": [],
|
|
5026
|
+
"answers_key": [
|
|
5027
|
+
"1ea543b24fba6e2aeff635fc33387ec1"
|
|
5028
|
+
],
|
|
5029
|
+
"answers_index_hashed_keys": [
|
|
5030
|
+
"45a992522f0d7001aa9f9464188b5597"
|
|
5031
|
+
],
|
|
5032
|
+
"syllabusMapping": [
|
|
5033
|
+
{
|
|
5034
|
+
"curriculum": {
|
|
5035
|
+
"id": "38416",
|
|
5036
|
+
"title": "CBSE"
|
|
5037
|
+
},
|
|
5038
|
+
"grade": {
|
|
5039
|
+
"id": "44187",
|
|
5040
|
+
"title": "Grade 10"
|
|
5041
|
+
},
|
|
5042
|
+
"subject": {
|
|
5043
|
+
"id": "75167",
|
|
5044
|
+
"title": "English"
|
|
5045
|
+
},
|
|
5046
|
+
"chapter": {
|
|
5047
|
+
"id": "98197",
|
|
5048
|
+
"title": "Mijbil the Otter"
|
|
5049
|
+
},
|
|
5050
|
+
"topic": {
|
|
5051
|
+
"id": ""
|
|
5052
|
+
},
|
|
5053
|
+
"difficulty": {
|
|
5054
|
+
"id": "47081"
|
|
5055
|
+
},
|
|
5056
|
+
"assessmentType": "Summative",
|
|
5057
|
+
"cognitivLevel": "UnderStanding"
|
|
5058
|
+
}
|
|
5059
|
+
],
|
|
5060
|
+
"answer_schema": "2"
|
|
5061
|
+
},
|
|
5062
|
+
{
|
|
5063
|
+
"question_type": "2",
|
|
5064
|
+
"solution": "",
|
|
5065
|
+
"uuid": "d4c40dcd-c1b7-4979-bebf-81d596e72be8",
|
|
5066
|
+
"question_layout": "Why did the author believe Camusfearna would be a good location for keeping an otter?",
|
|
5067
|
+
"options_layout": [
|
|
5068
|
+
"Because it was surrounded by water",
|
|
5069
|
+
"Because it was in Southern Iraq",
|
|
5070
|
+
"Because his friend lived there",
|
|
5071
|
+
"Because it was close to a market"
|
|
5072
|
+
],
|
|
5073
|
+
"answers_layout": [
|
|
5074
|
+
"Because it was surrounded by water"
|
|
5075
|
+
],
|
|
5076
|
+
"sub_question": [],
|
|
5077
|
+
"version_uuid": "d4c40dcd-c1b7-4979-bebf-81d596e72be8",
|
|
5078
|
+
"images_details": [],
|
|
5079
|
+
"option_image_details": [],
|
|
5080
|
+
"solution_layout": [],
|
|
5081
|
+
"rubric": {},
|
|
5082
|
+
"hintandexplanations": [],
|
|
5083
|
+
"answers_index_hashed_keys": [],
|
|
5047
5084
|
"syllabusMapping": [
|
|
5048
5085
|
{
|
|
5049
5086
|
"curriculum": {
|
|
@@ -5059,22 +5096,22 @@ exports.comprehensionSelectionData = [
|
|
|
5059
5096
|
"title": "Chemistry"
|
|
5060
5097
|
},
|
|
5061
5098
|
"chapter": {
|
|
5062
|
-
"id": "
|
|
5063
|
-
"title": "
|
|
5099
|
+
"id": "2876852",
|
|
5100
|
+
"title": "Atoms and Molecules"
|
|
5064
5101
|
},
|
|
5065
5102
|
"topic": {
|
|
5066
5103
|
"id": ""
|
|
5067
5104
|
},
|
|
5068
5105
|
"difficulty": {
|
|
5069
|
-
"id": "
|
|
5070
|
-
"title": "Medium"
|
|
5106
|
+
"id": "47081"
|
|
5071
5107
|
},
|
|
5072
|
-
"assessmentType": "
|
|
5073
|
-
"cognitivLevel": "
|
|
5108
|
+
"assessmentType": "External Exam",
|
|
5109
|
+
"cognitivLevel": "Application"
|
|
5074
5110
|
}
|
|
5075
5111
|
],
|
|
5076
|
-
"answer_schema": "1"
|
|
5077
|
-
|
|
5112
|
+
"answer_schema": "1",
|
|
5113
|
+
"showGreen": true
|
|
5114
|
+
},
|
|
5078
5115
|
],
|
|
5079
5116
|
"showGreen": true
|
|
5080
5117
|
},
|