Improved huggingface compatability
Browse filesThis view is limited to 50 files because it contains too many changes.
See raw diff
- .gitattributes +2 -0
- README.md +10 -1
- data/metadata.jsonl +3 -200
- images/NEET_2025_45/NEET_2025_45_001.png +3 -0
- images/NEET_2025_45/NEET_2025_45_002.png +3 -0
- images/NEET_2025_45/NEET_2025_45_003.png +3 -0
- images/NEET_2025_45/NEET_2025_45_004.png +3 -0
- images/NEET_2025_45/NEET_2025_45_005.png +3 -0
- images/NEET_2025_45/NEET_2025_45_006.png +3 -0
- images/NEET_2025_45/NEET_2025_45_007.png +3 -0
- images/NEET_2025_45/NEET_2025_45_008.png +3 -0
- images/NEET_2025_45/NEET_2025_45_009.png +3 -0
- images/NEET_2025_45/NEET_2025_45_010.png +3 -0
- images/NEET_2025_45/NEET_2025_45_011.png +3 -0
- images/NEET_2025_45/NEET_2025_45_012.png +3 -0
- images/NEET_2025_45/NEET_2025_45_013.png +3 -0
- images/NEET_2025_45/NEET_2025_45_014.png +3 -0
- images/NEET_2025_45/NEET_2025_45_015.png +3 -0
- images/NEET_2025_45/NEET_2025_45_016.png +3 -0
- images/NEET_2025_45/NEET_2025_45_017.png +3 -0
- images/NEET_2025_45/NEET_2025_45_018.png +3 -0
- images/NEET_2025_45/NEET_2025_45_019.png +3 -0
- images/NEET_2025_45/NEET_2025_45_020.png +3 -0
- images/NEET_2025_45/NEET_2025_45_021.png +3 -0
- images/NEET_2025_45/NEET_2025_45_022.png +3 -0
- images/NEET_2025_45/NEET_2025_45_023.png +3 -0
- images/NEET_2025_45/NEET_2025_45_024.png +3 -0
- images/NEET_2025_45/NEET_2025_45_025.png +3 -0
- images/NEET_2025_45/NEET_2025_45_026.png +3 -0
- images/NEET_2025_45/NEET_2025_45_027.png +3 -0
- images/NEET_2025_45/NEET_2025_45_028.png +3 -0
- images/NEET_2025_45/NEET_2025_45_029.png +3 -0
- images/NEET_2025_45/NEET_2025_45_030.png +3 -0
- images/NEET_2025_45/NEET_2025_45_031.png +3 -0
- images/NEET_2025_45/NEET_2025_45_032.png +3 -0
- images/NEET_2025_45/NEET_2025_45_033.png +3 -0
- images/NEET_2025_45/NEET_2025_45_034.png +3 -0
- images/NEET_2025_45/NEET_2025_45_035.png +3 -0
- images/NEET_2025_45/NEET_2025_45_036.png +3 -0
- images/NEET_2025_45/NEET_2025_45_037.png +3 -0
- images/NEET_2025_45/NEET_2025_45_038.png +3 -0
- images/NEET_2025_45/NEET_2025_45_039.png +3 -0
- images/NEET_2025_45/NEET_2025_45_040.png +3 -0
- images/NEET_2025_45/NEET_2025_45_040A.png +3 -0
- images/NEET_2025_45/NEET_2025_45_040B.png +3 -0
- images/NEET_2025_45/NEET_2025_45_041.png +3 -0
- images/NEET_2025_45/NEET_2025_45_042.png +3 -0
- images/NEET_2025_45/NEET_2025_45_043.png +3 -0
- images/NEET_2025_45/NEET_2025_45_044.png +3 -0
- images/NEET_2025_45/NEET_2025_45_045.png +3 -0
.gitattributes
CHANGED
@@ -1 +1,3 @@
|
|
|
|
|
|
1 |
images/**/*.png filter=lfs diff=lfs merge=lfs -text
|
|
|
1 |
+
images/** filter=lfs diff=lfs merge=lfs -text
|
2 |
+
data/metadata.jsonl filter=lfs diff=lfs merge=lfs -text
|
3 |
images/**/*.png filter=lfs diff=lfs merge=lfs -text
|
README.md
CHANGED
@@ -21,7 +21,7 @@ The dataset is designed to be loaded using the Hugging Face `datasets` library:
|
|
21 |
from datasets import load_dataset
|
22 |
|
23 |
# Load the evaluation split
|
24 |
-
dataset = load_dataset("
|
25 |
|
26 |
# Example: Access the first question
|
27 |
example = dataset[0]
|
@@ -80,6 +80,15 @@ This repository contains scripts to run the benchmark evaluation directly:
|
|
80 |
```bash
|
81 |
python src/benchmark_runner.py --config configs/benchmark_config.yaml --output_dir my_custom_results
|
82 |
```
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
83 |
6. **Check Results:**
|
84 |
* Results for each model will be saved in subdirectories within the `results/` folder (or your custom output directory).
|
85 |
* Each model's folder (e.g., `results/provider/modelname_YYYYMMDD_HHMMSS`) will contain:
|
|
|
21 |
from datasets import load_dataset
|
22 |
|
23 |
# Load the evaluation split
|
24 |
+
dataset = load_dataset("Reja1/jee-neet-benchmark", split='test') # Replace with your HF repo name
|
25 |
|
26 |
# Example: Access the first question
|
27 |
example = dataset[0]
|
|
|
80 |
```bash
|
81 |
python src/benchmark_runner.py --config configs/benchmark_config.yaml --output_dir my_custom_results
|
82 |
```
|
83 |
+
* To run the benchmark on a specific exam paper, use the `--exam_name` and `--exam_year` arguments. Both must be provided:
|
84 |
+
```bash
|
85 |
+
# Example: Run only NEET 2024 questions
|
86 |
+
python src/benchmark_runner.py --config configs/benchmark_config.yaml --exam_name NEET --exam_year 2024
|
87 |
+
|
88 |
+
# Example: Run only NEET 2025 questions (assuming data exists)
|
89 |
+
python src/benchmark_runner.py --config configs/benchmark_config.yaml --exam_name NEET --exam_year 2025
|
90 |
+
```
|
91 |
+
Note: If using exam names with spaces, enclose them in quotes.
|
92 |
6. **Check Results:**
|
93 |
* Results for each model will be saved in subdirectories within the `results/` folder (or your custom output directory).
|
94 |
* Each model's folder (e.g., `results/provider/modelname_YYYYMMDD_HHMMSS`) will contain:
|
data/metadata.jsonl
CHANGED
@@ -1,200 +1,3 @@
|
|
1 |
-
|
2 |
-
|
3 |
-
|
4 |
-
{"image_path": "images/NEET_2024_T3/NEET_2024_T3_004.png", "question_id": "NEET_2024_T3_004", "exam_name": "NEET", "exam_year": 2024, "subject": "Physics", "question_type": "MCQ", "correct_answer": [2]}
|
5 |
-
{"image_path": "images/NEET_2024_T3/NEET_2024_T3_005.png", "question_id": "NEET_2024_T3_005", "exam_name": "NEET", "exam_year": 2024, "subject": "Physics", "question_type": "MCQ", "correct_answer": [4]}
|
6 |
-
{"image_path": "images/NEET_2024_T3/NEET_2024_T3_006.png", "question_id": "NEET_2024_T3_006", "exam_name": "NEET", "exam_year": 2024, "subject": "Physics", "question_type": "MCQ", "correct_answer": [1]}
|
7 |
-
{"image_path": "images/NEET_2024_T3/NEET_2024_T3_007.png", "question_id": "NEET_2024_T3_007", "exam_name": "NEET", "exam_year": 2024, "subject": "Physics", "question_type": "MCQ", "correct_answer": [4]}
|
8 |
-
{"image_path": "images/NEET_2024_T3/NEET_2024_T3_008.png", "question_id": "NEET_2024_T3_008", "exam_name": "NEET", "exam_year": 2024, "subject": "Physics", "question_type": "MCQ", "correct_answer": [3]}
|
9 |
-
{"image_path": "images/NEET_2024_T3/NEET_2024_T3_009.png", "question_id": "NEET_2024_T3_009", "exam_name": "NEET", "exam_year": 2024, "subject": "Physics", "question_type": "MCQ", "correct_answer": [1]}
|
10 |
-
{"image_path": "images/NEET_2024_T3/NEET_2024_T3_010.png", "question_id": "NEET_2024_T3_010", "exam_name": "NEET", "exam_year": 2024, "subject": "Physics", "question_type": "MCQ", "correct_answer": [1]}
|
11 |
-
{"image_path": "images/NEET_2024_T3/NEET_2024_T3_011.png", "question_id": "NEET_2024_T3_011", "exam_name": "NEET", "exam_year": 2024, "subject": "Physics", "question_type": "MCQ", "correct_answer": [2]}
|
12 |
-
{"image_path": "images/NEET_2024_T3/NEET_2024_T3_012.png", "question_id": "NEET_2024_T3_012", "exam_name": "NEET", "exam_year": 2024, "subject": "Physics", "question_type": "MCQ", "correct_answer": [3]}
|
13 |
-
{"image_path": "images/NEET_2024_T3/NEET_2024_T3_013.png", "question_id": "NEET_2024_T3_013", "exam_name": "NEET", "exam_year": 2024, "subject": "Physics", "question_type": "MCQ", "correct_answer": [3]}
|
14 |
-
{"image_path": "images/NEET_2024_T3/NEET_2024_T3_014.png", "question_id": "NEET_2024_T3_014", "exam_name": "NEET", "exam_year": 2024, "subject": "Physics", "question_type": "MCQ", "correct_answer": [3]}
|
15 |
-
{"image_path": "images/NEET_2024_T3/NEET_2024_T3_015.png", "question_id": "NEET_2024_T3_015", "exam_name": "NEET", "exam_year": 2024, "subject": "Physics", "question_type": "MCQ", "correct_answer": [4]}
|
16 |
-
{"image_path": "images/NEET_2024_T3/NEET_2024_T3_016.png", "question_id": "NEET_2024_T3_016", "exam_name": "NEET", "exam_year": 2024, "subject": "Physics", "question_type": "MCQ", "correct_answer": [1]}
|
17 |
-
{"image_path": "images/NEET_2024_T3/NEET_2024_T3_017.png", "question_id": "NEET_2024_T3_017", "exam_name": "NEET", "exam_year": 2024, "subject": "Physics", "question_type": "MCQ", "correct_answer": [3]}
|
18 |
-
{"image_path": "images/NEET_2024_T3/NEET_2024_T3_018.png", "question_id": "NEET_2024_T3_018", "exam_name": "NEET", "exam_year": 2024, "subject": "Physics", "question_type": "MCQ", "correct_answer": [1]}
|
19 |
-
{"image_path": "images/NEET_2024_T3/NEET_2024_T3_019.png", "question_id": "NEET_2024_T3_019", "exam_name": "NEET", "exam_year": 2024, "subject": "Physics", "question_type": "MCQ", "correct_answer": [4]}
|
20 |
-
{"image_path": "images/NEET_2024_T3/NEET_2024_T3_020.png", "question_id": "NEET_2024_T3_020", "exam_name": "NEET", "exam_year": 2024, "subject": "Physics", "question_type": "MCQ", "correct_answer": [4]}
|
21 |
-
{"image_path": "images/NEET_2024_T3/NEET_2024_T3_021.png", "question_id": "NEET_2024_T3_021", "exam_name": "NEET", "exam_year": 2024, "subject": "Physics", "question_type": "MCQ", "correct_answer": [2]}
|
22 |
-
{"image_path": "images/NEET_2024_T3/NEET_2024_T3_022.png", "question_id": "NEET_2024_T3_022", "exam_name": "NEET", "exam_year": 2024, "subject": "Physics", "question_type": "MCQ", "correct_answer": [3]}
|
23 |
-
{"image_path": "images/NEET_2024_T3/NEET_2024_T3_023.png", "question_id": "NEET_2024_T3_023", "exam_name": "NEET", "exam_year": 2024, "subject": "Physics", "question_type": "MCQ", "correct_answer": [2]}
|
24 |
-
{"image_path": "images/NEET_2024_T3/NEET_2024_T3_024.png", "question_id": "NEET_2024_T3_024", "exam_name": "NEET", "exam_year": 2024, "subject": "Physics", "question_type": "MCQ", "correct_answer": [2]}
|
25 |
-
{"image_path": "images/NEET_2024_T3/NEET_2024_T3_025.png", "question_id": "NEET_2024_T3_025", "exam_name": "NEET", "exam_year": 2024, "subject": "Physics", "question_type": "MCQ", "correct_answer": [1, 3]}
|
26 |
-
{"image_path": "images/NEET_2024_T3/NEET_2024_T3_026.png", "question_id": "NEET_2024_T3_026", "exam_name": "NEET", "exam_year": 2024, "subject": "Physics", "question_type": "MCQ", "correct_answer": [4]}
|
27 |
-
{"image_path": "images/NEET_2024_T3/NEET_2024_T3_027.png", "question_id": "NEET_2024_T3_027", "exam_name": "NEET", "exam_year": 2024, "subject": "Physics", "question_type": "MCQ", "correct_answer": [2]}
|
28 |
-
{"image_path": "images/NEET_2024_T3/NEET_2024_T3_028.png", "question_id": "NEET_2024_T3_028", "exam_name": "NEET", "exam_year": 2024, "subject": "Physics", "question_type": "MCQ", "correct_answer": [3]}
|
29 |
-
{"image_path": "images/NEET_2024_T3/NEET_2024_T3_029.png", "question_id": "NEET_2024_T3_029", "exam_name": "NEET", "exam_year": 2024, "subject": "Physics", "question_type": "MCQ", "correct_answer": [2]}
|
30 |
-
{"image_path": "images/NEET_2024_T3/NEET_2024_T3_030.png", "question_id": "NEET_2024_T3_030", "exam_name": "NEET", "exam_year": 2024, "subject": "Physics", "question_type": "MCQ", "correct_answer": [4]}
|
31 |
-
{"image_path": "images/NEET_2024_T3/NEET_2024_T3_031.png", "question_id": "NEET_2024_T3_031", "exam_name": "NEET", "exam_year": 2024, "subject": "Physics", "question_type": "MCQ", "correct_answer": [4]}
|
32 |
-
{"image_path": "images/NEET_2024_T3/NEET_2024_T3_032.png", "question_id": "NEET_2024_T3_032", "exam_name": "NEET", "exam_year": 2024, "subject": "Physics", "question_type": "MCQ", "correct_answer": [3]}
|
33 |
-
{"image_path": "images/NEET_2024_T3/NEET_2024_T3_033.png", "question_id": "NEET_2024_T3_033", "exam_name": "NEET", "exam_year": 2024, "subject": "Physics", "question_type": "MCQ", "correct_answer": [2]}
|
34 |
-
{"image_path": "images/NEET_2024_T3/NEET_2024_T3_034.png", "question_id": "NEET_2024_T3_034", "exam_name": "NEET", "exam_year": 2024, "subject": "Physics", "question_type": "MCQ", "correct_answer": [4]}
|
35 |
-
{"image_path": "images/NEET_2024_T3/NEET_2024_T3_035.png", "question_id": "NEET_2024_T3_035", "exam_name": "NEET", "exam_year": 2024, "subject": "Physics", "question_type": "MCQ", "correct_answer": [4]}
|
36 |
-
{"image_path": "images/NEET_2024_T3/NEET_2024_T3_036.png", "question_id": "NEET_2024_T3_036", "exam_name": "NEET", "exam_year": 2024, "subject": "Physics", "question_type": "MCQ", "correct_answer": [2]}
|
37 |
-
{"image_path": "images/NEET_2024_T3/NEET_2024_T3_037.png", "question_id": "NEET_2024_T3_037", "exam_name": "NEET", "exam_year": 2024, "subject": "Physics", "question_type": "MCQ", "correct_answer": [4]}
|
38 |
-
{"image_path": "images/NEET_2024_T3/NEET_2024_T3_038.png", "question_id": "NEET_2024_T3_038", "exam_name": "NEET", "exam_year": 2024, "subject": "Physics", "question_type": "MCQ", "correct_answer": [2]}
|
39 |
-
{"image_path": "images/NEET_2024_T3/NEET_2024_T3_039.png", "question_id": "NEET_2024_T3_039", "exam_name": "NEET", "exam_year": 2024, "subject": "Physics", "question_type": "MCQ", "correct_answer": [3]}
|
40 |
-
{"image_path": "images/NEET_2024_T3/NEET_2024_T3_040.png", "question_id": "NEET_2024_T3_040", "exam_name": "NEET", "exam_year": 2024, "subject": "Physics", "question_type": "MCQ", "correct_answer": [4]}
|
41 |
-
{"image_path": "images/NEET_2024_T3/NEET_2024_T3_041.png", "question_id": "NEET_2024_T3_041", "exam_name": "NEET", "exam_year": 2024, "subject": "Physics", "question_type": "MCQ", "correct_answer": [4]}
|
42 |
-
{"image_path": "images/NEET_2024_T3/NEET_2024_T3_042.png", "question_id": "NEET_2024_T3_042", "exam_name": "NEET", "exam_year": 2024, "subject": "Physics", "question_type": "MCQ", "correct_answer": [4]}
|
43 |
-
{"image_path": "images/NEET_2024_T3/NEET_2024_T3_043.png", "question_id": "NEET_2024_T3_043", "exam_name": "NEET", "exam_year": 2024, "subject": "Physics", "question_type": "MCQ", "correct_answer": [4]}
|
44 |
-
{"image_path": "images/NEET_2024_T3/NEET_2024_T3_044.png", "question_id": "NEET_2024_T3_044", "exam_name": "NEET", "exam_year": 2024, "subject": "Physics", "question_type": "MCQ", "correct_answer": [4]}
|
45 |
-
{"image_path": "images/NEET_2024_T3/NEET_2024_T3_045.png", "question_id": "NEET_2024_T3_045", "exam_name": "NEET", "exam_year": 2024, "subject": "Physics", "question_type": "MCQ", "correct_answer": [4]}
|
46 |
-
{"image_path": "images/NEET_2024_T3/NEET_2024_T3_046.png", "question_id": "NEET_2024_T3_046", "exam_name": "NEET", "exam_year": 2024, "subject": "Physics", "question_type": "MCQ", "correct_answer": [4]}
|
47 |
-
{"image_path": "images/NEET_2024_T3/NEET_2024_T3_047.png", "question_id": "NEET_2024_T3_047", "exam_name": "NEET", "exam_year": 2024, "subject": "Physics", "question_type": "MCQ", "correct_answer": [1]}
|
48 |
-
{"image_path": "images/NEET_2024_T3/NEET_2024_T3_048.png", "question_id": "NEET_2024_T3_048", "exam_name": "NEET", "exam_year": 2024, "subject": "Physics", "question_type": "MCQ", "correct_answer": [4]}
|
49 |
-
{"image_path": "images/NEET_2024_T3/NEET_2024_T3_049.png", "question_id": "NEET_2024_T3_049", "exam_name": "NEET", "exam_year": 2024, "subject": "Physics", "question_type": "MCQ", "correct_answer": [3]}
|
50 |
-
{"image_path": "images/NEET_2024_T3/NEET_2024_T3_050.png", "question_id": "NEET_2024_T3_050", "exam_name": "NEET", "exam_year": 2024, "subject": "Physics", "question_type": "MCQ", "correct_answer": [4]}
|
51 |
-
{"image_path": "images/NEET_2024_T3/NEET_2024_T3_051.png", "question_id": "NEET_2024_T3_051", "exam_name": "NEET", "exam_year": 2024, "subject": "Chemistry", "question_type": "MCQ", "correct_answer": [3]}
|
52 |
-
{"image_path": "images/NEET_2024_T3/NEET_2024_T3_052.png", "question_id": "NEET_2024_T3_052", "exam_name": "NEET", "exam_year": 2024, "subject": "Chemistry", "question_type": "MCQ", "correct_answer": [2]}
|
53 |
-
{"image_path": "images/NEET_2024_T3/NEET_2024_T3_053.png", "question_id": "NEET_2024_T3_053", "exam_name": "NEET", "exam_year": 2024, "subject": "Chemistry", "question_type": "MCQ", "correct_answer": [3]}
|
54 |
-
{"image_path": "images/NEET_2024_T3/NEET_2024_T3_054.png", "question_id": "NEET_2024_T3_054", "exam_name": "NEET", "exam_year": 2024, "subject": "Chemistry", "question_type": "MCQ", "correct_answer": [3]}
|
55 |
-
{"image_path": "images/NEET_2024_T3/NEET_2024_T3_055.png", "question_id": "NEET_2024_T3_055", "exam_name": "NEET", "exam_year": 2024, "subject": "Chemistry", "question_type": "MCQ", "correct_answer": [4]}
|
56 |
-
{"image_path": "images/NEET_2024_T3/NEET_2024_T3_056.png", "question_id": "NEET_2024_T3_056", "exam_name": "NEET", "exam_year": 2024, "subject": "Chemistry", "question_type": "MCQ", "correct_answer": [3]}
|
57 |
-
{"image_path": "images/NEET_2024_T3/NEET_2024_T3_057.png", "question_id": "NEET_2024_T3_057", "exam_name": "NEET", "exam_year": 2024, "subject": "Chemistry", "question_type": "MCQ", "correct_answer": [1]}
|
58 |
-
{"image_path": "images/NEET_2024_T3/NEET_2024_T3_058.png", "question_id": "NEET_2024_T3_058", "exam_name": "NEET", "exam_year": 2024, "subject": "Chemistry", "question_type": "MCQ", "correct_answer": [2]}
|
59 |
-
{"image_path": "images/NEET_2024_T3/NEET_2024_T3_059.png", "question_id": "NEET_2024_T3_059", "exam_name": "NEET", "exam_year": 2024, "subject": "Chemistry", "question_type": "MCQ", "correct_answer": [2]}
|
60 |
-
{"image_path": "images/NEET_2024_T3/NEET_2024_T3_060.png", "question_id": "NEET_2024_T3_060", "exam_name": "NEET", "exam_year": 2024, "subject": "Chemistry", "question_type": "MCQ", "correct_answer": [1]}
|
61 |
-
{"image_path": "images/NEET_2024_T3/NEET_2024_T3_061.png", "question_id": "NEET_2024_T3_061", "exam_name": "NEET", "exam_year": 2024, "subject": "Chemistry", "question_type": "MCQ", "correct_answer": [3]}
|
62 |
-
{"image_path": "images/NEET_2024_T3/NEET_2024_T3_062.png", "question_id": "NEET_2024_T3_062", "exam_name": "NEET", "exam_year": 2024, "subject": "Chemistry", "question_type": "MCQ", "correct_answer": [3]}
|
63 |
-
{"image_path": "images/NEET_2024_T3/NEET_2024_T3_063.png", "question_id": "NEET_2024_T3_063", "exam_name": "NEET", "exam_year": 2024, "subject": "Chemistry", "question_type": "MCQ", "correct_answer": [2]}
|
64 |
-
{"image_path": "images/NEET_2024_T3/NEET_2024_T3_064.png", "question_id": "NEET_2024_T3_064", "exam_name": "NEET", "exam_year": 2024, "subject": "Chemistry", "question_type": "MCQ", "correct_answer": [3]}
|
65 |
-
{"image_path": "images/NEET_2024_T3/NEET_2024_T3_065.png", "question_id": "NEET_2024_T3_065", "exam_name": "NEET", "exam_year": 2024, "subject": "Chemistry", "question_type": "MCQ", "correct_answer": [3]}
|
66 |
-
{"image_path": "images/NEET_2024_T3/NEET_2024_T3_066.png", "question_id": "NEET_2024_T3_066", "exam_name": "NEET", "exam_year": 2024, "subject": "Chemistry", "question_type": "MCQ", "correct_answer": [4]}
|
67 |
-
{"image_path": "images/NEET_2024_T3/NEET_2024_T3_067.png", "question_id": "NEET_2024_T3_067", "exam_name": "NEET", "exam_year": 2024, "subject": "Chemistry", "question_type": "MCQ", "correct_answer": [1]}
|
68 |
-
{"image_path": "images/NEET_2024_T3/NEET_2024_T3_068.png", "question_id": "NEET_2024_T3_068", "exam_name": "NEET", "exam_year": 2024, "subject": "Chemistry", "question_type": "MCQ", "correct_answer": [4]}
|
69 |
-
{"image_path": "images/NEET_2024_T3/NEET_2024_T3_069.png", "question_id": "NEET_2024_T3_069", "exam_name": "NEET", "exam_year": 2024, "subject": "Chemistry", "question_type": "MCQ", "correct_answer": [1]}
|
70 |
-
{"image_path": "images/NEET_2024_T3/NEET_2024_T3_070.png", "question_id": "NEET_2024_T3_070", "exam_name": "NEET", "exam_year": 2024, "subject": "Chemistry", "question_type": "MCQ", "correct_answer": [1]}
|
71 |
-
{"image_path": "images/NEET_2024_T3/NEET_2024_T3_071.png", "question_id": "NEET_2024_T3_071", "exam_name": "NEET", "exam_year": 2024, "subject": "Chemistry", "question_type": "MCQ", "correct_answer": [2]}
|
72 |
-
{"image_path": "images/NEET_2024_T3/NEET_2024_T3_072.png", "question_id": "NEET_2024_T3_072", "exam_name": "NEET", "exam_year": 2024, "subject": "Chemistry", "question_type": "MCQ", "correct_answer": [1]}
|
73 |
-
{"image_path": "images/NEET_2024_T3/NEET_2024_T3_073.png", "question_id": "NEET_2024_T3_073", "exam_name": "NEET", "exam_year": 2024, "subject": "Chemistry", "question_type": "MCQ", "correct_answer": [2]}
|
74 |
-
{"image_path": "images/NEET_2024_T3/NEET_2024_T3_074.png", "question_id": "NEET_2024_T3_074", "exam_name": "NEET", "exam_year": 2024, "subject": "Chemistry", "question_type": "MCQ", "correct_answer": [3]}
|
75 |
-
{"image_path": "images/NEET_2024_T3/NEET_2024_T3_075.png", "question_id": "NEET_2024_T3_075", "exam_name": "NEET", "exam_year": 2024, "subject": "Chemistry", "question_type": "MCQ", "correct_answer": [3]}
|
76 |
-
{"image_path": "images/NEET_2024_T3/NEET_2024_T3_076.png", "question_id": "NEET_2024_T3_076", "exam_name": "NEET", "exam_year": 2024, "subject": "Chemistry", "question_type": "MCQ", "correct_answer": [2]}
|
77 |
-
{"image_path": "images/NEET_2024_T3/NEET_2024_T3_077.png", "question_id": "NEET_2024_T3_077", "exam_name": "NEET", "exam_year": 2024, "subject": "Chemistry", "question_type": "MCQ", "correct_answer": [3]}
|
78 |
-
{"image_path": "images/NEET_2024_T3/NEET_2024_T3_078.png", "question_id": "NEET_2024_T3_078", "exam_name": "NEET", "exam_year": 2024, "subject": "Chemistry", "question_type": "MCQ", "correct_answer": [1]}
|
79 |
-
{"image_path": "images/NEET_2024_T3/NEET_2024_T3_079.png", "question_id": "NEET_2024_T3_079", "exam_name": "NEET", "exam_year": 2024, "subject": "Chemistry", "question_type": "MCQ", "correct_answer": [4]}
|
80 |
-
{"image_path": "images/NEET_2024_T3/NEET_2024_T3_080.png", "question_id": "NEET_2024_T3_080", "exam_name": "NEET", "exam_year": 2024, "subject": "Chemistry", "question_type": "MCQ", "correct_answer": [3]}
|
81 |
-
{"image_path": "images/NEET_2024_T3/NEET_2024_T3_081.png", "question_id": "NEET_2024_T3_081", "exam_name": "NEET", "exam_year": 2024, "subject": "Chemistry", "question_type": "MCQ", "correct_answer": [3]}
|
82 |
-
{"image_path": "images/NEET_2024_T3/NEET_2024_T3_082.png", "question_id": "NEET_2024_T3_082", "exam_name": "NEET", "exam_year": 2024, "subject": "Chemistry", "question_type": "MCQ", "correct_answer": [4]}
|
83 |
-
{"image_path": "images/NEET_2024_T3/NEET_2024_T3_083.png", "question_id": "NEET_2024_T3_083", "exam_name": "NEET", "exam_year": 2024, "subject": "Chemistry", "question_type": "MCQ", "correct_answer": [3]}
|
84 |
-
{"image_path": "images/NEET_2024_T3/NEET_2024_T3_084.png", "question_id": "NEET_2024_T3_084", "exam_name": "NEET", "exam_year": 2024, "subject": "Chemistry", "question_type": "MCQ", "correct_answer": [2]}
|
85 |
-
{"image_path": "images/NEET_2024_T3/NEET_2024_T3_085.png", "question_id": "NEET_2024_T3_085", "exam_name": "NEET", "exam_year": 2024, "subject": "Chemistry", "question_type": "MCQ", "correct_answer": [4]}
|
86 |
-
{"image_path": "images/NEET_2024_T3/NEET_2024_T3_086.png", "question_id": "NEET_2024_T3_086", "exam_name": "NEET", "exam_year": 2024, "subject": "Chemistry", "question_type": "MCQ", "correct_answer": [4]}
|
87 |
-
{"image_path": "images/NEET_2024_T3/NEET_2024_T3_087.png", "question_id": "NEET_2024_T3_087", "exam_name": "NEET", "exam_year": 2024, "subject": "Chemistry", "question_type": "MCQ", "correct_answer": [2]}
|
88 |
-
{"image_path": "images/NEET_2024_T3/NEET_2024_T3_088.png", "question_id": "NEET_2024_T3_088", "exam_name": "NEET", "exam_year": 2024, "subject": "Chemistry", "question_type": "MCQ", "correct_answer": [3]}
|
89 |
-
{"image_path": "images/NEET_2024_T3/NEET_2024_T3_089.png", "question_id": "NEET_2024_T3_089", "exam_name": "NEET", "exam_year": 2024, "subject": "Chemistry", "question_type": "MCQ", "correct_answer": [4]}
|
90 |
-
{"image_path": "images/NEET_2024_T3/NEET_2024_T3_090.png", "question_id": "NEET_2024_T3_090", "exam_name": "NEET", "exam_year": 2024, "subject": "Chemistry", "question_type": "MCQ", "correct_answer": [3]}
|
91 |
-
{"image_path": "images/NEET_2024_T3/NEET_2024_T3_091.png", "question_id": "NEET_2024_T3_091", "exam_name": "NEET", "exam_year": 2024, "subject": "Chemistry", "question_type": "MCQ", "correct_answer": [2]}
|
92 |
-
{"image_path": "images/NEET_2024_T3/NEET_2024_T3_092.png", "question_id": "NEET_2024_T3_092", "exam_name": "NEET", "exam_year": 2024, "subject": "Chemistry", "question_type": "MCQ", "correct_answer": [2]}
|
93 |
-
{"image_path": "images/NEET_2024_T3/NEET_2024_T3_093.png", "question_id": "NEET_2024_T3_093", "exam_name": "NEET", "exam_year": 2024, "subject": "Chemistry", "question_type": "MCQ", "correct_answer": [3]}
|
94 |
-
{"image_path": "images/NEET_2024_T3/NEET_2024_T3_094.png", "question_id": "NEET_2024_T3_094", "exam_name": "NEET", "exam_year": 2024, "subject": "Chemistry", "question_type": "MCQ", "correct_answer": [3]}
|
95 |
-
{"image_path": "images/NEET_2024_T3/NEET_2024_T3_095.png", "question_id": "NEET_2024_T3_095", "exam_name": "NEET", "exam_year": 2024, "subject": "Chemistry", "question_type": "MCQ", "correct_answer": [3]}
|
96 |
-
{"image_path": "images/NEET_2024_T3/NEET_2024_T3_096.png", "question_id": "NEET_2024_T3_096", "exam_name": "NEET", "exam_year": 2024, "subject": "Chemistry", "question_type": "MCQ", "correct_answer": [2]}
|
97 |
-
{"image_path": "images/NEET_2024_T3/NEET_2024_T3_097.png", "question_id": "NEET_2024_T3_097", "exam_name": "NEET", "exam_year": 2024, "subject": "Chemistry", "question_type": "MCQ", "correct_answer": [4]}
|
98 |
-
{"image_path": "images/NEET_2024_T3/NEET_2024_T3_098.png", "question_id": "NEET_2024_T3_098", "exam_name": "NEET", "exam_year": 2024, "subject": "Chemistry", "question_type": "MCQ", "correct_answer": [4]}
|
99 |
-
{"image_path": "images/NEET_2024_T3/NEET_2024_T3_099.png", "question_id": "NEET_2024_T3_099", "exam_name": "NEET", "exam_year": 2024, "subject": "Chemistry", "question_type": "MCQ", "correct_answer": [3]}
|
100 |
-
{"image_path": "images/NEET_2024_T3/NEET_2024_T3_100.png", "question_id": "NEET_2024_T3_100", "exam_name": "NEET", "exam_year": 2024, "subject": "Chemistry", "question_type": "MCQ", "correct_answer": [3]}
|
101 |
-
{"image_path": "images/NEET_2024_T3/NEET_2024_T3_101.png", "question_id": "NEET_2024_T3_101", "exam_name": "NEET", "exam_year": 2024, "subject": "Botany", "question_type": "MCQ", "correct_answer": [2]}
|
102 |
-
{"image_path": "images/NEET_2024_T3/NEET_2024_T3_102.png", "question_id": "NEET_2024_T3_102", "exam_name": "NEET", "exam_year": 2024, "subject": "Botany", "question_type": "MCQ", "correct_answer": [4]}
|
103 |
-
{"image_path": "images/NEET_2024_T3/NEET_2024_T3_103.png", "question_id": "NEET_2024_T3_103", "exam_name": "NEET", "exam_year": 2024, "subject": "Botany", "question_type": "MCQ", "correct_answer": [1]}
|
104 |
-
{"image_path": "images/NEET_2024_T3/NEET_2024_T3_104.png", "question_id": "NEET_2024_T3_104", "exam_name": "NEET", "exam_year": 2024, "subject": "Botany", "question_type": "MCQ", "correct_answer": [1]}
|
105 |
-
{"image_path": "images/NEET_2024_T3/NEET_2024_T3_105.png", "question_id": "NEET_2024_T3_105", "exam_name": "NEET", "exam_year": 2024, "subject": "Botany", "question_type": "MCQ", "correct_answer": [3]}
|
106 |
-
{"image_path": "images/NEET_2024_T3/NEET_2024_T3_106.png", "question_id": "NEET_2024_T3_106", "exam_name": "NEET", "exam_year": 2024, "subject": "Botany", "question_type": "MCQ", "correct_answer": [1]}
|
107 |
-
{"image_path": "images/NEET_2024_T3/NEET_2024_T3_107.png", "question_id": "NEET_2024_T3_107", "exam_name": "NEET", "exam_year": 2024, "subject": "Botany", "question_type": "MCQ", "correct_answer": [1]}
|
108 |
-
{"image_path": "images/NEET_2024_T3/NEET_2024_T3_108.png", "question_id": "NEET_2024_T3_108", "exam_name": "NEET", "exam_year": 2024, "subject": "Botany", "question_type": "MCQ", "correct_answer": [4]}
|
109 |
-
{"image_path": "images/NEET_2024_T3/NEET_2024_T3_109.png", "question_id": "NEET_2024_T3_109", "exam_name": "NEET", "exam_year": 2024, "subject": "Botany", "question_type": "MCQ", "correct_answer": [3]}
|
110 |
-
{"image_path": "images/NEET_2024_T3/NEET_2024_T3_110.png", "question_id": "NEET_2024_T3_110", "exam_name": "NEET", "exam_year": 2024, "subject": "Botany", "question_type": "MCQ", "correct_answer": [4]}
|
111 |
-
{"image_path": "images/NEET_2024_T3/NEET_2024_T3_111.png", "question_id": "NEET_2024_T3_111", "exam_name": "NEET", "exam_year": 2024, "subject": "Botany", "question_type": "MCQ", "correct_answer": [2]}
|
112 |
-
{"image_path": "images/NEET_2024_T3/NEET_2024_T3_112.png", "question_id": "NEET_2024_T3_112", "exam_name": "NEET", "exam_year": 2024, "subject": "Botany", "question_type": "MCQ", "correct_answer": [2]}
|
113 |
-
{"image_path": "images/NEET_2024_T3/NEET_2024_T3_113.png", "question_id": "NEET_2024_T3_113", "exam_name": "NEET", "exam_year": 2024, "subject": "Botany", "question_type": "MCQ", "correct_answer": [3]}
|
114 |
-
{"image_path": "images/NEET_2024_T3/NEET_2024_T3_114.png", "question_id": "NEET_2024_T3_114", "exam_name": "NEET", "exam_year": 2024, "subject": "Botany", "question_type": "MCQ", "correct_answer": [1]}
|
115 |
-
{"image_path": "images/NEET_2024_T3/NEET_2024_T3_115.png", "question_id": "NEET_2024_T3_115", "exam_name": "NEET", "exam_year": 2024, "subject": "Botany", "question_type": "MCQ", "correct_answer": [4]}
|
116 |
-
{"image_path": "images/NEET_2024_T3/NEET_2024_T3_116.png", "question_id": "NEET_2024_T3_116", "exam_name": "NEET", "exam_year": 2024, "subject": "Botany", "question_type": "MCQ", "correct_answer": [2]}
|
117 |
-
{"image_path": "images/NEET_2024_T3/NEET_2024_T3_117.png", "question_id": "NEET_2024_T3_117", "exam_name": "NEET", "exam_year": 2024, "subject": "Botany", "question_type": "MCQ", "correct_answer": [3]}
|
118 |
-
{"image_path": "images/NEET_2024_T3/NEET_2024_T3_118.png", "question_id": "NEET_2024_T3_118", "exam_name": "NEET", "exam_year": 2024, "subject": "Botany", "question_type": "MCQ", "correct_answer": [4]}
|
119 |
-
{"image_path": "images/NEET_2024_T3/NEET_2024_T3_119.png", "question_id": "NEET_2024_T3_119", "exam_name": "NEET", "exam_year": 2024, "subject": "Botany", "question_type": "MCQ", "correct_answer": [4]}
|
120 |
-
{"image_path": "images/NEET_2024_T3/NEET_2024_T3_120.png", "question_id": "NEET_2024_T3_120", "exam_name": "NEET", "exam_year": 2024, "subject": "Botany", "question_type": "MCQ", "correct_answer": [1]}
|
121 |
-
{"image_path": "images/NEET_2024_T3/NEET_2024_T3_121.png", "question_id": "NEET_2024_T3_121", "exam_name": "NEET", "exam_year": 2024, "subject": "Botany", "question_type": "MCQ", "correct_answer": [4]}
|
122 |
-
{"image_path": "images/NEET_2024_T3/NEET_2024_T3_122.png", "question_id": "NEET_2024_T3_122", "exam_name": "NEET", "exam_year": 2024, "subject": "Botany", "question_type": "MCQ", "correct_answer": [2]}
|
123 |
-
{"image_path": "images/NEET_2024_T3/NEET_2024_T3_123.png", "question_id": "NEET_2024_T3_123", "exam_name": "NEET", "exam_year": 2024, "subject": "Botany", "question_type": "MCQ", "correct_answer": [3]}
|
124 |
-
{"image_path": "images/NEET_2024_T3/NEET_2024_T3_124.png", "question_id": "NEET_2024_T3_124", "exam_name": "NEET", "exam_year": 2024, "subject": "Botany", "question_type": "MCQ", "correct_answer": [3]}
|
125 |
-
{"image_path": "images/NEET_2024_T3/NEET_2024_T3_125.png", "question_id": "NEET_2024_T3_125", "exam_name": "NEET", "exam_year": 2024, "subject": "Botany", "question_type": "MCQ", "correct_answer": [2]}
|
126 |
-
{"image_path": "images/NEET_2024_T3/NEET_2024_T3_126.png", "question_id": "NEET_2024_T3_126", "exam_name": "NEET", "exam_year": 2024, "subject": "Botany", "question_type": "MCQ", "correct_answer": [1]}
|
127 |
-
{"image_path": "images/NEET_2024_T3/NEET_2024_T3_127.png", "question_id": "NEET_2024_T3_127", "exam_name": "NEET", "exam_year": 2024, "subject": "Botany", "question_type": "MCQ", "correct_answer": [1]}
|
128 |
-
{"image_path": "images/NEET_2024_T3/NEET_2024_T3_128.png", "question_id": "NEET_2024_T3_128", "exam_name": "NEET", "exam_year": 2024, "subject": "Botany", "question_type": "MCQ", "correct_answer": [3]}
|
129 |
-
{"image_path": "images/NEET_2024_T3/NEET_2024_T3_129.png", "question_id": "NEET_2024_T3_129", "exam_name": "NEET", "exam_year": 2024, "subject": "Botany", "question_type": "MCQ", "correct_answer": [1]}
|
130 |
-
{"image_path": "images/NEET_2024_T3/NEET_2024_T3_130.png", "question_id": "NEET_2024_T3_130", "exam_name": "NEET", "exam_year": 2024, "subject": "Botany", "question_type": "MCQ", "correct_answer": [4]}
|
131 |
-
{"image_path": "images/NEET_2024_T3/NEET_2024_T3_131.png", "question_id": "NEET_2024_T3_131", "exam_name": "NEET", "exam_year": 2024, "subject": "Botany", "question_type": "MCQ", "correct_answer": [1]}
|
132 |
-
{"image_path": "images/NEET_2024_T3/NEET_2024_T3_132.png", "question_id": "NEET_2024_T3_132", "exam_name": "NEET", "exam_year": 2024, "subject": "Botany", "question_type": "MCQ", "correct_answer": [2]}
|
133 |
-
{"image_path": "images/NEET_2024_T3/NEET_2024_T3_133.png", "question_id": "NEET_2024_T3_133", "exam_name": "NEET", "exam_year": 2024, "subject": "Botany", "question_type": "MCQ", "correct_answer": [3]}
|
134 |
-
{"image_path": "images/NEET_2024_T3/NEET_2024_T3_134.png", "question_id": "NEET_2024_T3_134", "exam_name": "NEET", "exam_year": 2024, "subject": "Botany", "question_type": "MCQ", "correct_answer": [3]}
|
135 |
-
{"image_path": "images/NEET_2024_T3/NEET_2024_T3_135.png", "question_id": "NEET_2024_T3_135", "exam_name": "NEET", "exam_year": 2024, "subject": "Botany", "question_type": "MCQ", "correct_answer": [2]}
|
136 |
-
{"image_path": "images/NEET_2024_T3/NEET_2024_T3_136.png", "question_id": "NEET_2024_T3_136", "exam_name": "NEET", "exam_year": 2024, "subject": "Botany", "question_type": "MCQ", "correct_answer": [4]}
|
137 |
-
{"image_path": "images/NEET_2024_T3/NEET_2024_T3_137.png", "question_id": "NEET_2024_T3_137", "exam_name": "NEET", "exam_year": 2024, "subject": "Botany", "question_type": "MCQ", "correct_answer": [1]}
|
138 |
-
{"image_path": "images/NEET_2024_T3/NEET_2024_T3_138.png", "question_id": "NEET_2024_T3_138", "exam_name": "NEET", "exam_year": 2024, "subject": "Botany", "question_type": "MCQ", "correct_answer": [3]}
|
139 |
-
{"image_path": "images/NEET_2024_T3/NEET_2024_T3_139.png", "question_id": "NEET_2024_T3_139", "exam_name": "NEET", "exam_year": 2024, "subject": "Botany", "question_type": "MCQ", "correct_answer": [4]}
|
140 |
-
{"image_path": "images/NEET_2024_T3/NEET_2024_T3_140.png", "question_id": "NEET_2024_T3_140", "exam_name": "NEET", "exam_year": 2024, "subject": "Botany", "question_type": "MCQ", "correct_answer": [4]}
|
141 |
-
{"image_path": "images/NEET_2024_T3/NEET_2024_T3_141.png", "question_id": "NEET_2024_T3_141", "exam_name": "NEET", "exam_year": 2024, "subject": "Botany", "question_type": "MCQ", "correct_answer": [3]}
|
142 |
-
{"image_path": "images/NEET_2024_T3/NEET_2024_T3_142.png", "question_id": "NEET_2024_T3_142", "exam_name": "NEET", "exam_year": 2024, "subject": "Botany", "question_type": "MCQ", "correct_answer": [1]}
|
143 |
-
{"image_path": "images/NEET_2024_T3/NEET_2024_T3_143.png", "question_id": "NEET_2024_T3_143", "exam_name": "NEET", "exam_year": 2024, "subject": "Botany", "question_type": "MCQ", "correct_answer": [1]}
|
144 |
-
{"image_path": "images/NEET_2024_T3/NEET_2024_T3_144.png", "question_id": "NEET_2024_T3_144", "exam_name": "NEET", "exam_year": 2024, "subject": "Botany", "question_type": "MCQ", "correct_answer": [4]}
|
145 |
-
{"image_path": "images/NEET_2024_T3/NEET_2024_T3_145.png", "question_id": "NEET_2024_T3_145", "exam_name": "NEET", "exam_year": 2024, "subject": "Botany", "question_type": "MCQ", "correct_answer": [2]}
|
146 |
-
{"image_path": "images/NEET_2024_T3/NEET_2024_T3_146.png", "question_id": "NEET_2024_T3_146", "exam_name": "NEET", "exam_year": 2024, "subject": "Botany", "question_type": "MCQ", "correct_answer": [1]}
|
147 |
-
{"image_path": "images/NEET_2024_T3/NEET_2024_T3_147.png", "question_id": "NEET_2024_T3_147", "exam_name": "NEET", "exam_year": 2024, "subject": "Botany", "question_type": "MCQ", "correct_answer": [3]}
|
148 |
-
{"image_path": "images/NEET_2024_T3/NEET_2024_T3_148.png", "question_id": "NEET_2024_T3_148", "exam_name": "NEET", "exam_year": 2024, "subject": "Botany", "question_type": "MCQ", "correct_answer": [4]}
|
149 |
-
{"image_path": "images/NEET_2024_T3/NEET_2024_T3_149.png", "question_id": "NEET_2024_T3_149", "exam_name": "NEET", "exam_year": 2024, "subject": "Botany", "question_type": "MCQ", "correct_answer": [3]}
|
150 |
-
{"image_path": "images/NEET_2024_T3/NEET_2024_T3_150.png", "question_id": "NEET_2024_T3_150", "exam_name": "NEET", "exam_year": 2024, "subject": "Botany", "question_type": "MCQ", "correct_answer": [1]}
|
151 |
-
{"image_path": "images/NEET_2024_T3/NEET_2024_T3_151.png", "question_id": "NEET_2024_T3_151", "exam_name": "NEET", "exam_year": 2024, "subject": "Zoology", "question_type": "MCQ", "correct_answer": [4]}
|
152 |
-
{"image_path": "images/NEET_2024_T3/NEET_2024_T3_152.png", "question_id": "NEET_2024_T3_152", "exam_name": "NEET", "exam_year": 2024, "subject": "Zoology", "question_type": "MCQ", "correct_answer": [2]}
|
153 |
-
{"image_path": "images/NEET_2024_T3/NEET_2024_T3_153.png", "question_id": "NEET_2024_T3_153", "exam_name": "NEET", "exam_year": 2024, "subject": "Zoology", "question_type": "MCQ", "correct_answer": [1]}
|
154 |
-
{"image_path": "images/NEET_2024_T3/NEET_2024_T3_154.png", "question_id": "NEET_2024_T3_154", "exam_name": "NEET", "exam_year": 2024, "subject": "Zoology", "question_type": "MCQ", "correct_answer": [4]}
|
155 |
-
{"image_path": "images/NEET_2024_T3/NEET_2024_T3_155.png", "question_id": "NEET_2024_T3_155", "exam_name": "NEET", "exam_year": 2024, "subject": "Zoology", "question_type": "MCQ", "correct_answer": [4]}
|
156 |
-
{"image_path": "images/NEET_2024_T3/NEET_2024_T3_156.png", "question_id": "NEET_2024_T3_156", "exam_name": "NEET", "exam_year": 2024, "subject": "Zoology", "question_type": "MCQ", "correct_answer": [2]}
|
157 |
-
{"image_path": "images/NEET_2024_T3/NEET_2024_T3_157.png", "question_id": "NEET_2024_T3_157", "exam_name": "NEET", "exam_year": 2024, "subject": "Zoology", "question_type": "MCQ", "correct_answer": [3]}
|
158 |
-
{"image_path": "images/NEET_2024_T3/NEET_2024_T3_158.png", "question_id": "NEET_2024_T3_158", "exam_name": "NEET", "exam_year": 2024, "subject": "Zoology", "question_type": "MCQ", "correct_answer": [4]}
|
159 |
-
{"image_path": "images/NEET_2024_T3/NEET_2024_T3_159.png", "question_id": "NEET_2024_T3_159", "exam_name": "NEET", "exam_year": 2024, "subject": "Zoology", "question_type": "MCQ", "correct_answer": [2]}
|
160 |
-
{"image_path": "images/NEET_2024_T3/NEET_2024_T3_160.png", "question_id": "NEET_2024_T3_160", "exam_name": "NEET", "exam_year": 2024, "subject": "Zoology", "question_type": "MCQ", "correct_answer": [4]}
|
161 |
-
{"image_path": "images/NEET_2024_T3/NEET_2024_T3_161.png", "question_id": "NEET_2024_T3_161", "exam_name": "NEET", "exam_year": 2024, "subject": "Zoology", "question_type": "MCQ", "correct_answer": [1]}
|
162 |
-
{"image_path": "images/NEET_2024_T3/NEET_2024_T3_162.png", "question_id": "NEET_2024_T3_162", "exam_name": "NEET", "exam_year": 2024, "subject": "Zoology", "question_type": "MCQ", "correct_answer": [1]}
|
163 |
-
{"image_path": "images/NEET_2024_T3/NEET_2024_T3_163.png", "question_id": "NEET_2024_T3_163", "exam_name": "NEET", "exam_year": 2024, "subject": "Zoology", "question_type": "MCQ", "correct_answer": [3]}
|
164 |
-
{"image_path": "images/NEET_2024_T3/NEET_2024_T3_164.png", "question_id": "NEET_2024_T3_164", "exam_name": "NEET", "exam_year": 2024, "subject": "Zoology", "question_type": "MCQ", "correct_answer": [2]}
|
165 |
-
{"image_path": "images/NEET_2024_T3/NEET_2024_T3_165.png", "question_id": "NEET_2024_T3_165", "exam_name": "NEET", "exam_year": 2024, "subject": "Zoology", "question_type": "MCQ", "correct_answer": [2]}
|
166 |
-
{"image_path": "images/NEET_2024_T3/NEET_2024_T3_166.png", "question_id": "NEET_2024_T3_166", "exam_name": "NEET", "exam_year": 2024, "subject": "Zoology", "question_type": "MCQ", "correct_answer": [3]}
|
167 |
-
{"image_path": "images/NEET_2024_T3/NEET_2024_T3_167.png", "question_id": "NEET_2024_T3_167", "exam_name": "NEET", "exam_year": 2024, "subject": "Zoology", "question_type": "MCQ", "correct_answer": [4]}
|
168 |
-
{"image_path": "images/NEET_2024_T3/NEET_2024_T3_168.png", "question_id": "NEET_2024_T3_168", "exam_name": "NEET", "exam_year": 2024, "subject": "Zoology", "question_type": "MCQ", "correct_answer": [1]}
|
169 |
-
{"image_path": "images/NEET_2024_T3/NEET_2024_T3_169.png", "question_id": "NEET_2024_T3_169", "exam_name": "NEET", "exam_year": 2024, "subject": "Zoology", "question_type": "MCQ", "correct_answer": [2]}
|
170 |
-
{"image_path": "images/NEET_2024_T3/NEET_2024_T3_170.png", "question_id": "NEET_2024_T3_170", "exam_name": "NEET", "exam_year": 2024, "subject": "Zoology", "question_type": "MCQ", "correct_answer": [4]}
|
171 |
-
{"image_path": "images/NEET_2024_T3/NEET_2024_T3_171.png", "question_id": "NEET_2024_T3_171", "exam_name": "NEET", "exam_year": 2024, "subject": "Zoology", "question_type": "MCQ", "correct_answer": [2]}
|
172 |
-
{"image_path": "images/NEET_2024_T3/NEET_2024_T3_172.png", "question_id": "NEET_2024_T3_172", "exam_name": "NEET", "exam_year": 2024, "subject": "Zoology", "question_type": "MCQ", "correct_answer": [4]}
|
173 |
-
{"image_path": "images/NEET_2024_T3/NEET_2024_T3_173.png", "question_id": "NEET_2024_T3_173", "exam_name": "NEET", "exam_year": 2024, "subject": "Zoology", "question_type": "MCQ", "correct_answer": [4]}
|
174 |
-
{"image_path": "images/NEET_2024_T3/NEET_2024_T3_174.png", "question_id": "NEET_2024_T3_174", "exam_name": "NEET", "exam_year": 2024, "subject": "Zoology", "question_type": "MCQ", "correct_answer": [2]}
|
175 |
-
{"image_path": "images/NEET_2024_T3/NEET_2024_T3_175.png", "question_id": "NEET_2024_T3_175", "exam_name": "NEET", "exam_year": 2024, "subject": "Zoology", "question_type": "MCQ", "correct_answer": [2]}
|
176 |
-
{"image_path": "images/NEET_2024_T3/NEET_2024_T3_176.png", "question_id": "NEET_2024_T3_176", "exam_name": "NEET", "exam_year": 2024, "subject": "Zoology", "question_type": "MCQ", "correct_answer": [4]}
|
177 |
-
{"image_path": "images/NEET_2024_T3/NEET_2024_T3_177.png", "question_id": "NEET_2024_T3_177", "exam_name": "NEET", "exam_year": 2024, "subject": "Zoology", "question_type": "MCQ", "correct_answer": [2]}
|
178 |
-
{"image_path": "images/NEET_2024_T3/NEET_2024_T3_178.png", "question_id": "NEET_2024_T3_178", "exam_name": "NEET", "exam_year": 2024, "subject": "Zoology", "question_type": "MCQ", "correct_answer": [1]}
|
179 |
-
{"image_path": "images/NEET_2024_T3/NEET_2024_T3_179.png", "question_id": "NEET_2024_T3_179", "exam_name": "NEET", "exam_year": 2024, "subject": "Zoology", "question_type": "MCQ", "correct_answer": [1]}
|
180 |
-
{"image_path": "images/NEET_2024_T3/NEET_2024_T3_180.png", "question_id": "NEET_2024_T3_180", "exam_name": "NEET", "exam_year": 2024, "subject": "Zoology", "question_type": "MCQ", "correct_answer": [1]}
|
181 |
-
{"image_path": "images/NEET_2024_T3/NEET_2024_T3_181.png", "question_id": "NEET_2024_T3_181", "exam_name": "NEET", "exam_year": 2024, "subject": "Zoology", "question_type": "MCQ", "correct_answer": [3]}
|
182 |
-
{"image_path": "images/NEET_2024_T3/NEET_2024_T3_182.png", "question_id": "NEET_2024_T3_182", "exam_name": "NEET", "exam_year": 2024, "subject": "Zoology", "question_type": "MCQ", "correct_answer": [4]}
|
183 |
-
{"image_path": "images/NEET_2024_T3/NEET_2024_T3_183.png", "question_id": "NEET_2024_T3_183", "exam_name": "NEET", "exam_year": 2024, "subject": "Zoology", "question_type": "MCQ", "correct_answer": [1]}
|
184 |
-
{"image_path": "images/NEET_2024_T3/NEET_2024_T3_184.png", "question_id": "NEET_2024_T3_184", "exam_name": "NEET", "exam_year": 2024, "subject": "Zoology", "question_type": "MCQ", "correct_answer": [3]}
|
185 |
-
{"image_path": "images/NEET_2024_T3/NEET_2024_T3_185.png", "question_id": "NEET_2024_T3_185", "exam_name": "NEET", "exam_year": 2024, "subject": "Zoology", "question_type": "MCQ", "correct_answer": [1]}
|
186 |
-
{"image_path": "images/NEET_2024_T3/NEET_2024_T3_186.png", "question_id": "NEET_2024_T3_186", "exam_name": "NEET", "exam_year": 2024, "subject": "Zoology", "question_type": "MCQ", "correct_answer": [1]}
|
187 |
-
{"image_path": "images/NEET_2024_T3/NEET_2024_T3_187.png", "question_id": "NEET_2024_T3_187", "exam_name": "NEET", "exam_year": 2024, "subject": "Zoology", "question_type": "MCQ", "correct_answer": [2]}
|
188 |
-
{"image_path": "images/NEET_2024_T3/NEET_2024_T3_188.png", "question_id": "NEET_2024_T3_188", "exam_name": "NEET", "exam_year": 2024, "subject": "Zoology", "question_type": "MCQ", "correct_answer": [1]}
|
189 |
-
{"image_path": "images/NEET_2024_T3/NEET_2024_T3_189.png", "question_id": "NEET_2024_T3_189", "exam_name": "NEET", "exam_year": 2024, "subject": "Zoology", "question_type": "MCQ", "correct_answer": [3]}
|
190 |
-
{"image_path": "images/NEET_2024_T3/NEET_2024_T3_190.png", "question_id": "NEET_2024_T3_190", "exam_name": "NEET", "exam_year": 2024, "subject": "Zoology", "question_type": "MCQ", "correct_answer": [2]}
|
191 |
-
{"image_path": "images/NEET_2024_T3/NEET_2024_T3_191.png", "question_id": "NEET_2024_T3_191", "exam_name": "NEET", "exam_year": 2024, "subject": "Zoology", "question_type": "MCQ", "correct_answer": [2]}
|
192 |
-
{"image_path": "images/NEET_2024_T3/NEET_2024_T3_192.png", "question_id": "NEET_2024_T3_192", "exam_name": "NEET", "exam_year": 2024, "subject": "Zoology", "question_type": "MCQ", "correct_answer": [1]}
|
193 |
-
{"image_path": "images/NEET_2024_T3/NEET_2024_T3_193.png", "question_id": "NEET_2024_T3_193", "exam_name": "NEET", "exam_year": 2024, "subject": "Zoology", "question_type": "MCQ", "correct_answer": [3]}
|
194 |
-
{"image_path": "images/NEET_2024_T3/NEET_2024_T3_194.png", "question_id": "NEET_2024_T3_194", "exam_name": "NEET", "exam_year": 2024, "subject": "Zoology", "question_type": "MCQ", "correct_answer": [3]}
|
195 |
-
{"image_path": "images/NEET_2024_T3/NEET_2024_T3_195.png", "question_id": "NEET_2024_T3_195", "exam_name": "NEET", "exam_year": 2024, "subject": "Zoology", "question_type": "MCQ", "correct_answer": [1]}
|
196 |
-
{"image_path": "images/NEET_2024_T3/NEET_2024_T3_196.png", "question_id": "NEET_2024_T3_196", "exam_name": "NEET", "exam_year": 2024, "subject": "Zoology", "question_type": "MCQ", "correct_answer": [4]}
|
197 |
-
{"image_path": "images/NEET_2024_T3/NEET_2024_T3_197.png", "question_id": "NEET_2024_T3_197", "exam_name": "NEET", "exam_year": 2024, "subject": "Zoology", "question_type": "MCQ", "correct_answer": [3]}
|
198 |
-
{"image_path": "images/NEET_2024_T3/NEET_2024_T3_198.png", "question_id": "NEET_2024_T3_198", "exam_name": "NEET", "exam_year": 2024, "subject": "Zoology", "question_type": "MCQ", "correct_answer": [2]}
|
199 |
-
{"image_path": "images/NEET_2024_T3/NEET_2024_T3_199.png", "question_id": "NEET_2024_T3_199", "exam_name": "NEET", "exam_year": 2024, "subject": "Zoology", "question_type": "MCQ", "correct_answer": [3]}
|
200 |
-
{"image_path": "images/NEET_2024_T3/NEET_2024_T3_200.png", "question_id": "NEET_2024_T3_200", "exam_name": "NEET", "exam_year": 2024, "subject": "Zoology", "question_type": "MCQ", "correct_answer": [1]}
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:05d680452048e31e73438399cc0e1fd05cd8da4f6b8eb10e61667f9986187a82
|
3 |
+
size 77285
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
images/NEET_2025_45/NEET_2025_45_001.png
ADDED
![]() |
Git LFS Details
|
images/NEET_2025_45/NEET_2025_45_002.png
ADDED
![]() |
Git LFS Details
|
images/NEET_2025_45/NEET_2025_45_003.png
ADDED
![]() |
Git LFS Details
|
images/NEET_2025_45/NEET_2025_45_004.png
ADDED
![]() |
Git LFS Details
|
images/NEET_2025_45/NEET_2025_45_005.png
ADDED
![]() |
Git LFS Details
|
images/NEET_2025_45/NEET_2025_45_006.png
ADDED
![]() |
Git LFS Details
|
images/NEET_2025_45/NEET_2025_45_007.png
ADDED
![]() |
Git LFS Details
|
images/NEET_2025_45/NEET_2025_45_008.png
ADDED
![]() |
Git LFS Details
|
images/NEET_2025_45/NEET_2025_45_009.png
ADDED
![]() |
Git LFS Details
|
images/NEET_2025_45/NEET_2025_45_010.png
ADDED
![]() |
Git LFS Details
|
images/NEET_2025_45/NEET_2025_45_011.png
ADDED
![]() |
Git LFS Details
|
images/NEET_2025_45/NEET_2025_45_012.png
ADDED
![]() |
Git LFS Details
|
images/NEET_2025_45/NEET_2025_45_013.png
ADDED
![]() |
Git LFS Details
|
images/NEET_2025_45/NEET_2025_45_014.png
ADDED
![]() |
Git LFS Details
|
images/NEET_2025_45/NEET_2025_45_015.png
ADDED
![]() |
Git LFS Details
|
images/NEET_2025_45/NEET_2025_45_016.png
ADDED
![]() |
Git LFS Details
|
images/NEET_2025_45/NEET_2025_45_017.png
ADDED
![]() |
Git LFS Details
|
images/NEET_2025_45/NEET_2025_45_018.png
ADDED
![]() |
Git LFS Details
|
images/NEET_2025_45/NEET_2025_45_019.png
ADDED
![]() |
Git LFS Details
|
images/NEET_2025_45/NEET_2025_45_020.png
ADDED
![]() |
Git LFS Details
|
images/NEET_2025_45/NEET_2025_45_021.png
ADDED
![]() |
Git LFS Details
|
images/NEET_2025_45/NEET_2025_45_022.png
ADDED
![]() |
Git LFS Details
|
images/NEET_2025_45/NEET_2025_45_023.png
ADDED
![]() |
Git LFS Details
|
images/NEET_2025_45/NEET_2025_45_024.png
ADDED
![]() |
Git LFS Details
|
images/NEET_2025_45/NEET_2025_45_025.png
ADDED
![]() |
Git LFS Details
|
images/NEET_2025_45/NEET_2025_45_026.png
ADDED
![]() |
Git LFS Details
|
images/NEET_2025_45/NEET_2025_45_027.png
ADDED
![]() |
Git LFS Details
|
images/NEET_2025_45/NEET_2025_45_028.png
ADDED
![]() |
Git LFS Details
|
images/NEET_2025_45/NEET_2025_45_029.png
ADDED
![]() |
Git LFS Details
|
images/NEET_2025_45/NEET_2025_45_030.png
ADDED
![]() |
Git LFS Details
|
images/NEET_2025_45/NEET_2025_45_031.png
ADDED
![]() |
Git LFS Details
|
images/NEET_2025_45/NEET_2025_45_032.png
ADDED
![]() |
Git LFS Details
|
images/NEET_2025_45/NEET_2025_45_033.png
ADDED
![]() |
Git LFS Details
|
images/NEET_2025_45/NEET_2025_45_034.png
ADDED
![]() |
Git LFS Details
|
images/NEET_2025_45/NEET_2025_45_035.png
ADDED
![]() |
Git LFS Details
|
images/NEET_2025_45/NEET_2025_45_036.png
ADDED
![]() |
Git LFS Details
|
images/NEET_2025_45/NEET_2025_45_037.png
ADDED
![]() |
Git LFS Details
|
images/NEET_2025_45/NEET_2025_45_038.png
ADDED
![]() |
Git LFS Details
|
images/NEET_2025_45/NEET_2025_45_039.png
ADDED
![]() |
Git LFS Details
|
images/NEET_2025_45/NEET_2025_45_040.png
ADDED
![]() |
Git LFS Details
|
images/NEET_2025_45/NEET_2025_45_040A.png
ADDED
![]() |
Git LFS Details
|
images/NEET_2025_45/NEET_2025_45_040B.png
ADDED
![]() |
Git LFS Details
|
images/NEET_2025_45/NEET_2025_45_041.png
ADDED
![]() |
Git LFS Details
|
images/NEET_2025_45/NEET_2025_45_042.png
ADDED
![]() |
Git LFS Details
|
images/NEET_2025_45/NEET_2025_45_043.png
ADDED
![]() |
Git LFS Details
|
images/NEET_2025_45/NEET_2025_45_044.png
ADDED
![]() |
Git LFS Details
|
images/NEET_2025_45/NEET_2025_45_045.png
ADDED
![]() |
Git LFS Details
|