init
Browse files- README.md +37 -0
- analogy_questions.py +93 -0
- dataset/bats/test.jsonl +0 -0
- dataset/bats/valid.jsonl +199 -0
- dataset/google/test.jsonl +500 -0
- dataset/google/valid.jsonl +50 -0
- dataset/sat/test.jsonl +337 -0
- dataset/sat/valid.jsonl +37 -0
- dataset/u2/test.jsonl +228 -0
- dataset/u2/valid.jsonl +24 -0
- dataset/u4/test.jsonl +432 -0
- dataset/u4/valid.jsonl +48 -0
README.md
ADDED
@@ -0,0 +1,37 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Analogy Test Dataset
|
2 |
+
This dataset contains five different word analogy datasets. Each contains jsonline files for validation and test, in which each line consists of following dictionary,
|
3 |
+
```
|
4 |
+
{"stem": ["raphael", "painter"],
|
5 |
+
"answer": 2,
|
6 |
+
"choice": [["andersen", "plato"],
|
7 |
+
["reading", "berkshire"],
|
8 |
+
["marx", "philosopher"],
|
9 |
+
["tolstoi", "edison"]]}
|
10 |
+
```
|
11 |
+
where `stem` is the query word pair, `choice` has word pair candidates,
|
12 |
+
and `answer` indicates the index of correct candidate which starts from `0`. Data statistics are summarized as below.
|
13 |
+
|
14 |
+
| Dataset | Size (valid/test) | Num of choice | Num of relation group | Original Reference |
|
15 |
+
|---------|------------------:|--------------:|----------------------:|:--------------------------------------------------------------------------:|
|
16 |
+
| sat | 37/337 | 5 | 2 | [Turney (2005)](https://arxiv.org/pdf/cs/0508053.pdf) |
|
17 |
+
| u2 | 24/228 | 5,4,3 | 9 | [EnglishForEveryone](https://englishforeveryone.org/Topics/Analogies.html) |
|
18 |
+
| u4 | 48/432 | 5,4,3 | 5 | [EnglishForEveryone](https://englishforeveryone.org/Topics/Analogies.html) |
|
19 |
+
| google | 50/500 | 4 | 2 | [Mikolov et al., (2013)](https://www.aclweb.org/anthology/N13-1090.pdf) |
|
20 |
+
| bats | 199/1799 | 4 | 3 | [Gladkova et al., (2016)](https://www.aclweb.org/anthology/N18-2017.pdf) |
|
21 |
+
|
22 |
+
All data is lowercased except Google dataset. Please read [our paper](https://arxiv.org/abs/2105.04949) for more information about the dataset and cite it if you use the dataset:
|
23 |
+
```
|
24 |
+
@inproceedings{ushio-etal-2021-bert-is,
|
25 |
+
title ={{BERT} is to {NLP} what {A}lex{N}et is to {CV}: {C}an {P}re-{T}rained {L}anguage {M}odels {I}dentify {A}nalogies?},
|
26 |
+
author={Ushio, Asahi and
|
27 |
+
Espinosa-Anke, Luis and
|
28 |
+
Schockaert, Steven and
|
29 |
+
Camacho-Collados, Jose},
|
30 |
+
booktitle={Proceedings of the {ACL}-{IJCNLP} 2021 Main Conference},
|
31 |
+
year={2021},
|
32 |
+
publisher={Association for Computational Linguistics}
|
33 |
+
}
|
34 |
+
```
|
35 |
+
|
36 |
+
### LICENSE
|
37 |
+
The LICENSE of all the resources are under [CC-BY-NC-4.0](./LICENSE). Thus, they are freely available for academic purpose or individual research, but restricted for commercial use.
|
analogy_questions.py
ADDED
@@ -0,0 +1,93 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
""" python -c "from datasets import load_dataset;load_dataset('.')" """
|
2 |
+
import json
|
3 |
+
from itertools import chain
|
4 |
+
import datasets
|
5 |
+
|
6 |
+
logger = datasets.logging.get_logger(__name__)
|
7 |
+
_DESCRIPTION = """[Analogy Question](https://aclanthology.org/2021.acl-long.280/)"""
|
8 |
+
_NAME = "semeval2012_relational_similarity"
|
9 |
+
_VERSION = "1.0.0"
|
10 |
+
_CITATION = """
|
11 |
+
@inproceedings{ushio-etal-2021-bert,
|
12 |
+
title = "{BERT} is to {NLP} what {A}lex{N}et is to {CV}: Can Pre-Trained Language Models Identify Analogies?",
|
13 |
+
author = "Ushio, Asahi and
|
14 |
+
Espinosa Anke, Luis and
|
15 |
+
Schockaert, Steven and
|
16 |
+
Camacho-Collados, Jose",
|
17 |
+
booktitle = "Proceedings of the 59th Annual Meeting of the Association for Computational Linguistics and the 11th International Joint Conference on Natural Language Processing (Volume 1: Long Papers)",
|
18 |
+
month = aug,
|
19 |
+
year = "2021",
|
20 |
+
address = "Online",
|
21 |
+
publisher = "Association for Computational Linguistics",
|
22 |
+
url = "https://aclanthology.org/2021.acl-long.280",
|
23 |
+
doi = "10.18653/v1/2021.acl-long.280",
|
24 |
+
pages = "3609--3624",
|
25 |
+
abstract = "Analogies play a central role in human commonsense reasoning. The ability to recognize analogies such as {``}eye is to seeing what ear is to hearing{''}, sometimes referred to as analogical proportions, shape how we structure knowledge and understand language. Surprisingly, however, the task of identifying such analogies has not yet received much attention in the language model era. In this paper, we analyze the capabilities of transformer-based language models on this unsupervised task, using benchmarks obtained from educational settings, as well as more commonly used datasets. We find that off-the-shelf language models can identify analogies to a certain extent, but struggle with abstract and complex relations, and results are highly sensitive to model architecture and hyperparameters. Overall the best results were obtained with GPT-2 and RoBERTa, while configurations using BERT were not able to outperform word embedding models. Our results raise important questions for future work about how, and to what extent, pre-trained language models capture knowledge about abstract semantic relations.",
|
26 |
+
}
|
27 |
+
"""
|
28 |
+
_HOME_PAGE = "https://github.com/asahi417/relbert"
|
29 |
+
_URL = f'https://huggingface.co/datasets/relbert/{_NAME}/raw/main/dataset'
|
30 |
+
_URLS = {
|
31 |
+
str(datasets.Split.TEST): {
|
32 |
+
'bats': [f'{_URL}/bats/test.jsonl'],
|
33 |
+
'google': [f'{_URL}/google/test.jsonl'],
|
34 |
+
'sat': [f'{_URL}/sat/test.jsonl'],
|
35 |
+
'u2': [f'{_URL}/u2/test.jsonl'],
|
36 |
+
'u4': [f'{_URL}/u4/test.jsonl']
|
37 |
+
},
|
38 |
+
str(datasets.Split.VALIDATION): {
|
39 |
+
'bats': [f'{_URL}/bats/valid.jsonl'],
|
40 |
+
'google': [f'{_URL}/google/valid.jsonl'],
|
41 |
+
'sat': [f'{_URL}/sat/valid.jsonl'],
|
42 |
+
'u2': [f'{_URL}/u2/valid.jsonl'],
|
43 |
+
'u4': [f'{_URL}/u4/valid.jsonl']
|
44 |
+
}
|
45 |
+
}
|
46 |
+
|
47 |
+
_DATASET = list(_URLS[list(_URLS.keys())[0]].keys())
|
48 |
+
|
49 |
+
|
50 |
+
class AnalogyQuestionConfig(datasets.BuilderConfig):
|
51 |
+
"""BuilderConfig"""
|
52 |
+
|
53 |
+
def __init__(self, **kwargs):
|
54 |
+
"""BuilderConfig.
|
55 |
+
Args:
|
56 |
+
**kwargs: keyword arguments forwarded to super.
|
57 |
+
"""
|
58 |
+
super(AnalogyQuestionConfig, self).__init__(**kwargs)
|
59 |
+
|
60 |
+
|
61 |
+
class AnalogyQuestion(datasets.GeneratorBasedBuilder):
|
62 |
+
|
63 |
+
BUILDER_CONFIGS = [AnalogyQuestionConfig(name=i, description=f"Dataset {i}") for i in sorted(_DATASET)]
|
64 |
+
|
65 |
+
def _info(self):
|
66 |
+
return datasets.DatasetInfo(
|
67 |
+
description=_DESCRIPTION,
|
68 |
+
features=datasets.Features(
|
69 |
+
{
|
70 |
+
"stem": datasets.Sequence(datasets.Value("string")),
|
71 |
+
"answer": datasets.Value("int32"),
|
72 |
+
"choice": datasets.Sequence(datasets.Sequence(datasets.Value("string"))),
|
73 |
+
"prefix": datasets.Value("string")
|
74 |
+
}
|
75 |
+
),
|
76 |
+
supervised_keys=None,
|
77 |
+
homepage=_HOME_PAGE
|
78 |
+
)
|
79 |
+
|
80 |
+
def _split_generators(self, dl_manager):
|
81 |
+
downloaded_file = dl_manager.download_and_extract({k: v[self.config.name] for k, v in _URLS.items()})
|
82 |
+
return [datasets.SplitGenerator(name=k, gen_kwargs={"filepaths": downloaded_file[k]}) for k in _URLS.keys()]
|
83 |
+
|
84 |
+
def _generate_examples(self, filepaths):
|
85 |
+
_key = 0
|
86 |
+
for filepath in filepaths:
|
87 |
+
logger.info("generating examples from = %s", filepath)
|
88 |
+
with open(filepath, encoding="utf-8") as f:
|
89 |
+
_list = [i for i in f.read().split('\n') if len(i) > 0]
|
90 |
+
for i in _list:
|
91 |
+
data = json.loads(i)
|
92 |
+
yield _key, data
|
93 |
+
_key += 1
|
dataset/bats/test.jsonl
ADDED
The diff for this file is too large to render.
See raw diff
|
|
dataset/bats/valid.jsonl
ADDED
@@ -0,0 +1,199 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{"stem": ["raphael", "painter"], "answer": 2, "choice": [["andersen", "plato"], ["reading", "berkshire"], ["marx", "philosopher"], ["tolstoi", "edison"]], "prefix": "./cache/BATS_3.0/3_Encyclopedic_semantics/E05 [name - occupation].txt"}
|
2 |
+
{"stem": ["plato", "philosopher"], "answer": 0, "choice": [["schwarzenegger", "actor"], ["salford", "manchester"], ["maxwell", "truman"], ["shakespeare", "jolie"]], "prefix": "./cache/BATS_3.0/3_Encyclopedic_semantics/E05 [name - occupation].txt"}
|
3 |
+
{"stem": ["andersen", "writer"], "answer": 3, "choice": [["pascal", "jolie"], ["schwarzenegger", "pacino"], ["stallion", "mare"], ["michelangelo", "sculptor"]], "prefix": "./cache/BATS_3.0/3_Encyclopedic_semantics/E05 [name - occupation].txt"}
|
4 |
+
{"stem": ["depp", "actor"], "answer": 0, "choice": [["rembrandt", "painter"], ["shakespeare", "dante"], ["rousseau", "dante"], ["parsley", "green"]], "prefix": "./cache/BATS_3.0/3_Encyclopedic_semantics/E05 [name - occupation].txt"}
|
5 |
+
{"stem": ["goethe", "poet"], "answer": 3, "choice": [["maxwell", "jolie"], ["fox", "den"], ["depp", "spinoza"], ["pacino", "actor"]], "prefix": "./cache/BATS_3.0/3_Encyclopedic_semantics/E05 [name - occupation].txt"}
|
6 |
+
{"stem": ["unique", "uniquely"], "answer": 0, "choice": [["historical", "historically"], ["immediate", "popular"], ["randomize", "randomization"], ["clinical", "rare"]], "prefix": "./cache/BATS_3.0/2_Derivational_morphology/D03 [adj+ly_reg].txt"}
|
7 |
+
{"stem": ["different", "differently"], "answer": 1, "choice": [["significant", "interesting"], ["subsequent", "subsequently"], ["locate", "relocate"], ["similar", "sexual"]], "prefix": "./cache/BATS_3.0/2_Derivational_morphology/D03 [adj+ly_reg].txt"}
|
8 |
+
{"stem": ["huge", "hugely"], "answer": 2, "choice": [["similar", "popular"], ["define", "definable"], ["subsequent", "subsequently"], ["famous", "previous"]], "prefix": "./cache/BATS_3.0/2_Derivational_morphology/D03 [adj+ly_reg].txt"}
|
9 |
+
{"stem": ["sexual", "sexually"], "answer": 2, "choice": [["extensive", "strong"], ["legal", "actual"], ["popular", "popularly"], ["configure", "configuration"]], "prefix": "./cache/BATS_3.0/2_Derivational_morphology/D03 [adj+ly_reg].txt"}
|
10 |
+
{"stem": ["international", "internationally"], "answer": 0, "choice": [["huge", "hugely"], ["endorse", "endorsement"], ["mental", "political"], ["digital", "typical"]], "prefix": "./cache/BATS_3.0/2_Derivational_morphology/D03 [adj+ly_reg].txt"}
|
11 |
+
{"stem": ["hieroglyph", "hieroglyphic"], "answer": 1, "choice": [["lazy", "style"], ["lad", "chap"], ["skirt", "clothes"], ["dollars", "organized"]], "prefix": "./cache/BATS_3.0/4_Lexicographic_semantics/L08 [synonyms - exact].txt"}
|
12 |
+
{"stem": ["murder", "slaying"], "answer": 0, "choice": [["new", "modern"], ["father", "baby"], ["sweets", "baby"], ["desk", "wood"]], "prefix": "./cache/BATS_3.0/4_Lexicographic_semantics/L08 [synonyms - exact].txt"}
|
13 |
+
{"stem": ["sofa", "couch"], "answer": 3, "choice": [["clear", "vague"], ["sweets", "mesh"], ["vocabulary", "organized"], ["style", "manner"]], "prefix": "./cache/BATS_3.0/4_Lexicographic_semantics/L08 [synonyms - exact].txt"}
|
14 |
+
{"stem": ["lady", "madam"], "answer": 3, "choice": [["necklace", "jewelry"], ["railway", "rock"], ["father", "villain"], ["list", "listing"]], "prefix": "./cache/BATS_3.0/4_Lexicographic_semantics/L08 [synonyms - exact].txt"}
|
15 |
+
{"stem": ["mesh", "gauze"], "answer": 1, "choice": [["homogeneous", "portion"], ["bicycle", "bike"], ["college", "university"], ["father", "style"]], "prefix": "./cache/BATS_3.0/4_Lexicographic_semantics/L08 [synonyms - exact].txt"}
|
16 |
+
{"stem": ["simple", "difficult"], "answer": 3, "choice": [["intelligent", "clever"], ["happy", "dry"], ["lumpy", "clean"], ["fat", "thin"]], "prefix": "./cache/BATS_3.0/4_Lexicographic_semantics/L09 [antonyms - gradable].txt"}
|
17 |
+
{"stem": ["noisy", "silent"], "answer": 1, "choice": [["skirt", "clothes"], ["short", "tall"], ["concerned", "long"], ["fat", "familiar"]], "prefix": "./cache/BATS_3.0/4_Lexicographic_semantics/L09 [antonyms - gradable].txt"}
|
18 |
+
{"stem": ["dangerous", "safe"], "answer": 1, "choice": [["bread", "flour"], ["close", "distant"], ["hard", "normal"], ["gaseous", "noisy"]], "prefix": "./cache/BATS_3.0/4_Lexicographic_semantics/L09 [antonyms - gradable].txt"}
|
19 |
+
{"stem": ["familiar", "unfamiliar"], "answer": 0, "choice": [["competent", "incompetent"], ["gramm", "milligram"], ["energetic", "sweet"], ["fat", "clean"]], "prefix": "./cache/BATS_3.0/4_Lexicographic_semantics/L09 [antonyms - gradable].txt"}
|
20 |
+
{"stem": ["big", "small"], "answer": 1, "choice": [["dangerous", "dry"], ["decisive", "hesitating"], ["cow", "herd"], ["pale", "young"]], "prefix": "./cache/BATS_3.0/4_Lexicographic_semantics/L09 [antonyms - gradable].txt"}
|
21 |
+
{"stem": ["poem", "stanza"], "answer": 0, "choice": [["staircase", "step"], ["table", "church"], ["grapefruit", "citrus"], ["deer", "church"]], "prefix": "./cache/BATS_3.0/4_Lexicographic_semantics/L06 [meronyms - part].txt"}
|
22 |
+
{"stem": ["bird", "feathers"], "answer": 2, "choice": [["teapot", "torso"], ["dress", "clothes"], ["day", "hour"], ["railcar", "church"]], "prefix": "./cache/BATS_3.0/4_Lexicographic_semantics/L06 [meronyms - part].txt"}
|
23 |
+
{"stem": ["tonne", "kilogram"], "answer": 1, "choice": [["pub", "telephone"], ["shilling", "pence"], ["dress", "castle"], ["drop", "lift"]], "prefix": "./cache/BATS_3.0/4_Lexicographic_semantics/L06 [meronyms - part].txt"}
|
24 |
+
{"stem": ["academia", "college"], "answer": 0, "choice": [["typewriter", "keyboard"], ["day", "flower"], ["sonata", "movie"], ["candy", "lollipop"]], "prefix": "./cache/BATS_3.0/4_Lexicographic_semantics/L06 [meronyms - part].txt"}
|
25 |
+
{"stem": ["comb", "teeth"], "answer": 2, "choice": [["phone", "telephone"], ["pub", "brush"], ["womb", "cervix"], ["academia", "flower"]], "prefix": "./cache/BATS_3.0/4_Lexicographic_semantics/L06 [meronyms - part].txt"}
|
26 |
+
{"stem": ["imagine", "imagination"], "answer": 0, "choice": [["determine", "determination"], ["assign", "reassign"], ["explore", "realize"], ["characterize", "continue"]], "prefix": "./cache/BATS_3.0/2_Derivational_morphology/D09 [verb+tion_irreg].txt"}
|
27 |
+
{"stem": ["optimize", "optimization"], "answer": 2, "choice": [["compute", "customize"], ["restore", "minimize"], ["deprive", "deprivation"], ["previous", "previously"]], "prefix": "./cache/BATS_3.0/2_Derivational_morphology/D09 [verb+tion_irreg].txt"}
|
28 |
+
{"stem": ["derive", "derivation"], "answer": 0, "choice": [["imagine", "imagination"], ["publish", "publishable"], ["randomize", "illumine"], ["perspire", "examine"]], "prefix": "./cache/BATS_3.0/2_Derivational_morphology/D09 [verb+tion_irreg].txt"}
|
29 |
+
{"stem": ["modernize", "modernization"], "answer": 0, "choice": [["globalize", "globalization"], ["allege", "condense"], ["breath", "breathless"], ["authorize", "reorganize"]], "prefix": "./cache/BATS_3.0/2_Derivational_morphology/D09 [verb+tion_irreg].txt"}
|
30 |
+
{"stem": ["explore", "exploration"], "answer": 0, "choice": [["privatize", "privatization"], ["expire", "inspire"], ["randomize", "continue"], ["meat", "meatless"]], "prefix": "./cache/BATS_3.0/2_Derivational_morphology/D09 [verb+tion_irreg].txt"}
|
31 |
+
{"stem": ["appointing", "appointed"], "answer": 0, "choice": [["adding", "added"], ["spending", "existing"], ["appear", "appeared"], ["developing", "relating"]], "prefix": "./cache/BATS_3.0/1_Inflectional_morphology/I09 [verb_Ving - Ved].txt"}
|
32 |
+
{"stem": ["losing", "lost"], "answer": 0, "choice": [["existing", "existed"], ["establishing", "describing"], ["adding", "deciding"], ["become", "becoming"]], "prefix": "./cache/BATS_3.0/1_Inflectional_morphology/I09 [verb_Ving - Ved].txt"}
|
33 |
+
{"stem": ["developing", "developed"], "answer": 3, "choice": [["sends", "sent"], ["introducing", "remaining"], ["becoming", "performing"], ["locating", "located"]], "prefix": "./cache/BATS_3.0/1_Inflectional_morphology/I09 [verb_Ving - Ved].txt"}
|
34 |
+
{"stem": ["operating", "operated"], "answer": 1, "choice": [["teaching", "considering"], ["receiving", "received"], ["god", "gods"], ["uniting", "containing"]], "prefix": "./cache/BATS_3.0/1_Inflectional_morphology/I09 [verb_Ving - Ved].txt"}
|
35 |
+
{"stem": ["requiring", "required"], "answer": 1, "choice": [["involving", "sending"], ["receiving", "received"], ["expecting", "performing"], ["cute", "cutest"]], "prefix": "./cache/BATS_3.0/1_Inflectional_morphology/I09 [verb_Ving - Ved].txt"}
|
36 |
+
{"stem": ["protect", "protecting"], "answer": 2, "choice": [["remain", "appear"], ["require", "achieve"], ["ensure", "ensuring"], ["continue", "continued"]], "prefix": "./cache/BATS_3.0/1_Inflectional_morphology/I06 [verb_inf - Ving].txt"}
|
37 |
+
{"stem": ["establish", "establishing"], "answer": 3, "choice": [["enjoy", "tell"], ["believing", "believes"], ["require", "prevent"], ["operate", "operating"]], "prefix": "./cache/BATS_3.0/1_Inflectional_morphology/I06 [verb_inf - Ving].txt"}
|
38 |
+
{"stem": ["learn", "learning"], "answer": 2, "choice": [["become", "spend"], ["refer", "happen"], ["consider", "considering"], ["formula", "formulae"]], "prefix": "./cache/BATS_3.0/1_Inflectional_morphology/I06 [verb_inf - Ving].txt"}
|
39 |
+
{"stem": ["happen", "happening"], "answer": 0, "choice": [["operate", "operating"], ["sit", "represent"], ["industry", "industries"], ["refer", "continue"]], "prefix": "./cache/BATS_3.0/1_Inflectional_morphology/I06 [verb_inf - Ving].txt"}
|
40 |
+
{"stem": ["manage", "managing"], "answer": 0, "choice": [["avoid", "avoiding"], ["require", "provide"], ["weak", "weakest"], ["reduce", "prevent"]], "prefix": "./cache/BATS_3.0/1_Inflectional_morphology/I06 [verb_inf - Ving].txt"}
|
41 |
+
{"stem": ["acquire", "reacquire"], "answer": 2, "choice": [["agree", "agreement"], ["interpret", "assure"], ["examine", "reexamine"], ["introduce", "tell"]], "prefix": "./cache/BATS_3.0/2_Derivational_morphology/D06 [re+verb_reg].txt"}
|
42 |
+
{"stem": ["marry", "remarry"], "answer": 2, "choice": [["invest", "apply"], ["decorate", "locate"], ["organize", "reorganize"], ["adjust", "adjustment"]], "prefix": "./cache/BATS_3.0/2_Derivational_morphology/D06 [re+verb_reg].txt"}
|
43 |
+
{"stem": ["investigate", "reinvestigate"], "answer": 2, "choice": [["odor", "odorless"], ["write", "generate"], ["examine", "reexamine"], ["send", "interpret"]], "prefix": "./cache/BATS_3.0/2_Derivational_morphology/D06 [re+verb_reg].txt"}
|
44 |
+
{"stem": ["establish", "reestablish"], "answer": 2, "choice": [["evaluate", "learn"], ["connect", "appear"], ["confirm", "reconfirm"], ["compile", "compilation"]], "prefix": "./cache/BATS_3.0/2_Derivational_morphology/D06 [re+verb_reg].txt"}
|
45 |
+
{"stem": ["submit", "resubmit"], "answer": 3, "choice": [["disagree", "disagreement"], ["assess", "examine"], ["deem", "grow"], ["generate", "regenerate"]], "prefix": "./cache/BATS_3.0/2_Derivational_morphology/D06 [re+verb_reg].txt"}
|
46 |
+
{"stem": ["ask", "beg"], "answer": 1, "choice": [["damp", "snack"], ["pain", "torment"], ["flag", "fabric"], ["angry", "unfortunate"]], "prefix": "./cache/BATS_3.0/4_Lexicographic_semantics/L07 [synonyms - intensity].txt"}
|
47 |
+
{"stem": ["hungry", "starving"], "answer": 3, "choice": [["happy", "sniffles"], ["telephone", "receiver"], ["dinner", "soon"], ["dislike", "hate"]], "prefix": "./cache/BATS_3.0/4_Lexicographic_semantics/L07 [synonyms - intensity].txt"}
|
48 |
+
{"stem": ["sniffles", "pneumonia"], "answer": 0, "choice": [["poorly", "afflicted"], ["tasty", "giggle"], ["table", "wood"], ["indulge", "tired"]], "prefix": "./cache/BATS_3.0/4_Lexicographic_semantics/L07 [synonyms - intensity].txt"}
|
49 |
+
{"stem": ["drizzle", "rain"], "answer": 3, "choice": [["happy", "snack"], ["season", "spring"], ["cat", "faith"], ["tasty", "delicious"]], "prefix": "./cache/BATS_3.0/4_Lexicographic_semantics/L07 [synonyms - intensity].txt"}
|
50 |
+
{"stem": ["well", "flourishing"], "answer": 1, "choice": [["pain", "necessary"], ["indulge", "pamper"], ["nap", "sea"], ["climb", "descend"]], "prefix": "./cache/BATS_3.0/4_Lexicographic_semantics/L07 [synonyms - intensity].txt"}
|
51 |
+
{"stem": ["chairman", "chairwoman"], "answer": 2, "choice": [["father", "bull"], ["crocodile", "river"], ["son", "daughter"], ["brother", "fisherman"]], "prefix": "./cache/BATS_3.0/3_Encyclopedic_semantics/E10 [male - female].txt"}
|
52 |
+
{"stem": ["stallion", "mare"], "answer": 0, "choice": [["prince", "princess"], ["herring", "sea"], ["batman", "husband"], ["boar", "waiter"]], "prefix": "./cache/BATS_3.0/3_Encyclopedic_semantics/E10 [male - female].txt"}
|
53 |
+
{"stem": ["lion", "lioness"], "answer": 0, "choice": [["batman", "batwoman"], ["webmaster", "waiter"], ["rome", "italy"], ["man", "chairman"]], "prefix": "./cache/BATS_3.0/3_Encyclopedic_semantics/E10 [male - female].txt"}
|
54 |
+
{"stem": ["bull", "cow"], "answer": 0, "choice": [["policeman", "policewoman"], ["son", "fisherman"], ["groom", "grandson"], ["tolstoi", "russian"]], "prefix": "./cache/BATS_3.0/3_Encyclopedic_semantics/E10 [male - female].txt"}
|
55 |
+
{"stem": ["nephew", "niece"], "answer": 0, "choice": [["batman", "batwoman"], ["sky", "blue"], ["policeman", "stepfather"], ["poet", "heir"]], "prefix": "./cache/BATS_3.0/3_Encyclopedic_semantics/E10 [male - female].txt"}
|
56 |
+
{"stem": ["computer", "laptop"], "answer": 2, "choice": [["mixer", "car"], ["monument", "memorial"], ["camera", "camcorder"], ["jewelry", "brush"]], "prefix": "./cache/BATS_3.0/4_Lexicographic_semantics/L03 [hyponyms - misc].txt"}
|
57 |
+
{"stem": ["trousers", "jeans"], "answer": 3, "choice": [["rise", "sink"], ["drum", "bed"], ["tool", "brush"], ["weapon", "gun"]], "prefix": "./cache/BATS_3.0/4_Lexicographic_semantics/L03 [hyponyms - misc].txt"}
|
58 |
+
{"stem": ["weapon", "gun"], "answer": 3, "choice": [["flask", "brush"], ["hot", "cold"], ["candy", "jewel"], ["color", "white"]], "prefix": "./cache/BATS_3.0/4_Lexicographic_semantics/L03 [hyponyms - misc].txt"}
|
59 |
+
{"stem": ["citrus", "lemon"], "answer": 3, "choice": [["gun", "seat"], ["dress", "spice"], ["clothing", "fabric"], ["shelf", "bookshelf"]], "prefix": "./cache/BATS_3.0/4_Lexicographic_semantics/L03 [hyponyms - misc].txt"}
|
60 |
+
{"stem": ["poem", "haiku"], "answer": 1, "choice": [["dress", "bed"], ["painting", "watercolor"], ["sofa", "furniture"], ["shirt", "brush"]], "prefix": "./cache/BATS_3.0/4_Lexicographic_semantics/L03 [hyponyms - misc].txt"}
|
61 |
+
{"stem": ["excited", "overexcited"], "answer": 3, "choice": [["sensor", "sensorless"], ["heated", "dressed"], ["qualified", "filled"], ["protective", "overprotective"]], "prefix": "./cache/BATS_3.0/2_Derivational_morphology/D04 [over+adj_reg].txt"}
|
62 |
+
{"stem": ["played", "overplayed"], "answer": 1, "choice": [["booked", "loaded"], ["cooked", "overcooked"], ["stretched", "represented"], ["visualize", "visualization"]], "prefix": "./cache/BATS_3.0/2_Derivational_morphology/D04 [over+adj_reg].txt"}
|
63 |
+
{"stem": ["protected", "overprotected"], "answer": 2, "choice": [["exposed", "done"], ["powered", "done"], ["sized", "oversized"], ["sustain", "sustainable"]], "prefix": "./cache/BATS_3.0/2_Derivational_morphology/D04 [over+adj_reg].txt"}
|
64 |
+
{"stem": ["taken", "overtaken"], "answer": 2, "choice": [["qualified", "crowded"], ["legal", "legally"], ["protected", "overprotected"], ["stretched", "heard"]], "prefix": "./cache/BATS_3.0/2_Derivational_morphology/D04 [over+adj_reg].txt"}
|
65 |
+
{"stem": ["dressed", "overdressed"], "answer": 0, "choice": [["spent", "overspent"], ["protected", "simplified"], ["stocked", "done"], ["serious", "seriousness"]], "prefix": "./cache/BATS_3.0/2_Derivational_morphology/D04 [over+adj_reg].txt"}
|
66 |
+
{"stem": ["costly", "costlier"], "answer": 3, "choice": [["dumb", "noisy"], ["clever", "strong"], ["represent", "represents"], ["subtle", "subtler"]], "prefix": "./cache/BATS_3.0/1_Inflectional_morphology/I03 [adj - comparative].txt"}
|
67 |
+
{"stem": ["healthy", "healthier"], "answer": 0, "choice": [["risky", "riskier"], ["dense", "hot"], ["dumb", "pure"], ["month", "months"]], "prefix": "./cache/BATS_3.0/1_Inflectional_morphology/I03 [adj - comparative].txt"}
|
68 |
+
{"stem": ["sexy", "sexier"], "answer": 1, "choice": [["lucky", "cute"], ["hungry", "hungrier"], ["manage", "managed"], ["huge", "cute"]], "prefix": "./cache/BATS_3.0/1_Inflectional_morphology/I03 [adj - comparative].txt"}
|
69 |
+
{"stem": ["lengthy", "lengthier"], "answer": 2, "choice": [["costly", "vast"], ["angry", "mad"], ["tricky", "trickier"], ["failing", "failed"]], "prefix": "./cache/BATS_3.0/1_Inflectional_morphology/I03 [adj - comparative].txt"}
|
70 |
+
{"stem": ["noisy", "noisier"], "answer": 1, "choice": [["lucky", "sad"], ["scary", "scarier"], ["harsh", "hot"], ["send", "sent"]], "prefix": "./cache/BATS_3.0/1_Inflectional_morphology/I03 [adj - comparative].txt"}
|
71 |
+
{"stem": ["manages", "managed"], "answer": 1, "choice": [["asks", "describes"], ["suggests", "suggested"], ["identify", "identified"], ["follows", "replaces"]], "prefix": "./cache/BATS_3.0/1_Inflectional_morphology/I10 [verb_3pSg - Ved].txt"}
|
72 |
+
{"stem": ["establishes", "established"], "answer": 1, "choice": [["manages", "requires"], ["considers", "considered"], ["happy", "happiest"], ["involves", "publishes"]], "prefix": "./cache/BATS_3.0/1_Inflectional_morphology/I10 [verb_3pSg - Ved].txt"}
|
73 |
+
{"stem": ["contains", "contained"], "answer": 0, "choice": [["sends", "sent"], ["death", "deaths"], ["relates", "tells"], ["provides", "refers"]], "prefix": "./cache/BATS_3.0/1_Inflectional_morphology/I10 [verb_3pSg - Ved].txt"}
|
74 |
+
{"stem": ["describes", "described"], "answer": 0, "choice": [["locates", "located"], ["sit", "sitting"], ["appears", "continues"], ["follows", "creates"]], "prefix": "./cache/BATS_3.0/1_Inflectional_morphology/I10 [verb_3pSg - Ved].txt"}
|
75 |
+
{"stem": ["decides", "decided"], "answer": 2, "choice": [["consists", "describes"], ["apply", "applies"], ["becomes", "became"], ["manages", "includes"]], "prefix": "./cache/BATS_3.0/1_Inflectional_morphology/I10 [verb_3pSg - Ved].txt"}
|
76 |
+
{"stem": ["success", "successes"], "answer": 1, "choice": [["safety", "loss"], ["energy", "energies"], ["subtle", "subtlest"], ["facility", "security"]], "prefix": "./cache/BATS_3.0/1_Inflectional_morphology/I02 [noun - plural_irreg].txt"}
|
77 |
+
{"stem": ["agency", "agencies"], "answer": 3, "choice": [["property", "wife"], ["strategy", "loss"], ["huge", "huger"], ["history", "histories"]], "prefix": "./cache/BATS_3.0/1_Inflectional_morphology/I02 [noun - plural_irreg].txt"}
|
78 |
+
{"stem": ["datum", "data"], "answer": 0, "choice": [["energy", "energies"], ["library", "category"], ["library", "activity"], ["apply", "applying"]], "prefix": "./cache/BATS_3.0/1_Inflectional_morphology/I02 [noun - plural_irreg].txt"}
|
79 |
+
{"stem": ["academy", "academies"], "answer": 3, "choice": [["safety", "army"], ["river", "rivers"], ["duty", "wife"], ["responsibility", "responsibilities"]], "prefix": "./cache/BATS_3.0/1_Inflectional_morphology/I02 [noun - plural_irreg].txt"}
|
80 |
+
{"stem": ["discover", "discovered"], "answer": 1, "choice": [["weird", "weirder"], ["seem", "seemed"], ["develop", "lose"], ["introduce", "include"]], "prefix": "./cache/BATS_3.0/1_Inflectional_morphology/I07 [verb_inf - Ved].txt"}
|
81 |
+
{"stem": ["add", "added"], "answer": 1, "choice": [["property", "properties"], ["expect", "expected"], ["receive", "apply"], ["develop", "relate"]], "prefix": "./cache/BATS_3.0/1_Inflectional_morphology/I07 [verb_inf - Ved].txt"}
|
82 |
+
{"stem": ["unite", "united"], "answer": 3, "choice": [["college", "colleges"], ["publish", "provide"], ["introduce", "appear"], ["ask", "asked"]], "prefix": "./cache/BATS_3.0/1_Inflectional_morphology/I07 [verb_inf - Ved].txt"}
|
83 |
+
{"stem": ["believe", "believed"], "answer": 3, "choice": [["believe", "believing"], ["refer", "consider"], ["allow", "unite"], ["add", "added"]], "prefix": "./cache/BATS_3.0/1_Inflectional_morphology/I07 [verb_inf - Ved].txt"}
|
84 |
+
{"stem": ["publish", "published"], "answer": 3, "choice": [["send", "continue"], ["identify", "follow"], ["protect", "protecting"], ["marry", "married"]], "prefix": "./cache/BATS_3.0/1_Inflectional_morphology/I07 [verb_inf - Ved].txt"}
|
85 |
+
{"stem": ["sapphire", "blue"], "answer": 0, "choice": [["peony", "red"], ["darwin", "naturalist"], ["fridge", "cabbage"], ["fridge", "crow"]], "prefix": "./cache/BATS_3.0/3_Encyclopedic_semantics/E09 [things - color].txt"}
|
86 |
+
{"stem": ["rose", "red"], "answer": 0, "choice": [["sapphire", "blue"], ["celery", "pepper"], ["jolie", "actress"], ["coffee", "snow"]], "prefix": "./cache/BATS_3.0/3_Encyclopedic_semantics/E09 [things - color].txt"}
|
87 |
+
{"stem": ["toothpaste", "white"], "answer": 1, "choice": [["grass", "tomato"], ["coffee", "black"], ["hanoi", "vietnam"], ["parsley", "blackboard"]], "prefix": "./cache/BATS_3.0/3_Encyclopedic_semantics/E09 [things - color].txt"}
|
88 |
+
{"stem": ["paper", "white"], "answer": 2, "choice": [["coffee", "sky"], ["broccoli", "pepper"], ["peony", "red"], ["gorilla", "grunt"]], "prefix": "./cache/BATS_3.0/3_Encyclopedic_semantics/E09 [things - color].txt"}
|
89 |
+
{"stem": ["fridge", "white"], "answer": 0, "choice": [["blood", "red"], ["spinach", "peony"], ["emerald", "sky"], ["strauss", "composer"]], "prefix": "./cache/BATS_3.0/3_Encyclopedic_semantics/E09 [things - color].txt"}
|
90 |
+
{"stem": ["successful", "unsuccessful"], "answer": 3, "choice": [["comfortable", "popular"], ["used", "desirable"], ["guilt", "guiltless"], ["fortunate", "unfortunate"]], "prefix": "./cache/BATS_3.0/2_Derivational_morphology/D02 [un+adj_reg].txt"}
|
91 |
+
{"stem": ["forgettable", "unforgettable"], "answer": 3, "choice": [["predictable", "affected"], ["biased", "interrupted"], ["install", "reinstall"], ["changed", "unchanged"]], "prefix": "./cache/BATS_3.0/2_Derivational_morphology/D02 [un+adj_reg].txt"}
|
92 |
+
{"stem": ["avoidable", "unavoidable"], "answer": 0, "choice": [["comfortable", "uncomfortable"], ["finished", "wanted"], ["modernize", "modernization"], ["noticed", "usual"]], "prefix": "./cache/BATS_3.0/2_Derivational_morphology/D02 [un+adj_reg].txt"}
|
93 |
+
{"stem": ["sustainable", "unsustainable"], "answer": 1, "choice": [["used", "related"], ["changed", "unchanged"], ["charged", "overcharged"], ["successful", "believable"]], "prefix": "./cache/BATS_3.0/2_Derivational_morphology/D02 [un+adj_reg].txt"}
|
94 |
+
{"stem": ["restricted", "unrestricted"], "answer": 0, "choice": [["satisfactory", "unsatisfactory"], ["reliable", "published"], ["entertain", "entertainer"], ["suitable", "forgettable"]], "prefix": "./cache/BATS_3.0/2_Derivational_morphology/D02 [un+adj_reg].txt"}
|
95 |
+
{"stem": ["photo", "picture"], "answer": 0, "choice": [["diary", "journal"], ["desk", "lotion"], ["desk", "juicer"], ["comb", "teeth"]], "prefix": "./cache/BATS_3.0/4_Lexicographic_semantics/L02 [hypernyms - misc].txt"}
|
96 |
+
{"stem": ["pastry", "food"], "answer": 0, "choice": [["blender", "appliance"], ["sidewalk", "gasoline"], ["staircase", "step"], ["denim", "diary"]], "prefix": "./cache/BATS_3.0/4_Lexicographic_semantics/L02 [hypernyms - misc].txt"}
|
97 |
+
{"stem": ["gasoline", "fuel"], "answer": 2, "choice": [["warm", "cool"], ["perfume", "notebook"], ["shirt", "clothes"], ["tv", "toothbrush"]], "prefix": "./cache/BATS_3.0/4_Lexicographic_semantics/L02 [hypernyms - misc].txt"}
|
98 |
+
{"stem": ["toaster", "appliance"], "answer": 1, "choice": [["jacket", "jeans"], ["perfume", "toiletry"], ["armchair", "wristband"], ["nomad", "horde"]], "prefix": "./cache/BATS_3.0/4_Lexicographic_semantics/L02 [hypernyms - misc].txt"}
|
99 |
+
{"stem": ["sweater", "clothes"], "answer": 3, "choice": [["necklace", "sofa"], ["computer", "croissant"], ["boots", "leather"], ["deodorant", "toiletry"]], "prefix": "./cache/BATS_3.0/4_Lexicographic_semantics/L02 [hypernyms - misc].txt"}
|
100 |
+
{"stem": ["book", "library"], "answer": 3, "choice": [["singer", "spouse"], ["shore", "coast"], ["kitten", "spouse"], ["antelope", "herd"]], "prefix": "./cache/BATS_3.0/4_Lexicographic_semantics/L05 [meronyms - member].txt"}
|
101 |
+
{"stem": ["employee", "staff"], "answer": 1, "choice": [["policeman", "fish"], ["member", "club"], ["identical", "same"], ["calf", "spouse"]], "prefix": "./cache/BATS_3.0/4_Lexicographic_semantics/L05 [meronyms - member].txt"}
|
102 |
+
{"stem": ["goose", "gaggle"], "answer": 1, "choice": [["gorilla", "primate"], ["car", "train"], ["listener", "musician"], ["soldier", "nomad"]], "prefix": "./cache/BATS_3.0/4_Lexicographic_semantics/L05 [meronyms - member].txt"}
|
103 |
+
{"stem": ["kitten", "litter"], "answer": 1, "choice": [["secretary", "juror"], ["listener", "audience"], ["lion", "antelope"], ["desk", "furniture"]], "prefix": "./cache/BATS_3.0/4_Lexicographic_semantics/L05 [meronyms - member].txt"}
|
104 |
+
{"stem": ["state", "country"], "answer": 1, "choice": [["mouse", "rodent"], ["galaxy", "universe"], ["word", "sheep"], ["player", "fish"]], "prefix": "./cache/BATS_3.0/4_Lexicographic_semantics/L05 [meronyms - member].txt"}
|
105 |
+
{"stem": ["appear", "appears"], "answer": 0, "choice": [["believe", "believes"], ["consist", "achieve"], ["representing", "represents"], ["explain", "provide"]], "prefix": "./cache/BATS_3.0/1_Inflectional_morphology/I05 [verb_inf - 3pSg].txt"}
|
106 |
+
{"stem": ["describe", "describes"], "answer": 0, "choice": [["continue", "continues"], ["seem", "learn"], ["enjoy", "enjoyed"], ["add", "apply"]], "prefix": "./cache/BATS_3.0/1_Inflectional_morphology/I05 [verb_inf - 3pSg].txt"}
|
107 |
+
{"stem": ["follow", "follows"], "answer": 2, "choice": [["send", "prevent"], ["receive", "represent"], ["consist", "consists"], ["happy", "happiest"]], "prefix": "./cache/BATS_3.0/1_Inflectional_morphology/I05 [verb_inf - 3pSg].txt"}
|
108 |
+
{"stem": ["involve", "involves"], "answer": 2, "choice": [["rude", "rudest"], ["receive", "happen"], ["describe", "describes"], ["agree", "occur"]], "prefix": "./cache/BATS_3.0/1_Inflectional_morphology/I05 [verb_inf - 3pSg].txt"}
|
109 |
+
{"stem": ["remember", "remembers"], "answer": 1, "choice": [["describe", "tell"], ["ensure", "ensures"], ["develop", "promote"], ["energy", "energies"]], "prefix": "./cache/BATS_3.0/1_Inflectional_morphology/I05 [verb_inf - 3pSg].txt"}
|
110 |
+
{"stem": ["promoting", "promotes"], "answer": 3, "choice": [["teaching", "requiring"], ["advertising", "asking"], ["responsibility", "responsibilities"], ["spending", "spends"]], "prefix": "./cache/BATS_3.0/1_Inflectional_morphology/I08 [verb_Ving - 3pSg].txt"}
|
111 |
+
{"stem": ["operating", "operates"], "answer": 1, "choice": [["hearing", "applying"], ["allowing", "allows"], ["tell", "told"], ["understanding", "including"]], "prefix": "./cache/BATS_3.0/1_Inflectional_morphology/I08 [verb_Ving - 3pSg].txt"}
|
112 |
+
{"stem": ["existing", "exists"], "answer": 1, "choice": [["seeming", "enabling"], ["creating", "creates"], ["operates", "operated"], ["involving", "receiving"]], "prefix": "./cache/BATS_3.0/1_Inflectional_morphology/I08 [verb_Ving - 3pSg].txt"}
|
113 |
+
{"stem": ["adding", "adds"], "answer": 3, "choice": [["representing", "losing"], ["tiny", "tinier"], ["following", "occurring"], ["becoming", "becomes"]], "prefix": "./cache/BATS_3.0/1_Inflectional_morphology/I08 [verb_Ving - 3pSg].txt"}
|
114 |
+
{"stem": ["appearing", "appears"], "answer": 0, "choice": [["developing", "develops"], ["representing", "providing"], ["occur", "occurs"], ["continuing", "enabling"]], "prefix": "./cache/BATS_3.0/1_Inflectional_morphology/I08 [verb_Ving - 3pSg].txt"}
|
115 |
+
{"stem": ["mad", "madness"], "answer": 1, "choice": [["consult", "consulation"], ["creative", "creativeness"], ["righteous", "distinct"], ["devoted", "serious"]], "prefix": "./cache/BATS_3.0/2_Derivational_morphology/D05 [adj+ness_reg].txt"}
|
116 |
+
{"stem": ["cheap", "cheapness"], "answer": 1, "choice": [["satisfactory", "unsatisfactory"], ["odd", "oddness"], ["righteous", "interesting"], ["amazing", "impressive"]], "prefix": "./cache/BATS_3.0/2_Derivational_morphology/D05 [adj+ness_reg].txt"}
|
117 |
+
{"stem": ["massive", "massiveness"], "answer": 2, "choice": [["cheap", "interesting"], ["broken", "hot"], ["dangerous", "dangerousness"], ["passion", "passionless"]], "prefix": "./cache/BATS_3.0/2_Derivational_morphology/D05 [adj+ness_reg].txt"}
|
118 |
+
{"stem": ["huge", "hugeness"], "answer": 1, "choice": [["conscious", "unconscious"], ["happy", "happiness"], ["unique", "sacred"], ["unique", "situated"]], "prefix": "./cache/BATS_3.0/2_Derivational_morphology/D05 [adj+ness_reg].txt"}
|
119 |
+
{"stem": ["competitive", "competitiveness"], "answer": 3, "choice": [["examine", "examination"], ["amazing", "distinctive"], ["massive", "same"], ["situated", "situatedness"]], "prefix": "./cache/BATS_3.0/2_Derivational_morphology/D05 [adj+ness_reg].txt"}
|
120 |
+
{"stem": ["hot", "hottest"], "answer": 3, "choice": [["consider", "considers"], ["vague", "pure"], ["costly", "rude"], ["sunny", "sunniest"]], "prefix": "./cache/BATS_3.0/1_Inflectional_morphology/I04 [adj - superlative].txt"}
|
121 |
+
{"stem": ["strict", "strictest"], "answer": 2, "choice": [["cruel", "ugly"], ["sunny", "happy"], ["tricky", "trickiest"], ["prevent", "prevents"]], "prefix": "./cache/BATS_3.0/1_Inflectional_morphology/I04 [adj - superlative].txt"}
|
122 |
+
{"stem": ["huge", "hugest"], "answer": 3, "choice": [["weak", "hungry"], ["lengthy", "cute"], ["announce", "announced"], ["nasty", "nastiest"]], "prefix": "./cache/BATS_3.0/1_Inflectional_morphology/I04 [adj - superlative].txt"}
|
123 |
+
{"stem": ["lengthy", "lengthiest"], "answer": 1, "choice": [["clever", "subtle"], ["healthy", "healthiest"], ["tiny", "ugly"], ["agrees", "agreed"]], "prefix": "./cache/BATS_3.0/1_Inflectional_morphology/I04 [adj - superlative].txt"}
|
124 |
+
{"stem": ["happy", "happiest"], "answer": 1, "choice": [["lengthy", "ugly"], ["rude", "rudest"], ["harsh", "fierce"], ["uniting", "united"]], "prefix": "./cache/BATS_3.0/1_Inflectional_morphology/I04 [adj - superlative].txt"}
|
125 |
+
{"stem": ["cocktail", "alcohol"], "answer": 3, "choice": [["wig", "pastry"], ["body", "roof"], ["sincere", "insincere"], ["bread", "flour"]], "prefix": "./cache/BATS_3.0/4_Lexicographic_semantics/L04 [meronyms - substance].txt"}
|
126 |
+
{"stem": ["beach", "sand"], "answer": 1, "choice": [["dangerous", "safe"], ["cocktail", "alcohol"], ["glass", "jam"], ["omelette", "wine"]], "prefix": "./cache/BATS_3.0/4_Lexicographic_semantics/L04 [meronyms - substance].txt"}
|
127 |
+
{"stem": ["penny", "metal"], "answer": 3, "choice": [["bag", "roof"], ["camera", "camcorder"], ["concrete", "bronze"], ["bread", "flour"]], "prefix": "./cache/BATS_3.0/4_Lexicographic_semantics/L04 [meronyms - substance].txt"}
|
128 |
+
{"stem": ["candy", "sugar"], "answer": 0, "choice": [["wig", "hair"], ["ocean", "atmosphere"], ["cry", "scream"], ["house", "roof"]], "prefix": "./cache/BATS_3.0/4_Lexicographic_semantics/L04 [meronyms - substance].txt"}
|
129 |
+
{"stem": ["wall", "cement"], "answer": 3, "choice": [["house", "bottle"], ["bowl", "sea"], ["beetle", "insect"], ["mirror", "glass"]], "prefix": "./cache/BATS_3.0/4_Lexicographic_semantics/L04 [meronyms - substance].txt"}
|
130 |
+
{"stem": ["hound", "bark"], "answer": 0, "choice": [["leopard", "growl"], ["duck", "crow"], ["dhaka", "bangladesh"], ["ferret", "bear"]], "prefix": "./cache/BATS_3.0/3_Encyclopedic_semantics/E07 [animal - sound].txt"}
|
131 |
+
{"stem": ["pig", "oink"], "answer": 3, "choice": [["mouse", "bear"], ["balzac", "novelist"], ["chimpanzee", "goat"], ["horse", "neigh"]], "prefix": "./cache/BATS_3.0/3_Encyclopedic_semantics/E07 [animal - sound].txt"}
|
132 |
+
{"stem": ["dog", "bark"], "answer": 1, "choice": [["amman", "jordan"], ["donkey", "bray"], ["cricket", "pig"], ["snake", "monkey"]], "prefix": "./cache/BATS_3.0/3_Encyclopedic_semantics/E07 [animal - sound].txt"}
|
133 |
+
{"stem": ["sheep", "baa"], "answer": 3, "choice": [["wolf", "den"], ["dog", "monkey"], ["rat", "cat"], ["alpaca", "bray"]], "prefix": "./cache/BATS_3.0/3_Encyclopedic_semantics/E07 [animal - sound].txt"}
|
134 |
+
{"stem": ["tiger", "growl"], "answer": 1, "choice": [["turkey", "crow"], ["songbird", "chirrup"], ["deer", "magpie"], ["preston", "lancashire"]], "prefix": "./cache/BATS_3.0/3_Encyclopedic_semantics/E07 [animal - sound].txt"}
|
135 |
+
{"stem": ["buffalo", "calf"], "answer": 3, "choice": [["murderer", "murderess"], ["deer", "mink"], ["cat", "beaver"], ["sheep", "lamb"]], "prefix": "./cache/BATS_3.0/3_Encyclopedic_semantics/E06 [animal - young].txt"}
|
136 |
+
{"stem": ["monkey", "infant"], "answer": 3, "choice": [["rousseau", "writer"], ["herring", "ape"], ["cat", "pig"], ["beetle", "larva"]], "prefix": "./cache/BATS_3.0/3_Encyclopedic_semantics/E06 [animal - young].txt"}
|
137 |
+
{"stem": ["fox", "cub"], "answer": 2, "choice": [["nottingham", "nottinghamshire"], ["ox", "horse"], ["cicada", "nymph"], ["weasel", "bee"]], "prefix": "./cache/BATS_3.0/3_Encyclopedic_semantics/E06 [animal - young].txt"}
|
138 |
+
{"stem": ["shark", "cub"], "answer": 0, "choice": [["goat", "kid"], ["chimpanzee", "muskrat"], ["sheffield", "yorkshire"], ["weasel", "cicada"]], "prefix": "./cache/BATS_3.0/3_Encyclopedic_semantics/E06 [animal - young].txt"}
|
139 |
+
{"stem": ["muskrat", "kit"], "answer": 3, "choice": [["southampton", "hampshire"], ["fly", "monkey"], ["deer", "bee"], ["wolf", "cub"]], "prefix": "./cache/BATS_3.0/3_Encyclopedic_semantics/E06 [animal - young].txt"}
|
140 |
+
{"stem": ["heir", "heirless"], "answer": 1, "choice": [["meat", "thought"], ["ego", "egoless"], ["law", "money"], ["amuse", "amusement"]], "prefix": "./cache/BATS_3.0/2_Derivational_morphology/D01 [noun+less_reg].txt"}
|
141 |
+
{"stem": ["wit", "witless"], "answer": 0, "choice": [["art", "artless"], ["defence", "penny"], ["hot", "hotness"], ["remorse", "goal"]], "prefix": "./cache/BATS_3.0/2_Derivational_morphology/D01 [noun+less_reg].txt"}
|
142 |
+
{"stem": ["expression", "expressionless"], "answer": 0, "choice": [["defence", "defenceless"], ["law", "leg"], ["exposed", "overexposed"], ["odor", "tooth"]], "prefix": "./cache/BATS_3.0/2_Derivational_morphology/D01 [noun+less_reg].txt"}
|
143 |
+
{"stem": ["art", "artless"], "answer": 1, "choice": [["arm", "faith"], ["ego", "egoless"], ["meat", "sensor"], ["dangerous", "dangerousness"]], "prefix": "./cache/BATS_3.0/2_Derivational_morphology/D01 [noun+less_reg].txt"}
|
144 |
+
{"stem": ["law", "lawless"], "answer": 2, "choice": [["decided", "decidedly"], ["carbon", "leg"], ["life", "lifeless"], ["carbon", "passion"]], "prefix": "./cache/BATS_3.0/2_Derivational_morphology/D01 [noun+less_reg].txt"}
|
145 |
+
{"stem": ["role", "roles"], "answer": 2, "choice": [["night", "car"], ["member", "river"], ["town", "towns"], ["angry", "angriest"]], "prefix": "./cache/BATS_3.0/1_Inflectional_morphology/I01 [noun - plural_reg].txt"}
|
146 |
+
{"stem": ["office", "offices"], "answer": 3, "choice": [["night", "friend"], ["costly", "costliest"], ["god", "song"], ["role", "roles"]], "prefix": "./cache/BATS_3.0/1_Inflectional_morphology/I01 [noun - plural_reg].txt"}
|
147 |
+
{"stem": ["college", "colleges"], "answer": 2, "choice": [["adding", "added"], ["night", "government"], ["role", "roles"], ["street", "town"]], "prefix": "./cache/BATS_3.0/1_Inflectional_morphology/I01 [noun - plural_reg].txt"}
|
148 |
+
{"stem": ["resource", "resources"], "answer": 2, "choice": [["population", "director"], ["enabling", "enables"], ["student", "students"], ["god", "month"]], "prefix": "./cache/BATS_3.0/1_Inflectional_morphology/I01 [noun - plural_reg].txt"}
|
149 |
+
{"stem": ["village", "villages"], "answer": 1, "choice": [["language", "song"], ["problem", "problems"], ["example", "year"], ["avoid", "avoids"]], "prefix": "./cache/BATS_3.0/1_Inflectional_morphology/I01 [noun - plural_reg].txt"}
|
150 |
+
{"stem": ["excite", "excitement"], "answer": 1, "choice": [["reasonable", "unreasonable"], ["arrange", "arrangement"], ["assess", "improve"], ["assess", "agree"]], "prefix": "./cache/BATS_3.0/2_Derivational_morphology/D10 [verb+ment_irreg].txt"}
|
151 |
+
{"stem": ["involve", "involvement"], "answer": 3, "choice": [["determine", "determination"], ["amuse", "advertise"], ["entitle", "enjoy"], ["reimburse", "reimbursement"]], "prefix": "./cache/BATS_3.0/2_Derivational_morphology/D10 [verb+ment_irreg].txt"}
|
152 |
+
{"stem": ["fulfil", "fulfilment"], "answer": 3, "choice": [["choreograph", "choreographer"], ["announce", "reinforce"], ["announce", "entertain"], ["arrange", "arrangement"]], "prefix": "./cache/BATS_3.0/2_Derivational_morphology/D10 [verb+ment_irreg].txt"}
|
153 |
+
{"stem": ["improve", "improvement"], "answer": 2, "choice": [["endorse", "enjoy"], ["engage", "disagree"], ["enroll", "enrollment"], ["popular", "unpopular"]], "prefix": "./cache/BATS_3.0/2_Derivational_morphology/D10 [verb+ment_irreg].txt"}
|
154 |
+
{"stem": ["entitle", "entitlement"], "answer": 1, "choice": [["develop", "improve"], ["displace", "displacement"], ["hot", "hotness"], ["embarrass", "align"]], "prefix": "./cache/BATS_3.0/2_Derivational_morphology/D10 [verb+ment_irreg].txt"}
|
155 |
+
{"stem": ["wasp", "nest"], "answer": 1, "choice": [["herring", "trout"], ["spider", "web"], ["lincoln", "president"], ["ant", "bee"]], "prefix": "./cache/BATS_3.0/3_Encyclopedic_semantics/E08 [animal - shelter].txt"}
|
156 |
+
{"stem": ["goldfish", "pond"], "answer": 2, "choice": [["wolf", "horse"], ["chichester", "sussex"], ["bee", "hive"], ["fly", "hamster"]], "prefix": "./cache/BATS_3.0/3_Encyclopedic_semantics/E08 [animal - shelter].txt"}
|
157 |
+
{"stem": ["lion", "den"], "answer": 2, "choice": [["daddy", "mommy"], ["hedgehog", "baboon"], ["whale", "sea"], ["fly", "ape"]], "prefix": "./cache/BATS_3.0/3_Encyclopedic_semantics/E08 [animal - shelter].txt"}
|
158 |
+
{"stem": ["raven", "nest"], "answer": 2, "choice": [["lion", "fox"], ["goldfish", "crocodile"], ["dolphin", "sea"], ["ox", "calf"]], "prefix": "./cache/BATS_3.0/3_Encyclopedic_semantics/E08 [animal - shelter].txt"}
|
159 |
+
{"stem": ["insect", "nest"], "answer": 3, "choice": [["broccoli", "green"], ["wolf", "tiger"], ["lion", "seal"], ["horse", "stable"]], "prefix": "./cache/BATS_3.0/3_Encyclopedic_semantics/E08 [animal - shelter].txt"}
|
160 |
+
{"stem": ["eat", "eater"], "answer": 1, "choice": [["legal", "legally"], ["skydive", "skydiver"], ["bake", "perform"], ["contend", "borrow"]], "prefix": "./cache/BATS_3.0/2_Derivational_morphology/D08 [verb+er_irreg].txt"}
|
161 |
+
{"stem": ["determine", "determiner"], "answer": 2, "choice": [["manage", "lose"], ["contend", "follow"], ["observe", "observer"], ["infringe", "infringement"]], "prefix": "./cache/BATS_3.0/2_Derivational_morphology/D08 [verb+er_irreg].txt"}
|
162 |
+
{"stem": ["choreograph", "choreographer"], "answer": 1, "choice": [["observe", "entertain"], ["learn", "learner"], ["penny", "penniless"], ["develop", "lose"]], "prefix": "./cache/BATS_3.0/2_Derivational_morphology/D08 [verb+er_irreg].txt"}
|
163 |
+
{"stem": ["announce", "announcer"], "answer": 1, "choice": [["detach", "detachment"], ["deliver", "deliverer"], ["manage", "borrow"], ["teach", "promote"]], "prefix": "./cache/BATS_3.0/2_Derivational_morphology/D08 [verb+er_irreg].txt"}
|
164 |
+
{"stem": ["destroy", "destroyer"], "answer": 3, "choice": [["explore", "publish"], ["manage", "subscribe"], ["excite", "excitement"], ["advertise", "advertiser"]], "prefix": "./cache/BATS_3.0/2_Derivational_morphology/D08 [verb+er_irreg].txt"}
|
165 |
+
{"stem": ["belgrade", "serbia"], "answer": 0, "choice": [["paris", "france"], ["conakry", "vienna"], ["philippines", "tagalog"], ["budapest", "taipei"]], "prefix": "./cache/BATS_3.0/3_Encyclopedic_semantics/E01 [country - capital].txt"}
|
166 |
+
{"stem": ["abuja", "nigeria"], "answer": 2, "choice": [["athens", "brussels"], ["oslo", "tokyo"], ["manila", "philippines"], ["emperor", "empress"]], "prefix": "./cache/BATS_3.0/3_Encyclopedic_semantics/E01 [country - capital].txt"}
|
167 |
+
{"stem": ["manila", "philippines"], "answer": 3, "choice": [["beirut", "abuja"], ["reading", "berkshire"], ["ankara", "taipei"], ["copenhagen", "denmark"]], "prefix": "./cache/BATS_3.0/3_Encyclopedic_semantics/E01 [country - capital].txt"}
|
168 |
+
{"stem": ["lima", "peru"], "answer": 1, "choice": [["budapest", "abuja"], ["dublin", "ireland"], ["hull", "yorkshire"], ["jakarta", "athens"]], "prefix": "./cache/BATS_3.0/3_Encyclopedic_semantics/E01 [country - capital].txt"}
|
169 |
+
{"stem": ["athens", "greece"], "answer": 1, "choice": [["nairobi", "copenhagen"], ["kingston", "jamaica"], ["beirut", "amman"], ["goethe", "poet"]], "prefix": "./cache/BATS_3.0/3_Encyclopedic_semantics/E01 [country - capital].txt"}
|
170 |
+
{"stem": ["viper", "snake"], "answer": 0, "choice": [["cow", "bovid"], ["dessert", "cake"], ["tyrannosaurus", "cat"], ["orangutan", "cat"]], "prefix": "./cache/BATS_3.0/4_Lexicographic_semantics/L01 [hypernyms - animals].txt"}
|
171 |
+
{"stem": ["quail", "fowl"], "answer": 0, "choice": [["stegosaurus", "dinosaur"], ["day", "hour"], ["mouse", "cow"], ["coyote", "beaver"]], "prefix": "./cache/BATS_3.0/4_Lexicographic_semantics/L01 [hypernyms - animals].txt"}
|
172 |
+
{"stem": ["squirrel", "rodent"], "answer": 1, "choice": [["desk", "wood"], ["velociraptor", "dinosaur"], ["hawk", "buffalo"], ["orangutan", "leopard"]], "prefix": "./cache/BATS_3.0/4_Lexicographic_semantics/L01 [hypernyms - animals].txt"}
|
173 |
+
{"stem": ["buffalo", "bovid"], "answer": 3, "choice": [["vulture", "chinchilla"], ["dangerous", "safe"], ["gorilla", "cockroach"], ["jaguar", "feline"]], "prefix": "./cache/BATS_3.0/4_Lexicographic_semantics/L01 [hypernyms - animals].txt"}
|
174 |
+
{"stem": ["cat", "feline"], "answer": 0, "choice": [["goose", "fowl"], ["chimpanzee", "porcupine"], ["falcon", "deer"], ["wire", "metal"]], "prefix": "./cache/BATS_3.0/4_Lexicographic_semantics/L01 [hypernyms - animals].txt"}
|
175 |
+
{"stem": ["norway", "norwegian"], "answer": 2, "choice": [["venezuela", "argentina"], ["cyprus", "canada"], ["egypt", "arabic"], ["uncle", "aunt"]], "prefix": "./cache/BATS_3.0/3_Encyclopedic_semantics/E02 [country - language].txt"}
|
176 |
+
{"stem": ["morocco", "berber"], "answer": 2, "choice": [["zagreb", "croatia"], ["cambodia", "ethiopia"], ["guam", "english"], ["bolivia", "canada"]], "prefix": "./cache/BATS_3.0/3_Encyclopedic_semantics/E02 [country - language].txt"}
|
177 |
+
{"stem": ["philippines", "tagalog"], "answer": 0, "choice": [["barbados", "english"], ["chile", "bahamas"], ["iran", "australia"], ["coventry", "midlands"]], "prefix": "./cache/BATS_3.0/3_Encyclopedic_semantics/E02 [country - language].txt"}
|
178 |
+
{"stem": ["guatemala", "spanish"], "answer": 2, "choice": [["actor", "actress"], ["iran", "jamaica"], ["netherlands", "dutch"], ["belize", "canada"]], "prefix": "./cache/BATS_3.0/3_Encyclopedic_semantics/E02 [country - language].txt"}
|
179 |
+
{"stem": ["brazil", "portuguese"], "answer": 2, "choice": [["andorra", "argentina"], ["bolivia", "colombia"], ["mexico", "spanish"], ["potato", "brown"]], "prefix": "./cache/BATS_3.0/3_Encyclopedic_semantics/E02 [country - language].txt"}
|
180 |
+
{"stem": ["downslope", "upslope"], "answer": 3, "choice": [["uphill", "internal"], ["mascara", "makeup"], ["uphill", "internal"], ["rise", "sink"]], "prefix": "./cache/BATS_3.0/4_Lexicographic_semantics/L10 [antonyms - binary].txt"}
|
181 |
+
{"stem": ["submerge", "emerge"], "answer": 2, "choice": [["descend", "below"], ["wire", "metal"], ["employ", "dismiss"], ["down", "southeast"]], "prefix": "./cache/BATS_3.0/4_Lexicographic_semantics/L10 [antonyms - binary].txt"}
|
182 |
+
{"stem": ["inside", "outside"], "answer": 3, "choice": [["up", "dead"], ["warm", "hot"], ["before", "submerge"], ["inbound", "outbound"]], "prefix": "./cache/BATS_3.0/4_Lexicographic_semantics/L10 [antonyms - binary].txt"}
|
183 |
+
{"stem": ["mortal", "immortal"], "answer": 2, "choice": [["after", "internal"], ["gigabit", "megabit"], ["dive", "emerge"], ["exit", "proceed"]], "prefix": "./cache/BATS_3.0/4_Lexicographic_semantics/L10 [antonyms - binary].txt"}
|
184 |
+
{"stem": ["inbound", "outbound"], "answer": 1, "choice": [["decrement", "forward"], ["after", "before"], ["anterior", "downslope"], ["plum", "fruit"]], "prefix": "./cache/BATS_3.0/4_Lexicographic_semantics/L10 [antonyms - binary].txt"}
|
185 |
+
{"stem": ["foresee", "foreseeable"], "answer": 1, "choice": [["advise", "extend"], ["imagine", "imaginable"], ["renew", "recommend"], ["expire", "expiration"]], "prefix": "./cache/BATS_3.0/2_Derivational_morphology/D07 [verb+able_reg].txt"}
|
186 |
+
{"stem": ["rely", "reliable"], "answer": 3, "choice": [["avoid", "achieve"], ["survive", "enjoy"], ["stocked", "overstocked"], ["publish", "publishable"]], "prefix": "./cache/BATS_3.0/2_Derivational_morphology/D07 [verb+able_reg].txt"}
|
187 |
+
{"stem": ["recommend", "recommendable"], "answer": 3, "choice": [["molest", "molester"], ["afford", "consider"], ["discover", "adjust"], ["edit", "editable"]], "prefix": "./cache/BATS_3.0/2_Derivational_morphology/D07 [verb+able_reg].txt"}
|
188 |
+
{"stem": ["predict", "predictable"], "answer": 3, "choice": [["directed", "directedness"], ["renew", "represent"], ["renew", "recommend"], ["protect", "protectable"]], "prefix": "./cache/BATS_3.0/2_Derivational_morphology/D07 [verb+able_reg].txt"}
|
189 |
+
{"stem": ["enjoy", "enjoyable"], "answer": 2, "choice": [["afford", "improve"], ["renew", "recommend"], ["adjust", "adjustable"], ["gender", "genderless"]], "prefix": "./cache/BATS_3.0/2_Derivational_morphology/D07 [verb+able_reg].txt"}
|
190 |
+
{"stem": ["hereford", "herefordshire"], "answer": 0, "choice": [["inverness", "highlands"], ["salford", "cambridge"], ["newton", "scientist"], ["coventry", "exeter"]], "prefix": "./cache/BATS_3.0/3_Encyclopedic_semantics/E03 [UK_city - county].txt"}
|
191 |
+
{"stem": ["stirling", "stirlingshire"], "answer": 3, "choice": [["hegel", "philosopher"], ["plymouth", "birmingham"], ["preston", "swansea"], ["reading", "berkshire"]], "prefix": "./cache/BATS_3.0/3_Encyclopedic_semantics/E03 [UK_city - county].txt"}
|
192 |
+
{"stem": ["reading", "berkshire"], "answer": 3, "choice": [["salmon", "smolt"], ["aberdeen", "cardiff"], ["plymouth", "cambridge"], ["lancaster", "lancashire"]], "prefix": "./cache/BATS_3.0/3_Encyclopedic_semantics/E03 [UK_city - county].txt"}
|
193 |
+
{"stem": ["brighton", "sussex"], "answer": 2, "choice": [["lancaster", "gloucester"], ["lincoln", "cambridge"], ["reading", "berkshire"], ["plato", "greek"]], "prefix": "./cache/BATS_3.0/3_Encyclopedic_semantics/E03 [UK_city - county].txt"}
|
194 |
+
{"stem": ["preston", "lancashire"], "answer": 0, "choice": [["hereford", "herefordshire"], ["mozambique", "portuguese"], ["plymouth", "derby"], ["carlisle", "wakefield"]], "prefix": "./cache/BATS_3.0/3_Encyclopedic_semantics/E03 [UK_city - county].txt"}
|
195 |
+
{"stem": ["lennon", "english"], "answer": 0, "choice": [["tchaikovsky", "russian"], ["galilei", "euclid"], ["haiti", "creole"], ["kepler", "balzac"]], "prefix": "./cache/BATS_3.0/3_Encyclopedic_semantics/E04 [name - nationality].txt"}
|
196 |
+
{"stem": ["hitler", "german"], "answer": 2, "choice": [["argentina", "spanish"], ["machiavelli", "strauss"], ["dostoyevsky", "russian"], ["mencius", "napoleon"]], "prefix": "./cache/BATS_3.0/3_Encyclopedic_semantics/E04 [name - nationality].txt"}
|
197 |
+
{"stem": ["plato", "greek"], "answer": 3, "choice": [["carrot", "orange"], ["tchaikovsky", "machiavelli"], ["edison", "machiavelli"], ["marx", "german"]], "prefix": "./cache/BATS_3.0/3_Encyclopedic_semantics/E04 [name - nationality].txt"}
|
198 |
+
{"stem": ["michelangelo", "italian"], "answer": 3, "choice": [["mozart", "marx"], ["hitler", "hume"], ["israel", "hebrew"], ["descartes", "french"]], "prefix": "./cache/BATS_3.0/3_Encyclopedic_semantics/E04 [name - nationality].txt"}
|
199 |
+
{"stem": ["darwin", "english"], "answer": 2, "choice": [["homer", "beethoven"], ["dostoyevsky", "michelangelo"], ["lavoisier", "french"], ["wolf", "cub"]], "prefix": "./cache/BATS_3.0/3_Encyclopedic_semantics/E04 [name - nationality].txt"}
|
dataset/google/test.jsonl
ADDED
@@ -0,0 +1,500 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{"stem": ["strong", "stronger"], "answer": 2, "choice": [["fortunate", "fortunately"], ["tight", "young"], ["tall", "taller"], ["newer", "larger"]], "prefix": "gram3-comparative"}
|
2 |
+
{"stem": ["simple", "simpler"], "answer": 2, "choice": [["cheap", "great"], ["most", "mostly"], ["slow", "slower"], ["taller", "weaker"]], "prefix": "gram3-comparative"}
|
3 |
+
{"stem": ["low", "lower"], "answer": 3, "choice": [["bad", "young"], ["infrequent", "infrequently"], ["worse", "simpler"], ["new", "newer"]], "prefix": "gram3-comparative"}
|
4 |
+
{"stem": ["heavy", "heavier"], "answer": 2, "choice": [["generate", "generates"], ["tall", "slow"], ["high", "higher"], ["safer", "simpler"]], "prefix": "gram3-comparative"}
|
5 |
+
{"stem": ["high", "higher"], "answer": 2, "choice": [["striking", "struck"], ["shorter", "cooler"], ["hot", "hotter"], ["bad", "great"]], "prefix": "gram3-comparative"}
|
6 |
+
{"stem": ["tight", "tighter"], "answer": 0, "choice": [["tough", "tougher"], ["impressive", "unimpressive"], ["fast", "easy"], ["lower", "cooler"]], "prefix": "gram3-comparative"}
|
7 |
+
{"stem": ["sharp", "sharper"], "answer": 0, "choice": [["short", "shorter"], ["younger", "colder"], ["complete", "completely"], ["hard", "cold"]], "prefix": "gram3-comparative"}
|
8 |
+
{"stem": ["loud", "louder"], "answer": 0, "choice": [["low", "lower"], ["old", "young"], ["cool", "coolest"], ["newer", "cheaper"]], "prefix": "gram3-comparative"}
|
9 |
+
{"stem": ["safe", "safer"], "answer": 0, "choice": [["sharp", "sharper"], ["cool", "hot"], ["discover", "discovering"], ["stronger", "smaller"]], "prefix": "gram3-comparative"}
|
10 |
+
{"stem": ["bad", "worse"], "answer": 1, "choice": [["mango", "mangoes"], ["big", "bigger"], ["higher", "colder"], ["long", "short"]], "prefix": "gram3-comparative"}
|
11 |
+
{"stem": ["good", "better"], "answer": 2, "choice": [["large", "young"], ["newer", "longer"], ["great", "greater"], ["describe", "describing"]], "prefix": "gram3-comparative"}
|
12 |
+
{"stem": ["short", "shorter"], "answer": 0, "choice": [["simple", "simpler"], ["deep", "young"], ["big", "biggest"], ["worse", "easier"]], "prefix": "gram3-comparative"}
|
13 |
+
{"stem": ["hot", "hotter"], "answer": 0, "choice": [["large", "larger"], ["fast", "small"], ["sweet", "sweetest"], ["shorter", "louder"]], "prefix": "gram3-comparative"}
|
14 |
+
{"stem": ["cold", "colder"], "answer": 1, "choice": [["long", "great"], ["cool", "cooler"], ["slower", "hotter"], ["walking", "walked"]], "prefix": "gram3-comparative"}
|
15 |
+
{"stem": ["tall", "taller"], "answer": 1, "choice": [["machine", "machines"], ["tight", "tighter"], ["bright", "heavy"], ["faster", "smarter"]], "prefix": "gram3-comparative"}
|
16 |
+
{"stem": ["weak", "weaker"], "answer": 2, "choice": [["road", "roads"], ["new", "cold"], ["wide", "wider"], ["faster", "bigger"]], "prefix": "gram3-comparative"}
|
17 |
+
{"stem": ["wide", "wider"], "answer": 0, "choice": [["young", "younger"], ["newer", "colder"], ["lucky", "luckiest"], ["big", "safe"]], "prefix": "gram3-comparative"}
|
18 |
+
{"stem": ["smart", "smarter"], "answer": 3, "choice": [["tasty", "tastiest"], ["heavier", "longer"], ["fast", "wide"], ["strong", "stronger"]], "prefix": "gram3-comparative"}
|
19 |
+
{"stem": ["long", "longer"], "answer": 1, "choice": [["swimming", "swam"], ["loud", "louder"], ["greater", "cheaper"], ["old", "sharp"]], "prefix": "gram3-comparative"}
|
20 |
+
{"stem": ["deep", "deeper"], "answer": 0, "choice": [["easy", "easier"], ["finger", "fingers"], ["younger", "tougher"], ["cool", "simple"]], "prefix": "gram3-comparative"}
|
21 |
+
{"stem": ["slow", "slower"], "answer": 0, "choice": [["small", "smaller"], ["lower", "louder"], ["swim", "swims"], ["new", "cold"]], "prefix": "gram3-comparative"}
|
22 |
+
{"stem": ["old", "older"], "answer": 2, "choice": [["newer", "hotter"], ["likely", "unlikely"], ["quick", "quicker"], ["fast", "smart"]], "prefix": "gram3-comparative"}
|
23 |
+
{"stem": ["small", "smaller"], "answer": 0, "choice": [["smart", "smarter"], ["small", "smallest"], ["safer", "easier"], ["old", "slow"]], "prefix": "gram3-comparative"}
|
24 |
+
{"stem": ["great", "greater"], "answer": 1, "choice": [["weak", "small"], ["hard", "harder"], ["slow", "slowly"], ["shorter", "bigger"]], "prefix": "gram3-comparative"}
|
25 |
+
{"stem": ["quick", "quicker"], "answer": 0, "choice": [["safe", "safer"], ["cool", "warm"], ["Netherlands", "Dutch"], ["worse", "tighter"]], "prefix": "gram3-comparative"}
|
26 |
+
{"stem": ["hard", "harder"], "answer": 0, "choice": [["heavy", "heavier"], ["China", "Chinese"], ["stronger", "tighter"], ["tall", "simple"]], "prefix": "gram3-comparative"}
|
27 |
+
{"stem": ["new", "newer"], "answer": 1, "choice": [["larger", "hotter"], ["old", "older"], ["strong", "safe"], ["furious", "furiously"]], "prefix": "gram3-comparative"}
|
28 |
+
{"stem": ["cheap", "cheaper"], "answer": 2, "choice": [["weak", "young"], ["safer", "smaller"], ["cold", "colder"], ["Cambodia", "Cambodian"]], "prefix": "gram3-comparative"}
|
29 |
+
{"stem": ["easy", "easier"], "answer": 3, "choice": [["shorter", "tighter"], ["Spain", "Spanish"], ["bad", "small"], ["fast", "faster"]], "prefix": "gram3-comparative"}
|
30 |
+
{"stem": ["warm", "warmer"], "answer": 1, "choice": [["large", "great"], ["weak", "weaker"], ["higher", "larger"], ["pineapple", "pineapples"]], "prefix": "gram3-comparative"}
|
31 |
+
{"stem": ["big", "bigger"], "answer": 0, "choice": [["bright", "brighter"], ["stronger", "smarter"], ["slowing", "slowed"], ["bad", "sharp"]], "prefix": "gram3-comparative"}
|
32 |
+
{"stem": ["young", "younger"], "answer": 1, "choice": [["stronger", "smaller"], ["bad", "worse"], ["weak", "easy"], ["wide", "widest"]], "prefix": "gram3-comparative"}
|
33 |
+
{"stem": ["fast", "faster"], "answer": 3, "choice": [["lower", "larger"], ["lion", "lions"], ["bright", "simple"], ["good", "better"]], "prefix": "gram3-comparative"}
|
34 |
+
{"stem": ["tough", "tougher"], "answer": 0, "choice": [["warm", "warmer"], ["younger", "harder"], ["Sweden", "Swedish"], ["bad", "cold"]], "prefix": "gram3-comparative"}
|
35 |
+
{"stem": ["consistent", "inconsistent"], "answer": 0, "choice": [["convincing", "unconvincing"], ["likely", "acceptable"], ["swift", "swiftly"], ["unreasonable", "irresponsible"]], "prefix": "gram2-opposite"}
|
36 |
+
{"stem": ["efficient", "inefficient"], "answer": 0, "choice": [["ethical", "unethical"], ["swift", "swiftly"], ["unlikely", "inconsistent"], ["productive", "rational"]], "prefix": "gram2-opposite"}
|
37 |
+
{"stem": ["convincing", "unconvincing"], "answer": 1, "choice": [["free", "freely"], ["convenient", "inconvenient"], ["unlikely", "inconsistent"], ["possible", "efficient"]], "prefix": "gram2-opposite"}
|
38 |
+
{"stem": ["possible", "impossible"], "answer": 0, "choice": [["possibly", "impossibly"], ["unfortunate", "unpleasant"], ["pineapple", "pineapples"], ["certain", "responsible"]], "prefix": "gram2-opposite"}
|
39 |
+
{"stem": ["rational", "irrational"], "answer": 1, "choice": [["impossible", "unethical"], ["reasonable", "unreasonable"], ["productive", "ethical"], ["dream", "dreams"]], "prefix": "gram2-opposite"}
|
40 |
+
{"stem": ["sure", "unsure"], "answer": 2, "choice": [["uninformed", "unconvincing"], ["informed", "impressive"], ["tasteful", "distasteful"], ["monkey", "monkeys"]], "prefix": "gram2-opposite"}
|
41 |
+
{"stem": ["decided", "undecided"], "answer": 2, "choice": [["increasing", "increased"], ["convenient", "responsible"], ["efficient", "inefficient"], ["unsure", "unconvincing"]], "prefix": "gram2-opposite"}
|
42 |
+
{"stem": ["likely", "unlikely"], "answer": 3, "choice": [["sure", "consistent"], ["unproductive", "unconvincing"], ["enhance", "enhances"], ["logical", "illogical"]], "prefix": "gram2-opposite"}
|
43 |
+
{"stem": ["possibly", "impossibly"], "answer": 1, "choice": [["comfortable", "rational"], ["productive", "unproductive"], ["Spain", "Spanish"], ["unreasonable", "irrational"]], "prefix": "gram2-opposite"}
|
44 |
+
{"stem": ["fortunate", "unfortunate"], "answer": 1, "choice": [["impossible", "unaware"], ["honest", "dishonest"], ["comfortable", "known"], ["invent", "inventing"]], "prefix": "gram2-opposite"}
|
45 |
+
{"stem": ["acceptable", "unacceptable"], "answer": 1, "choice": [["tasteful", "competitive"], ["aware", "unaware"], ["rare", "rarely"], ["unlikely", "inconvenient"]], "prefix": "gram2-opposite"}
|
46 |
+
{"stem": ["competitive", "uncompetitive"], "answer": 2, "choice": [["Italy", "Italian"], ["possible", "acceptable"], ["consistent", "inconsistent"], ["unlikely", "distasteful"]], "prefix": "gram2-opposite"}
|
47 |
+
{"stem": ["aware", "unaware"], "answer": 3, "choice": [["reasonable", "competitive"], ["unclear", "inconvenient"], ["young", "youngest"], ["certain", "uncertain"]], "prefix": "gram2-opposite"}
|
48 |
+
{"stem": ["known", "unknown"], "answer": 0, "choice": [["likely", "unlikely"], ["uncompetitive", "unpleasant"], ["certain", "fortunate"], ["swim", "swims"]], "prefix": "gram2-opposite"}
|
49 |
+
{"stem": ["pleasant", "unpleasant"], "answer": 3, "choice": [["bright", "brighter"], ["reasonable", "aware"], ["unfortunate", "irrational"], ["possible", "impossible"]], "prefix": "gram2-opposite"}
|
50 |
+
{"stem": ["reasonable", "unreasonable"], "answer": 3, "choice": [["dishonest", "unknown"], ["convincing", "ethical"], ["color", "colors"], ["responsible", "irresponsible"]], "prefix": "gram2-opposite"}
|
51 |
+
{"stem": ["informative", "uninformative"], "answer": 3, "choice": [["pleasant", "clear"], ["see", "sees"], ["dishonest", "irresponsible"], ["informed", "uninformed"]], "prefix": "gram2-opposite"}
|
52 |
+
{"stem": ["productive", "unproductive"], "answer": 0, "choice": [["rational", "irrational"], ["uncompetitive", "unknown"], ["reasonable", "impressive"], ["slow", "slows"]], "prefix": "gram2-opposite"}
|
53 |
+
{"stem": ["tasteful", "distasteful"], "answer": 3, "choice": [["unfortunate", "unconvincing"], ["work", "works"], ["convincing", "known"], ["acceptable", "unacceptable"]], "prefix": "gram2-opposite"}
|
54 |
+
{"stem": ["clear", "unclear"], "answer": 3, "choice": [["unlikely", "unethical"], ["bottle", "bottles"], ["informed", "rational"], ["comfortable", "uncomfortable"]], "prefix": "gram2-opposite"}
|
55 |
+
{"stem": ["logical", "illogical"], "answer": 1, "choice": [["dishonest", "unethical"], ["pleasant", "unpleasant"], ["Spain", "Spanish"], ["productive", "responsible"]], "prefix": "gram2-opposite"}
|
56 |
+
{"stem": ["certain", "uncertain"], "answer": 0, "choice": [["clear", "unclear"], ["finger", "fingers"], ["unreasonable", "unconvincing"], ["logical", "consistent"]], "prefix": "gram2-opposite"}
|
57 |
+
{"stem": ["convenient", "inconvenient"], "answer": 0, "choice": [["decided", "undecided"], ["uninformative", "unpleasant"], ["productive", "consistent"], ["usual", "usually"]], "prefix": "gram2-opposite"}
|
58 |
+
{"stem": ["impressive", "unimpressive"], "answer": 3, "choice": [["spending", "spent"], ["convincing", "competitive"], ["unclear", "unacceptable"], ["informative", "uninformative"]], "prefix": "gram2-opposite"}
|
59 |
+
{"stem": ["comfortable", "uncomfortable"], "answer": 2, "choice": [["likely", "acceptable"], ["uninformed", "unethical"], ["competitive", "uncompetitive"], ["rat", "rats"]], "prefix": "gram2-opposite"}
|
60 |
+
{"stem": ["ethical", "unethical"], "answer": 1, "choice": [["uncertain", "unpleasant"], ["fortunate", "unfortunate"], ["knowing", "knew"], ["sure", "pleasant"]], "prefix": "gram2-opposite"}
|
61 |
+
{"stem": ["responsible", "irresponsible"], "answer": 2, "choice": [["possibly", "fortunate"], ["uninformed", "unaware"], ["sure", "unsure"], ["decrease", "decreases"]], "prefix": "gram2-opposite"}
|
62 |
+
{"stem": ["Beirut", "Lebanon"], "answer": 3, "choice": [["Nigeria", "naira"], ["China", "Gabon"], ["Tegucigalpa", "Paramaribo"], ["Belgrade", "Serbia"]], "prefix": "capital-world"}
|
63 |
+
{"stem": ["Manama", "Bahrain"], "answer": 2, "choice": [["Algeria", "dinar"], ["Algeria", "Kazakhstan"], ["Manila", "Philippines"], ["Bamako", "Caracas"]], "prefix": "capital-world"}
|
64 |
+
{"stem": ["Paramaribo", "Suriname"], "answer": 2, "choice": [["Bangkok", "Amman"], ["Poland", "zloty"], ["Paris", "France"], ["Malawi", "Honduras"]], "prefix": "capital-world"}
|
65 |
+
{"stem": ["Libreville", "Gabon"], "answer": 3, "choice": [["Russia", "ruble"], ["Dublin", "Gaborone"], ["Tunisia", "Vietnam"], ["Lilongwe", "Malawi"]], "prefix": "capital-world"}
|
66 |
+
{"stem": ["Zagreb", "Croatia"], "answer": 3, "choice": [["Kathmandu", "Roseau"], ["Latvia", "lats"], ["Romania", "Sudan"], ["Abuja", "Nigeria"]], "prefix": "capital-world"}
|
67 |
+
{"stem": ["Banjul", "Gambia"], "answer": 2, "choice": [["Iran", "rial"], ["Rabat", "Kampala"], ["Beijing", "China"], ["Ireland", "Ghana"]], "prefix": "capital-world"}
|
68 |
+
{"stem": ["Khartoum", "Sudan"], "answer": 2, "choice": [["Dublin", "Riga"], ["Vietnam", "dong"], ["Kiev", "Ukraine"], ["Ecuador", "Tajikistan"]], "prefix": "capital-world"}
|
69 |
+
{"stem": ["Tripoli", "Libya"], "answer": 3, "choice": [["Belgium", "Switzerland"], ["man", "woman"], ["Madrid", "Skopje"], ["Tunis", "Tunisia"]], "prefix": "capital-world"}
|
70 |
+
{"stem": ["Algiers", "Algeria"], "answer": 0, "choice": [["Amman", "Jordan"], ["stepfather", "stepmother"], ["Podgorica", "Ottawa"], ["Turkmenistan", "Morocco"]], "prefix": "capital-world"}
|
71 |
+
{"stem": ["Kingston", "Jamaica"], "answer": 3, "choice": [["Tallinn", "Riga"], ["Canada", "Honduras"], ["Latvia", "lats"], ["Libreville", "Gabon"]], "prefix": "capital-world"}
|
72 |
+
{"stem": ["Montevideo", "Uruguay"], "answer": 1, "choice": [["Serbia", "Denmark"], ["Moscow", "Russia"], ["Dhaka", "Bratislava"], ["Japan", "yen"]], "prefix": "capital-world"}
|
73 |
+
{"stem": ["Doha", "Qatar"], "answer": 1, "choice": [["Estonia", "Switzerland"], ["Dublin", "Ireland"], ["Brussels", "Nairobi"], ["man", "woman"]], "prefix": "capital-world"}
|
74 |
+
{"stem": ["Abuja", "Nigeria"], "answer": 2, "choice": [["Bucharest", "Canberra"], ["Uzbekistan", "Albania"], ["Accra", "Ghana"], ["Argentina", "peso"]], "prefix": "capital-world"}
|
75 |
+
{"stem": ["Managua", "Nicaragua"], "answer": 3, "choice": [["Tehran", "Budapest"], ["Uganda", "Somalia"], ["stepfather", "stepmother"], ["Manama", "Bahrain"]], "prefix": "capital-world"}
|
76 |
+
{"stem": ["Sofia", "Bulgaria"], "answer": 3, "choice": [["Iran", "Slovakia"], ["Dushanbe", "Canberra"], ["USA", "dollar"], ["Stockholm", "Sweden"]], "prefix": "capital-world"}
|
77 |
+
{"stem": ["Harare", "Zimbabwe"], "answer": 0, "choice": [["Havana", "Cuba"], ["Portugal", "Samoa"], ["brothers", "sisters"], ["Tehran", "Damascus"]], "prefix": "capital-world"}
|
78 |
+
{"stem": ["Dublin", "Ireland"], "answer": 0, "choice": [["Dushanbe", "Tajikistan"], ["Mozambique", "Qatar"], ["Romania", "leu"], ["Ashgabat", "Skopje"]], "prefix": "capital-world"}
|
79 |
+
{"stem": ["Lusaka", "Zambia"], "answer": 3, "choice": [["Botswana", "Iraq"], ["Muscat", "Budapest"], ["nephew", "niece"], ["Madrid", "Spain"]], "prefix": "capital-world"}
|
80 |
+
{"stem": ["Muscat", "Oman"], "answer": 0, "choice": [["Nairobi", "Kenya"], ["father", "mother"], ["Lilongwe", "Lima"], ["China", "Spain"]], "prefix": "capital-world"}
|
81 |
+
{"stem": ["Vaduz", "Liechtenstein"], "answer": 1, "choice": [["Tegucigalpa", "Santiago"], ["Valletta", "Malta"], ["Zimbabwe", "Bangladesh"], ["policeman", "policewoman"]], "prefix": "capital-world"}
|
82 |
+
{"stem": ["Antananarivo", "Madagascar"], "answer": 0, "choice": [["Apia", "Samoa"], ["Laos", "Bhutan"], ["Rome", "Gaborone"], ["boy", "girl"]], "prefix": "capital-world"}
|
83 |
+
{"stem": ["Tirana", "Albania"], "answer": 0, "choice": [["Tokyo", "Japan"], ["Tegucigalpa", "Paris"], ["Macedonia", "Malta"], ["husband", "wife"]], "prefix": "capital-world"}
|
84 |
+
{"stem": ["Rabat", "Morocco"], "answer": 2, "choice": [["Bucharest", "Libreville"], ["Canada", "dollar"], ["Riga", "Latvia"], ["Afghanistan", "Nigeria"]], "prefix": "capital-world"}
|
85 |
+
{"stem": ["Chisinau", "Moldova"], "answer": 1, "choice": [["brother", "sister"], ["Conakry", "Guinea"], ["Nouakchott", "Georgetown"], ["Uzbekistan", "Slovenia"]], "prefix": "capital-world"}
|
86 |
+
{"stem": ["Dhaka", "Bangladesh"], "answer": 2, "choice": [["Antananarivo", "Ottawa"], ["brother", "sister"], ["Doha", "Qatar"], ["Iran", "Thailand"]], "prefix": "capital-world"}
|
87 |
+
{"stem": ["Gaborone", "Botswana"], "answer": 2, "choice": [["Cairo", "Bishkek"], ["son", "daughter"], ["Georgetown", "Guyana"], ["Georgia", "Cuba"]], "prefix": "capital-world"}
|
88 |
+
{"stem": ["Amman", "Jordan"], "answer": 3, "choice": [["Tegucigalpa", "Stockholm"], ["Turkmenistan", "Vietnam"], ["Europe", "euro"], ["Ankara", "Turkey"]], "prefix": "capital-world"}
|
89 |
+
{"stem": ["Vilnius", "Lithuania"], "answer": 1, "choice": [["France", "Fiji"], ["Warsaw", "Poland"], ["Tehran", "Banjul"], ["Croatia", "kuna"]], "prefix": "capital-world"}
|
90 |
+
{"stem": ["Tbilisi", "Georgia"], "answer": 1, "choice": [["Asmara", "Minsk"], ["Tegucigalpa", "Honduras"], ["groom", "bride"], ["Zambia", "Vietnam"]], "prefix": "capital-world"}
|
91 |
+
{"stem": ["Maputo", "Mozambique"], "answer": 2, "choice": [["he", "she"], ["Latvia", "Armenia"], ["Minsk", "Belarus"], ["Kingston", "Thimphu"]], "prefix": "capital-world"}
|
92 |
+
{"stem": ["Luanda", "Angola"], "answer": 1, "choice": [["Cambodia", "riel"], ["Lusaka", "Zambia"], ["Kathmandu", "Lisbon"], ["Belarus", "Moldova"]], "prefix": "capital-world"}
|
93 |
+
{"stem": ["Quito", "Ecuador"], "answer": 0, "choice": [["Rabat", "Morocco"], ["policeman", "policewoman"], ["Liechtenstein", "Albania"], ["Bangkok", "Doha"]], "prefix": "capital-world"}
|
94 |
+
{"stem": ["Ashgabat", "Turkmenistan"], "answer": 2, "choice": [["nephew", "niece"], ["Serbia", "Switzerland"], ["Asmara", "Eritrea"], ["Athens", "Kigali"]], "prefix": "capital-world"}
|
95 |
+
{"stem": ["Lima", "Peru"], "answer": 3, "choice": [["Belgium", "Moldova"], ["Islamabad", "Doha"], ["groom", "bride"], ["Lisbon", "Portugal"]], "prefix": "capital-world"}
|
96 |
+
{"stem": ["Vientiane", "Laos"], "answer": 3, "choice": [["Egypt", "Vietnam"], ["Tbilisi", "Roseau"], ["grandson", "granddaughter"], ["Vilnius", "Lithuania"]], "prefix": "capital-world"}
|
97 |
+
{"stem": ["Roseau", "Dominica"], "answer": 3, "choice": [["Uzbekistan", "Tajikistan"], ["Baghdad", "Vienna"], ["husband", "wife"], ["Santiago", "Chile"]], "prefix": "capital-world"}
|
98 |
+
{"stem": ["Minsk", "Belarus"], "answer": 1, "choice": [["Ecuador", "Indonesia"], ["Mogadishu", "Somalia"], ["Brussels", "Manila"], ["Europe", "euro"]], "prefix": "capital-world"}
|
99 |
+
{"stem": ["Ljubljana", "Slovenia"], "answer": 3, "choice": [["Zagreb", "Libreville"], ["India", "rupee"], ["Malawi", "Germany"], ["London", "England"]], "prefix": "capital-world"}
|
100 |
+
{"stem": ["Budapest", "Hungary"], "answer": 2, "choice": [["husband", "wife"], ["Turkey", "Chile"], ["Bujumbura", "Burundi"], ["Cairo", "Minsk"]], "prefix": "capital-world"}
|
101 |
+
{"stem": ["Copenhagen", "Denmark"], "answer": 2, "choice": [["Suva", "Taipei"], ["stepson", "stepdaughter"], ["Dakar", "Senegal"], ["Belgium", "Taiwan"]], "prefix": "capital-world"}
|
102 |
+
{"stem": ["Valletta", "Malta"], "answer": 0, "choice": [["Vienna", "Austria"], ["groom", "bride"], ["Bahrain", "Gabon"], ["Muscat", "Warsaw"]], "prefix": "capital-world"}
|
103 |
+
{"stem": ["Apia", "Samoa"], "answer": 3, "choice": [["Bahrain", "Italy"], ["Monrovia", "Budapest"], ["Armenia", "dram"], ["Ashgabat", "Turkmenistan"]], "prefix": "capital-world"}
|
104 |
+
{"stem": ["Monrovia", "Liberia"], "answer": 0, "choice": [["Montevideo", "Uruguay"], ["Japan", "yen"], ["Muscat", "Tashkent"], ["Lithuania", "Syria"]], "prefix": "capital-world"}
|
105 |
+
{"stem": ["Suva", "Fiji"], "answer": 0, "choice": [["Taipei", "Taiwan"], ["Kabul", "Warsaw"], ["son", "daughter"], ["Iran", "Germany"]], "prefix": "capital-world"}
|
106 |
+
{"stem": ["Kigali", "Rwanda"], "answer": 0, "choice": [["Kingston", "Jamaica"], ["Uzbekistan", "Poland"], ["Romania", "leu"], ["Helsinki", "Havana"]], "prefix": "capital-world"}
|
107 |
+
{"stem": ["Nouakchott", "Mauritania"], "answer": 0, "choice": [["Nuuk", "Greenland"], ["Australia", "Morocco"], ["Hanoi", "Warsaw"], ["stepfather", "stepmother"]], "prefix": "capital-world"}
|
108 |
+
{"stem": ["Podgorica", "Montenegro"], "answer": 1, "choice": [["Denmark", "krone"], ["Quito", "Ecuador"], ["Helsinki", "Nicosia"], ["Libya", "Mali"]], "prefix": "capital-world"}
|
109 |
+
{"stem": ["Belgrade", "Serbia"], "answer": 0, "choice": [["Belmopan", "Belize"], ["Namibia", "Malta"], ["Madrid", "Astana"], ["boy", "girl"]], "prefix": "capital-world"}
|
110 |
+
{"stem": ["Funafuti", "Tuvalu"], "answer": 3, "choice": [["Mexico", "peso"], ["Greenland", "Madagascar"], ["Nouakchott", "Windhoek"], ["Gaborone", "Botswana"]], "prefix": "capital-world"}
|
111 |
+
{"stem": ["Santiago", "Chile"], "answer": 1, "choice": [["Baghdad", "Roseau"], ["Skopje", "Macedonia"], ["Finland", "Vietnam"], ["Hungary", "forint"]], "prefix": "capital-world"}
|
112 |
+
{"stem": ["Jakarta", "Indonesia"], "answer": 0, "choice": [["Kabul", "Afghanistan"], ["Dominica", "Denmark"], ["policeman", "policewoman"], ["Niamey", "Nuuk"]], "prefix": "capital-world"}
|
113 |
+
{"stem": ["Tallinn", "Estonia"], "answer": 1, "choice": [["Rwanda", "Bangladesh"], ["Tashkent", "Uzbekistan"], ["policeman", "policewoman"], ["Zagreb", "Manila"]], "prefix": "capital-world"}
|
114 |
+
{"stem": ["Bratislava", "Slovakia"], "answer": 2, "choice": [["boy", "girl"], ["Uruguay", "Russia"], ["Brussels", "Belgium"], ["Bucharest", "Budapest"]], "prefix": "capital-world"}
|
115 |
+
{"stem": ["Bujumbura", "Burundi"], "answer": 3, "choice": [["Conakry", "Kiev"], ["Macedonia", "denar"], ["Peru", "Samoa"], ["Cairo", "Egypt"]], "prefix": "capital-world"}
|
116 |
+
{"stem": ["Niamey", "Niger"], "answer": 1, "choice": [["Funafuti", "Moscow"], ["Nicosia", "Cyprus"], ["sons", "daughters"], ["Norway", "Bhutan"]], "prefix": "capital-world"}
|
117 |
+
{"stem": ["Accra", "Ghana"], "answer": 1, "choice": [["policeman", "policewoman"], ["Algiers", "Algeria"], ["Madrid", "Banjul"], ["Guyana", "Switzerland"]], "prefix": "capital-world"}
|
118 |
+
{"stem": ["Kiev", "Ukraine"], "answer": 2, "choice": [["Luanda", "Windhoek"], ["policeman", "policewoman"], ["Kigali", "Rwanda"], ["Latvia", "Jordan"]], "prefix": "capital-world"}
|
119 |
+
{"stem": ["Ankara", "Turkey"], "answer": 3, "choice": [["Beijing", "Thimphu"], ["grandson", "granddaughter"], ["Latvia", "Italy"], ["Antananarivo", "Madagascar"]], "prefix": "capital-world"}
|
120 |
+
{"stem": ["Skopje", "Macedonia"], "answer": 0, "choice": [["Sofia", "Bulgaria"], ["Macedonia", "denar"], ["Algeria", "Moldova"], ["Helsinki", "Bratislava"]], "prefix": "capital-world"}
|
121 |
+
{"stem": ["Conakry", "Guinea"], "answer": 2, "choice": [["Afghanistan", "Russia"], ["Cambodia", "riel"], ["Copenhagen", "Denmark"], ["Vientiane", "Riga"]], "prefix": "capital-world"}
|
122 |
+
{"stem": ["Bamako", "Mali"], "answer": 0, "choice": [["Bangkok", "Thailand"], ["Suva", "Kigali"], ["Japan", "Eritrea"], ["Europe", "euro"]], "prefix": "capital-world"}
|
123 |
+
{"stem": ["Dushanbe", "Tajikistan"], "answer": 1, "choice": [["Canada", "Venezuela"], ["Funafuti", "Tuvalu"], ["he", "she"], ["Oslo", "Bishkek"]], "prefix": "capital-world"}
|
124 |
+
{"stem": ["Bucharest", "Romania"], "answer": 3, "choice": [["grandpa", "grandma"], ["Bangkok", "Lima"], ["Philippines", "Qatar"], ["Budapest", "Hungary"]], "prefix": "capital-world"}
|
125 |
+
{"stem": ["Tegucigalpa", "Honduras"], "answer": 3, "choice": [["Khartoum", "Thimphu"], ["Latvia", "Suriname"], ["Canada", "dollar"], ["Tehran", "Iran"]], "prefix": "capital-world"}
|
126 |
+
{"stem": ["Georgetown", "Guyana"], "answer": 3, "choice": [["Lusaka", "Jakarta"], ["Greenland", "Samoa"], ["father", "mother"], ["Hanoi", "Vietnam"]], "prefix": "capital-world"}
|
127 |
+
{"stem": ["Kathmandu", "Nepal"], "answer": 3, "choice": [["Antananarivo", "Abuja"], ["Rwanda", "Albania"], ["groom", "bride"], ["Khartoum", "Sudan"]], "prefix": "capital-world"}
|
128 |
+
{"stem": ["Taipei", "Taiwan"], "answer": 1, "choice": [["grandfather", "grandmother"], ["Tallinn", "Estonia"], ["Suva", "Santiago"], ["Uzbekistan", "Suriname"]], "prefix": "capital-world"}
|
129 |
+
{"stem": ["Lilongwe", "Malawi"], "answer": 3, "choice": [["Oslo", "Canberra"], ["Zambia", "Liberia"], ["Sweden", "krona"], ["Lima", "Peru"]], "prefix": "capital-world"}
|
130 |
+
{"stem": ["Astana", "Kazakhstan"], "answer": 1, "choice": [["Hungary", "Armenia"], ["Athens", "Greece"], ["Vietnam", "dong"], ["Funafuti", "Lisbon"]], "prefix": "capital-world"}
|
131 |
+
{"stem": ["Damascus", "Syria"], "answer": 0, "choice": [["Dhaka", "Bangladesh"], ["his", "her"], ["Romania", "Jordan"], ["Helsinki", "Mogadishu"]], "prefix": "capital-world"}
|
132 |
+
{"stem": ["Thimphu", "Bhutan"], "answer": 2, "choice": [["Tegucigalpa", "Belgrade"], ["Norway", "Tajikistan"], ["Tirana", "Albania"], ["prince", "princess"]], "prefix": "capital-world"}
|
133 |
+
{"stem": ["Nairobi", "Kenya"], "answer": 0, "choice": [["Nassau", "Bahamas"], ["boy", "girl"], ["Athens", "Windhoek"], ["Afghanistan", "Ghana"]], "prefix": "capital-world"}
|
134 |
+
{"stem": ["Nuuk", "Greenland"], "answer": 1, "choice": [["Bucharest", "Nicosia"], ["Oslo", "Norway"], ["Greece", "Cyprus"], ["Mexico", "peso"]], "prefix": "capital-world"}
|
135 |
+
{"stem": ["Warsaw", "Poland"], "answer": 3, "choice": [["his", "her"], ["Beijing", "Belgrade"], ["Angola", "Switzerland"], ["Windhoek", "Namibia"]], "prefix": "capital-world"}
|
136 |
+
{"stem": ["Bishkek", "Kyrgyzstan"], "answer": 3, "choice": [["Valletta", "Apia"], ["Japan", "Syria"], ["dad", "mom"], ["Bratislava", "Slovakia"]], "prefix": "capital-world"}
|
137 |
+
{"stem": ["Asmara", "Eritrea"], "answer": 2, "choice": [["Australia", "Belgium"], ["Korea", "won"], ["Astana", "Kazakhstan"], ["Ashgabat", "Bujumbura"]], "prefix": "capital-world"}
|
138 |
+
{"stem": ["Dakar", "Senegal"], "answer": 3, "choice": [["Algeria", "dinar"], ["Finland", "Germany"], ["Harare", "Yerevan"], ["Damascus", "Syria"]], "prefix": "capital-world"}
|
139 |
+
{"stem": ["Tashkent", "Uzbekistan"], "answer": 2, "choice": [["son", "daughter"], ["Senegal", "Albania"], ["Tbilisi", "Georgia"], ["Vaduz", "Yerevan"]], "prefix": "capital-world"}
|
140 |
+
{"stem": ["Brussels", "Belgium"], "answer": 0, "choice": [["Bucharest", "Romania"], ["king", "queen"], ["Egypt", "Russia"], ["Tripoli", "Doha"]], "prefix": "capital-world"}
|
141 |
+
{"stem": ["Yerevan", "Armenia"], "answer": 1, "choice": [["Azerbaijan", "Denmark"], ["Zagreb", "Croatia"], ["Dushanbe", "Tunis"], ["boy", "girl"]], "prefix": "capital-world"}
|
142 |
+
{"stem": ["Windhoek", "Namibia"], "answer": 1, "choice": [["Hungary", "forint"], ["Yerevan", "Armenia"], ["Niger", "Spain"], ["Lusaka", "Tokyo"]], "prefix": "capital-world"}
|
143 |
+
{"stem": ["Nassau", "Bahamas"], "answer": 1, "choice": [["Uruguay", "Taiwan"], ["Niamey", "Niger"], ["Nigeria", "naira"], ["Vaduz", "Skopje"]], "prefix": "capital-world"}
|
144 |
+
{"stem": ["Kampala", "Uganda"], "answer": 2, "choice": [["Denmark", "Burundi"], ["brothers", "sisters"], ["Kathmandu", "Nepal"], ["Khartoum", "Managua"]], "prefix": "capital-world"}
|
145 |
+
{"stem": ["Nicosia", "Cyprus"], "answer": 0, "choice": [["Nouakchott", "Mauritania"], ["Latvia", "lats"], ["Podgorica", "Kampala"], ["Belgium", "Syria"]], "prefix": "capital-world"}
|
146 |
+
{"stem": ["warm", "warmest"], "answer": 1, "choice": [["lowest", "biggest"], ["weak", "weakest"], ["increasing", "increased"], ["large", "smart"]], "prefix": "gram4-superlative"}
|
147 |
+
{"stem": ["short", "shortest"], "answer": 1, "choice": [["highest", "warmest"], ["slow", "slowest"], ["low", "wide"], ["predict", "predicts"]], "prefix": "gram4-superlative"}
|
148 |
+
{"stem": ["bright", "brightest"], "answer": 2, "choice": [["clear", "unclear"], ["oldest", "weakest"], ["cold", "coldest"], ["warm", "wide"]], "prefix": "gram4-superlative"}
|
149 |
+
{"stem": ["cool", "coolest"], "answer": 2, "choice": [["tastiest", "warmest"], ["saying", "said"], ["dark", "darkest"], ["young", "high"]], "prefix": "gram4-superlative"}
|
150 |
+
{"stem": ["low", "lowest"], "answer": 3, "choice": [["swift", "swiftly"], ["young", "quick"], ["strangest", "darkest"], ["lucky", "luckiest"]], "prefix": "gram4-superlative"}
|
151 |
+
{"stem": ["small", "smallest"], "answer": 3, "choice": [["old", "short"], ["saying", "said"], ["coolest", "biggest"], ["smart", "smartest"]], "prefix": "gram4-superlative"}
|
152 |
+
{"stem": ["smart", "smartest"], "answer": 0, "choice": [["strange", "strangest"], ["sharpest", "youngest"], ["fast", "quick"], ["impressive", "unimpressive"]], "prefix": "gram4-superlative"}
|
153 |
+
{"stem": ["dark", "darkest"], "answer": 0, "choice": [["easy", "easiest"], ["tall", "weird"], ["strangest", "worst"], ["swimming", "swam"]], "prefix": "gram4-superlative"}
|
154 |
+
{"stem": ["simple", "simplest"], "answer": 0, "choice": [["short", "shortest"], ["young", "easy"], ["selling", "sold"], ["fastest", "easiest"]], "prefix": "gram4-superlative"}
|
155 |
+
{"stem": ["fast", "fastest"], "answer": 0, "choice": [["good", "best"], ["warm", "great"], ["sure", "unsure"], ["weirdest", "darkest"]], "prefix": "gram4-superlative"}
|
156 |
+
{"stem": ["hot", "hottest"], "answer": 3, "choice": [["strangest", "sweetest"], ["good", "simple"], ["France", "French"], ["large", "largest"]], "prefix": "gram4-superlative"}
|
157 |
+
{"stem": ["quick", "quickest"], "answer": 2, "choice": [["good", "strange"], ["weirdest", "weakest"], ["sharp", "sharpest"], ["comfortable", "uncomfortable"]], "prefix": "gram4-superlative"}
|
158 |
+
{"stem": ["cold", "coldest"], "answer": 2, "choice": [["smartest", "highest"], ["tasteful", "distasteful"], ["cool", "coolest"], ["sharp", "strange"]], "prefix": "gram4-superlative"}
|
159 |
+
{"stem": ["high", "highest"], "answer": 3, "choice": [["big", "smart"], ["rare", "rarely"], ["simplest", "weakest"], ["hot", "hottest"]], "prefix": "gram4-superlative"}
|
160 |
+
{"stem": ["strange", "strangest"], "answer": 0, "choice": [["strong", "strongest"], ["large", "tasty"], ["playing", "played"], ["widest", "quickest"]], "prefix": "gram4-superlative"}
|
161 |
+
{"stem": ["long", "longest"], "answer": 1, "choice": [["bad", "easy"], ["low", "lowest"], ["widest", "warmest"], ["rapid", "rapidly"]], "prefix": "gram4-superlative"}
|
162 |
+
{"stem": ["tasty", "tastiest"], "answer": 3, "choice": [["dollar", "dollars"], ["long", "hot"], ["strangest", "weakest"], ["warm", "warmest"]], "prefix": "gram4-superlative"}
|
163 |
+
{"stem": ["slow", "slowest"], "answer": 0, "choice": [["small", "smallest"], ["large", "sweet"], ["weirdest", "warmest"], ["elephant", "elephants"]], "prefix": "gram4-superlative"}
|
164 |
+
{"stem": ["old", "oldest"], "answer": 3, "choice": [["bright", "short"], ["sharpest", "largest"], ["pig", "pigs"], ["quick", "quickest"]], "prefix": "gram4-superlative"}
|
165 |
+
{"stem": ["young", "youngest"], "answer": 0, "choice": [["bad", "worst"], ["mouse", "mice"], ["oldest", "quickest"], ["sharp", "tasty"]], "prefix": "gram4-superlative"}
|
166 |
+
{"stem": ["tall", "tallest"], "answer": 3, "choice": [["sit", "sits"], ["fastest", "quickest"], ["fast", "strange"], ["tasty", "tastiest"]], "prefix": "gram4-superlative"}
|
167 |
+
{"stem": ["weak", "weakest"], "answer": 1, "choice": [["simplest", "sweetest"], ["weird", "weirdest"], ["warm", "wide"], ["rapid", "rapidly"]], "prefix": "gram4-superlative"}
|
168 |
+
{"stem": ["great", "greatest"], "answer": 3, "choice": [["possible", "impossible"], ["cool", "simple"], ["hottest", "longest"], ["high", "highest"]], "prefix": "gram4-superlative"}
|
169 |
+
{"stem": ["bad", "worst"], "answer": 3, "choice": [["tall", "hot"], ["widest", "strongest"], ["sharp", "sharper"], ["big", "biggest"]], "prefix": "gram4-superlative"}
|
170 |
+
{"stem": ["wide", "widest"], "answer": 0, "choice": [["young", "youngest"], ["cheap", "cheaper"], ["bright", "high"], ["coldest", "sweetest"]], "prefix": "gram4-superlative"}
|
171 |
+
{"stem": ["lucky", "luckiest"], "answer": 1, "choice": [["debug", "debugging"], ["old", "oldest"], ["simplest", "easiest"], ["young", "weird"]], "prefix": "gram4-superlative"}
|
172 |
+
{"stem": ["large", "largest"], "answer": 0, "choice": [["long", "longest"], ["big", "strange"], ["slowest", "biggest"], ["occasional", "occasionally"]], "prefix": "gram4-superlative"}
|
173 |
+
{"stem": ["easy", "easiest"], "answer": 0, "choice": [["fast", "fastest"], ["bright", "sweet"], ["apparent", "apparently"], ["oldest", "luckiest"]], "prefix": "gram4-superlative"}
|
174 |
+
{"stem": ["weird", "weirdest"], "answer": 3, "choice": [["long", "sweet"], ["hot", "hotter"], ["lowest", "sweetest"], ["wide", "widest"]], "prefix": "gram4-superlative"}
|
175 |
+
{"stem": ["sweet", "sweetest"], "answer": 2, "choice": [["bad", "high"], ["coldest", "darkest"], ["tall", "tallest"], ["long", "longer"]], "prefix": "gram4-superlative"}
|
176 |
+
{"stem": ["big", "biggest"], "answer": 3, "choice": [["strangest", "greatest"], ["dark", "cold"], ["melon", "melons"], ["bright", "brightest"]], "prefix": "gram4-superlative"}
|
177 |
+
{"stem": ["implementing", "implemented"], "answer": 1, "choice": [["spent", "enhanced"], ["increasing", "increased"], ["consistent", "inconsistent"], ["describing", "thinking"]], "prefix": "gram7-past-tense"}
|
178 |
+
{"stem": ["listening", "listened"], "answer": 0, "choice": [["looking", "looked"], ["old", "older"], ["slowed", "hit"], ["increasing", "sitting"]], "prefix": "gram7-past-tense"}
|
179 |
+
{"stem": ["hitting", "hit"], "answer": 2, "choice": [["took", "walked"], ["generating", "playing"], ["implementing", "implemented"], ["new", "newer"]], "prefix": "gram7-past-tense"}
|
180 |
+
{"stem": ["describing", "described"], "answer": 3, "choice": [["Chile", "Chilean"], ["implementing", "spending"], ["said", "struck"], ["enhancing", "enhanced"]], "prefix": "gram7-past-tense"}
|
181 |
+
{"stem": ["dancing", "danced"], "answer": 3, "choice": [["usual", "usually"], ["hitting", "predicting"], ["slowed", "flew"], ["decreasing", "decreased"]], "prefix": "gram7-past-tense"}
|
182 |
+
{"stem": ["hiding", "hid"], "answer": 1, "choice": [["increasing", "predicting"], ["hitting", "hit"], ["walked", "predicted"], ["China", "Chinese"]], "prefix": "gram7-past-tense"}
|
183 |
+
{"stem": ["singing", "sang"], "answer": 0, "choice": [["sitting", "sat"], ["weird", "weirdest"], ["generating", "shrinking"], ["decreased", "looked"]], "prefix": "gram7-past-tense"}
|
184 |
+
{"stem": ["sleeping", "slept"], "answer": 2, "choice": [["read", "shrank"], ["road", "roads"], ["slowing", "slowed"], ["vanishing", "looking"]], "prefix": "gram7-past-tense"}
|
185 |
+
{"stem": ["screaming", "screamed"], "answer": 3, "choice": [["knowing", "singing"], ["fed", "wrote"], ["bad", "worst"], ["seeing", "saw"]], "prefix": "gram7-past-tense"}
|
186 |
+
{"stem": ["sitting", "sat"], "answer": 1, "choice": [["paid", "predicted"], ["sleeping", "slept"], ["informative", "uninformative"], ["reading", "striking"]], "prefix": "gram7-past-tense"}
|
187 |
+
{"stem": ["feeding", "fed"], "answer": 3, "choice": [["looked", "wrote"], ["describing", "screaming"], ["run", "running"], ["flying", "flew"]], "prefix": "gram7-past-tense"}
|
188 |
+
{"stem": ["flying", "flew"], "answer": 0, "choice": [["generating", "generated"], ["walk", "walking"], ["fed", "played"], ["hitting", "predicting"]], "prefix": "gram7-past-tense"}
|
189 |
+
{"stem": ["walking", "walked"], "answer": 0, "choice": [["writing", "wrote"], ["hitting", "dancing"], ["thought", "sang"], ["dark", "darkest"]], "prefix": "gram7-past-tense"}
|
190 |
+
{"stem": ["vanishing", "vanished"], "answer": 2, "choice": [["immediate", "immediately"], ["sold", "slept"], ["walking", "walked"], ["knowing", "increasing"]], "prefix": "gram7-past-tense"}
|
191 |
+
{"stem": ["enhancing", "enhanced"], "answer": 3, "choice": [["implementing", "seeing"], ["spent", "ran"], ["free", "freely"], ["falling", "fell"]], "prefix": "gram7-past-tense"}
|
192 |
+
{"stem": ["falling", "fell"], "answer": 0, "choice": [["feeding", "fed"], ["paying", "flying"], ["sit", "sits"], ["took", "slept"]], "prefix": "gram7-past-tense"}
|
193 |
+
{"stem": ["playing", "played"], "answer": 1, "choice": [["reading", "flying"], ["predicting", "predicted"], ["strong", "strongest"], ["slowed", "wrote"]], "prefix": "gram7-past-tense"}
|
194 |
+
{"stem": ["jumping", "jumped"], "answer": 2, "choice": [["read", "hid"], ["reading", "thinking"], ["knowing", "knew"], ["wide", "widest"]], "prefix": "gram7-past-tense"}
|
195 |
+
{"stem": ["reading", "read"], "answer": 0, "choice": [["running", "ran"], ["vanished", "played"], ["writing", "thinking"], ["bright", "brighter"]], "prefix": "gram7-past-tense"}
|
196 |
+
{"stem": ["swimming", "swam"], "answer": 2, "choice": [["spent", "enhanced"], ["bright", "brightest"], ["taking", "took"], ["increasing", "flying"]], "prefix": "gram7-past-tense"}
|
197 |
+
{"stem": ["taking", "took"], "answer": 0, "choice": [["thinking", "thought"], ["sleeping", "swimming"], ["quick", "quicker"], ["read", "jumped"]], "prefix": "gram7-past-tense"}
|
198 |
+
{"stem": ["thinking", "thought"], "answer": 0, "choice": [["vanishing", "vanished"], ["paying", "flying"], ["knew", "enhanced"], ["cloud", "clouds"]], "prefix": "gram7-past-tense"}
|
199 |
+
{"stem": ["paying", "paid"], "answer": 2, "choice": [["knowing", "hiding"], ["walked", "saw"], ["playing", "played"], ["warm", "warmer"]], "prefix": "gram7-past-tense"}
|
200 |
+
{"stem": ["saying", "said"], "answer": 0, "choice": [["screaming", "screamed"], ["slowed", "described"], ["apparent", "apparently"], ["moving", "hiding"]], "prefix": "gram7-past-tense"}
|
201 |
+
{"stem": ["knowing", "knew"], "answer": 1, "choice": [["Poland", "Polish"], ["listening", "listened"], ["took", "saw"], ["implementing", "shrinking"]], "prefix": "gram7-past-tense"}
|
202 |
+
{"stem": ["decreasing", "decreased"], "answer": 1, "choice": [["listening", "feeding"], ["describing", "described"], ["took", "enhanced"], ["sing", "sings"]], "prefix": "gram7-past-tense"}
|
203 |
+
{"stem": ["moving", "moved"], "answer": 3, "choice": [["India", "Indian"], ["read", "ran"], ["knowing", "striking"], ["paying", "paid"]], "prefix": "gram7-past-tense"}
|
204 |
+
{"stem": ["shrinking", "shrank"], "answer": 1, "choice": [["amazing", "amazingly"], ["singing", "sang"], ["took", "jumped"], ["sleeping", "predicting"]], "prefix": "gram7-past-tense"}
|
205 |
+
{"stem": ["striking", "struck"], "answer": 3, "choice": [["thought", "walked"], ["jumping", "increasing"], ["write", "writes"], ["swimming", "swam"]], "prefix": "gram7-past-tense"}
|
206 |
+
{"stem": ["seeing", "saw"], "answer": 1, "choice": [["sleeping", "striking"], ["selling", "sold"], ["usual", "usually"], ["decreased", "described"]], "prefix": "gram7-past-tense"}
|
207 |
+
{"stem": ["predicting", "predicted"], "answer": 2, "choice": [["jumping", "increasing"], ["dollar", "dollars"], ["reading", "read"], ["fell", "looked"]], "prefix": "gram7-past-tense"}
|
208 |
+
{"stem": ["writing", "wrote"], "answer": 0, "choice": [["dancing", "danced"], ["hitting", "swimming"], ["free", "freely"], ["thought", "ran"]], "prefix": "gram7-past-tense"}
|
209 |
+
{"stem": ["increasing", "increased"], "answer": 1, "choice": [["moved", "shrank"], ["jumping", "jumped"], ["eye", "eyes"], ["knowing", "enhancing"]], "prefix": "gram7-past-tense"}
|
210 |
+
{"stem": ["running", "ran"], "answer": 2, "choice": [["sing", "sings"], ["thought", "slept"], ["saying", "said"], ["going", "singing"]], "prefix": "gram7-past-tense"}
|
211 |
+
{"stem": ["generating", "generated"], "answer": 2, "choice": [["implementing", "playing"], ["France", "French"], ["going", "went"], ["fed", "sang"]], "prefix": "gram7-past-tense"}
|
212 |
+
{"stem": ["selling", "sold"], "answer": 2, "choice": [["decreasing", "swimming"], ["hard", "harder"], ["shrinking", "shrank"], ["slowed", "hid"]], "prefix": "gram7-past-tense"}
|
213 |
+
{"stem": ["stepson", "stepdaughter"], "answer": 2, "choice": [["Mogadishu", "Somalia"], ["prince", "stepfather"], ["uncle", "aunt"], ["wife", "mother"]], "prefix": "family"}
|
214 |
+
{"stem": ["father", "mother"], "answer": 1, "choice": [["Oslo", "Norway"], ["grandfather", "grandmother"], ["he", "husband"], ["she", "daughters"]], "prefix": "family"}
|
215 |
+
{"stem": ["his", "her"], "answer": 3, "choice": [["grandma", "queen"], ["nephew", "nephew"], ["Nigeria", "naira"], ["husband", "wife"]], "prefix": "family"}
|
216 |
+
{"stem": ["stepbrother", "stepsister"], "answer": 0, "choice": [["stepfather", "stepmother"], ["Quito", "Ecuador"], ["father", "stepson"], ["bride", "aunt"]], "prefix": "family"}
|
217 |
+
{"stem": ["grandfather", "grandmother"], "answer": 1, "choice": [["stepdaughter", "aunt"], ["grandpa", "grandma"], ["grandson", "grandson"], ["Sweden", "krona"]], "prefix": "family"}
|
218 |
+
{"stem": ["nephew", "niece"], "answer": 2, "choice": [["stepbrother", "husband"], ["stepdaughter", "mother"], ["policeman", "policewoman"], ["Hanoi", "Vietnam"]], "prefix": "family"}
|
219 |
+
{"stem": ["uncle", "aunt"], "answer": 3, "choice": [["Anchorage", "Alaska"], ["father", "stepfather"], ["grandmother", "daughter"], ["boy", "girl"]], "prefix": "family"}
|
220 |
+
{"stem": ["grandson", "granddaughter"], "answer": 0, "choice": [["groom", "bride"], ["India", "rupee"], ["wife", "daughter"], ["policeman", "son"]], "prefix": "family"}
|
221 |
+
{"stem": ["he", "she"], "answer": 2, "choice": [["bride", "mother"], ["Madrid", "Spain"], ["his", "her"], ["grandpa", "groom"]], "prefix": "family"}
|
222 |
+
{"stem": ["brothers", "sisters"], "answer": 0, "choice": [["dad", "mom"], ["Iran", "rial"], ["niece", "her"], ["uncle", "husband"]], "prefix": "family"}
|
223 |
+
{"stem": ["stepfather", "stepmother"], "answer": 3, "choice": [["stepbrother", "dad"], ["wife", "policewoman"], ["Garland", "Texas"], ["stepson", "stepdaughter"]], "prefix": "family"}
|
224 |
+
{"stem": ["grandpa", "grandma"], "answer": 0, "choice": [["grandson", "granddaughter"], ["policeman", "king"], ["she", "daughter"], ["Rome", "Italy"]], "prefix": "family"}
|
225 |
+
{"stem": ["man", "woman"], "answer": 0, "choice": [["nephew", "niece"], ["Kabul", "Afghanistan"], ["he", "his"], ["stepmother", "daughters"]], "prefix": "family"}
|
226 |
+
{"stem": ["prince", "princess"], "answer": 3, "choice": [["boy", "brothers"], ["Denmark", "krone"], ["sister", "aunt"], ["son", "daughter"]], "prefix": "family"}
|
227 |
+
{"stem": ["policeman", "policewoman"], "answer": 2, "choice": [["Ukraine", "hryvnia"], ["father", "king"], ["prince", "princess"], ["she", "mother"]], "prefix": "family"}
|
228 |
+
{"stem": ["husband", "wife"], "answer": 2, "choice": [["Lilongwe", "Malawi"], ["woman", "princess"], ["king", "queen"], ["nephew", "his"]], "prefix": "family"}
|
229 |
+
{"stem": ["groom", "bride"], "answer": 0, "choice": [["he", "she"], ["Indianapolis", "Indiana"], ["niece", "granddaughter"], ["boy", "king"]], "prefix": "family"}
|
230 |
+
{"stem": ["king", "queen"], "answer": 0, "choice": [["man", "woman"], ["prince", "husband"], ["stepmother", "princess"], ["Tripoli", "Libya"]], "prefix": "family"}
|
231 |
+
{"stem": ["boy", "girl"], "answer": 3, "choice": [["nephew", "stepfather"], ["Tallinn", "Estonia"], ["stepmother", "daughter"], ["brother", "sister"]], "prefix": "family"}
|
232 |
+
{"stem": ["brother", "sister"], "answer": 3, "choice": [["Tunis", "Tunisia"], ["stepsister", "granddaughter"], ["uncle", "groom"], ["brothers", "sisters"]], "prefix": "family"}
|
233 |
+
{"stem": ["sons", "daughters"], "answer": 1, "choice": [["sister", "granddaughter"], ["stepbrother", "stepsister"], ["father", "brother"], ["Jacksonville", "Florida"]], "prefix": "family"}
|
234 |
+
{"stem": ["Belarus", "Belorussian"], "answer": 3, "choice": [["singing", "sang"], ["Moldova", "Israel"], ["Macedonian", "Polish"], ["Brazil", "Brazilian"]], "prefix": "gram6-nationality-adjective"}
|
235 |
+
{"stem": ["Mexico", "Mexican"], "answer": 2, "choice": [["Poland", "Spain"], ["implement", "implementing"], ["Moldova", "Moldovan"], ["Macedonian", "Thai"]], "prefix": "gram6-nationality-adjective"}
|
236 |
+
{"stem": ["Poland", "Polish"], "answer": 2, "choice": [["Moldovan", "Thai"], ["playing", "played"], ["Portugal", "Portuguese"], ["Peru", "Colombia"]], "prefix": "gram6-nationality-adjective"}
|
237 |
+
{"stem": ["Italy", "Italian"], "answer": 2, "choice": [["France", "Netherlands"], ["Swedish", "Danish"], ["Japan", "Japanese"], ["melon", "melons"]], "prefix": "gram6-nationality-adjective"}
|
238 |
+
{"stem": ["Chile", "Chilean"], "answer": 1, "choice": [["easy", "easier"], ["China", "Chinese"], ["Austrian", "Peruvian"], ["Italy", "Spain"]], "prefix": "gram6-nationality-adjective"}
|
239 |
+
{"stem": ["Argentina", "Argentinean"], "answer": 2, "choice": [["talk", "talks"], ["Iceland", "Chile"], ["Australia", "Australian"], ["Spanish", "Chinese"]], "prefix": "gram6-nationality-adjective"}
|
240 |
+
{"stem": ["India", "Indian"], "answer": 0, "choice": [["Ireland", "Irish"], ["Chilean", "Danish"], ["seeing", "saw"], ["Poland", "Israel"]], "prefix": "gram6-nationality-adjective"}
|
241 |
+
{"stem": ["Ireland", "Irish"], "answer": 1, "choice": [["play", "plays"], ["Israel", "Israeli"], ["Bulgaria", "Austria"], ["Macedonian", "Maltese"]], "prefix": "gram6-nationality-adjective"}
|
242 |
+
{"stem": ["Egypt", "Egyptian"], "answer": 3, "choice": [["Portugal", "Korea"], ["generate", "generating"], ["Swedish", "Polish"], ["England", "English"]], "prefix": "gram6-nationality-adjective"}
|
243 |
+
{"stem": ["Switzerland", "Swiss"], "answer": 0, "choice": [["Thailand", "Thai"], ["Macedonia", "China"], ["swim", "swimming"], ["Icelandic", "Croatian"]], "prefix": "gram6-nationality-adjective"}
|
244 |
+
{"stem": ["Russia", "Russian"], "answer": 1, "choice": [["Chilean", "Dutch"], ["Slovakia", "Slovakian"], ["paying", "paid"], ["Norway", "Malta"]], "prefix": "gram6-nationality-adjective"}
|
245 |
+
{"stem": ["Australia", "Australian"], "answer": 3, "choice": [["increase", "increases"], ["Moldovan", "French"], ["Slovakia", "Moldova"], ["Austria", "Austrian"]], "prefix": "gram6-nationality-adjective"}
|
246 |
+
{"stem": ["Croatia", "Croatian"], "answer": 3, "choice": [["England", "Switzerland"], ["logical", "illogical"], ["Icelandic", "English"], ["Denmark", "Danish"]], "prefix": "gram6-nationality-adjective"}
|
247 |
+
{"stem": ["Cambodia", "Cambodian"], "answer": 2, "choice": [["England", "India"], ["Macedonian", "Polish"], ["Chile", "Chilean"], ["predict", "predicts"]], "prefix": "gram6-nationality-adjective"}
|
248 |
+
{"stem": ["Greece", "Greek"], "answer": 0, "choice": [["Iceland", "Icelandic"], ["think", "thinking"], ["Moldova", "Japan"], ["Macedonian", "Irish"]], "prefix": "gram6-nationality-adjective"}
|
249 |
+
{"stem": ["Korea", "Korean"], "answer": 3, "choice": [["Portuguese", "Thai"], ["old", "older"], ["Poland", "Netherlands"], ["Macedonia", "Macedonian"]], "prefix": "gram6-nationality-adjective"}
|
250 |
+
{"stem": ["Colombia", "Colombian"], "answer": 0, "choice": [["Croatia", "Croatian"], ["Portuguese", "Cambodian"], ["jumping", "jumped"], ["England", "Ukraine"]], "prefix": "gram6-nationality-adjective"}
|
251 |
+
{"stem": ["Ukraine", "Ukrainian"], "answer": 0, "choice": [["Albania", "Albanian"], ["typical", "typically"], ["Spanish", "Swiss"], ["Norway", "Croatia"]], "prefix": "gram6-nationality-adjective"}
|
252 |
+
{"stem": ["Norway", "Norwegian"], "answer": 0, "choice": [["Peru", "Peruvian"], ["onion", "onions"], ["France", "Netherlands"], ["Argentinean", "Australian"]], "prefix": "gram6-nationality-adjective"}
|
253 |
+
{"stem": ["Portugal", "Portuguese"], "answer": 2, "choice": [["Australia", "Egypt"], ["Spanish", "Peruvian"], ["Russia", "Russian"], ["describe", "describing"]], "prefix": "gram6-nationality-adjective"}
|
254 |
+
{"stem": ["France", "French"], "answer": 0, "choice": [["Germany", "German"], ["mango", "mangoes"], ["England", "Albania"], ["Belorussian", "Brazilian"]], "prefix": "gram6-nationality-adjective"}
|
255 |
+
{"stem": ["England", "English"], "answer": 1, "choice": [["Ukrainian", "Chinese"], ["France", "French"], ["selling", "sold"], ["Poland", "Sweden"]], "prefix": "gram6-nationality-adjective"}
|
256 |
+
{"stem": ["Israel", "Israeli"], "answer": 3, "choice": [["Moldova", "Moldova"], ["eagle", "eagles"], ["Portuguese", "Irish"], ["Italy", "Italian"]], "prefix": "gram6-nationality-adjective"}
|
257 |
+
{"stem": ["Moldova", "Moldovan"], "answer": 3, "choice": [["known", "unknown"], ["Portuguese", "Slovakian"], ["Cambodia", "Albania"], ["Netherlands", "Dutch"]], "prefix": "gram6-nationality-adjective"}
|
258 |
+
{"stem": ["Albania", "Albanian"], "answer": 0, "choice": [["Argentina", "Argentinean"], ["smart", "smarter"], ["Bulgarian", "Cambodian"], ["Cambodia", "Ukraine"]], "prefix": "gram6-nationality-adjective"}
|
259 |
+
{"stem": ["Bulgaria", "Bulgarian"], "answer": 1, "choice": [["Spanish", "Colombian"], ["Cambodia", "Cambodian"], ["Macedonia", "Chile"], ["competitive", "uncompetitive"]], "prefix": "gram6-nationality-adjective"}
|
260 |
+
{"stem": ["China", "Chinese"], "answer": 0, "choice": [["Colombia", "Colombian"], ["high", "highest"], ["Macedonia", "Ireland"], ["Japanese", "French"]], "prefix": "gram6-nationality-adjective"}
|
261 |
+
{"stem": ["Germany", "German"], "answer": 1, "choice": [["read", "reading"], ["Greece", "Greek"], ["Albanian", "Croatian"], ["Ireland", "Netherlands"]], "prefix": "gram6-nationality-adjective"}
|
262 |
+
{"stem": ["Slovakia", "Slovakian"], "answer": 1, "choice": [["tough", "tougher"], ["Spain", "Spanish"], ["Iceland", "Albania"], ["Argentinean", "Swiss"]], "prefix": "gram6-nationality-adjective"}
|
263 |
+
{"stem": ["Spain", "Spanish"], "answer": 2, "choice": [["Belarus", "Egypt"], ["Argentinean", "German"], ["Sweden", "Swedish"], ["playing", "played"]], "prefix": "gram6-nationality-adjective"}
|
264 |
+
{"stem": ["Malta", "Maltese"], "answer": 3, "choice": [["Greek", "Chinese"], ["bright", "brighter"], ["Bulgaria", "Egypt"], ["Mexico", "Mexican"]], "prefix": "gram6-nationality-adjective"}
|
265 |
+
{"stem": ["Thailand", "Thai"], "answer": 1, "choice": [["Bulgarian", "Cambodian"], ["Ukraine", "Ukrainian"], ["Italy", "Egypt"], ["logical", "illogical"]], "prefix": "gram6-nationality-adjective"}
|
266 |
+
{"stem": ["Iceland", "Icelandic"], "answer": 2, "choice": [["go", "going"], ["Russian", "Thai"], ["India", "Indian"], ["Cambodia", "Israel"]], "prefix": "gram6-nationality-adjective"}
|
267 |
+
{"stem": ["Austria", "Austrian"], "answer": 3, "choice": [["Moldova", "Greece"], ["read", "reading"], ["Norwegian", "Brazilian"], ["Belarus", "Belorussian"]], "prefix": "gram6-nationality-adjective"}
|
268 |
+
{"stem": ["Sweden", "Swedish"], "answer": 2, "choice": [["Thailand", "Colombia"], ["Norwegian", "Dutch"], ["Switzerland", "Swiss"], ["comfortable", "uncomfortable"]], "prefix": "gram6-nationality-adjective"}
|
269 |
+
{"stem": ["Peru", "Peruvian"], "answer": 1, "choice": [["sit", "sitting"], ["Poland", "Polish"], ["Austrian", "Indian"], ["England", "Brazil"]], "prefix": "gram6-nationality-adjective"}
|
270 |
+
{"stem": ["Netherlands", "Dutch"], "answer": 1, "choice": [["Cambodia", "Japan"], ["Norway", "Norwegian"], ["hard", "harder"], ["Albanian", "English"]], "prefix": "gram6-nationality-adjective"}
|
271 |
+
{"stem": ["Chicago", "Illinois"], "answer": 0, "choice": [["Houston", "Texas"], ["Louisiana", "Tennessee"], ["Sweden", "krona"], ["Mesa", "Plano"]], "prefix": "city-in-state"}
|
272 |
+
{"stem": ["Pittsburgh", "Pennsylvania"], "answer": 0, "choice": [["Lexington", "Kentucky"], ["Tulsa", "Miami"], ["Colorado", "California"], ["sons", "daughters"]], "prefix": "city-in-state"}
|
273 |
+
{"stem": ["Madison", "Wisconsin"], "answer": 1, "choice": [["king", "queen"], ["Lubbock", "Texas"], ["Denver", "Irving"], ["Colorado", "Indiana"]], "prefix": "city-in-state"}
|
274 |
+
{"stem": ["Philadelphia", "Pennsylvania"], "answer": 3, "choice": [["Angola", "kwanza"], ["Baltimore", "Madison"], ["Kentucky", "Oregon"], ["Phoenix", "Arizona"]], "prefix": "city-in-state"}
|
275 |
+
{"stem": ["Glendale", "Arizona"], "answer": 2, "choice": [["Argentina", "peso"], ["Ohio", "Nevada"], ["Hialeah", "Florida"], ["Tallahassee", "Garland"]], "prefix": "city-in-state"}
|
276 |
+
{"stem": ["Cleveland", "Ohio"], "answer": 1, "choice": [["Florida", "Pennsylvania"], ["Minneapolis", "Minnesota"], ["India", "rupee"], ["Baltimore", "Cincinnati"]], "prefix": "city-in-state"}
|
277 |
+
{"stem": ["Tacoma", "Washington"], "answer": 2, "choice": [["Sweden", "krona"], ["Michigan", "Indiana"], ["Oxnard", "California"], ["Fremont", "Bakersfield"]], "prefix": "city-in-state"}
|
278 |
+
{"stem": ["Jacksonville", "Florida"], "answer": 1, "choice": [["Alaska", "California"], ["Indianapolis", "Indiana"], ["Macedonia", "denar"], ["Nashville", "Honolulu"]], "prefix": "city-in-state"}
|
279 |
+
{"stem": ["Boston", "Massachusetts"], "answer": 1, "choice": [["Hawaii", "Pennsylvania"], ["Seattle", "Washington"], ["Orlando", "Anaheim"], ["Croatia", "kuna"]], "prefix": "city-in-state"}
|
280 |
+
{"stem": ["Memphis", "Tennessee"], "answer": 1, "choice": [["Cleveland", "Irving"], ["Boston", "Massachusetts"], ["Alaska", "Georgia"], ["brothers", "sisters"]], "prefix": "city-in-state"}
|
281 |
+
{"stem": ["Anchorage", "Alaska"], "answer": 0, "choice": [["Toledo", "Ohio"], ["Hawaii", "Pennsylvania"], ["Minneapolis", "Memphis"], ["grandson", "granddaughter"]], "prefix": "city-in-state"}
|
282 |
+
{"stem": ["Honolulu", "Hawaii"], "answer": 0, "choice": [["Pittsburgh", "Pennsylvania"], ["Alaska", "Indiana"], ["prince", "princess"], ["Wichita", "Madison"]], "prefix": "city-in-state"}
|
283 |
+
{"stem": ["Sacramento", "California"], "answer": 3, "choice": [["dad", "mom"], ["Henderson", "Fresno"], ["Louisiana", "Tennessee"], ["Mesa", "Arizona"]], "prefix": "city-in-state"}
|
284 |
+
{"stem": ["Austin", "Texas"], "answer": 1, "choice": [["Romania", "leu"], ["Detroit", "Michigan"], ["Florida", "Nevada"], ["Plano", "Akron"]], "prefix": "city-in-state"}
|
285 |
+
{"stem": ["Fontana", "California"], "answer": 0, "choice": [["Akron", "Ohio"], ["nephew", "niece"], ["Michigan", "Wisconsin"], ["Tulsa", "Madison"]], "prefix": "city-in-state"}
|
286 |
+
{"stem": ["Miami", "Florida"], "answer": 1, "choice": [["Canada", "dollar"], ["Tulsa", "Oklahoma"], ["Nashville", "Glendale"], ["Nebraska", "Kansas"]], "prefix": "city-in-state"}
|
287 |
+
{"stem": ["Baltimore", "Maryland"], "answer": 3, "choice": [["Garland", "Tampa"], ["Nebraska", "Pennsylvania"], ["Cambodia", "riel"], ["Nashville", "Tennessee"]], "prefix": "city-in-state"}
|
288 |
+
{"stem": ["Oakland", "California"], "answer": 2, "choice": [["Hawaii", "Nevada"], ["Argentina", "peso"], ["Cleveland", "Ohio"], ["Hialeah", "Spokane"]], "prefix": "city-in-state"}
|
289 |
+
{"stem": ["Minneapolis", "Minnesota"], "answer": 1, "choice": [["Colorado", "Maryland"], ["Wichita", "Kansas"], ["Pittsburgh", "Reno"], ["husband", "wife"]], "prefix": "city-in-state"}
|
290 |
+
{"stem": ["Reno", "Nevada"], "answer": 1, "choice": [["Kentucky", "Maryland"], ["Scottsdale", "Arizona"], ["Chicago", "Tampa"], ["Romania", "leu"]], "prefix": "city-in-state"}
|
291 |
+
{"stem": ["Spokane", "Washington"], "answer": 3, "choice": [["Tallahassee", "Miami"], ["prince", "princess"], ["Oklahoma", "Pennsylvania"], ["Modesto", "California"]], "prefix": "city-in-state"}
|
292 |
+
{"stem": ["Toledo", "Ohio"], "answer": 2, "choice": [["Hawaii", "Nevada"], ["Croatia", "kuna"], ["Plano", "Texas"], ["Chandler", "Irving"]], "prefix": "city-in-state"}
|
293 |
+
{"stem": ["Glendale", "California"], "answer": 2, "choice": [["Bulgaria", "lev"], ["Oklahoma", "Nevada"], ["Tallahassee", "Florida"], ["Orlando", "Irvine"]], "prefix": "city-in-state"}
|
294 |
+
{"stem": ["Laredo", "Texas"], "answer": 2, "choice": [["Indianapolis", "Irvine"], ["his", "her"], ["Chandler", "Arizona"], ["Michigan", "Oregon"]], "prefix": "city-in-state"}
|
295 |
+
{"stem": ["Fresno", "California"], "answer": 2, "choice": [["Florida", "Indiana"], ["grandpa", "grandma"], ["Mesa", "Arizona"], ["Omaha", "Cincinnati"]], "prefix": "city-in-state"}
|
296 |
+
{"stem": ["Tallahassee", "Florida"], "answer": 3, "choice": [["Alaska", "Maryland"], ["Cleveland", "Madison"], ["Bulgaria", "lev"], ["Huntsville", "Alabama"]], "prefix": "city-in-state"}
|
297 |
+
{"stem": ["Akron", "Ohio"], "answer": 2, "choice": [["Nebraska", "Oregon"], ["Tacoma", "Oxnard"], ["Amarillo", "Texas"], ["Thailand", "baht"]], "prefix": "city-in-state"}
|
298 |
+
{"stem": ["Arlington", "Texas"], "answer": 2, "choice": [["Ohio", "Massachusetts"], ["Detroit", "Madison"], ["Bakersfield", "California"], ["Poland", "zloty"]], "prefix": "city-in-state"}
|
299 |
+
{"stem": ["Chandler", "Arizona"], "answer": 0, "choice": [["Madison", "Wisconsin"], ["Russia", "ruble"], ["Washington", "Kansas"], ["Seattle", "Sacramento"]], "prefix": "city-in-state"}
|
300 |
+
{"stem": ["Shreveport", "Louisiana"], "answer": 0, "choice": [["Tacoma", "Washington"], ["Lubbock", "Anaheim"], ["Michigan", "Georgia"], ["Denmark", "krone"]], "prefix": "city-in-state"}
|
301 |
+
{"stem": ["Irving", "Texas"], "answer": 1, "choice": [["Louisiana", "Nevada"], ["Fremont", "California"], ["uncle", "aunt"], ["Omaha", "Garland"]], "prefix": "city-in-state"}
|
302 |
+
{"stem": ["Louisville", "Kentucky"], "answer": 0, "choice": [["Milwaukee", "Wisconsin"], ["Tucson", "Spokane"], ["Minnesota", "Indiana"], ["grandson", "granddaughter"]], "prefix": "city-in-state"}
|
303 |
+
{"stem": ["Nashville", "Tennessee"], "answer": 1, "choice": [["Alabama", "Illinois"], ["Louisville", "Kentucky"], ["he", "she"], ["Fontana", "Akron"]], "prefix": "city-in-state"}
|
304 |
+
{"stem": ["Phoenix", "Arizona"], "answer": 3, "choice": [["Romania", "leu"], ["Nebraska", "Indiana"], ["Arlington", "Fresno"], ["Dallas", "Texas"]], "prefix": "city-in-state"}
|
305 |
+
{"stem": ["Bakersfield", "California"], "answer": 1, "choice": [["Michigan", "Wisconsin"], ["Tampa", "Florida"], ["Fremont", "Huntsville"], ["stepfather", "stepmother"]], "prefix": "city-in-state"}
|
306 |
+
{"stem": ["Amarillo", "Texas"], "answer": 3, "choice": [["Fremont", "Huntsville"], ["man", "woman"], ["Alaska", "Kansas"], ["Glendale", "California"]], "prefix": "city-in-state"}
|
307 |
+
{"stem": ["Plano", "Texas"], "answer": 1, "choice": [["Ukraine", "hryvnia"], ["Henderson", "Nevada"], ["Wichita", "Atlanta"], ["Kentucky", "Indiana"]], "prefix": "city-in-state"}
|
308 |
+
{"stem": ["Modesto", "California"], "answer": 1, "choice": [["Minnesota", "Texas"], ["Shreveport", "Louisiana"], ["Tacoma", "Plano"], ["Macedonia", "denar"]], "prefix": "city-in-state"}
|
309 |
+
{"stem": ["Lubbock", "Texas"], "answer": 2, "choice": [["Mexico", "peso"], ["Tallahassee", "Atlanta"], ["Glendale", "Arizona"], ["Ohio", "Indiana"]], "prefix": "city-in-state"}
|
310 |
+
{"stem": ["Hialeah", "Florida"], "answer": 2, "choice": [["he", "she"], ["Indianapolis", "Madison"], ["Reno", "Nevada"], ["Michigan", "Kansas"]], "prefix": "city-in-state"}
|
311 |
+
{"stem": ["Tampa", "Florida"], "answer": 2, "choice": [["Louisiana", "Pennsylvania"], ["his", "her"], ["Anaheim", "California"], ["Tallahassee", "Austin"]], "prefix": "city-in-state"}
|
312 |
+
{"stem": ["Detroit", "Michigan"], "answer": 1, "choice": [["Hawaii", "Arizona"], ["Memphis", "Tennessee"], ["Cleveland", "Dallas"], ["Malaysia", "ringgit"]], "prefix": "city-in-state"}
|
313 |
+
{"stem": ["Denver", "Colorado"], "answer": 2, "choice": [["Ohio", "Arizona"], ["Indianapolis", "Tampa"], ["Baltimore", "Maryland"], ["grandfather", "grandmother"]], "prefix": "city-in-state"}
|
314 |
+
{"stem": ["Stockton", "California"], "answer": 3, "choice": [["Mesa", "Memphis"], ["Michigan", "Indiana"], ["grandson", "granddaughter"], ["Cincinnati", "Ohio"]], "prefix": "city-in-state"}
|
315 |
+
{"stem": ["Orlando", "Florida"], "answer": 3, "choice": [["Oklahoma", "Indiana"], ["policeman", "policewoman"], ["Boston", "Garland"], ["Laredo", "Texas"]], "prefix": "city-in-state"}
|
316 |
+
{"stem": ["Indianapolis", "Indiana"], "answer": 3, "choice": [["Wichita", "Irving"], ["Oklahoma", "California"], ["Argentina", "peso"], ["Austin", "Texas"]], "prefix": "city-in-state"}
|
317 |
+
{"stem": ["Fremont", "California"], "answer": 3, "choice": [["policeman", "policewoman"], ["Tulsa", "Madison"], ["Hawaii", "Wisconsin"], ["Spokane", "Washington"]], "prefix": "city-in-state"}
|
318 |
+
{"stem": ["Houston", "Texas"], "answer": 0, "choice": [["Philadelphia", "Pennsylvania"], ["Washington", "Massachusetts"], ["Arlington", "Irvine"], ["Mexico", "peso"]], "prefix": "city-in-state"}
|
319 |
+
{"stem": ["Huntsville", "Alabama"], "answer": 2, "choice": [["Nebraska", "Texas"], ["Hialeah", "Oxnard"], ["Worcester", "Massachusetts"], ["Japan", "yen"]], "prefix": "city-in-state"}
|
320 |
+
{"stem": ["Oxnard", "California"], "answer": 0, "choice": [["Akron", "Ohio"], ["Toledo", "Shreveport"], ["Minnesota", "Massachusetts"], ["brothers", "sisters"]], "prefix": "city-in-state"}
|
321 |
+
{"stem": ["Dallas", "Texas"], "answer": 1, "choice": [["Portland", "Louisville"], ["Jacksonville", "Florida"], ["Denmark", "krone"], ["Alabama", "Georgia"]], "prefix": "city-in-state"}
|
322 |
+
{"stem": ["Mesa", "Arizona"], "answer": 2, "choice": [["Henderson", "Anaheim"], ["Nebraska", "Kansas"], ["Atlanta", "Georgia"], ["India", "rupee"]], "prefix": "city-in-state"}
|
323 |
+
{"stem": ["Worcester", "Massachusetts"], "answer": 0, "choice": [["Chicago", "Illinois"], ["Minnesota", "Pennsylvania"], ["Portland", "Phoenix"], ["Japan", "yen"]], "prefix": "city-in-state"}
|
324 |
+
{"stem": ["Portland", "Oregon"], "answer": 3, "choice": [["Modesto", "Irving"], ["policeman", "policewoman"], ["Washington", "Indiana"], ["Tucson", "Arizona"]], "prefix": "city-in-state"}
|
325 |
+
{"stem": ["Milwaukee", "Wisconsin"], "answer": 0, "choice": [["Portland", "Oregon"], ["father", "mother"], ["Seattle", "Honolulu"], ["Ohio", "Nevada"]], "prefix": "city-in-state"}
|
326 |
+
{"stem": ["Wichita", "Kansas"], "answer": 3, "choice": [["Baltimore", "Stockton"], ["Bulgaria", "lev"], ["Minnesota", "Illinois"], ["Arlington", "Texas"]], "prefix": "city-in-state"}
|
327 |
+
{"stem": ["Scottsdale", "Arizona"], "answer": 0, "choice": [["Irving", "Texas"], ["Pittsburgh", "Shreveport"], ["Vietnam", "dong"], ["Nebraska", "Pennsylvania"]], "prefix": "city-in-state"}
|
328 |
+
{"stem": ["Atlanta", "Georgia"], "answer": 1, "choice": [["Florida", "Pennsylvania"], ["Omaha", "Nebraska"], ["brothers", "sisters"], ["Hialeah", "Huntsville"]], "prefix": "city-in-state"}
|
329 |
+
{"stem": ["Seattle", "Washington"], "answer": 0, "choice": [["Denver", "Colorado"], ["Tucson", "Akron"], ["Poland", "zloty"], ["California", "Arizona"]], "prefix": "city-in-state"}
|
330 |
+
{"stem": ["Tucson", "Arizona"], "answer": 0, "choice": [["Fresno", "California"], ["Oklahoma", "Illinois"], ["prince", "princess"], ["Minneapolis", "Dallas"]], "prefix": "city-in-state"}
|
331 |
+
{"stem": ["Henderson", "Nevada"], "answer": 0, "choice": [["Orlando", "Florida"], ["Washington", "Indiana"], ["Seattle", "Scottsdale"], ["uncle", "aunt"]], "prefix": "city-in-state"}
|
332 |
+
{"stem": ["Omaha", "Nebraska"], "answer": 0, "choice": [["Miami", "Florida"], ["Ohio", "Georgia"], ["Modesto", "Bakersfield"], ["Vietnam", "dong"]], "prefix": "city-in-state"}
|
333 |
+
{"stem": ["Canada", "dollar"], "answer": 3, "choice": [["Mexico", "Sweden"], ["Canberra", "Australia"], ["lats", "naira"], ["Croatia", "kuna"]], "prefix": "currency"}
|
334 |
+
{"stem": ["Europe", "euro"], "answer": 3, "choice": [["rial", "ruble"], ["Glendale", "California"], ["Romania", "India"], ["Hungary", "forint"]], "prefix": "currency"}
|
335 |
+
{"stem": ["Mexico", "peso"], "answer": 1, "choice": [["USA", "Poland"], ["Nigeria", "naira"], ["lev", "leu"], ["Berlin", "Germany"]], "prefix": "currency"}
|
336 |
+
{"stem": ["Japan", "yen"], "answer": 3, "choice": [["Berlin", "Germany"], ["Thailand", "Malaysia"], ["riel", "peso"], ["Korea", "won"]], "prefix": "currency"}
|
337 |
+
{"stem": ["Angola", "kwanza"], "answer": 1, "choice": [["Belmopan", "Belize"], ["Argentina", "peso"], ["riel", "ringgit"], ["Latvia", "Sweden"]], "prefix": "currency"}
|
338 |
+
{"stem": ["Hungary", "forint"], "answer": 3, "choice": [["Bulgaria", "Croatia"], ["uncle", "aunt"], ["yen", "zloty"], ["India", "rupee"]], "prefix": "currency"}
|
339 |
+
{"stem": ["Algeria", "dinar"], "answer": 2, "choice": [["ringgit", "denar"], ["Vietnam", "Japan"], ["Angola", "kwanza"], ["Austin", "Texas"]], "prefix": "currency"}
|
340 |
+
{"stem": ["Thailand", "baht"], "answer": 0, "choice": [["Ukraine", "hryvnia"], ["Bulgaria", "India"], ["uncle", "aunt"], ["dong", "ruble"]], "prefix": "currency"}
|
341 |
+
{"stem": ["Vietnam", "dong"], "answer": 3, "choice": [["Oslo", "Norway"], ["Poland", "Poland"], ["lev", "leu"], ["Algeria", "dinar"]], "prefix": "currency"}
|
342 |
+
{"stem": ["Armenia", "dram"], "answer": 1, "choice": [["Latvia", "Ukraine"], ["Brazil", "real"], ["Spokane", "Washington"], ["hryvnia", "peso"]], "prefix": "currency"}
|
343 |
+
{"stem": ["Argentina", "peso"], "answer": 2, "choice": [["kwanza", "baht"], ["policeman", "policewoman"], ["Armenia", "dram"], ["Bulgaria", "Macedonia"]], "prefix": "currency"}
|
344 |
+
{"stem": ["Sweden", "krona"], "answer": 0, "choice": [["Thailand", "baht"], ["Dallas", "Texas"], ["rial", "zloty"], ["Macedonia", "Angola"]], "prefix": "currency"}
|
345 |
+
{"stem": ["Macedonia", "denar"], "answer": 0, "choice": [["Malaysia", "ringgit"], ["Romania", "Brazil"], ["yen", "forint"], ["Tampa", "Florida"]], "prefix": "currency"}
|
346 |
+
{"stem": ["Latvia", "lats"], "answer": 3, "choice": [["yen", "peso"], ["Bulgaria", "Malaysia"], ["Bern", "Switzerland"], ["Lithuania", "litas"]], "prefix": "currency"}
|
347 |
+
{"stem": ["Malaysia", "ringgit"], "answer": 1, "choice": [["rupee", "ruble"], ["Mexico", "peso"], ["Canada", "Macedonia"], ["Moscow", "Russia"]], "prefix": "currency"}
|
348 |
+
{"stem": ["USA", "dollar"], "answer": 1, "choice": [["stepson", "stepdaughter"], ["Vietnam", "dong"], ["riel", "euro"], ["Romania", "Sweden"]], "prefix": "currency"}
|
349 |
+
{"stem": ["Korea", "won"], "answer": 3, "choice": [["krone", "peso"], ["Havana", "Cuba"], ["Algeria", "Iran"], ["Latvia", "lats"]], "prefix": "currency"}
|
350 |
+
{"stem": ["Denmark", "krone"], "answer": 3, "choice": [["kuna", "leu"], ["grandpa", "grandma"], ["Romania", "Angola"], ["Europe", "euro"]], "prefix": "currency"}
|
351 |
+
{"stem": ["Brazil", "real"], "answer": 2, "choice": [["Cleveland", "Ohio"], ["Lithuania", "Poland"], ["Bulgaria", "lev"], ["riel", "dinar"]], "prefix": "currency"}
|
352 |
+
{"stem": ["Ukraine", "hryvnia"], "answer": 1, "choice": [["yen", "won"], ["USA", "dollar"], ["he", "she"], ["Europe", "India"]], "prefix": "currency"}
|
353 |
+
{"stem": ["Lithuania", "litas"], "answer": 2, "choice": [["Havana", "Cuba"], ["krone", "dinar"], ["Macedonia", "denar"], ["Hungary", "Nigeria"]], "prefix": "currency"}
|
354 |
+
{"stem": ["India", "rupee"], "answer": 2, "choice": [["litas", "peso"], ["grandson", "granddaughter"], ["Iran", "rial"], ["Thailand", "Macedonia"]], "prefix": "currency"}
|
355 |
+
{"stem": ["Cambodia", "riel"], "answer": 1, "choice": [["Hungary", "Japan"], ["Canada", "dollar"], ["kuna", "leu"], ["king", "queen"]], "prefix": "currency"}
|
356 |
+
{"stem": ["Russia", "ruble"], "answer": 3, "choice": [["dollar", "lev"], ["Madrid", "Spain"], ["Bulgaria", "Croatia"], ["Sweden", "krona"]], "prefix": "currency"}
|
357 |
+
{"stem": ["Nigeria", "naira"], "answer": 2, "choice": [["Kampala", "Uganda"], ["litas", "dram"], ["Poland", "zloty"], ["Latvia", "Japan"]], "prefix": "currency"}
|
358 |
+
{"stem": ["Iran", "rial"], "answer": 3, "choice": [["kuna", "euro"], ["Cairo", "Egypt"], ["USA", "Croatia"], ["Japan", "yen"]], "prefix": "currency"}
|
359 |
+
{"stem": ["Bulgaria", "lev"], "answer": 1, "choice": [["Macedonia", "Angola"], ["Cambodia", "riel"], ["Kathmandu", "Nepal"], ["hryvnia", "dram"]], "prefix": "currency"}
|
360 |
+
{"stem": ["go", "goes"], "answer": 3, "choice": [["sitting", "sat"], ["sing", "walk"], ["sits", "listens"], ["implement", "implements"]], "prefix": "gram9-plural-verbs"}
|
361 |
+
{"stem": ["sing", "sings"], "answer": 1, "choice": [["shuffles", "listens"], ["sit", "sits"], ["eat", "scream"], ["looking", "looked"]], "prefix": "gram9-plural-verbs"}
|
362 |
+
{"stem": ["enhance", "enhances"], "answer": 1, "choice": [["goes", "swims"], ["estimate", "estimates"], ["sit", "see"], ["safe", "safer"]], "prefix": "gram9-plural-verbs"}
|
363 |
+
{"stem": ["walk", "walks"], "answer": 0, "choice": [["work", "works"], ["eat", "slow"], ["increases", "predicts"], ["productive", "unproductive"]], "prefix": "gram9-plural-verbs"}
|
364 |
+
{"stem": ["sit", "sits"], "answer": 3, "choice": [["speaks", "plays"], ["think", "describe"], ["shuffle", "shuffling"], ["slow", "slows"]], "prefix": "gram9-plural-verbs"}
|
365 |
+
{"stem": ["talk", "talks"], "answer": 1, "choice": [["writes", "listens"], ["think", "thinks"], ["generate", "say"], ["writing", "wrote"]], "prefix": "gram9-plural-verbs"}
|
366 |
+
{"stem": ["work", "works"], "answer": 2, "choice": [["lion", "lions"], ["sing", "vanish"], ["write", "writes"], ["screams", "listens"]], "prefix": "gram9-plural-verbs"}
|
367 |
+
{"stem": ["estimate", "estimates"], "answer": 1, "choice": [["decreases", "eats"], ["find", "finds"], ["describe", "see"], ["bird", "birds"]], "prefix": "gram9-plural-verbs"}
|
368 |
+
{"stem": ["provide", "provides"], "answer": 1, "choice": [["go", "search"], ["say", "says"], ["decreases", "estimates"], ["pear", "pears"]], "prefix": "gram9-plural-verbs"}
|
369 |
+
{"stem": ["eat", "eats"], "answer": 1, "choice": [["Slovakia", "Slovakian"], ["enhance", "enhances"], ["speaks", "sees"], ["decrease", "slow"]], "prefix": "gram9-plural-verbs"}
|
370 |
+
{"stem": ["write", "writes"], "answer": 1, "choice": [["sure", "unsure"], ["decrease", "decreases"], ["enhance", "see"], ["goes", "estimates"]], "prefix": "gram9-plural-verbs"}
|
371 |
+
{"stem": ["say", "says"], "answer": 0, "choice": [["scream", "screams"], ["big", "biggest"], ["generate", "find"], ["speaks", "describes"]], "prefix": "gram9-plural-verbs"}
|
372 |
+
{"stem": ["predict", "predicts"], "answer": 2, "choice": [["enhance", "scream"], ["decreases", "talks"], ["provide", "provides"], ["Ireland", "Irish"]], "prefix": "gram9-plural-verbs"}
|
373 |
+
{"stem": ["speak", "speaks"], "answer": 3, "choice": [["provide", "scream"], ["decreases", "walks"], ["fly", "flying"], ["swim", "swims"]], "prefix": "gram9-plural-verbs"}
|
374 |
+
{"stem": ["vanish", "vanishes"], "answer": 0, "choice": [["walk", "walks"], ["enhances", "predicts"], ["most", "mostly"], ["go", "play"]], "prefix": "gram9-plural-verbs"}
|
375 |
+
{"stem": ["listen", "listens"], "answer": 0, "choice": [["play", "plays"], ["decrease", "increase"], ["speaks", "walks"], ["woman", "women"]], "prefix": "gram9-plural-verbs"}
|
376 |
+
{"stem": ["swim", "swims"], "answer": 0, "choice": [["talk", "talks"], ["Moldova", "Moldovan"], ["goes", "describes"], ["think", "see"]], "prefix": "gram9-plural-verbs"}
|
377 |
+
{"stem": ["find", "finds"], "answer": 3, "choice": [["efficient", "efficiently"], ["decreases", "listens"], ["sit", "slow"], ["generate", "generates"]], "prefix": "gram9-plural-verbs"}
|
378 |
+
{"stem": ["implement", "implements"], "answer": 1, "choice": [["look", "looking"], ["increase", "increases"], ["provide", "predict"], ["writes", "talks"]], "prefix": "gram9-plural-verbs"}
|
379 |
+
{"stem": ["think", "thinks"], "answer": 2, "choice": [["enhance", "predict"], ["warm", "warmest"], ["vanish", "vanishes"], ["decreases", "shuffles"]], "prefix": "gram9-plural-verbs"}
|
380 |
+
{"stem": ["decrease", "decreases"], "answer": 2, "choice": [["eat", "swim"], ["rapid", "rapidly"], ["describe", "describes"], ["provides", "plays"]], "prefix": "gram9-plural-verbs"}
|
381 |
+
{"stem": ["scream", "screams"], "answer": 3, "choice": [["sing", "see"], ["decreasing", "decreased"], ["provides", "estimates"], ["search", "searches"]], "prefix": "gram9-plural-verbs"}
|
382 |
+
{"stem": ["shuffle", "shuffles"], "answer": 1, "choice": [["pleasant", "unpleasant"], ["sing", "sings"], ["provide", "vanish"], ["enhances", "walks"]], "prefix": "gram9-plural-verbs"}
|
383 |
+
{"stem": ["slow", "slows"], "answer": 3, "choice": [["sleeping", "slept"], ["searches", "shuffles"], ["work", "describe"], ["speak", "speaks"]], "prefix": "gram9-plural-verbs"}
|
384 |
+
{"stem": ["increase", "increases"], "answer": 1, "choice": [["provide", "search"], ["listen", "listens"], ["speaks", "eats"], ["efficient", "efficiently"]], "prefix": "gram9-plural-verbs"}
|
385 |
+
{"stem": ["describe", "describes"], "answer": 3, "choice": [["cloud", "clouds"], ["sits", "estimates"], ["sing", "scream"], ["eat", "eats"]], "prefix": "gram9-plural-verbs"}
|
386 |
+
{"stem": ["search", "searches"], "answer": 1, "choice": [["shuffles", "predicts"], ["see", "sees"], ["write", "walk"], ["fortunate", "unfortunate"]], "prefix": "gram9-plural-verbs"}
|
387 |
+
{"stem": ["happy", "happily"], "answer": 0, "choice": [["immediate", "immediately"], ["apparent", "sudden"], ["selling", "sold"], ["rarely", "infrequently"]], "prefix": "gram1-adjective-to-adverb"}
|
388 |
+
{"stem": ["rapid", "rapidly"], "answer": 0, "choice": [["rare", "rarely"], ["professionally", "infrequently"], ["precise", "safe"], ["England", "English"]], "prefix": "gram1-adjective-to-adverb"}
|
389 |
+
{"stem": ["lucky", "luckily"], "answer": 2, "choice": [["fast", "faster"], ["happy", "usual"], ["most", "mostly"], ["immediately", "amazingly"]], "prefix": "gram1-adjective-to-adverb"}
|
390 |
+
{"stem": ["quiet", "quietly"], "answer": 0, "choice": [["rapid", "rapidly"], ["eagle", "eagles"], ["furious", "complete"], ["typically", "amazingly"]], "prefix": "gram1-adjective-to-adverb"}
|
391 |
+
{"stem": ["infrequent", "infrequently"], "answer": 3, "choice": [["child", "children"], ["furiously", "unfortunately"], ["reluctant", "immediate"], ["lucky", "luckily"]], "prefix": "gram1-adjective-to-adverb"}
|
392 |
+
{"stem": ["immediate", "immediately"], "answer": 0, "choice": [["infrequent", "infrequently"], ["efficiently", "safely"], ["fortunate", "fortunate"], ["tall", "tallest"]], "prefix": "gram1-adjective-to-adverb"}
|
393 |
+
{"stem": ["serious", "seriously"], "answer": 0, "choice": [["slow", "slowly"], ["hitting", "hit"], ["quietly", "luckily"], ["cheerful", "calm"]], "prefix": "gram1-adjective-to-adverb"}
|
394 |
+
{"stem": ["amazing", "amazingly"], "answer": 3, "choice": [["swiftly", "reluctantly"], ["fortunate", "rapid"], ["rational", "irrational"], ["apparent", "apparently"]], "prefix": "gram1-adjective-to-adverb"}
|
395 |
+
{"stem": ["professional", "professionally"], "answer": 3, "choice": [["young", "youngest"], ["cheerful", "lucky"], ["precisely", "fortunately"], ["quick", "quickly"]], "prefix": "gram1-adjective-to-adverb"}
|
396 |
+
{"stem": ["swift", "swiftly"], "answer": 0, "choice": [["typical", "typically"], ["precisely", "occasionally"], ["Austria", "Austrian"], ["unfortunate", "sudden"]], "prefix": "gram1-adjective-to-adverb"}
|
397 |
+
{"stem": ["fortunate", "fortunately"], "answer": 2, "choice": [["tight", "tighter"], ["efficiently", "slowly"], ["free", "freely"], ["amazing", "sudden"]], "prefix": "gram1-adjective-to-adverb"}
|
398 |
+
{"stem": ["quick", "quickly"], "answer": 2, "choice": [["professionally", "luckily"], ["fast", "faster"], ["quiet", "quietly"], ["cheerful", "fortunate"]], "prefix": "gram1-adjective-to-adverb"}
|
399 |
+
{"stem": ["sudden", "suddenly"], "answer": 0, "choice": [["swift", "swiftly"], ["paying", "paid"], ["fortunate", "lucky"], ["furiously", "fortunately"]], "prefix": "gram1-adjective-to-adverb"}
|
400 |
+
{"stem": ["occasional", "occasionally"], "answer": 0, "choice": [["possible", "possibly"], ["safe", "safer"], ["apparently", "rapidly"], ["amazing", "complete"]], "prefix": "gram1-adjective-to-adverb"}
|
401 |
+
{"stem": ["unfortunate", "unfortunately"], "answer": 0, "choice": [["usual", "usually"], ["quickly", "luckily"], ["convincing", "unconvincing"], ["professional", "occasional"]], "prefix": "gram1-adjective-to-adverb"}
|
402 |
+
{"stem": ["most", "mostly"], "answer": 3, "choice": [["professionally", "efficiently"], ["dollar", "dollars"], ["fortunate", "complete"], ["obvious", "obviously"]], "prefix": "gram1-adjective-to-adverb"}
|
403 |
+
{"stem": ["free", "freely"], "answer": 2, "choice": [["calmly", "occasionally"], ["infrequent", "immediate"], ["furious", "furiously"], ["sharp", "sharpest"]], "prefix": "gram1-adjective-to-adverb"}
|
404 |
+
{"stem": ["apparent", "apparently"], "answer": 0, "choice": [["calm", "calmly"], ["happy", "fortunate"], ["swiftly", "infrequently"], ["fortunate", "unfortunate"]], "prefix": "gram1-adjective-to-adverb"}
|
405 |
+
{"stem": ["precise", "precisely"], "answer": 1, "choice": [["rarely", "occasionally"], ["professional", "professionally"], ["infrequent", "lucky"], ["weird", "weirdest"]], "prefix": "gram1-adjective-to-adverb"}
|
406 |
+
{"stem": ["calm", "calmly"], "answer": 2, "choice": [["precise", "lucky"], ["immediately", "happily"], ["cheerful", "cheerfully"], ["bad", "worse"]], "prefix": "gram1-adjective-to-adverb"}
|
407 |
+
{"stem": ["typical", "typically"], "answer": 1, "choice": [["high", "higher"], ["unfortunate", "unfortunately"], ["infrequent", "rare"], ["suddenly", "reluctantly"]], "prefix": "gram1-adjective-to-adverb"}
|
408 |
+
{"stem": ["obvious", "obviously"], "answer": 2, "choice": [["professionally", "infrequently"], ["happy", "sudden"], ["occasional", "occasionally"], ["looking", "looked"]], "prefix": "gram1-adjective-to-adverb"}
|
409 |
+
{"stem": ["efficient", "efficiently"], "answer": 2, "choice": [["amazing", "lucky"], ["typically", "slowly"], ["fortunate", "fortunately"], ["swim", "swims"]], "prefix": "gram1-adjective-to-adverb"}
|
410 |
+
{"stem": ["reluctant", "reluctantly"], "answer": 3, "choice": [["cheerfully", "slowly"], ["most", "calm"], ["eye", "eyes"], ["safe", "safely"]], "prefix": "gram1-adjective-to-adverb"}
|
411 |
+
{"stem": ["possible", "possibly"], "answer": 2, "choice": [["unfortunate", "safe"], ["rarely", "fortunately"], ["precise", "precisely"], ["write", "writing"]], "prefix": "gram1-adjective-to-adverb"}
|
412 |
+
{"stem": ["slow", "slowly"], "answer": 3, "choice": [["swiftly", "infrequently"], ["most", "usual"], ["swim", "swims"], ["sudden", "suddenly"]], "prefix": "gram1-adjective-to-adverb"}
|
413 |
+
{"stem": ["safe", "safely"], "answer": 0, "choice": [["serious", "seriously"], ["furious", "calm"], ["apparently", "infrequently"], ["generate", "generates"]], "prefix": "gram1-adjective-to-adverb"}
|
414 |
+
{"stem": ["furious", "furiously"], "answer": 2, "choice": [["Chile", "Chilean"], ["unfortunate", "usual"], ["happy", "happily"], ["quickly", "slowly"]], "prefix": "gram1-adjective-to-adverb"}
|
415 |
+
{"stem": ["cheerful", "cheerfully"], "answer": 3, "choice": [["decided", "undecided"], ["most", "lucky"], ["professionally", "occasionally"], ["complete", "completely"]], "prefix": "gram1-adjective-to-adverb"}
|
416 |
+
{"stem": ["Madrid", "Spain"], "answer": 0, "choice": [["Moscow", "Russia"], ["Cambodia", "riel"], ["Canberra", "Athens"], ["Australia", "Japan"]], "prefix": "capital-common-countries"}
|
417 |
+
{"stem": ["Oslo", "Norway"], "answer": 1, "choice": [["Egypt", "Finland"], ["Ottawa", "Canada"], ["grandfather", "grandmother"], ["Cairo", "Islamabad"]], "prefix": "capital-common-countries"}
|
418 |
+
{"stem": ["Rome", "Italy"], "answer": 0, "choice": [["Stockholm", "Sweden"], ["Islamabad", "Hanoi"], ["France", "Greece"], ["Brazil", "real"]], "prefix": "capital-common-countries"}
|
419 |
+
{"stem": ["Helsinki", "Finland"], "answer": 3, "choice": [["Germany", "Sweden"], ["Japan", "yen"], ["Rome", "Madrid"], ["Islamabad", "Pakistan"]], "prefix": "capital-common-countries"}
|
420 |
+
{"stem": ["Paris", "France"], "answer": 3, "choice": [["son", "daughter"], ["Helsinki", "Beijing"], ["Germany", "China"], ["Rome", "Italy"]], "prefix": "capital-common-countries"}
|
421 |
+
{"stem": ["Canberra", "Australia"], "answer": 2, "choice": [["Moscow", "Berlin"], ["Iran", "rial"], ["Hanoi", "Vietnam"], ["England", "China"]], "prefix": "capital-common-countries"}
|
422 |
+
{"stem": ["London", "England"], "answer": 1, "choice": [["groom", "bride"], ["Madrid", "Spain"], ["Helsinki", "Athens"], ["Norway", "Greece"]], "prefix": "capital-common-countries"}
|
423 |
+
{"stem": ["Berlin", "Germany"], "answer": 2, "choice": [["Paris", "Stockholm"], ["stepbrother", "stepsister"], ["Bern", "Switzerland"], ["England", "Afghanistan"]], "prefix": "capital-common-countries"}
|
424 |
+
{"stem": ["Islamabad", "Pakistan"], "answer": 3, "choice": [["his", "her"], ["Norway", "Iran"], ["Havana", "Tehran"], ["Kabul", "Afghanistan"]], "prefix": "capital-common-countries"}
|
425 |
+
{"stem": ["Baghdad", "Iraq"], "answer": 2, "choice": [["Rome", "Beijing"], ["Australia", "Sweden"], ["Bangkok", "Thailand"], ["he", "she"]], "prefix": "capital-common-countries"}
|
426 |
+
{"stem": ["Ottawa", "Canada"], "answer": 0, "choice": [["Paris", "France"], ["father", "mother"], ["Australia", "Greece"], ["Rome", "Hanoi"]], "prefix": "capital-common-countries"}
|
427 |
+
{"stem": ["Beijing", "China"], "answer": 1, "choice": [["Macedonia", "denar"], ["Berlin", "Germany"], ["France", "Greece"], ["Canberra", "Rome"]], "prefix": "capital-common-countries"}
|
428 |
+
{"stem": ["Bangkok", "Thailand"], "answer": 3, "choice": [["husband", "wife"], ["Baghdad", "Hanoi"], ["France", "Finland"], ["Beijing", "China"]], "prefix": "capital-common-countries"}
|
429 |
+
{"stem": ["Stockholm", "Sweden"], "answer": 1, "choice": [["Bangkok", "Ottawa"], ["Tehran", "Iran"], ["Sweden", "krona"], ["Iraq", "Egypt"]], "prefix": "capital-common-countries"}
|
430 |
+
{"stem": ["Tokyo", "Japan"], "answer": 2, "choice": [["Italy", "Russia"], ["Paris", "Stockholm"], ["Athens", "Greece"], ["husband", "wife"]], "prefix": "capital-common-countries"}
|
431 |
+
{"stem": ["Cairo", "Egypt"], "answer": 2, "choice": [["Iraq", "Pakistan"], ["Moscow", "Stockholm"], ["Canberra", "Australia"], ["Thailand", "baht"]], "prefix": "capital-common-countries"}
|
432 |
+
{"stem": ["Kabul", "Afghanistan"], "answer": 3, "choice": [["Lithuania", "litas"], ["Canberra", "Madrid"], ["Switzerland", "Russia"], ["London", "England"]], "prefix": "capital-common-countries"}
|
433 |
+
{"stem": ["Tehran", "Iran"], "answer": 2, "choice": [["Iraq", "Afghanistan"], ["Moscow", "Beijing"], ["Tokyo", "Japan"], ["Denmark", "krone"]], "prefix": "capital-common-countries"}
|
434 |
+
{"stem": ["Bern", "Switzerland"], "answer": 2, "choice": [["Australia", "Afghanistan"], ["Paris", "Athens"], ["Cairo", "Egypt"], ["Europe", "euro"]], "prefix": "capital-common-countries"}
|
435 |
+
{"stem": ["Havana", "Cuba"], "answer": 2, "choice": [["Canada", "Switzerland"], ["Oslo", "Berlin"], ["Helsinki", "Finland"], ["man", "woman"]], "prefix": "capital-common-countries"}
|
436 |
+
{"stem": ["Moscow", "Russia"], "answer": 3, "choice": [["man", "woman"], ["London", "Ottawa"], ["Italy", "Egypt"], ["Oslo", "Norway"]], "prefix": "capital-common-countries"}
|
437 |
+
{"stem": ["generate", "generating"], "answer": 2, "choice": [["paying", "paid"], ["reading", "thinking"], ["go", "going"], ["look", "run"]], "prefix": "gram5-present-participle"}
|
438 |
+
{"stem": ["listen", "listening"], "answer": 0, "choice": [["look", "looking"], ["Brazil", "Brazilian"], ["write", "swim"], ["slowing", "singing"]], "prefix": "gram5-present-participle"}
|
439 |
+
{"stem": ["debug", "debugging"], "answer": 2, "choice": [["read", "swim"], ["small", "smallest"], ["decrease", "decreasing"], ["slowing", "singing"]], "prefix": "gram5-present-participle"}
|
440 |
+
{"stem": ["think", "thinking"], "answer": 2, "choice": [["cold", "colder"], ["invent", "swim"], ["vanish", "vanishing"], ["discovering", "screaming"]], "prefix": "gram5-present-participle"}
|
441 |
+
{"stem": ["say", "saying"], "answer": 1, "choice": [["loud", "louder"], ["scream", "screaming"], ["generating", "predicting"], ["implement", "run"]], "prefix": "gram5-present-participle"}
|
442 |
+
{"stem": ["write", "writing"], "answer": 2, "choice": [["implementing", "implemented"], ["reading", "increasing"], ["code", "coding"], ["generate", "discover"]], "prefix": "gram5-present-participle"}
|
443 |
+
{"stem": ["walk", "walking"], "answer": 2, "choice": [["Australia", "Australian"], ["go", "code"], ["write", "writing"], ["vanishing", "thinking"]], "prefix": "gram5-present-participle"}
|
444 |
+
{"stem": ["sing", "singing"], "answer": 1, "choice": [["decrease", "walk"], ["sit", "sitting"], ["smart", "smarter"], ["discovering", "swimming"]], "prefix": "gram5-present-participle"}
|
445 |
+
{"stem": ["slow", "slowing"], "answer": 0, "choice": [["swim", "swimming"], ["rat", "rats"], ["vanishing", "sitting"], ["sit", "code"]], "prefix": "gram5-present-participle"}
|
446 |
+
{"stem": ["fly", "flying"], "answer": 1, "choice": [["decreasing", "screaming"], ["generate", "generating"], ["simple", "simpler"], ["listen", "walk"]], "prefix": "gram5-present-participle"}
|
447 |
+
{"stem": ["shuffle", "shuffling"], "answer": 3, "choice": [["cow", "cows"], ["writing", "sitting"], ["listen", "vanish"], ["sing", "singing"]], "prefix": "gram5-present-participle"}
|
448 |
+
{"stem": ["move", "moving"], "answer": 0, "choice": [["play", "playing"], ["sit", "code"], ["inventing", "thinking"], ["cold", "coldest"]], "prefix": "gram5-present-participle"}
|
449 |
+
{"stem": ["see", "seeing"], "answer": 0, "choice": [["shuffle", "shuffling"], ["inventing", "playing"], ["cold", "coldest"], ["describe", "code"]], "prefix": "gram5-present-participle"}
|
450 |
+
{"stem": ["run", "running"], "answer": 0, "choice": [["say", "saying"], ["look", "debug"], ["Macedonia", "Macedonian"], ["slowing", "inventing"]], "prefix": "gram5-present-participle"}
|
451 |
+
{"stem": ["look", "looking"], "answer": 3, "choice": [["describing", "predicting"], ["Switzerland", "Swiss"], ["enhance", "run"], ["move", "moving"]], "prefix": "gram5-present-participle"}
|
452 |
+
{"stem": ["decrease", "decreasing"], "answer": 0, "choice": [["describe", "describing"], ["going", "screaming"], ["Italy", "Italian"], ["dance", "fly"]], "prefix": "gram5-present-participle"}
|
453 |
+
{"stem": ["sit", "sitting"], "answer": 1, "choice": [["quiet", "quietly"], ["slow", "slowing"], ["invent", "swim"], ["generating", "listening"]], "prefix": "gram5-present-participle"}
|
454 |
+
{"stem": ["predict", "predicting"], "answer": 0, "choice": [["read", "reading"], ["play", "slow"], ["old", "oldest"], ["shuffling", "sitting"]], "prefix": "gram5-present-participle"}
|
455 |
+
{"stem": ["read", "reading"], "answer": 0, "choice": [["run", "running"], ["writing", "swimming"], ["write", "predict"], ["shrinking", "shrank"]], "prefix": "gram5-present-participle"}
|
456 |
+
{"stem": ["scream", "screaming"], "answer": 3, "choice": [["discovering", "enhancing"], ["generate", "describe"], ["slowing", "slowed"], ["see", "seeing"]], "prefix": "gram5-present-participle"}
|
457 |
+
{"stem": ["go", "going"], "answer": 1, "choice": [["vanishing", "sitting"], ["implement", "implementing"], ["invent", "debug"], ["Greece", "Greek"]], "prefix": "gram5-present-participle"}
|
458 |
+
{"stem": ["describe", "describing"], "answer": 3, "choice": [["think", "say"], ["shuffling", "enhancing"], ["usual", "usually"], ["discover", "discovering"]], "prefix": "gram5-present-participle"}
|
459 |
+
{"stem": ["play", "playing"], "answer": 2, "choice": [["implement", "say"], ["shuffling", "seeing"], ["predict", "predicting"], ["go", "goes"]], "prefix": "gram5-present-participle"}
|
460 |
+
{"stem": ["invent", "inventing"], "answer": 2, "choice": [["slowing", "enhancing"], ["thinking", "thought"], ["jump", "jumping"], ["listen", "say"]], "prefix": "gram5-present-participle"}
|
461 |
+
{"stem": ["increase", "increasing"], "answer": 0, "choice": [["invent", "inventing"], ["think", "slow"], ["shuffle", "shuffles"], ["decreasing", "playing"]], "prefix": "gram5-present-participle"}
|
462 |
+
{"stem": ["enhance", "enhancing"], "answer": 1, "choice": [["reading", "looking"], ["fly", "flying"], ["generate", "scream"], ["Cambodia", "Cambodian"]], "prefix": "gram5-present-participle"}
|
463 |
+
{"stem": ["jump", "jumping"], "answer": 1, "choice": [["slow", "slows"], ["listen", "listening"], ["writing", "playing"], ["describe", "discover"]], "prefix": "gram5-present-participle"}
|
464 |
+
{"stem": ["vanish", "vanishing"], "answer": 0, "choice": [["walk", "walking"], ["shuffling", "inventing"], ["good", "best"], ["look", "swim"]], "prefix": "gram5-present-participle"}
|
465 |
+
{"stem": ["implement", "implementing"], "answer": 3, "choice": [["sing", "run"], ["generating", "dancing"], ["cold", "colder"], ["increase", "increasing"]], "prefix": "gram5-present-participle"}
|
466 |
+
{"stem": ["discover", "discovering"], "answer": 3, "choice": [["think", "walk"], ["China", "Chinese"], ["going", "seeing"], ["enhance", "enhancing"]], "prefix": "gram5-present-participle"}
|
467 |
+
{"stem": ["computer", "computers"], "answer": 2, "choice": [["dogs", "colors"], ["cool", "coolest"], ["cow", "cows"], ["woman", "goat"]], "prefix": "gram8-plural"}
|
468 |
+
{"stem": ["banana", "bananas"], "answer": 2, "choice": [["easy", "easier"], ["monkeys", "pears"], ["bird", "birds"], ["woman", "car"]], "prefix": "gram8-plural"}
|
469 |
+
{"stem": ["donkey", "donkeys"], "answer": 2, "choice": [["dollars", "computers"], ["onion", "eye"], ["dream", "dreams"], ["screaming", "screamed"]], "prefix": "gram8-plural"}
|
470 |
+
{"stem": ["onion", "onions"], "answer": 3, "choice": [["men", "birds"], ["informed", "uninformed"], ["goat", "finger"], ["pear", "pears"]], "prefix": "gram8-plural"}
|
471 |
+
{"stem": ["man", "men"], "answer": 3, "choice": [["bottle", "child"], ["eyes", "dreams"], ["listen", "listening"], ["melon", "melons"]], "prefix": "gram8-plural"}
|
472 |
+
{"stem": ["road", "roads"], "answer": 3, "choice": [["bananas", "horses"], ["machine", "pig"], ["weird", "weirdest"], ["snake", "snakes"]], "prefix": "gram8-plural"}
|
473 |
+
{"stem": ["snake", "snakes"], "answer": 3, "choice": [["children", "cars"], ["Russia", "Russian"], ["color", "eye"], ["woman", "women"]], "prefix": "gram8-plural"}
|
474 |
+
{"stem": ["dream", "dreams"], "answer": 0, "choice": [["eagle", "eagles"], ["write", "writing"], ["eyes", "pigs"], ["mango", "cloud"]], "prefix": "gram8-plural"}
|
475 |
+
{"stem": ["hand", "hands"], "answer": 0, "choice": [["horse", "horses"], ["swimming", "swam"], ["dollars", "goats"], ["dollar", "mouse"]], "prefix": "gram8-plural"}
|
476 |
+
{"stem": ["cloud", "clouds"], "answer": 1, "choice": [["mangoes", "eagles"], ["color", "colors"], ["hiding", "hid"], ["lion", "donkey"]], "prefix": "gram8-plural"}
|
477 |
+
{"stem": ["pig", "pigs"], "answer": 1, "choice": [["woman", "melon"], ["pineapple", "pineapples"], ["estimate", "estimates"], ["roads", "computers"]], "prefix": "gram8-plural"}
|
478 |
+
{"stem": ["building", "buildings"], "answer": 3, "choice": [["convincing", "unconvincing"], ["dogs", "hands"], ["lion", "dream"], ["car", "cars"]], "prefix": "gram8-plural"}
|
479 |
+
{"stem": ["eagle", "eagles"], "answer": 1, "choice": [["quick", "quicker"], ["elephant", "elephants"], ["cats", "donkeys"], ["lion", "horse"]], "prefix": "gram8-plural"}
|
480 |
+
{"stem": ["eye", "eyes"], "answer": 2, "choice": [["melon", "pig"], ["pears", "birds"], ["finger", "fingers"], ["weak", "weakest"]], "prefix": "gram8-plural"}
|
481 |
+
{"stem": ["cat", "cats"], "answer": 3, "choice": [["lion", "eye"], ["dogs", "cows"], ["hot", "hotter"], ["child", "children"]], "prefix": "gram8-plural"}
|
482 |
+
{"stem": ["monkey", "monkeys"], "answer": 0, "choice": [["mouse", "mice"], ["bottle", "finger"], ["efficient", "efficiently"], ["melons", "elephants"]], "prefix": "gram8-plural"}
|
483 |
+
{"stem": ["mouse", "mice"], "answer": 1, "choice": [["productive", "unproductive"], ["onion", "onions"], ["fingers", "dreams"], ["goat", "melon"]], "prefix": "gram8-plural"}
|
484 |
+
{"stem": ["horse", "horses"], "answer": 2, "choice": [["bananas", "computers"], ["melon", "child"], ["lion", "lions"], ["generating", "generated"]], "prefix": "gram8-plural"}
|
485 |
+
{"stem": ["pineapple", "pineapples"], "answer": 2, "choice": [["building", "donkey"], ["bottles", "cows"], ["rat", "rats"], ["France", "French"]], "prefix": "gram8-plural"}
|
486 |
+
{"stem": ["woman", "women"], "answer": 0, "choice": [["banana", "bananas"], ["Sweden", "Swedish"], ["onion", "elephant"], ["fingers", "pineapples"]], "prefix": "gram8-plural"}
|
487 |
+
{"stem": ["goat", "goats"], "answer": 0, "choice": [["hand", "hands"], ["scream", "screaming"], ["color", "dog"], ["eyes", "donkeys"]], "prefix": "gram8-plural"}
|
488 |
+
{"stem": ["rat", "rats"], "answer": 2, "choice": [["lion", "pineapple"], ["low", "lowest"], ["road", "roads"], ["mice", "onions"]], "prefix": "gram8-plural"}
|
489 |
+
{"stem": ["bird", "birds"], "answer": 3, "choice": [["rat", "elephant"], ["mangoes", "dreams"], ["speak", "speaks"], ["bottle", "bottles"]], "prefix": "gram8-plural"}
|
490 |
+
{"stem": ["dog", "dogs"], "answer": 2, "choice": [["pears", "pineapples"], ["bottle", "car"], ["dollar", "dollars"], ["scream", "screaming"]], "prefix": "gram8-plural"}
|
491 |
+
{"stem": ["cow", "cows"], "answer": 2, "choice": [["color", "cloud"], ["mice", "pineapples"], ["dog", "dogs"], ["sit", "sits"]], "prefix": "gram8-plural"}
|
492 |
+
{"stem": ["finger", "fingers"], "answer": 0, "choice": [["goat", "goats"], ["woman", "pear"], ["bottles", "cars"], ["possibly", "impossibly"]], "prefix": "gram8-plural"}
|
493 |
+
{"stem": ["mango", "mangoes"], "answer": 0, "choice": [["man", "men"], ["monkey", "horse"], ["bottles", "eagles"], ["rapid", "rapidly"]], "prefix": "gram8-plural"}
|
494 |
+
{"stem": ["car", "cars"], "answer": 1, "choice": [["machine", "donkey"], ["cat", "cats"], ["lucky", "luckily"], ["dollars", "onions"]], "prefix": "gram8-plural"}
|
495 |
+
{"stem": ["bottle", "bottles"], "answer": 0, "choice": [["building", "buildings"], ["rats", "dreams"], ["machine", "eye"], ["cheap", "cheaper"]], "prefix": "gram8-plural"}
|
496 |
+
{"stem": ["child", "children"], "answer": 0, "choice": [["cloud", "clouds"], ["onion", "elephant"], ["mice", "dreams"], ["Denmark", "Danish"]], "prefix": "gram8-plural"}
|
497 |
+
{"stem": ["elephant", "elephants"], "answer": 2, "choice": [["smart", "smartest"], ["cow", "pineapple"], ["eye", "eyes"], ["buildings", "cars"]], "prefix": "gram8-plural"}
|
498 |
+
{"stem": ["melon", "melons"], "answer": 0, "choice": [["monkey", "monkeys"], ["machine", "dream"], ["implementing", "implemented"], ["rats", "elephants"]], "prefix": "gram8-plural"}
|
499 |
+
{"stem": ["pear", "pears"], "answer": 0, "choice": [["pig", "pigs"], ["responsible", "irresponsible"], ["clouds", "cars"], ["man", "dream"]], "prefix": "gram8-plural"}
|
500 |
+
{"stem": ["color", "colors"], "answer": 3, "choice": [["fingers", "pears"], ["onion", "bird"], ["thinking", "thought"], ["computer", "computers"]], "prefix": "gram8-plural"}
|
dataset/google/valid.jsonl
ADDED
@@ -0,0 +1,50 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{"stem": ["bright", "brighter"], "answer": 2, "choice": [["faster", "longer"], ["big", "easy"], ["cheap", "cheaper"], ["tasteful", "distasteful"]], "prefix": "gram3-comparative"}
|
2 |
+
{"stem": ["cool", "cooler"], "answer": 1, "choice": [["amazing", "amazingly"], ["deep", "deeper"], ["long", "hot"], ["lower", "quicker"]], "prefix": "gram3-comparative"}
|
3 |
+
{"stem": ["large", "larger"], "answer": 1, "choice": [["younger", "weaker"], ["long", "longer"], ["strong", "low"], ["rapid", "rapidly"]], "prefix": "gram3-comparative"}
|
4 |
+
{"stem": ["informed", "uninformed"], "answer": 0, "choice": [["known", "unknown"], ["unfortunate", "unpleasant"], ["honest", "acceptable"], ["new", "newer"]], "prefix": "gram2-opposite"}
|
5 |
+
{"stem": ["honest", "dishonest"], "answer": 0, "choice": [["impressive", "unimpressive"], ["tasteful", "aware"], ["unreasonable", "distasteful"], ["pear", "pears"]], "prefix": "gram2-opposite"}
|
6 |
+
{"stem": ["Belmopan", "Belize"], "answer": 1, "choice": [["Japan", "yen"], ["Berlin", "Germany"], ["Cairo", "Banjul"], ["Laos", "Albania"]], "prefix": "capital-world"}
|
7 |
+
{"stem": ["Mogadishu", "Somalia"], "answer": 1, "choice": [["Belgium", "Syria"], ["Monrovia", "Liberia"], ["Conakry", "Lisbon"], ["prince", "princess"]], "prefix": "capital-world"}
|
8 |
+
{"stem": ["Baku", "Azerbaijan"], "answer": 3, "choice": [["Helsinki", "Bratislava"], ["Cambodia", "riel"], ["Ireland", "England"], ["Bamako", "Mali"]], "prefix": "capital-world"}
|
9 |
+
{"stem": ["Tunis", "Tunisia"], "answer": 2, "choice": [["husband", "wife"], ["Podgorica", "Bishkek"], ["Vaduz", "Liechtenstein"], ["France", "Bhutan"]], "prefix": "capital-world"}
|
10 |
+
{"stem": ["Vienna", "Austria"], "answer": 3, "choice": [["Hanoi", "Apia"], ["he", "she"], ["Iran", "Cuba"], ["Vientiane", "Laos"]], "prefix": "capital-world"}
|
11 |
+
{"stem": ["Manila", "Philippines"], "answer": 1, "choice": [["Serbia", "Albania"], ["Maputo", "Mozambique"], ["Bulgaria", "lev"], ["Dublin", "Roseau"]], "prefix": "capital-world"}
|
12 |
+
{"stem": ["Caracas", "Venezuela"], "answer": 0, "choice": [["Chisinau", "Moldova"], ["nephew", "niece"], ["Philippines", "Eritrea"], ["Khartoum", "Paramaribo"]], "prefix": "capital-world"}
|
13 |
+
{"stem": ["Lisbon", "Portugal"], "answer": 2, "choice": [["Nigeria", "naira"], ["London", "Stockholm"], ["Ljubljana", "Slovenia"], ["Laos", "Russia"]], "prefix": "capital-world"}
|
14 |
+
{"stem": ["Riga", "Latvia"], "answer": 2, "choice": [["Tehran", "Amman"], ["Mozambique", "Bulgaria"], ["Rome", "Italy"], ["grandpa", "grandma"]], "prefix": "capital-world"}
|
15 |
+
{"stem": ["good", "best"], "answer": 2, "choice": [["tallest", "quickest"], ["quick", "wide"], ["great", "greatest"], ["eagle", "eagles"]], "prefix": "gram4-superlative"}
|
16 |
+
{"stem": ["strong", "strongest"], "answer": 3, "choice": [["fortunate", "fortunately"], ["tall", "great"], ["coolest", "darkest"], ["sweet", "sweetest"]], "prefix": "gram4-superlative"}
|
17 |
+
{"stem": ["sharp", "sharpest"], "answer": 3, "choice": [["enhancing", "enhanced"], ["lowest", "worst"], ["long", "cold"], ["simple", "simplest"]], "prefix": "gram4-superlative"}
|
18 |
+
{"stem": ["slowing", "slowed"], "answer": 0, "choice": [["spending", "spent"], ["taking", "enhancing"], ["read", "saw"], ["building", "buildings"]], "prefix": "gram7-past-tense"}
|
19 |
+
{"stem": ["looking", "looked"], "answer": 0, "choice": [["moving", "moved"], ["new", "newer"], ["said", "flew"], ["decreasing", "screaming"]], "prefix": "gram7-past-tense"}
|
20 |
+
{"stem": ["going", "went"], "answer": 0, "choice": [["hiding", "hid"], ["thought", "slept"], ["vanishing", "walking"], ["amazing", "amazingly"]], "prefix": "gram7-past-tense"}
|
21 |
+
{"stem": ["spending", "spent"], "answer": 3, "choice": [["screamed", "jumped"], ["selling", "swimming"], ["listen", "listening"], ["striking", "struck"]], "prefix": "gram7-past-tense"}
|
22 |
+
{"stem": ["son", "daughter"], "answer": 3, "choice": [["stepsister", "policewoman"], ["Miami", "Florida"], ["man", "king"], ["sons", "daughters"]], "prefix": "family"}
|
23 |
+
{"stem": ["dad", "mom"], "answer": 0, "choice": [["father", "mother"], ["sons", "grandfather"], ["stepmother", "daughters"], ["Paramaribo", "Suriname"]], "prefix": "family"}
|
24 |
+
{"stem": ["Denmark", "Danish"], "answer": 3, "choice": [["Austrian", "Brazilian"], ["weak", "weaker"], ["Cambodia", "Switzerland"], ["Egypt", "Egyptian"]], "prefix": "gram6-nationality-adjective"}
|
25 |
+
{"stem": ["Brazil", "Brazilian"], "answer": 1, "choice": [["Ireland", "Chile"], ["Bulgaria", "Bulgarian"], ["Ukrainian", "Australian"], ["jump", "jumping"]], "prefix": "gram6-nationality-adjective"}
|
26 |
+
{"stem": ["Japan", "Japanese"], "answer": 1, "choice": [["Germany", "Albania"], ["Korea", "Korean"], ["Argentinean", "English"], ["play", "playing"]], "prefix": "gram6-nationality-adjective"}
|
27 |
+
{"stem": ["Macedonia", "Macedonian"], "answer": 3, "choice": [["Japanese", "Colombian"], ["Denmark", "Moldova"], ["code", "coding"], ["Malta", "Maltese"]], "prefix": "gram6-nationality-adjective"}
|
28 |
+
{"stem": ["Anaheim", "California"], "answer": 3, "choice": [["Cleveland", "Memphis"], ["Kentucky", "Arizona"], ["grandpa", "grandma"], ["Honolulu", "Hawaii"]], "prefix": "city-in-state"}
|
29 |
+
{"stem": ["Cincinnati", "Ohio"], "answer": 0, "choice": [["Anchorage", "Alaska"], ["Hialeah", "Shreveport"], ["he", "she"], ["Alabama", "Indiana"]], "prefix": "city-in-state"}
|
30 |
+
{"stem": ["Lexington", "Kentucky"], "answer": 2, "choice": [["Nevada", "Nevada"], ["groom", "bride"], ["Stockton", "California"], ["Henderson", "Atlanta"]], "prefix": "city-in-state"}
|
31 |
+
{"stem": ["Tulsa", "Oklahoma"], "answer": 2, "choice": [["stepson", "stepdaughter"], ["Pittsburgh", "Memphis"], ["Oakland", "California"], ["Nevada", "Wisconsin"]], "prefix": "city-in-state"}
|
32 |
+
{"stem": ["Irvine", "California"], "answer": 0, "choice": [["Spokane", "Washington"], ["Tacoma", "Akron"], ["Nebraska", "Massachusetts"], ["Hungary", "forint"]], "prefix": "city-in-state"}
|
33 |
+
{"stem": ["Garland", "Texas"], "answer": 1, "choice": [["Indianapolis", "Cincinnati"], ["Glendale", "Arizona"], ["Armenia", "dram"], ["Michigan", "Georgia"]], "prefix": "city-in-state"}
|
34 |
+
{"stem": ["Romania", "leu"], "answer": 0, "choice": [["Russia", "ruble"], ["kwanza", "ringgit"], ["Europe", "Ukraine"], ["Havana", "Cuba"]], "prefix": "currency"}
|
35 |
+
{"stem": ["Poland", "zloty"], "answer": 2, "choice": [["rupee", "lev"], ["Vietnam", "Ukraine"], ["Romania", "leu"], ["Algiers", "Algeria"]], "prefix": "currency"}
|
36 |
+
{"stem": ["Croatia", "kuna"], "answer": 1, "choice": [["Cambodia", "Sweden"], ["Denmark", "krone"], ["policeman", "policewoman"], ["litas", "won"]], "prefix": "currency"}
|
37 |
+
{"stem": ["generate", "generates"], "answer": 1, "choice": [["eat", "vanish"], ["go", "goes"], ["enhances", "eats"], ["swift", "swiftly"]], "prefix": "gram9-plural-verbs"}
|
38 |
+
{"stem": ["play", "plays"], "answer": 0, "choice": [["predict", "predicts"], ["generates", "sees"], ["furious", "furiously"], ["provide", "find"]], "prefix": "gram9-plural-verbs"}
|
39 |
+
{"stem": ["see", "sees"], "answer": 0, "choice": [["shuffle", "shuffles"], ["says", "eats"], ["enhance", "vanish"], ["old", "older"]], "prefix": "gram9-plural-verbs"}
|
40 |
+
{"stem": ["rare", "rarely"], "answer": 2, "choice": [["quietly", "unfortunately"], ["precise", "complete"], ["reluctant", "reluctantly"], ["read", "reading"]], "prefix": "gram1-adjective-to-adverb"}
|
41 |
+
{"stem": ["usual", "usually"], "answer": 1, "choice": [["quick", "serious"], ["amazing", "amazingly"], ["professionally", "safely"], ["Egypt", "Egyptian"]], "prefix": "gram1-adjective-to-adverb"}
|
42 |
+
{"stem": ["complete", "completely"], "answer": 1, "choice": [["fortunate", "safe"], ["efficient", "efficiently"], ["possibly", "amazingly"], ["invent", "inventing"]], "prefix": "gram1-adjective-to-adverb"}
|
43 |
+
{"stem": ["Athens", "Greece"], "answer": 1, "choice": [["dad", "mom"], ["Baghdad", "Iraq"], ["Switzerland", "Finland"], ["Cairo", "Madrid"]], "prefix": "capital-common-countries"}
|
44 |
+
{"stem": ["Hanoi", "Vietnam"], "answer": 2, "choice": [["uncle", "aunt"], ["Thailand", "Afghanistan"], ["Havana", "Cuba"], ["Oslo", "Kabul"]], "prefix": "capital-common-countries"}
|
45 |
+
{"stem": ["swim", "swimming"], "answer": 1, "choice": [["look", "fly"], ["think", "thinking"], ["describing", "singing"], ["occasional", "occasionally"]], "prefix": "gram5-present-participle"}
|
46 |
+
{"stem": ["dance", "dancing"], "answer": 2, "choice": [["generating", "flying"], ["enhance", "vanish"], ["debug", "debugging"], ["Colombia", "Colombian"]], "prefix": "gram5-present-participle"}
|
47 |
+
{"stem": ["code", "coding"], "answer": 2, "choice": [["paying", "paid"], ["inventing", "screaming"], ["dance", "dancing"], ["write", "slow"]], "prefix": "gram5-present-participle"}
|
48 |
+
{"stem": ["dollar", "dollars"], "answer": 0, "choice": [["donkey", "donkeys"], ["woman", "pear"], ["fingers", "machines"], ["honest", "dishonest"]], "prefix": "gram8-plural"}
|
49 |
+
{"stem": ["lion", "lions"], "answer": 3, "choice": [["Albania", "Albanian"], ["rats", "women"], ["dollar", "elephant"], ["machine", "machines"]], "prefix": "gram8-plural"}
|
50 |
+
{"stem": ["machine", "machines"], "answer": 2, "choice": [["see", "sees"], ["pigs", "cows"], ["mango", "mangoes"], ["cat", "donkey"]], "prefix": "gram8-plural"}
|
dataset/sat/test.jsonl
ADDED
@@ -0,0 +1,337 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{"stem": ["beauty", "aesthete"], "answer": 0, "choice": [["pleasure", "hedonist"], ["emotion", "demagogue"], ["opinion", "sympathizer"], ["seance", "medium"], ["luxury", "ascetic"]], "prefix": "190 FROM REAL SATs"}
|
2 |
+
{"stem": ["shove", "nudge"], "answer": 4, "choice": [["vex", "mutter"], ["calm", "quell"], ["teach", "lecture"], ["push", "fight"], ["stare", "glance"]], "prefix": "190 FROM REAL SATs"}
|
3 |
+
{"stem": ["reprehensible", "condemn"], "answer": 3, "choice": [["torpid", "rule"], ["innocent", "judge"], ["depraved", "admire"], ["estimable", "praise"], ["worthy", "parody"]], "prefix": "KS type: 16"}
|
4 |
+
{"stem": ["contemporaries", "age"], "answer": 0, "choice": [["housemates", "residence"], ["faculty", "scholarship"], ["idols", "worship"], ["kin", "reunion"], ["authors", "anthology"]], "prefix": "190 FROM REAL SATs"}
|
5 |
+
{"stem": ["disingenuous", "craftiness"], "answer": 4, "choice": [["ecstatic", "contentment"], ["idolatrous", "doubt"], ["narcissistic", "appearance"], ["penitent", "wrongdoing"], ["surreptitious", "stealth"]], "prefix": "190 FROM REAL SATs"}
|
6 |
+
{"stem": ["calculator", "compute"], "answer": 1, "choice": [["plug", "insert"], ["clamp", "grip"], ["saddle", "straddle"], ["bridge", "suspend"], ["incinerator", "warm"]], "prefix": "190 FROM REAL SATs"}
|
7 |
+
{"stem": ["lens", "glass"], "answer": 2, "choice": [["well", "water"], ["saw", "wood"], ["sweater", "wool"], ["fuel", "fire"], ["ink", "paper"]], "prefix": "190 FROM REAL SATs"}
|
8 |
+
{"stem": ["flowers", "florist"], "answer": 0, "choice": [["rings", "jeweler"], ["pharmacy", "pharmacist"], ["roses", "arrangement"], ["wedding", "caterer"], ["stethoscope", "doctor"]], "prefix": "KS type: 18"}
|
9 |
+
{"stem": ["puppeteer", "marionette"], "answer": 2, "choice": [["teacher", "textbook"], ["ballerina", "leotard"], ["hypnotist", "subject"], ["lawyer", "criminal"], ["manager", "baseball"]], "prefix": "ML: _One-on-one with the SATs_ (11) HARD"}
|
10 |
+
{"stem": ["berate", "criticize"], "answer": 0, "choice": [["goad", "urge"], ["accuse", "apologize"], ["regret", "remember"], ["betray", "follow"], ["evaluate", "praise"]], "prefix": "190 FROM REAL SATs"}
|
11 |
+
{"stem": ["abbreviation", "word"], "answer": 4, "choice": [["laminate", "layer"], ["inhibit", "idea"], ["expedite", "mail"], ["invoke", "deity"], ["abridge", "book"]], "prefix": "KS type: 52"}
|
12 |
+
{"stem": ["dodo", "bird"], "answer": 1, "choice": [["horse", "mule"], ["dinosaur", "reptile"], ["venom", "snake"], ["rooster", "hen"], ["dog", "puppy"]], "prefix": "190 FROM REAL SATs"}
|
13 |
+
{"stem": ["cooperation", "collusion"], "answer": 3, "choice": [["evidence", "proof"], ["achievement", "reward"], ["damage", "compensation"], ["imitation", "forgery"], ["emotion", "ecstasy"]], "prefix": "190 FROM REAL SATs"}
|
14 |
+
{"stem": ["decibel", "sound"], "answer": 3, "choice": [["ingredient", "food"], ["ruler", "length"], ["calories", "menu"], ["degree", "temperature"], ["headphones", "music"]], "prefix": "190 FROM REAL SATs"}
|
15 |
+
{"stem": ["insubordination", "punishment"], "answer": 3, "choice": [["evening", "night"], ["earthquake", "tornado"], ["candor", "falsehood"], ["heroism", "praise"], ["fine", "penalty"]], "prefix": "ML: http://www.appliedpractice.com/pdfs/Anal.%20and%20Sent.%20Comp.%20for%20S.%20L.pdf (2)"}
|
16 |
+
{"stem": ["tunnel", "mine"], "answer": 4, "choice": [["conduit", "fluid"], ["corner", "intersection"], ["sign", "detour"], ["aisle", "seat"], ["corridor", "building"]], "prefix": "190 FROM REAL SATs"}
|
17 |
+
{"stem": ["antibiotic", "infection"], "answer": 4, "choice": [["thermometer", "fever"], ["anesthesia", "surgery"], ["vaccine", "inoculation"], ["antiseptic", "alcohol"], ["antidote", "poisoning"]], "prefix": "190 FROM REAL SATs"}
|
18 |
+
{"stem": ["asteroid", "planet"], "answer": 0, "choice": [["quibble", "objection"], ["gravel", "sand"], ["mountain", "hill"], ["wood", "splinter"], ["radio", "television"]], "prefix": "KS type: 58"}
|
19 |
+
{"stem": ["constellation", "stars"], "answer": 4, "choice": [["construction", "houses"], ["honey", "bees"], ["map", "boundaries"], ["train", "passengers"], ["range", "mountains"]], "prefix": "190 FROM REAL SATs"}
|
20 |
+
{"stem": ["incorrigible", "reformed"], "answer": 4, "choice": [["unnerving", "irritated"], ["innocuous", "harmed"], ["irrelevant", "verified"], ["insolvent", "dissolved"], ["indelible", "erased"]], "prefix": "KS type: 32"}
|
21 |
+
{"stem": ["banana", "peel"], "answer": 4, "choice": [["egg", "crack"], ["carrot", "uproot"], ["apple", "core"], ["bread", "slice"], ["corn", "husk"]], "prefix": "ML: Kaplan, adjustment sample"}
|
22 |
+
{"stem": ["shallow", "depth"], "answer": 4, "choice": [["salty", "ocean"], ["cloudy", "height"], ["lurid", "shock"], ["pious", "faith"], ["apathetic", "caring"]], "prefix": "KS type: 10"}
|
23 |
+
{"stem": ["hoard", "save"], "answer": 1, "choice": [["economize", "spend"], ["revere", "admire"], ["sulk", "roar"], ["flirt", "giggle"], ["ignore", "notice"]], "prefix": "KS type: 19"}
|
24 |
+
{"stem": ["pariah", "ostracism"], "answer": 0, "choice": [["idol", "adulation"], ["gourmand", "food"], ["scapegoat", "symbol"], ["collector", "ownership"], ["protagonist", "narrative"]], "prefix": "190 FROM REAL SATs"}
|
25 |
+
{"stem": ["journal", "article"], "answer": 3, "choice": [["dance", "ballet"], ["magazine", "cover"], ["set", "scenery"], ["anthology", "poem"], ["concert", "orchestra"]], "prefix": "190 FROM REAL SATs"}
|
26 |
+
{"stem": ["philanthropist", "largesse"], "answer": 3, "choice": [["acrobat", "net"], ["doctor", "nurse"], ["mercenary", "money"], ["professor", "knowledge"], ["opportunist", "advantage"]], "prefix": "KS type: 68"}
|
27 |
+
{"stem": ["prudent", "indiscretion"], "answer": 0, "choice": [["frugal", "wastefulness"], ["proud", "accomplishment"], ["generous", "wealth"], ["disqualified", "competition"], ["disgruntled", "cynicism"]], "prefix": "190 FROM REAL SATs"}
|
28 |
+
{"stem": ["floral", "flowers"], "answer": 2, "choice": [["perennial", "plants"], ["morbid", "cemeteries"], ["emotional", "feelings"], ["moral", "stories"], ["maniacal", "men"]], "prefix": "ML: Kaplan, practice set 1 (4)"}
|
29 |
+
{"stem": ["livid", "anger"], "answer": 2, "choice": [["querulous", "reconciliation"], ["forlorn", "hope"], ["radiant", "happiness"], ["graceful", "posture"], ["marvelous", "wonder"]], "prefix": "190 FROM REAL SATs"}
|
30 |
+
{"stem": ["haiku", "poem"], "answer": 1, "choice": [["song", "musician"], ["novel", "book"], ["artist", "painting"], ["page", "typeface"], ["no", "choice"]], "prefix": "ML: http://www.queendom.com/tests/iq/verbal_iq_b_1.html (3)"}
|
31 |
+
{"stem": ["birds", "wings"], "answer": 2, "choice": [["moose", "antlers"], ["camel", "hump"], ["spider", "legs"], ["alligator", "tail"], ["cat", "whiskers"]], "prefix": "KS type: 3"}
|
32 |
+
{"stem": ["amorphous", "shape"], "answer": 1, "choice": [["morbid", "death"], ["intrepid", "fear"], ["fundamental", "basics"], ["prominent", "sight"], ["hopeless", "pessimism"]], "prefix": "KS type: 12"}
|
33 |
+
{"stem": ["emulate", "person"], "answer": 3, "choice": [["admire", "reputation"], ["obey", "leader"], ["cooperate", "partner"], ["mimic", "gesture"], ["mock", "sarcasm"]], "prefix": "190 FROM REAL SATs"}
|
34 |
+
{"stem": ["defend", "untenable"], "answer": 2, "choice": [["escape", "unfettered"], ["judge", "punitive"], ["modify", "invariable"], ["flourish", "vigorous"], ["protect", "dangerous"]], "prefix": "190 FROM REAL SATs"}
|
35 |
+
{"stem": ["wedding", "marriage"], "answer": 1, "choice": [["birthday", "cake"], ["coronation", "reign"], ["graduation", "diploma"], ["promotion", "job"], ["decoration", "bravery"]], "prefix": "190 FROM REAL SATs"}
|
36 |
+
{"stem": ["bus", "passengers"], "answer": 2, "choice": [["train", "caboose"], ["car", "tires"], ["freighter", "cargo"], ["plane", "pilot"], ["yacht", "owner"]], "prefix": "KS type: 37"}
|
37 |
+
{"stem": ["emigrate", "country"], "answer": 0, "choice": [["retreat", "position"], ["retire", "pension"], ["voyage", "suitcase"], ["swindle", "property"], ["novel", "old"]], "prefix": "KS type: 27"}
|
38 |
+
{"stem": ["squall", "wind"], "answer": 3, "choice": [["blizzard", "winter"], ["spark", "flame"], ["desert", "sand"], ["cloudburst", "rain"], ["snow", "drift"]], "prefix": "ML: _One-on-one with the SATs_ (9) HARD"}
|
39 |
+
{"stem": ["ethos", "values"], "answer": 1, "choice": [["accord", "nations"], ["code", "principles"], ["policy", "officials"], ["debate", "opinions"], ["offense", "criminals"]], "prefix": "190 FROM REAL SATs"}
|
40 |
+
{"stem": ["immature", "develop"], "answer": 1, "choice": [["tempestuous", "explode"], ["unready", "prepare"], ["superstitious", "believe"], ["unfeasible", "originate"], ["fortuitous", "plan"]], "prefix": "ML: Kaplan, practice set 1 (9)"}
|
41 |
+
{"stem": ["caricature", "drawing"], "answer": 2, "choice": [["eagle", "bird"], ["impersonation", "flattery"], ["limerick", "poem"], ["ballad", "song"], ["license", "hunter"]], "prefix": "KS type: 31"}
|
42 |
+
{"stem": ["terrestrial", "land"], "answer": 4, "choice": [["vegetarian", "plants"], ["predatory", "animal"], ["nocturnal", "day"], ["arid", "desert"], ["aquatic", "water"]], "prefix": "190 FROM REAL SATs"}
|
43 |
+
{"stem": ["cloying", "sweetness"], "answer": 4, "choice": [["shiny", "polish"], ["pale", "hue"], ["raspy", "softness"], ["enchanting", "desire"], ["garish", "brightness"]], "prefix": "190 FROM REAL SATs"}
|
44 |
+
{"stem": ["corroded", "alloy"], "answer": 4, "choice": [["broken", "contract"], ["written", "rule"], ["outdated", "book"], ["adjusted", "clock"], ["corrupted", "morality"]], "prefix": "ML: http://www.kagi.com/edicom/edu/sat_52.htm (8)"}
|
45 |
+
{"stem": ["forensics", "argumentation"], "answer": 2, "choice": [["autopsy", "death"], ["syntax", "grammar"], ["jurisprudence", "law"], ["archaeology", "site"], ["etymology", "dictionary"]], "prefix": "190 FROM REAL SATs"}
|
46 |
+
{"stem": ["lame", "mobility"], "answer": 2, "choice": [["lively", "energy"], ["hostile", "enemy"], ["hoarse", "speech"], ["fractured", "cast"], ["walk", "transportation"]], "prefix": "KS type: 56"}
|
47 |
+
{"stem": ["inquisitorial", "curiosity"], "answer": 2, "choice": [["morose", "behavior"], ["injurious", "prying"], ["ingenuous", "innocence"], ["pernicious", "damage"], ["laconic", "speech"]], "prefix": "KS type: 49"}
|
48 |
+
{"stem": ["devour", "consume"], "answer": 0, "choice": [["abhor", "dislike"], ["reject", "despise"], ["praise", "lavish"], ["ingest", "reject"], ["no", "choice"]], "prefix": "ML: http://www.queendom.com/tests/iq/verbal_iq_a_1.html (6)"}
|
49 |
+
{"stem": ["arena", "conflict"], "answer": 1, "choice": [["mirage", "reality"], ["forum", "discussion"], ["asylum", "pursuit"], ["utopia", "place"], ["amphitheater", "stage"]], "prefix": "190 FROM REAL SATs"}
|
50 |
+
{"stem": ["rent", "property"], "answer": 1, "choice": [["sue", "lawyer"], ["hire", "employee"], ["pose", "painter"], ["pay", "debtor"], ["purchase", "buyer"]], "prefix": "190 FROM REAL SATs"}
|
51 |
+
{"stem": ["catnap", "sleep"], "answer": 2, "choice": [["exhaustion", "slumber"], ["blink", "eye"], ["snack", "meal"], ["swallow", "bite"], ["feast", "banquet"]], "prefix": "190 FROM REAL SATs"}
|
52 |
+
{"stem": ["hostile", "bellicose"], "answer": 1, "choice": [["indifferent", "averse"], ["stubborn", "obdurate"], ["morose", "slothful"], ["unequivocal", "skeptical"], ["angry", "passive"]], "prefix": "KS type: 36"}
|
53 |
+
{"stem": ["petal", "flower"], "answer": 3, "choice": [["oak", "tree"], ["staple", "paper"], ["sprout", "seed"], ["tooth", "comb"], ["tide", "beach"]], "prefix": "190 FROM REAL SATs"}
|
54 |
+
{"stem": ["troubled", "distraught"], "answer": 2, "choice": [["annoyed", "disillusioned"], ["disturbed", "interrupted"], ["covetous", "rapacious"], ["outmoded", "ostentatious"], ["tranquil", "placid"]], "prefix": "ML: http://www.gre.org/pprepdwnld.html GRE questions (12)"}
|
55 |
+
{"stem": ["seedy", "elegant"], "answer": 1, "choice": [["posh", "sumptuous"], ["luxurious", "spare"], ["moneyed", "frugal"], ["rich", "poor"], ["no", "choice"]], "prefix": "ML: http://www.queendom.com/tests/iq/verbal_iq_a_1.html (5)"}
|
56 |
+
{"stem": ["tentacle", "octopus"], "answer": 1, "choice": [["oak", "tree"], ["tendril", "vine"], ["rat", "vermin"], ["meow", "cat"], ["no", "choice"]], "prefix": "ML: http://www.queendom.com/tests/iq/verbal_iq_a_1.html (7)"}
|
57 |
+
{"stem": ["avenge", "wrong"], "answer": 0, "choice": [["reciprocate", "favor"], ["compete", "contest"], ["ponder", "decision"], ["relegate", "position"], ["decree", "religion"]], "prefix": "ML: _One-on-one with the SATs_ (6) HARD"}
|
58 |
+
{"stem": ["crowbar", "pry"], "answer": 1, "choice": [["rod", "trout"], ["pencil", "draw"], ["nail", "hammer"], ["telescope", "star"], ["no", "choice"]], "prefix": "ML: http://www.queendom.com/tests/iq/verbal_iq_b_1.html (8) (fishing rod->rod)"}
|
59 |
+
{"stem": ["chat", "converse"], "answer": 4, "choice": [["allege", "deny"], ["halt", "traverse"], ["purchase", "rent"], ["study", "learn"], ["browse", "read"]], "prefix": "190 FROM REAL SATs"}
|
60 |
+
{"stem": ["refurbish", "worn"], "answer": 0, "choice": [["revive", "exhausted"], ["reward", "outstanding"], ["resume", "interrupted"], ["replace", "stolen"], ["repaint", "glossy"]], "prefix": "190 FROM REAL SATs"}
|
61 |
+
{"stem": ["drought", "rain"], "answer": 4, "choice": [["desert", "sun"], ["hurricane", "wind"], ["epidemic", "disease"], ["volcano", "lava"], ["famine", "nourishment"]], "prefix": "190 FROM REAL SATs"}
|
62 |
+
{"stem": ["custom", "society"], "answer": 3, "choice": [["hypothesis", "evidence"], ["testimony", "trial"], ["ballot", "election"], ["rule", "game"], ["contest", "debate"]], "prefix": "190 FROM REAL SATs"}
|
63 |
+
{"stem": ["condolence", "mourner"], "answer": 3, "choice": [["secret", "stranger"], ["loan", "borrower"], ["rescue", "knight"], ["congratulation", "victor"], ["record", "athlete"]], "prefix": "190 FROM REAL SATs"}
|
64 |
+
{"stem": ["unfetter", "pinioned"], "answer": 2, "choice": [["recite", "practiced"], ["sully", "impure"], ["enlighten", "ignorant"], ["revere", "unrecognized"], ["adore", "cordial"]], "prefix": "190 FROM REAL SATs"}
|
65 |
+
{"stem": ["opaque", "transparent"], "answer": 0, "choice": [["gaunt", "rotund"], ["wary", "angry"], ["thin", "elongated"], ["proud", "arrogant"], ["libel", "free"]], "prefix": "ML: http://www.kagi.com/edicom/edu/sat_51.htm (9)"}
|
66 |
+
{"stem": ["atlas", "maps"], "answer": 0, "choice": [["manual", "instructions"], ["directory", "pages"], ["almanac", "years"], ["dictionary", "writers"], ["tome", "books"]], "prefix": "190 FROM REAL SATs"}
|
67 |
+
{"stem": ["camera", "photographer"], "answer": 4, "choice": [["house", "architect"], ["sink", "plumber"], ["studio", "painter"], ["meat", "butcher"], ["drill", "dentist"]], "prefix": "190 FROM REAL SATs"}
|
68 |
+
{"stem": ["freight", "truck"], "answer": 4, "choice": [["goods", "warehouse"], ["customers", "store"], ["stevedores", "ship"], ["engine", "train"], ["passengers", "bus"]], "prefix": "190 FROM REAL SATs"}
|
69 |
+
{"stem": ["audible", "blaring"], "answer": 1, "choice": [["silent", "loud"], ["annoying", "obnoxious"], ["clear", "ostentatious"], ["legible", "published"], ["edible", "poisonous"]], "prefix": "ML: http://www.appliedpractice.com/pdfs/Anal.%20and%20Sent.%20Comp.%20for%20S.%20L.pdf (1)"}
|
70 |
+
{"stem": ["raucous", "sound"], "answer": 3, "choice": [["dim", "light"], ["noisy", "uproar"], ["tanned", "leather"], ["rough", "texture"], ["hard", "granite"]], "prefix": "190 FROM REAL SATs"}
|
71 |
+
{"stem": ["abash", "embarrassment"], "answer": 2, "choice": [["dislike", "hypocrisy"], ["pretend", "imagination"], ["annoy", "irritation"], ["suspect", "illegality"], ["demolish", "renovation"]], "prefix": "190 FROM REAL SATs"}
|
72 |
+
{"stem": ["elastic", "flexible"], "answer": 0, "choice": [["diamond", "hard"], ["ocean", "nautical"], ["iron", "rusty"], ["sandpaper", "smooth"], ["water", "irrigated"]], "prefix": "ML: http://www.collegeboard.org/psat/student/bin/practice.cgi?va&11&q"}
|
73 |
+
{"stem": ["corpulence", "obesity"], "answer": 1, "choice": [["ability", "question"], ["enigma", "puzzle"], ["intelligence", "capability"], ["strong", "weak"], ["pleasure", "blessing"]], "prefix": "ML: http://www.kagi.com/edicom/edu/sat_53.htm (5)"}
|
74 |
+
{"stem": ["heckler", "disconcert"], "answer": 4, "choice": [["outcast", "exclude"], ["firebrand", "soothe"], ["performer", "applaud"], ["monarch", "depose"], ["lobbyist", "persuade"]], "prefix": "190 FROM REAL SATs"}
|
75 |
+
{"stem": ["ruthless", "compassion"], "answer": 1, "choice": [["theatrical", "emotion"], ["naive", "sophistication"], ["scrupulous", "propriety"], ["self-righteous", "indignation"], ["formidable", "awe"]], "prefix": "190 FROM REAL SATs"}
|
76 |
+
{"stem": ["actor", "cast"], "answer": 0, "choice": [["musician", "orchestra"], ["singer", "song"], ["lecturer", "class"], ["congregation", "church"], ["proofreader", "text"]], "prefix": "190 FROM REAL SATs"}
|
77 |
+
{"stem": ["paleontologist", "tyrannosaurus"], "answer": 0, "choice": [["botanist", "capsicum"], ["professor", "student"], ["agriculturist", "dairy"], ["priest", "religion"], ["no", "choice"]], "prefix": "ML: http://www.queendom.com/tests/iq/verbal_iq_b_1.html (6) (corrected tyrannosaurus)"}
|
78 |
+
{"stem": ["swarm", "bee"], "answer": 0, "choice": [["school", "fish"], ["venison", "deer"], ["oxen", "cow"], ["peak", "mountain"], ["skin", "lion"]], "prefix": "ML: http://www.kagi.com/edicom/edu/sat_52.htm (1)"}
|
79 |
+
{"stem": ["bequest", "heir"], "answer": 0, "choice": [["gift", "recipient"], ["huge", "weight"], ["painting", "artist"], ["payment", "donor"], ["measure", "gauge"]], "prefix": "ML: http://www.kagi.com/edicom/edu/sat_52.htm (6)"}
|
80 |
+
{"stem": ["gauche", "adroit"], "answer": 0, "choice": [["weak", "strong"], ["formidable", "strong"], ["round", "square"], ["sharp", "pointed"], ["stately", "grand"]], "prefix": "ML: http://www.kagi.com/edicom/edu/sat_52.htm (10)"}
|
81 |
+
{"stem": ["testimony", "witness"], "answer": 2, "choice": [["leadership", "follower"], ["proof", "theorist"], ["expertise", "authority"], ["contradiction", "investigator"], ["confiscation", "official"]], "prefix": "190 FROM REAL SATs"}
|
82 |
+
{"stem": ["corroborate", "claim"], "answer": 0, "choice": [["document", "assertion"], ["disprove", "evidence"], ["sentence", "punishment"], ["promise", "advancement"], ["disseminate", "information"]], "prefix": "190 FROM REAL SATs"}
|
83 |
+
{"stem": ["propagandize", "principles"], "answer": 4, "choice": [["plagiarize", "writing"], ["indemnify", "damages"], ["indoctrinate", "institutions"], ["pacify", "aggression"], ["proselytize", "religion"]], "prefix": "KS type: 33"}
|
84 |
+
{"stem": ["vertigo", "dizzy"], "answer": 1, "choice": [["temperature", "virus"], ["influenza", "feverish"], ["fear", "heights"], ["illness", "germs"], ["no", "choice"]], "prefix": "ML: http://www.queendom.com/tests/iq/verbal_iq_a_1.html (1)"}
|
85 |
+
{"stem": ["pedestrian", "walks"], "answer": 4, "choice": [["soldier", "obeys"], ["runner", "stretches"], ["dentist", "drills"], ["bicyclist", "brakes"], ["motorist", "drives"]], "prefix": "ML: http://www.collegeboard.org/psat/student/bin/practice.cgi?va&2&q"}
|
86 |
+
{"stem": ["ornament", "embellish"], "answer": 2, "choice": [["radio", "repair"], ["antidote", "poison"], ["detergent", "clean"], ["carpenter", "build"], ["rocket", "launch"]], "prefix": "KS type: 15"}
|
87 |
+
{"stem": ["manager", "store"], "answer": 2, "choice": [["technician", "laboratory"], ["student", "school"], ["administrator", "hospital"], ["spectator", "arena"], ["president", "electorate"]], "prefix": "190 FROM REAL SATs"}
|
88 |
+
{"stem": ["seed", "plant"], "answer": 4, "choice": [["pouch", "kangaroo"], ["root", "soil"], ["drop", "water"], ["bark", "tree"], ["egg", "bird"]], "prefix": "190 FROM REAL SATs"}
|
89 |
+
{"stem": ["exculpate", "blame"], "answer": 0, "choice": [["extricate", "difficulty"], ["exemplify", "illustration"], ["expedite", "process"], ["divulge", "secret"], ["bewilder", "confusion"]], "prefix": "190 FROM REAL SATs"}
|
90 |
+
{"stem": ["amplifier", "ear"], "answer": 1, "choice": [["computer", "brain"], ["telescope", "eye"], ["book", "library"], ["clock", "time"], ["keyboard", "finger"]], "prefix": "ML: http://www.kagi.com/edicom/edu/sat_51.htm (8)"}
|
91 |
+
{"stem": ["malinger", "work"], "answer": 2, "choice": [["escape", "flight"], ["accuse", "crime"], ["hide", "discovery"], ["shun", "ridicule"], ["guess", "answer"]], "prefix": "190 FROM REAL SATs"}
|
92 |
+
{"stem": ["oxygen", "gas"], "answer": 2, "choice": [["cobra", "venom"], ["doctor", "hospital"], ["aluminum", "metal"], ["gymnasium", "track"], ["airplane", "cloud"]], "prefix": "KS type: 9"}
|
93 |
+
{"stem": ["viscous", "flow"], "answer": 3, "choice": [["transparent", "see"], ["stationary", "stop"], ["arid", "rain"], ["stiff", "bend"], ["damp", "soak"]], "prefix": "190 FROM REAL SATs"}
|
94 |
+
{"stem": ["glaze", "pottery"], "answer": 2, "choice": [["scuff", "furniture"], ["donate", "tree"], ["ice", "cake"], ["injure", "gun"], ["chortle", "laugh"]], "prefix": "KS type: 38"}
|
95 |
+
{"stem": ["quack", "doctor"], "answer": 1, "choice": [["charlatan", "impostor"], ["pretender", "monarch"], ["defendant", "prosecutor"], ["arbitrator", "judge"], ["professional", "amateur"]], "prefix": "ML: http://www.collegeboard.org/sat/center/q1000/113q.html (hard)"}
|
96 |
+
{"stem": ["lethargic", "energy"], "answer": 1, "choice": [["contrived", "plot"], ["desultory", "direction"], ["durable", "structure"], ["frenetic", "activity"], ["dejected", "sympathy"]], "prefix": "ML: http://www.collegeboard.org/psat/student/bin/practice.cgi?va&12&q"}
|
97 |
+
{"stem": ["lynch", "execute"], "answer": 4, "choice": [["interrogate", "prosecute"], ["deface", "kill"], ["testify", "subpoena"], ["good", "bad"], ["steal", "confiscate"]], "prefix": "ML: http://www.kagi.com/edicom/edu/sat_53.htm (10)"}
|
98 |
+
{"stem": ["magnify", "appearance"], "answer": 3, "choice": [["rectify", "error"], ["augment", "reduction"], ["probe", "feeling"], ["amplify", "volume"], ["distort", "image"]], "prefix": "ML: http://www.collegeboard.org/psat/student/bin/practice.cgi?va&3&q"}
|
99 |
+
{"stem": ["flap", "wing"], "answer": 1, "choice": [["speak", "sound"], ["wave", "hand"], ["whisper", "word"], ["stub", "toe"], ["sing", "bird"]], "prefix": "190 FROM REAL SATs"}
|
100 |
+
{"stem": ["barley", "grain"], "answer": 1, "choice": [["yeast", "bread"], ["pine", "tree"], ["vine", "fruit"], ["knot", "rope"], ["twig", "nest"]], "prefix": "190 FROM REAL SATs"}
|
101 |
+
{"stem": ["amalgam", "metals"], "answer": 2, "choice": [["fracture", "bones"], ["divorce", "marriages"], ["coalition", "factions"], ["car", "payments"], ["convention", "speeches"]], "prefix": "KS type: 41"}
|
102 |
+
{"stem": ["smile", "happiness"], "answer": 3, "choice": [["boredom", "apathy"], ["cook", "food"], ["comedy", "laughter"], ["frown", "anger"], ["resentment", "mutiny"]], "prefix": "KS type: 17"}
|
103 |
+
{"stem": ["congeal", "solid"], "answer": 3, "choice": [["heat", "fire"], ["breathe", "air"], ["immunize", "disease"], ["melt", "liquid"], ["push", "resistance"]], "prefix": "190 FROM REAL SATs"}
|
104 |
+
{"stem": ["alligator", "reptile"], "answer": 1, "choice": [["fish", "school"], ["lion", "cat"], ["wolf", "sheep"], ["cub", "bear"], ["dog", "bone"]], "prefix": "KS type: 7"}
|
105 |
+
{"stem": ["mundane", "novel"], "answer": 0, "choice": [["rate", "prevalent"], ["essential", "imperative"], ["sealed", "hermetic"], ["spontaneous", "combustive"], ["judicious", "minimal"]], "prefix": "KS type: 54"}
|
106 |
+
{"stem": ["epilogue", "play"], "answer": 2, "choice": [["aria", "opera"], ["trailer", "movie"], ["afterword", "book"], ["act", "scene"], ["comedy", "drama"]], "prefix": "KS type: 46"}
|
107 |
+
{"stem": ["incumbent", "office"], "answer": 1, "choice": [["politician", "campaign"], ["tenant", "dwelling"], ["jailer", "cell"], ["secretary", "desk"], ["retiree", "service"]], "prefix": "190 FROM REAL SATs"}
|
108 |
+
{"stem": ["courier", "message"], "answer": 2, "choice": [["soldier", "battle"], ["student", "knowledge"], ["prophet", "revelation"], ["judge", "law"], ["athlete", "prowess"]], "prefix": "ML: not sure..."}
|
109 |
+
{"stem": ["mentor", "guide"], "answer": 0, "choice": [["prophet", "predict"], ["instructor", "discipline"], ["tyrant", "relentless"], ["citizen", "unique"], ["no", "choice"]], "prefix": "ML: http://www.queendom.com/tests/iq/verbal_iq_b_1.html (2)"}
|
110 |
+
{"stem": ["iconoclast", "orthodoxy"], "answer": 2, "choice": [["scientist", "theory"], ["impostor", "identity"], ["libertarian", "tyranny"], ["conformist", "expectation"], ["soldier", "combat"]], "prefix": "190 FROM REAL SATs"}
|
111 |
+
{"stem": ["mendicant", "beg"], "answer": 1, "choice": [["sycophant", "demean"], ["braggart", "boast"], ["parasite", "contribute"], ["hero", "worship"], ["dissembler", "believe"]], "prefix": "190 FROM REAL SATs"}
|
112 |
+
{"stem": ["border", "country"], "answer": 4, "choice": [["current", "river"], ["water", "lake"], ["waves", "sea"], ["horizon", "sunset"], ["shore", "ocean"]], "prefix": "190 FROM REAL SATs"}
|
113 |
+
{"stem": ["sandal", "footwear"], "answer": 3, "choice": [["monarch", "castle"], ["child", "parent"], ["volume", "bookcase"], ["watch", "timepiece"], ["wax", "candle"]], "prefix": "190 FROM REAL SATs"}
|
114 |
+
{"stem": ["prosaic", "epic"], "answer": 2, "choice": [["normal", "mean"], ["powerful", "omnipotent"], ["ephemeral", "eternal"], ["octagon", "eight"], ["beneficent", "strong"]], "prefix": "ML: http://www.kagi.com/edicom/edu/sat_52.htm (7) (spell corrected prosaic)"}
|
115 |
+
{"stem": ["accomplice", "crime"], "answer": 4, "choice": [["inmate", "prison"], ["detective", "clue"], ["employer", "work"], ["salesperson", "store"], ["partner", "business"]], "prefix": "190 FROM REAL SATs"}
|
116 |
+
{"stem": ["arable", "cultivation"], "answer": 4, "choice": [["exploited", "protection"], ["healthy", "medication"], ["insular", "discovery"], ["productive", "surplus"], ["navigable", "sailing"]], "prefix": "190 FROM REAL SATs"}
|
117 |
+
{"stem": ["depose", "king"], "answer": 3, "choice": [["eulogize", "hero"], ["inaugurate", "mayor"], ["promote", "general"], ["unfrock", "minister"], ["elect", "leader"]], "prefix": "ML: http://www.kagi.com/edicom/edu/sat_52.htm (9)"}
|
118 |
+
{"stem": ["tutor", "pupil"], "answer": 1, "choice": [["patron", "client"], ["coach", "athlete"], ["waiter", "diner"], ["driver", "passenger"], ["novelist", "writer"]], "prefix": "190 FROM REAL SATs"}
|
119 |
+
{"stem": ["burnish", "metal"], "answer": 3, "choice": [["cut", "scissors"], ["deliver", "box"], ["polish", "wax"], ["sand", "wood"], ["tarnish", "silver"]], "prefix": "KS type: 39"}
|
120 |
+
{"stem": ["fickle", "inconsistency"], "answer": 3, "choice": [["cloudy", "warmth"], ["innate", "capability"], ["worthy", "heroism"], ["placid", "calmness"], ["solid", "order"]], "prefix": "ML: Kaplan, practice set 1 (8)"}
|
121 |
+
{"stem": ["talisman", "charm"], "answer": 3, "choice": [["omen", "evil"], ["garb", "rank"], ["signal", "warning"], ["visage", "countenance"], ["hate", "love"]], "prefix": "ML: http://www.appliedpractice.com/pdfs/Anal.%20and%20Sent.%20Comp.%20for%20S.%20L.pdf (5)"}
|
122 |
+
{"stem": ["stay", "depart"], "answer": 1, "choice": [["take", "move"], ["stagnate", "flow"], ["run", "walk"], ["sleep", "rest"], ["create", "design"]], "prefix": "ML: http://www.kagi.com/edicom/edu/sat_53.htm (3)"}
|
123 |
+
{"stem": ["neighbor", "proximity"], "answer": 2, "choice": [["supervisor", "obedience"], ["comrade", "victory"], ["adversary", "opposition"], ["traitor", "loyalty"], ["teammate", "competitiveness"]], "prefix": "190 FROM REAL SATs"}
|
124 |
+
{"stem": ["catalog", "shopper"], "answer": 2, "choice": [["contract", "lawyer"], ["schedule", "worker"], ["menu", "diner"], ["article", "author"], ["bank", "teller"]], "prefix": "190 FROM REAL SATs"}
|
125 |
+
{"stem": ["bungalow", "domicile"], "answer": 2, "choice": [["castle", "turret"], ["bathroom", "sink"], ["chair", "furniture"], ["apartment", "rent"], ["no", "choice"]], "prefix": "ML: http://www.queendom.com/tests/iq/verbal_iq_a_1.html (6)"}
|
126 |
+
{"stem": ["canal", "waterway"], "answer": 4, "choice": [["skyline", "city"], ["bank", "stream"], ["hub", "wheel"], ["dam", "river"], ["reservoir", "lake"]], "prefix": "190 FROM REAL SATs"}
|
127 |
+
{"stem": ["mystify", "understanding"], "answer": 0, "choice": [["nip", "maturation"], ["insure", "disaster"], ["rearrange", "order"], ["intensify", "endurance"], ["reciprocate", "interchange"]], "prefix": "190 FROM REAL SATs"}
|
128 |
+
{"stem": ["emissary", "represent"], "answer": 3, "choice": [["draftee", "enroll"], ["novice", "train"], ["president", "elect"], ["guard", "protect"], ["comedian", "laugh"]], "prefix": "190 FROM REAL SATs"}
|
129 |
+
{"stem": ["odometer", "distance"], "answer": 4, "choice": [["microscope", "size"], ["decibel", "loudness"], ["orchestra", "instrument"], ["computer", "data"], ["scale", "weight"]], "prefix": "190 FROM REAL SATs"}
|
130 |
+
{"stem": ["eagle", "bird"], "answer": 3, "choice": [["halibut", "salmon"], ["beak", "feather"], ["deer", "fawn"], ["beagle", "dog"], ["egg", "chick"]], "prefix": "KS type: 1"}
|
131 |
+
{"stem": ["overcoat", "warmth"], "answer": 4, "choice": [["glove", "hand"], ["jewelry", "wealth"], ["slicker", "moisture"], ["disguise", "identification"], ["helmet", "protection"]], "prefix": "ML: _One-on-one with the SATs_ (1) EASY"}
|
132 |
+
{"stem": ["mansion", "residence"], "answer": 0, "choice": [["limousine", "automobile"], ["chandelier", "candle"], ["tuxedo", "wardrobe"], ["diamond", "rhinestone"], ["yacht", "harbor"]], "prefix": "ML: http://www.gre.org/pprepdwnld.html GRE questions (2)"}
|
133 |
+
{"stem": ["stimulant", "activity"], "answer": 2, "choice": [["symptom", "disease"], ["food", "hunger"], ["fertilizer", "growth"], ["diagnosis", "treatment"], ["gravity", "force"]], "prefix": "190 FROM REAL SATs"}
|
134 |
+
{"stem": ["pallid", "color"], "answer": 1, "choice": [["vital", "energy"], ["parched", "moisture"], ["restrained", "limit"], ["measured", "quantity"], ["deliberate", "intention"]], "prefix": "190 FROM REAL SATs"}
|
135 |
+
{"stem": ["scapegoat", "blame"], "answer": 4, "choice": [["ingrate", "gratitude"], ["apprentice", "skill"], ["trickster", "honesty"], ["truant", "education"], ["effigy", "hatred"]], "prefix": "ML: _One-on-one with the SATs_ (12) HARD"}
|
136 |
+
{"stem": ["yearn", "longing"], "answer": 2, "choice": [["beware", "danger"], ["rush", "patience"], ["enjoy", "pleasure"], ["suppress", "rage"], ["sleep", "insomnia"]], "prefix": "190 FROM REAL SATs"}
|
137 |
+
{"stem": ["apprehensive", "petrified"], "answer": 4, "choice": [["happy", "hostile"], ["elated", "deaden"], ["sincere", "satisfied"], ["emotional", "accord"], ["cheerful", "hilarious"]], "prefix": "ML: http://www.kagi.com/edicom/edu/sat_53.htm (2)"}
|
138 |
+
{"stem": ["pebble", "rock"], "answer": 3, "choice": [["mountain", "peak"], ["gravel", "driveway"], ["sand", "desert"], ["minnow", "fish"], ["melon", "fruit"]], "prefix": "KS type: 4"}
|
139 |
+
{"stem": ["archeology", "science"], "answer": 3, "choice": [["ridge", "mountain"], ["pride", "lion"], ["oxen", "cow"], ["chair", "furniture"], ["mammal", "horse"]], "prefix": "ML: http://www.kagi.com/edicom/edu/sat_53.htm (1)"}
|
140 |
+
{"stem": ["potentate", "power"], "answer": 1, "choice": [["broadcaster", "news"], ["virtuoso", "skill"], ["protege", "sponsorship"], ["maverick", "group"], ["colleague", "camaraderie"]], "prefix": "190 FROM REAL SATs"}
|
141 |
+
{"stem": ["tentacles", "octopus"], "answer": 2, "choice": [["petals", "flower"], ["tadpoles", "frog"], ["claws", "crab"], ["algae", "seaweed"], ["quills", "porcupine"]], "prefix": "190 FROM REAL SATs"}
|
142 |
+
{"stem": ["livid", "angry"], "answer": 1, "choice": [["vital", "wary"], ["effusive", "emotional"], ["vain", "beautiful"], ["resolute", "weak"], ["old", "modern"]], "prefix": "KS type: 5"}
|
143 |
+
{"stem": ["loathsome", "contempt"], "answer": 4, "choice": [["strident", "loneliness"], ["unwitting", "awareness"], ["impudent", "regret"], ["omniscient", "understanding"], ["meritorious", "esteem"]], "prefix": "KS type: 34"}
|
144 |
+
{"stem": ["sequester", "juror"], "answer": 0, "choice": [["quarantine", "patient"], ["cloister", "convent"], ["parole", "prisoner"], ["graduate", "pupil"], ["elect", "mayor"]], "prefix": "ML: Kaplan, practice set 1 (5)"}
|
145 |
+
{"stem": ["proficiency", "expert"], "answer": 2, "choice": [["recognition", "winner"], ["victory", "athlete"], ["passion", "enthusiast"], ["appointment", "official"], ["medicine", "doctor"]], "prefix": "190 FROM REAL SATs"}
|
146 |
+
{"stem": ["abrasive", "skin"], "answer": 3, "choice": [["flammable", "fire"], ["resilient", "shock"], ["soluble", "water"], ["corrosive", "iron"], ["responsive", "stimulus"]], "prefix": "190 FROM REAL SATs"}
|
147 |
+
{"stem": ["mercenary", "money"], "answer": 0, "choice": [["vindictive", "revenge"], ["scholarly", "library"], ["immaculate", "cleanliness"], ["thirsty", "water"], ["belligerent", "invasion"]], "prefix": "ML: http://www.gre.org/pprepdwnld.html GRE questions (8) (PDT: _reverence_ --> _revenge_)"}
|
148 |
+
{"stem": ["epilogue", "book"], "answer": 4, "choice": [["sequel", "movie"], ["conclusion", "title"], ["tiff", "quarrel"], ["intermission", "play"], ["finale", "symphony"]], "prefix": "190 FROM REAL SATs"}
|
149 |
+
{"stem": ["parsimony", "philanthropy"], "answer": 1, "choice": [["carnal", "active"], ["prejudice", "tolerance"], ["generosity", "kindness"], ["rivalry", "noise"], ["liveliness", "patience"]], "prefix": "ML: http://www.kagi.com/edicom/edu/sat_52.htm (4)"}
|
150 |
+
{"stem": ["decorate", "plain"], "answer": 2, "choice": [["create", "talented"], ["mend", "repaired"], ["cook", "raw"], ["sing", "vocal"], ["narrate", "fictitious"]], "prefix": "190 FROM REAL SATs"}
|
151 |
+
{"stem": ["treason", "country"], "answer": 1, "choice": [["settlement", "lawyer"], ["embezzlement", "employer"], ["justice", "honor"], ["hospitality", "generosity"], ["chagrin", "mistake"]], "prefix": "KS type: 47"}
|
152 |
+
{"stem": ["overdose", "prescription"], "answer": 1, "choice": [["deprivation", "materialism"], ["indiscretion", "convention"], ["affliction", "sympathy"], ["adventure", "expedition"], ["drug", "medicine"]], "prefix": "ML: http://www.gre.org/pprepdwnld.html GRE questions (5)"}
|
153 |
+
{"stem": ["vulnerable", "hurt"], "answer": 0, "choice": [["fluid", "changed"], ["vague", "truncated"], ["virtuous", "bribed"], ["witty", "amused"], ["divergent", "exploited"]], "prefix": "KS type: 50"}
|
154 |
+
{"stem": ["fathom", "depth"], "answer": 2, "choice": [["amplify", "volume"], ["overflow", "capacity"], ["appraise", "value"], ["stump", "answer"], ["weigh", "scale"]], "prefix": "190 FROM REAL SATs"}
|
155 |
+
{"stem": ["jubilation", "joy"], "answer": 1, "choice": [["exaggeration", "truth"], ["compassion", "sympathy"], ["security", "instability"], ["fortitude", "danger"], ["emotion", "anger"]], "prefix": "190 FROM REAL SATs"}
|
156 |
+
{"stem": ["vivid", "lurid"], "answer": 1, "choice": [["effectual", "able"], ["expensive", "exorbitant"], ["ghastly", "gruesome"], ["conspicuous", "sullied"], ["bold", "tremulous"]], "prefix": "ML: http://www.appliedpractice.com/pdfs/Anal.%20and%20Sent.%20Comp.%20for%20S.%20L.pdf (9) (spell corrected _conspiculous_)"}
|
157 |
+
{"stem": ["drapery", "fabric"], "answer": 4, "choice": [["fireplace", "wood"], ["curtain", "stage"], ["shutter", "light"], ["sieve", "liquid"], ["window", "glass"]], "prefix": "ML: http://www.collegeboard.org/psat/student/bin/practice.cgi?va&6&q"}
|
158 |
+
{"stem": ["flake", "snow"], "answer": 1, "choice": [["storm", "hail"], ["drop", "rain"], ["field", "wheat"], ["stack", "hay"], ["cloud", "sky"]], "prefix": "ML: Kaplan, sample"}
|
159 |
+
{"stem": ["stomp", "walk"], "answer": 1, "choice": [["devour", "starve"], ["shout", "speak"], ["run", "scamper"], ["prepare", "finish"], ["deliberate", "conclude"]], "prefix": "190 FROM REAL SATs"}
|
160 |
+
{"stem": ["overexertion", "fatigue"], "answer": 1, "choice": [["exemption", "participation"], ["injury", "pain"], ["labor", "recreation"], ["immunity", "disease"], ["transformation", "deterioration"]], "prefix": "ML: http://www.collegeboard.org/psat/student/bin/practice.cgi?va&9&q"}
|
161 |
+
{"stem": ["salve", "wound"], "answer": 2, "choice": [["utter", "apology"], ["exploit", "weakness"], ["mollify", "anger"], ["squander", "opportunity"], ["emulate", "achievement"]], "prefix": "190 FROM REAL SATs"}
|
162 |
+
{"stem": ["intransigent", "compromise"], "answer": 1, "choice": [["permanent", "stability"], ["dogged", "surrender"], ["disorganized", "chaos"], ["lonesome", "friendship"], ["strenuous", "exercise"]], "prefix": "190 FROM REAL SATs"}
|
163 |
+
{"stem": ["incantation", "words"], "answer": 2, "choice": [["malediction", "harm"], ["oration", "formality"], ["talisman", "object"], ["enchantment", "happiness"], ["divination", "future"]], "prefix": "190 FROM REAL SATs"}
|
164 |
+
{"stem": ["cosmetics", "embellish"], "answer": 1, "choice": [["calculation", "assess"], ["ornament", "adorn"], ["painting", "hang"], ["posture", "improve"], ["dish", "garnish"]], "prefix": "190 FROM REAL SATs"}
|
165 |
+
{"stem": ["simian", "ape"], "answer": 2, "choice": [["feathered", "vulture"], ["bovine", "pasture"], ["infantile", "child"], ["carnivorous", "plant"], ["wizened", "wisdom"]], "prefix": "KS type: 65"}
|
166 |
+
{"stem": ["dynamic", "static"], "answer": 1, "choice": [["movement", "fluidity"], ["inherent", "extrinsic"], ["border", "threshold"], ["permission", "allowance"], ["no", "choice"]], "prefix": "ML: http://www.queendom.com/tests/iq/verbal_iq_b_1.html (4)"}
|
167 |
+
{"stem": ["library", "book"], "answer": 1, "choice": [["scholar", "knowledge"], ["stable", "horse"], ["factory", "outlet"], ["laboratory", "radiation"], ["laser", "energy"]], "prefix": "KS type: 24"}
|
168 |
+
{"stem": ["sketch", "artist"], "answer": 3, "choice": [["secret", "confidant"], ["palette", "painter"], ["cell", "prisoner"], ["draft", "writer"], ["chisel", "sculptor"]], "prefix": "190 FROM REAL SATs"}
|
169 |
+
{"stem": ["goggles", "eyes"], "answer": 4, "choice": [["belt", "waist"], ["earrings", "ears"], ["razor", "hair"], ["gloves", "cold"], ["helmet", "head"]], "prefix": "190 FROM REAL SATs"}
|
170 |
+
{"stem": ["querulous", "complain"], "answer": 3, "choice": [["silent", "talk"], ["humorous", "laugh"], ["dangerous", "risk"], ["deceitful", "cheat"], ["gracious", "accept"]], "prefix": "190 FROM REAL SATs"}
|
171 |
+
{"stem": ["purgation", "impurities"], "answer": 3, "choice": [["catharsis", "epiphanies"], ["sterilization", "ailments"], ["salvation", "prayers"], ["disinfection", "bacteria"], ["inattention", "details"]], "prefix": "KS type: 67"}
|
172 |
+
{"stem": ["precarious", "stability"], "answer": 4, "choice": [["mean", "gauge"], ["huge", "weight"], ["exact", "measure"], ["exotic", "accord"], ["anomalous", "model"]], "prefix": "ML: http://www.kagi.com/edicom/edu/sat_51.htm (6)"}
|
173 |
+
{"stem": ["crass", "refinement"], "answer": 4, "choice": [["inefficient", "time"], ["prudent", "discretion"], ["clairvoyant", "perception"], ["inept", "mistake"], ["pretentious", "modesty"]], "prefix": "190 FROM REAL SATs"}
|
174 |
+
{"stem": ["thicket", "shrubs"], "answer": 0, "choice": [["grove", "trees"], ["orchard", "apples"], ["pasture", "cows"], ["reef", "waves"], ["crop", "plants"]], "prefix": "190 FROM REAL SATs"}
|
175 |
+
{"stem": ["sap", "tree"], "answer": 2, "choice": [["syrup", "candy"], ["lint", "clothes"], ["blood", "mammal"], ["mold", "bread"], ["fertilizer", "plant"]], "prefix": "KS type: 44"}
|
176 |
+
{"stem": ["omnipotent", "power"], "answer": 1, "choice": [["impudent", "control"], ["daring", "audacity"], ["parochial", "scope"], ["objective", "rage"], ["beguiling", "disgust"]], "prefix": "KS type: 29"}
|
177 |
+
{"stem": ["frighten", "skittish"], "answer": 1, "choice": [["despise", "pleasant"], ["swindle", "gullible"], ["parole", "guilty"], ["caution", "watchful"], ["shock", "abrupt"]], "prefix": "ML: _One-on-one with the SATs_ (10) HARD"}
|
178 |
+
{"stem": ["evaporate", "vapor"], "answer": 0, "choice": [["petrify", "stone"], ["centrifuge", "liquid"], ["saturate", "fluid"], ["corrode", "acid"], ["incinerate", "fire"]], "prefix": "ML: http://www.gre.org/pprepdwnld.html GRE questions (6)"}
|
179 |
+
{"stem": ["volatile", "vaporize"], "answer": 4, "choice": [["translucent", "illuminate"], ["brittle", "bend"], ["frigid", "chill"], ["ponderous", "lift"], ["soluble", "dissolve"]], "prefix": "190 FROM REAL SATs"}
|
180 |
+
{"stem": ["recuperate", "surgery"], "answer": 3, "choice": [["restore", "furniture"], ["cleanse", "alcohol"], ["cure", "illness"], ["revive", "faint"], ["hospitalize", "patient"]], "prefix": "190 FROM REAL SATs"}
|
181 |
+
{"stem": ["poison", "toxic"], "answer": 1, "choice": [["mixture", "soluble"], ["sugar", "sweet"], ["medicine", "prescribed"], ["milk", "bottled"], ["solid", "liquid"]], "prefix": "190 FROM REAL SATs"}
|
182 |
+
{"stem": ["evade", "straightforward"], "answer": 3, "choice": [["leave", "inviting"], ["enliven", "animated"], ["flatten", "smooth"], ["boast", "modest"], ["assist", "helpful"]], "prefix": "ML: Kaplan, practice set 1 (7)"}
|
183 |
+
{"stem": ["inadvertent", "thought"], "answer": 3, "choice": [["ironic", "wrath"], ["proud", "prize"], ["artistic", "work"], ["ungainly", "skill"], ["prolific", "design"]], "prefix": "ML: http://www.kagi.com/edicom/edu/sat_52.htm (3)"}
|
184 |
+
{"stem": ["condense", "short"], "answer": 3, "choice": [["shrink", "wet"], ["measure", "equal"], ["magnify", "invisible"], ["deflate", "flat"], ["increase", "boundless"]], "prefix": "190 FROM REAL SATs"}
|
185 |
+
{"stem": ["locomotive", "train"], "answer": 1, "choice": [["horse", "saddle"], ["tractor", "plow"], ["rudder", "rowboat"], ["camel", "desert"], ["gasoline", "automobile"]], "prefix": "190 FROM REAL SATs"}
|
186 |
+
{"stem": ["best", "seller"], "answer": 4, "choice": [["anthology", "poem"], ["rave", "critic"], ["collector", "painting"], ["performance", "play"], ["hit", "song"]], "prefix": "ML: http://www.collegeboard.org/psat/student/bin/practice.cgi?va&5&q"}
|
187 |
+
{"stem": ["audience", "theater"], "answer": 3, "choice": [["crew", "ship"], ["scholars", "library"], ["group", "society"], ["spectators", "arena"], ["actors", "stage"]], "prefix": "190 FROM REAL SATs"}
|
188 |
+
{"stem": ["bungler", "finesse"], "answer": 2, "choice": [["athlete", "prowess"], ["thief", "felony"], ["gossip", "reserve"], ["preacher", "oratory"], ["gourmet", "cuisine"]], "prefix": "ML: http://www.collegeboard.org/psat/student/bin/practice.cgi?va&7&q"}
|
189 |
+
{"stem": ["affectation", "behavior"], "answer": 2, "choice": [["speech", "topic"], ["tension", "violence"], ["facade", "appearance"], ["buffoonery", "action"], ["pretense", "honesty"]], "prefix": "190 FROM REAL SATs"}
|
190 |
+
{"stem": ["diversion", "boredom"], "answer": 0, "choice": [["assurance", "uncertainty"], ["enmity", "hatred"], ["secrecy", "curiosity"], ["reward", "deed"], ["sluggishness", "fatigue"]], "prefix": "190 FROM REAL SATs"}
|
191 |
+
{"stem": ["embargo", "trade"], "answer": 4, "choice": [["umbrella", "clouds"], ["engine", "automobile"], ["license", "fishing"], ["alarm", "valuable"], ["helmet", "injury"]], "prefix": "KS type: 59"}
|
192 |
+
{"stem": ["move", "scurry"], "answer": 2, "choice": [["scream", "shout"], ["labor", "rest"], ["breathe", "pant"], ["arrest", "indict"], ["jeer", "mock"]], "prefix": "KS type: 25"}
|
193 |
+
{"stem": ["dearth", "abundance"], "answer": 2, "choice": [["retribution", "infamy"], ["death", "funeral"], ["poverty", "wealth"], ["contempt", "anger"], ["ruse", "plan"]], "prefix": "ML: http://www.appliedpractice.com/pdfs/Anal.%20and%20Sent.%20Comp.%20for%20S.%20L.pdf (7)"}
|
194 |
+
{"stem": ["abridge", "novel"], "answer": 4, "choice": [["interrupt", "conversation"], ["rehearse", "play"], ["terminate", "ending"], ["punctuate", "sentence"], ["abbreviate", "word"]], "prefix": "190 FROM REAL SATs"}
|
195 |
+
{"stem": ["preamble", "statute"], "answer": 2, "choice": [["interlude", "musical"], ["conclusion", "argument"], ["foreword", "novel"], ["epilogue", "address"], ["premiere", "performance"]], "prefix": "190 FROM REAL SATs"}
|
196 |
+
{"stem": ["worry", "panic"], "answer": 1, "choice": [["brain", "intelligence"], ["happiness", "bliss"], ["smile", "anger"], ["agenda", "list"], ["clock", "time"]], "prefix": "KS type: 2"}
|
197 |
+
{"stem": ["regale", "entertain"], "answer": 0, "choice": [["extol", "praise"], ["educate", "learn"], ["beautify", "refresh"], ["tempt", "repel"], ["hide", "secrete"]], "prefix": "190 FROM REAL SATs"}
|
198 |
+
{"stem": ["story", "building"], "answer": 3, "choice": [["crust", "sandwich"], ["shingle", "roof"], ["data", "file"], ["layer", "cake"], ["root", "plant"]], "prefix": "190 FROM REAL SATs"}
|
199 |
+
{"stem": ["coop", "poultry"], "answer": 0, "choice": [["aquarium", "fish"], ["forest", "wildlife"], ["crib", "nursery"], ["fence", "yard"], ["barn", "tool"]], "prefix": "190 FROM REAL SATs"}
|
200 |
+
{"stem": ["lobbyist", "cause"], "answer": 2, "choice": [["legislator", "voter"], ["clergy", "congregation"], ["advertiser", "product"], ["defendant", "verdict"], ["consumer", "goods"]], "prefix": "190 FROM REAL SATs"}
|
201 |
+
{"stem": ["levee", "flood"], "answer": 2, "choice": [["snow", "avalanche"], ["rain", "deluge"], ["immunization", "disease"], ["zenith", "view"], ["buttress", "building"]], "prefix": "KS type: 66"}
|
202 |
+
{"stem": ["callow", "experience"], "answer": 2, "choice": [["painting", "artist"], ["heavy", "weight"], ["barren", "fruit"], ["gift", "donor"], ["measure", "ounce"]], "prefix": "ML: http://www.kagi.com/edicom/edu/sat_53.htm (6)"}
|
203 |
+
{"stem": ["arid", "dry"], "answer": 0, "choice": [["glacial", "cold"], ["coastal", "tidal"], ["damp", "muddy"], ["snowbound", "polar"], ["shallow", "deep"]], "prefix": "190 FROM REAL SATs"}
|
204 |
+
{"stem": ["quart", "volume"], "answer": 1, "choice": [["day", "night"], ["mile", "distance"], ["decade", "century"], ["friction", "heat"], ["part", "whole"]], "prefix": "190 FROM REAL SATs"}
|
205 |
+
{"stem": ["inaudible", "amplifier"], "answer": 1, "choice": [["incomprehensible", "story"], ["imperceptible", "microscope"], ["inadvertent", "telescope"], ["heat", "radiator"], ["unknown", "mystery"]], "prefix": "KS type: 62"}
|
206 |
+
{"stem": ["buttress", "support"], "answer": 1, "choice": [["encore", "applause"], ["ornament", "decoration"], ["choreography", "dance"], ["prayer", "religion"], ["thesis", "evidence"]], "prefix": "190 FROM REAL SATs"}
|
207 |
+
{"stem": ["condescending", "respect"], "answer": 3, "choice": [["bashful", "attention"], ["obliging", "thanks"], ["insecure", "doubt"], ["merciless", "compassion"], ["pathetic", "pity"]], "prefix": "190 FROM REAL SATs"}
|
208 |
+
{"stem": ["territory", "delegate"], "answer": 0, "choice": [["whole", "sample"], ["agent", "manager"], ["lobbyist", "senator"], ["pitch", "salesman"], ["minority", "majority"]], "prefix": "KS type: 48"}
|
209 |
+
{"stem": ["fame", "celebrity"], "answer": 2, "choice": [["diploma", "graduation"], ["vacation", "employee"], ["value", "treasure"], ["actor", "theater"], ["laughter", "joke"]], "prefix": "ML: _One-on-one with the SATs_ (8) HARD"}
|
210 |
+
{"stem": ["sprout", "seed"], "answer": 3, "choice": [["pollinate", "bee"], ["cure", "disease"], ["stimulate", "growth"], ["hatch", "egg"], ["filter", "impurity"]], "prefix": "190 FROM REAL SATs"}
|
211 |
+
{"stem": ["hapless", "lucky"], "answer": 1, "choice": [["focused", "attentive"], ["rash", "prudent"], ["considerate", "angry"], ["controversial", "argumentative"], ["fortunate", "complacent"]], "prefix": "ML: http://www.collegeboard.org/sat/center/q0501/v_a_1q.html (hard)"}
|
212 |
+
{"stem": ["tactile", "touch"], "answer": 4, "choice": [["musical", "hearing"], ["audible", "volume"], ["nasal", "smell"], ["sensitive", "feeling"], ["visible", "sight"]], "prefix": "190 FROM REAL SATs"}
|
213 |
+
{"stem": ["emollient", "soften"], "answer": 0, "choice": [["oil", "lubricate"], ["disinfectant", "contaminate"], ["concrete", "harden"], ["storm", "thunder"], ["steam", "evaporate"]], "prefix": "190 FROM REAL SATs"}
|
214 |
+
{"stem": ["atrophy", "withered"], "answer": 0, "choice": [["contamination", "impure"], ["putrefaction", "preserved"], ["replication", "completed"], ["inflation", "reduced"], ["destruction", "violent"]], "prefix": "ML: _One-on-one with the SATs_ (13) HARD"}
|
215 |
+
{"stem": ["pastiche", "writing"], "answer": 0, "choice": [["collage", "art"], ["melody", "music"], ["bandage", "medicine"], ["school", "philosophy"], ["sequel", "film"]], "prefix": "KS type: 64"}
|
216 |
+
{"stem": ["doormat", "shoes"], "answer": 1, "choice": [["placemat", "table"], ["napkin", "mouth"], ["fork", "plate"], ["lace", "boot"], ["curtain", "window"]], "prefix": "190 FROM REAL SATs (PDT: _place mat_ --> _placemat_)"}
|
217 |
+
{"stem": ["envelope", "letter"], "answer": 2, "choice": [["scarf", "hat"], ["box", "bag"], ["crate", "produce"], ["neck", "head"], ["blood", "heart"]], "prefix": "ML: http://www.gre.org/pprepdwnld.html GRE questions (3)"}
|
218 |
+
{"stem": ["current", "electricity"], "answer": 2, "choice": [["gauge", "measurement"], ["forge", "metal"], ["beam", "light"], ["ripple", "lake"], ["curve", "circle"]], "prefix": "190 FROM REAL SATs"}
|
219 |
+
{"stem": ["gaze", "observer"], "answer": 0, "choice": [["hear", "listener"], ["banish", "exile"], ["separate", "joint"], ["operate", "doctor"], ["sprain", "ankle"]], "prefix": "190 FROM REAL SATs"}
|
220 |
+
{"stem": ["crumb", "bread"], "answer": 1, "choice": [["ounce", "unit"], ["splinter", "wood"], ["water", "bucket"], ["twine", "rope"], ["cream", "butter"]], "prefix": "ML: standard ETS example http://www.collegeboard.org/sat/center/tutor/anyl005.html"}
|
221 |
+
{"stem": ["cartographer", "maps"], "answer": 0, "choice": [["architect", "blueprints"], ["bibliographer", "books"], ["curator", "artworks"], ["traveler", "countries"], ["surveyor", "instruments"]], "prefix": "190 FROM REAL SATs"}
|
222 |
+
{"stem": ["promontory", "view"], "answer": 0, "choice": [["haven", "refuge"], ["waterfall", "revelation"], ["prison", "interrogation"], ["church", "diversity"], ["memorial", "architecture"]], "prefix": "KS type: 40"}
|
223 |
+
{"stem": ["procrastinate", "action"], "answer": 1, "choice": [["reverse", "direction"], ["postpone", "event"], ["assign", "choice"], ["endure", "patience"], ["embezzle", "fraud"]], "prefix": "190 FROM REAL SATs"}
|
224 |
+
{"stem": ["word", "language"], "answer": 2, "choice": [["paint", "portrait"], ["poetry", "rhythm"], ["note", "music"], ["tale", "story"], ["week", "year"]], "prefix": "190 FROM REAL SATs"}
|
225 |
+
{"stem": ["numb", "insensible"], "answer": 1, "choice": [["reflect", "luminous"], ["burnish", "lustrous"], ["heckle", "raucous"], ["repulse", "odious"], ["braid", "sinuous"]], "prefix": "ML: http://www.gre.org/pprepdwnld.html GRE questions (10)"}
|
226 |
+
{"stem": ["avaricious", "greed"], "answer": 1, "choice": [["proud", "winner"], ["choleric", "anger"], ["artistic", "work"], ["ironic", "wrath"], ["prolific", "author"]], "prefix": "ML: http://www.kagi.com/edicom/edu/sat_51.htm (3)"}
|
227 |
+
{"stem": ["palatable", "toothsome"], "answer": 2, "choice": [["rancid", "fragrant"], ["chewy", "textured"], ["coarse", "rough"], ["solitude", "company"], ["no", "choice"]], "prefix": "ML: http://www.queendom.com/tests/iq/verbal_iq_a_1.html (3)"}
|
228 |
+
{"stem": ["judicious", "prudence"], "answer": 4, "choice": [["deferential", "scorn"], ["malevolent", "influence"], ["indomitable", "defeat"], ["stoic", "hardship"], ["frivolous", "giddiness"]], "prefix": "ML: http://www.collegeboard.org/psat/student/bin/practice.cgi?va"}
|
229 |
+
{"stem": ["criterion", "judgment"], "answer": 4, "choice": [["height", "statue"], ["depth", "bottom"], ["song", "voice"], ["edge", "sharpness"], ["standard", "selection"]], "prefix": "ML: http://www.kagi.com/edicom/edu/sat_51.htm (1) (fix judgment)"}
|
230 |
+
{"stem": ["encourage", "coerce"], "answer": 1, "choice": [["implement", "accomplish"], ["suggest", "command"], ["hinder", "facilitate"], ["filter", "separate"], ["oppose", "disagree"]], "prefix": "ML: http://www.collegeboard.org/psat/student/bin/practice.cgi?va&8&q"}
|
231 |
+
{"stem": ["rangers", "forest"], "answer": 3, "choice": [["panel", "contest"], ["corps", "army"], ["members", "board"], ["police", "precinct"], ["climbers", "mountain"]], "prefix": "190 FROM REAL SATs"}
|
232 |
+
{"stem": ["index", "topics"], "answer": 2, "choice": [["agenda", "meeting"], ["diary", "secrets"], ["roster", "names"], ["manual", "equipment"], ["ledger", "numbers"]], "prefix": "190 FROM REAL SATs"}
|
233 |
+
{"stem": ["neophyte", "experienced"], "answer": 0, "choice": [["invalid", "healthy"], ["pugilist", "stubborn"], ["defendant", "guilty"], ["scholar", "erudite"], ["sentinel", "guarded"]], "prefix": "KS type: 35"}
|
234 |
+
{"stem": ["bankruptcy", "money"], "answer": 3, "choice": [["discrepancy", "account"], ["empathy", "feeling"], ["plan", "organization"], ["apathy", "caring"], ["homely", "household"]], "prefix": "KS type: 57"}
|
235 |
+
{"stem": ["building", "blueprint"], "answer": 0, "choice": [["report", "outline"], ["chicken", "egg"], ["brick", "wall"], ["soup", "ladle"], ["conduit", "cement"]], "prefix": "KS type: 21"}
|
236 |
+
{"stem": ["sword", "sheath"], "answer": 3, "choice": [["knife", "stone"], ["tool", "garage"], ["pistol", "holster"], ["gun", "bullet"], ["no", "choice"]], "prefix": "ML: http://www.queendom.com/tests/iq/verbal_iq_b_1.html (5) (wet stone->stone)"}
|
237 |
+
{"stem": ["adult", "child"], "answer": 1, "choice": [["horse", "mare"], ["cat", "kitten"], ["swine", "sow"], ["human", "animal"], ["cow", "herd"]], "prefix": "ML: http://www.gre.org/pprepdwnld.html GRE questions (1)"}
|
238 |
+
{"stem": ["cherry", "fruit"], "answer": 1, "choice": [["flour", "bread"], ["knife", "utensil"], ["grass", "water"], ["sail", "ship"], ["leaf", "tree"]], "prefix": "KS type: 8"}
|
239 |
+
{"stem": ["emend", "faulty"], "answer": 3, "choice": [["recruit", "competent"], ["fracture", "separable"], ["renovate", "habitable"], ["purify", "contaminated"], ["reproduce", "copied"]], "prefix": "190 FROM REAL SATs"}
|
240 |
+
{"stem": ["acquit", "charge"], "answer": 4, "choice": [["accuse", "offense"], ["punish", "reward"], ["extricate", "freedom"], ["camouflage", "identity"], ["rescue", "danger"]], "prefix": "ML: http://www.collegeboard.org/sat/center/q0501/v_a_2q.html (hard)"}
|
241 |
+
{"stem": ["embroidery", "cloth"], "answer": 1, "choice": [["bracelet", "jewelry"], ["mural", "wall"], ["tattoo", "design"], ["paint", "color"], ["flower", "vase"]], "prefix": "190 FROM REAL SATs"}
|
242 |
+
{"stem": ["food", "hunger"], "answer": 0, "choice": [["love", "loneliness"], ["ginseng", "energy"], ["antiseptic", "wound"], ["anodyne", "pain"], ["no", "choice"]], "prefix": "ML: http://www.queendom.com/tests/iq/verbal_iq_b_1.html (7)"}
|
243 |
+
{"stem": ["mare", "horse"], "answer": 4, "choice": [["cat", "dog"], ["shark", "fish"], ["worm", "snake"], ["lion", "tiger"], ["ewe", "sheep"]], "prefix": "ML: Kaplan, practice set 1 (2)"}
|
244 |
+
{"stem": ["flippancy", "jollity"], "answer": 3, "choice": [["recognition", "achievement"], ["practice", "expertise"], ["camaraderie", "combativeness"], ["insolence", "pride"], ["politeness", "behavior"]], "prefix": "190 FROM REAL SATs"}
|
245 |
+
{"stem": ["mason", "stone"], "answer": 1, "choice": [["teacher", "chalk"], ["carpenter", "wood"], ["soldier", "gun"], ["photograph", "camera"], ["book", "word"]], "prefix": "ML: http://www.kagi.com/edicom/edu/sat_51.htm (5)"}
|
246 |
+
{"stem": ["mortar", "brick"], "answer": 2, "choice": [["sap", "tree"], ["siding", "house"], ["glue", "paper"], ["core", "apple"], ["oil", "engine"]], "prefix": "ML: _One-on-one with the SATs_ (5) MEDIUM"}
|
247 |
+
{"stem": ["barricade", "access"], "answer": 2, "choice": [["heal", "illness"], ["demand", "due"], ["bind", "movement"], ["complete", "task"], ["chat", "conversation"]], "prefix": "190 FROM REAL SATs"}
|
248 |
+
{"stem": ["extravagant", "spend"], "answer": 0, "choice": [["belligerent", "fight"], ["remarkable", "surprise"], ["charitable", "receive"], ["antagonistic", "agree"], ["persuasive", "believe"]], "prefix": "190 FROM REAL SATs"}
|
249 |
+
{"stem": ["audacious", "boldness"], "answer": 4, "choice": [["anonymous", "identity"], ["remorseful", "misdeed"], ["deleterious", "result"], ["impressionable", "temptation"], ["sanctimonious", "hypocrisy"]], "prefix": "190 FROM REAL SATs"}
|
250 |
+
{"stem": ["lubricant", "slide"], "answer": 1, "choice": [["battery", "discharge"], ["glue", "adhere"], ["stain", "cleanse"], ["poison", "ingest"], ["water", "drink"]], "prefix": "190 FROM REAL SATs"}
|
251 |
+
{"stem": ["immaculate", "clean"], "answer": 0, "choice": [["enormous", "large"], ["superficial", "careful"], ["tiresome", "bored"], ["precious", "greedy"], ["obvious", "deceptive"]], "prefix": "ML: _One-on-one with the SATs_ (2) EASY"}
|
252 |
+
{"stem": ["beagle", "dog"], "answer": 0, "choice": [["africa", "continent"], ["meow", "cat"], ["barnyard", "farm"], ["picnic", "basket"], ["no", "choice"]], "prefix": "ML: http://www.queendom.com/tests/iq/verbal_iq_a_1.html (9)"}
|
253 |
+
{"stem": ["glutton", "moderation"], "answer": 2, "choice": [["thief", "larceny"], ["peer", "nobility"], ["scoundrel", "virtue"], ["gambler", "luck"], ["benefactor", "gift"]], "prefix": "190 FROM REAL SATs"}
|
254 |
+
{"stem": ["alteration", "suit"], "answer": 1, "choice": [["digestion", "snack"], ["revision", "story"], ["irrigation", "crop"], ["cooking", "apron"], ["detection", "gun"]], "prefix": "KS type: 60"}
|
255 |
+
{"stem": ["criticize", "censorious"], "answer": 3, "choice": [["explain", "enigmatic"], ["discard", "useless"], ["exude", "flamboyant"], ["concur", "sycophantic"], ["tremble", "jocular"]], "prefix": "KS type: 55"}
|
256 |
+
{"stem": ["ensemble", "dancer"], "answer": 1, "choice": [["clique", "outsider"], ["band", "musician"], ["gymnasium", "athlete"], ["museum", "curator"], ["audience", "performer"]], "prefix": "190 FROM REAL SATs"}
|
257 |
+
{"stem": ["feign", "deceive"], "answer": 0, "choice": [["flee", "elude"], ["dangle", "drop"], ["send", "receive"], ["contract", "lengthen"], ["publish", "write"]], "prefix": "190 FROM REAL SATs"}
|
258 |
+
{"stem": ["exhortation", "urge"], "answer": 2, "choice": [["division", "unite"], ["agreement", "dissent"], ["eulogy", "praise"], ["travesty", "reproduce"], ["charity", "donate"]], "prefix": "190 FROM REAL SATs"}
|
259 |
+
{"stem": ["architect", "blueprint"], "answer": 4, "choice": [["instructor", "blackboard"], ["graduate", "diploma"], ["musician", "note"], ["painter", "brush"], ["composer", "score"]], "prefix": "190 FROM REAL SATs"}
|
260 |
+
{"stem": ["billboard", "advertisement"], "answer": 3, "choice": [["sculpture", "museum"], ["store", "window"], ["library", "book"], ["canvas", "painting"], ["theater", "intermission"]], "prefix": "190 FROM REAL SATs"}
|
261 |
+
{"stem": ["patent", "obvious"], "answer": 2, "choice": [["contrite", "happy"], ["curt", "expansive"], ["voracious", "hungry"], ["dissonant", "emotive"], ["ephemeral", "exorbitant"]], "prefix": "KS type: 53"}
|
262 |
+
{"stem": ["fission", "energy"], "answer": 4, "choice": [["reaction", "response"], ["distortion", "image"], ["nutrient", "growth"], ["evaporation", "liquid"], ["combustion", "heat"]], "prefix": "190 FROM REAL SATs"}
|
263 |
+
{"stem": ["hedonistic", "pleasure"], "answer": 1, "choice": [["promising", "achievement"], ["vindictive", "vengeance"], ["precocious", "youth"], ["concerned", "empathy"], ["cruel", "mercy"]], "prefix": "190 FROM REAL SATs"}
|
264 |
+
{"stem": ["glue", "fasten"], "answer": 4, "choice": [["laundry", "fold"], ["bleach", "color"], ["computer", "repair"], ["steel", "forge"], ["elevator", "lift"]], "prefix": "KS type: 14"}
|
265 |
+
{"stem": ["copyright", "book"], "answer": 2, "choice": [["franchise", "license"], ["lease", "owner"], ["patent", "design"], ["trademark", "registration"], ["brand", "manufacturer"]], "prefix": "190 FROM REAL SATs"}
|
266 |
+
{"stem": ["obtain", "steal"], "answer": 2, "choice": [["quest", "search"], ["ask", "interrogate"], ["testify", "perjure"], ["buy", "sell"], ["ask", "donate"]], "prefix": "ML: http://www.kagi.com/edicom/edu/sat_52.htm (2)"}
|
267 |
+
{"stem": ["deduction", "rational"], "answer": 0, "choice": [["hunch", "intuitive"], ["ploy", "spontaneous"], ["maxim", "hackneyed"], ["hypothesis", "tested"], ["daydream", "bored"]], "prefix": "190 FROM REAL SATs"}
|
268 |
+
{"stem": ["armistice", "hostilities"], "answer": 4, "choice": [["reckoning", "probabilities"], ["truce", "belligerents"], ["artillery", "tanks"], ["campaign", "strategies"], ["adjournment", "proceedings"]], "prefix": "ML: Kaplan, practice set 1 (3) (PDT: _cease-fire_ --> _armistice_)"}
|
269 |
+
{"stem": ["caprice", "predictable"], "answer": 1, "choice": [["indifference", "callous"], ["caution", "reckless"], ["concern", "affectionate"], ["friendliness", "congenial"], ["spontaneity", "whimsical"]], "prefix": "ML: http://www.appliedpractice.com/pdfs/Anal.%20and%20Sent.%20Comp.%20for%20S.%20L.pdf (10) (spell corrected _spontaneity_)"}
|
270 |
+
{"stem": ["map", "navigate"], "answer": 3, "choice": [["manuscript", "submit"], ["license", "revoke"], ["writing", "erase"], ["blueprint", "build"], ["receipt", "pay"]], "prefix": "190 FROM REAL SATs"}
|
271 |
+
{"stem": ["paint", "canvas"], "answer": 1, "choice": [["brush", "bucket"], ["peanut", "butter"], ["clock", "time"], ["art", "life"], ["no", "choice"]], "prefix": "ML: http://www.queendom.com/tests/iq/verbal_iq_a_1.html (4)"}
|
272 |
+
{"stem": ["lull", "trust"], "answer": 2, "choice": [["balk", "fortitude"], ["betray", "loyalty"], ["cajole", "compliance"], ["hinder", "destination"], ["soothe", "passion"]], "prefix": "190 FROM REAL SATs"}
|
273 |
+
{"stem": ["ruler", "line"], "answer": 3, "choice": [["stamp", "letter"], ["period", "dot"], ["key", "door"], ["compass", "circle"], ["thermometer", "degree"]], "prefix": "190 FROM REAL SATs"}
|
274 |
+
{"stem": ["sluggish", "energy"], "answer": 4, "choice": [["sheer", "cliff"], ["reticent", "tack"], ["inebriated", "memory"], ["trite", "speech"], ["satiated", "hunger"]], "prefix": "KS type: 23"}
|
275 |
+
{"stem": ["playwright", "actor"], "answer": 1, "choice": [["architect", "custodian"], ["composer", "musician"], ["biographer", "celebrity"], ["soldier", "colonel"], ["lawyer", "judge"]], "prefix": "KS type: 20"}
|
276 |
+
{"stem": ["indigenous", "native"], "answer": 1, "choice": [["new", "used"], ["alien", "foreign"], ["aged", "wrinkled"], ["immigrate", "exodus"], ["no", "choice"]], "prefix": "ML: http://www.queendom.com/tests/iq/verbal_iq_a_1.html (2)"}
|
277 |
+
{"stem": ["lummox", "clumsy"], "answer": 1, "choice": [["boon", "beneficial"], ["egotist", "conceited"], ["rascal", "predictable"], ["maxim", "hackneyed"], ["toady", "important"]], "prefix": "190 FROM REAL SATs"}
|
278 |
+
{"stem": ["excitement", "frenzy"], "answer": 2, "choice": [["communication", "signal"], ["strength", "resistance"], ["surprise", "astonishment"], ["reform", "corruption"], ["fondness", "hatred"]], "prefix": "ML: http://www.collegeboard.org/psat/student/bin/practice.cgi?va&4&q"}
|
279 |
+
{"stem": ["enthusiast", "fervor"], "answer": 2, "choice": [["soldier", "strength"], ["prisoner", "remorse"], ["expert", "skill"], ["servant", "obedience"], ["parent", "wisdom"]], "prefix": "ML: http://www.appliedpractice.com/pdfs/Anal.%20and%20Sent.%20Comp.%20for%20S.%20L.pdf (3)"}
|
280 |
+
{"stem": ["paramount", "importance"], "answer": 4, "choice": [["debatable", "quality"], ["inaccurate", "correction"], ["modulated", "pitch"], ["unheralded", "publicity"], ["precious", "value"]], "prefix": "190 FROM REAL SATs"}
|
281 |
+
{"stem": ["reclusive", "companionship"], "answer": 0, "choice": [["frugal", "extravagance"], ["organized", "structure"], ["pitiful", "compassion"], ["provocative", "anger"], ["moody", "unhappiness"]], "prefix": "190 FROM REAL SATs"}
|
282 |
+
{"stem": ["prevarication", "statement"], "answer": 4, "choice": [["conflagration", "fire"], ["preamble", "introduction"], ["indifferent", "interest"], ["colt", "horse"], ["pseudonym", "name"]], "prefix": "KS type: 51"}
|
283 |
+
{"stem": ["legend", "map"], "answer": 3, "choice": [["subtitle", "translation"], ["bar", "graph"], ["figure", "blueprint"], ["key", "chart"], ["footnote", "information"]], "prefix": "190 FROM REAL SATs"}
|
284 |
+
{"stem": ["exorbitant", "moderation"], "answer": 2, "choice": [["dispassionate", "equanimity"], ["macabre", "interest"], ["perfidious", "loyalty"], ["brilliant", "gullibility"], ["lavish", "extravagance"]], "prefix": "ML: http://www.gre.org/pprepdwnld.html GRE questions (11)"}
|
285 |
+
{"stem": ["impious", "reverence"], "answer": 3, "choice": [["profane", "behavior"], ["paranoid", "persecution"], ["contrite", "offense"], ["superficial", "depth"], ["contemptuous", "scorn"]], "prefix": "190 FROM REAL SATs"}
|
286 |
+
{"stem": ["collage", "images"], "answer": 0, "choice": [["medley", "songs"], ["book", "volumes"], ["survey", "lands"], ["collection", "lists"], ["assembly", "bills"]], "prefix": "190 FROM REAL SATs"}
|
287 |
+
{"stem": ["vacillate", "indecision"], "answer": 0, "choice": [["lament", "woe"], ["hibernate", "winter"], ["extricate", "entanglements"], ["digress", "angst"], ["emulate", "egotism"]], "prefix": "KS type: 63"}
|
288 |
+
{"stem": ["shear", "wool"], "answer": 0, "choice": [["reap", "wheat"], ["whittle", "wood"], ["sweep", "broom"], ["prune", "tree"], ["rake", "leaves"]], "prefix": "190 FROM REAL SATs"}
|
289 |
+
{"stem": ["scene", "act"], "answer": 1, "choice": [["outline", "book"], ["line", "stanza"], ["accent", "stress"], ["rhyme", "sound"], ["palette", "painting"]], "prefix": "ML: _One-on-one with the SATs_ (3) EASY"}
|
290 |
+
{"stem": ["antiseptic", "germs"], "answer": 2, "choice": [["sneezing", "allergies"], ["earthquake", "destruction"], ["water", "thirst"], ["illness", "fever"], ["executive", "agenda"]], "prefix": "KS type: 22"}
|
291 |
+
{"stem": ["chief", "hierarchy"], "answer": 4, "choice": [["office", "rank"], ["platoon", "army"], ["president", "term"], ["lawyer", "court"], ["summit", "mountain"]], "prefix": "190 FROM REAL SATs"}
|
292 |
+
{"stem": ["carping", "criticize"], "answer": 1, "choice": [["vain", "admire"], ["obliging", "help"], ["retiring", "boast"], ["jealous", "possess"], ["wary", "surprise"]], "prefix": "190 FROM REAL SATs"}
|
293 |
+
{"stem": ["injurious", "harm"], "answer": 3, "choice": [["criminal", "restitution"], ["insincere", "dismay"], ["sacred", "relic"], ["soporific", "sleep"], ["unethical", "principles"]], "prefix": "KS type: 28"}
|
294 |
+
{"stem": ["traffic", "street"], "answer": 4, "choice": [["ship", "gangplank"], ["crop", "harvest"], ["car", "garage"], ["pedestrians", "feet"], ["water", "riverbed"]], "prefix": "ML: _One-on-one with the SATs_ (4) MEDIUM"}
|
295 |
+
{"stem": ["song", "repertoire"], "answer": 4, "choice": [["score", "melody"], ["instrument", "artist"], ["solo", "chorus"], ["benediction", "church"], ["suit", "wardrobe"]], "prefix": "ML: http://www.collegeboard.org/psat/student/bin/practice.cgi?va&1&q"}
|
296 |
+
{"stem": ["hammer", "anvil"], "answer": 3, "choice": [["knocker", "door"], ["stick", "gong"], ["hand", "drum"], ["pestle", "mortar"], ["gavel", "lectern"]], "prefix": "ML: http://www.gre.org/pprepdwnld.html GRE questions (9)"}
|
297 |
+
{"stem": ["nightmare", "dream"], "answer": 1, "choice": [["semaphore", "signal"], ["dread", "expectation"], ["lure", "trap"], ["fear", "victim"], ["frustration", "confusion"]], "prefix": "190 FROM REAL SATs"}
|
298 |
+
{"stem": ["irrational", "logic"], "answer": 1, "choice": [["unrealistic", "understanding"], ["unethical", "morality"], ["illegible", "erasure"], ["infinite", "expansion"], ["factual", "verification"]], "prefix": "190 FROM REAL SATs"}
|
299 |
+
{"stem": ["perfidious", "treachery"], "answer": 1, "choice": [["philanthropic", "destitution"], ["servile", "submissiveness"], ["truculent", "temperament"], ["bereft", "consolation"], ["resplendent", "drabness"]], "prefix": "190 FROM REAL SATs"}
|
300 |
+
{"stem": ["progenitor", "descendant"], "answer": 4, "choice": [["stem", "leaves"], ["teacher", "student"], ["mother", "aunt"], ["cloud", "rain"], ["parent", "offspring"]], "prefix": "ML: http://www.appliedpractice.com/pdfs/Anal.%20and%20Sent.%20Comp.%20for%20S.%20L.pdf (6)"}
|
301 |
+
{"stem": ["resolute", "determination"], "answer": 1, "choice": [["pristine", "grace"], ["skeptical", "doubt"], ["tainted", "honor"], ["stringent", "suggestions"], ["wary", "risks"]], "prefix": "KS type: 61"}
|
302 |
+
{"stem": ["unnerve", "composure"], "answer": 1, "choice": [["deviate", "individuality"], ["corrupt", "purity"], ["judge", "verdict"], ["shock", "amazement"], ["threaten", "attack"]], "prefix": "ML: http://www.collegeboard.org/psat/student/bin/practice.cgi?va&10&q"}
|
303 |
+
{"stem": ["throng", "people"], "answer": 2, "choice": [["game", "players"], ["picnic", "woods"], ["swarm", "insects"], ["cat", "kittens"], ["vase", "flowers"]], "prefix": "190 FROM REAL SATs"}
|
304 |
+
{"stem": ["virtuoso", "music"], "answer": 0, "choice": [["bard", "poetry"], ["crescendo", "scale"], ["lyricist", "melody"], ["portrait", "photography"], ["critic", "performance"]], "prefix": "190 FROM REAL SATs"}
|
305 |
+
{"stem": ["rehearsal", "impromptu"], "answer": 4, "choice": [["selection", "decisive"], ["food", "alive"], ["promotion", "public"], ["comment", "eulogize"], ["congregation", "alone"]], "prefix": "ML: http://www.kagi.com/edicom/edu/sat_53.htm (9)"}
|
306 |
+
{"stem": ["arboretum", "botanical"], "answer": 3, "choice": [["farm", "domesticated"], ["planetarium", "artificial"], ["university", "academic"], ["aquarium", "marine"], ["gymnasium", "athletic"]], "prefix": "ML: _One-on-one with the SATs_ (7) HARD"}
|
307 |
+
{"stem": ["topic", "discourse"], "answer": 3, "choice": [["title", "play"], ["subject", "digression"], ["guideline", "policy"], ["theme", "essay"], ["footnote", "text"]], "prefix": "190 FROM REAL SATs"}
|
308 |
+
{"stem": ["conundrum", "perplex"], "answer": 3, "choice": [["theory", "refute"], ["explanation", "suffice"], ["blueprint", "construct"], ["entertainment", "divert"], ["expedition", "discover"]], "prefix": "190 FROM REAL SATs"}
|
309 |
+
{"stem": ["torpid", "sluggish"], "answer": 2, "choice": [["wrong", "apologetic"], ["refracted", "direct"], ["comic", "funny"], ["sad", "empathetic"], ["merry", "morose"]], "prefix": "190 FROM REAL SATs"}
|
310 |
+
{"stem": ["bruise", "skin"], "answer": 4, "choice": [["muscle", "bone"], ["smudge", "blemish"], ["rash", "allergy"], ["layer", "veneer"], ["stain", "fabric"]], "prefix": "190 FROM REAL SATs"}
|
311 |
+
{"stem": ["bird", "avian"], "answer": 3, "choice": [["plant", "tropical"], ["meat", "carnivorous"], ["snake", "slippery"], ["dog", "canine"], ["lung", "amphibian"]], "prefix": "190 FROM REAL SATs"}
|
312 |
+
{"stem": ["format", "newspaper"], "answer": 1, "choice": [["binding", "book"], ["design", "building"], ["direction", "sign"], ["market", "commodity"], ["catalogue", "library"]], "prefix": "190 FROM REAL SATs"}
|
313 |
+
{"stem": ["reveler", "merrymaking"], "answer": 3, "choice": [["hedonist", "restraint"], ["demagogue", "emotion"], ["anarchist", "authority"], ["disputant", "argument"], ["litigant", "settlement"]], "prefix": "190 FROM REAL SATs"}
|
314 |
+
{"stem": ["tourniquet", "bleeding"], "answer": 3, "choice": [["relapse", "condition"], ["lotion", "skin"], ["hoist", "elevating"], ["splint", "movement"], ["inflation", "expanding"]], "prefix": "190 FROM REAL SATs"}
|
315 |
+
{"stem": ["refugee", "asylum"], "answer": 3, "choice": [["astronaut", "capsule"], ["perfectionist", "frustration"], ["consumer", "impulse"], ["opportunist", "advantage"], ["director", "stage"]], "prefix": "190 FROM REAL SATs"}
|
316 |
+
{"stem": ["consider", "contemplate"], "answer": 3, "choice": [["smile", "greet"], ["write", "compose"], ["complain", "bicker"], ["examine", "scrutinize"], ["ignore", "notice"]], "prefix": "190 FROM REAL SATs"}
|
317 |
+
{"stem": ["strident", "sound"], "answer": 1, "choice": [["fragrant", "flower"], ["acrid", "taste"], ["outdated", "book"], ["adjusted", "clock"], ["broken", "glass"]], "prefix": "ML: http://www.kagi.com/edicom/edu/sat_53.htm (8)"}
|
318 |
+
{"stem": ["temper", "extreme"], "answer": 2, "choice": [["deliver", "speedy"], ["provoke", "angry"], ["mitigate", "severe"], ["slander", "dishonest"], ["assuage", "commodious"]], "prefix": "KS type: 30"}
|
319 |
+
{"stem": ["binomial", "name"], "answer": 3, "choice": [["octagon", "eight"], ["entreat", "gift"], ["normal", "mean"], ["centennial", "year"], ["benediction", "church"]], "prefix": "ML: http://www.kagi.com/edicom/edu/sat_51.htm (7)"}
|
320 |
+
{"stem": ["repeal", "law"], "answer": 0, "choice": [["withdraw", "offer"], ["amend", "agreement"], ["reconcile", "amends"], ["demote", "employee"], ["renovate", "house"]], "prefix": "KS type: 45"}
|
321 |
+
{"stem": ["postscript", "letter"], "answer": 2, "choice": [["preamble", "document"], ["footnote", "reference"], ["epilogue", "play"], ["signature", "name"], ["index", "page"]], "prefix": "190 FROM REAL SATs"}
|
322 |
+
{"stem": ["siren", "warning"], "answer": 4, "choice": [["shovel", "dirt"], ["alarm", "clock"], ["barrier", "intrusion"], ["signal", "reception"], ["light", "illumination"]], "prefix": "190 FROM REAL SATs"}
|
323 |
+
{"stem": ["brazen", "shame"], "answer": 3, "choice": [["comprehensive", "total"], ["inquisitive", "curiosity"], ["moral", "integrity"], ["oblivious", "awareness"], ["witty", "levity"]], "prefix": "KS type: 11"}
|
324 |
+
{"stem": ["eminence", "infamy"], "answer": 3, "choice": [["power", "fame"], ["east", "west"], ["indifference", "nonchalance"], ["pride", "shame"], ["royalty", "nobility"]], "prefix": "ML: http://www.appliedpractice.com/pdfs/Anal.%20and%20Sent.%20Comp.%20for%20S.%20L.pdf (8)"}
|
325 |
+
{"stem": ["humidifier", "moisture"], "answer": 3, "choice": [["iron", "wrinkle"], ["candle", "wax"], ["tub", "liquid"], ["furnace", "heat"], ["chimney", "smoke"]], "prefix": "190 FROM REAL SATs"}
|
326 |
+
{"stem": ["caption", "cartoon"], "answer": 2, "choice": [["byline", "newspaper"], ["laughter", "comedy"], ["subtitle", "film"], ["translation", "paraphrase"], ["billboard", "road"]], "prefix": "190 FROM REAL SATs"}
|
327 |
+
{"stem": ["walk", "scurry"], "answer": 4, "choice": [["march", "follow"], ["carouse", "revel"], ["nap", "sleep"], ["impress", "notice"], ["jog", "sprint"]], "prefix": "190 FROM REAL SATs"}
|
328 |
+
{"stem": ["dingy", "building"], "answer": 0, "choice": [["shabby", "clothes"], ["discolored", "bruise"], ["devastated", "city"], ["vacant", "apartment"], ["chapped", "lips"]], "prefix": "190 FROM REAL SATs"}
|
329 |
+
{"stem": ["indigence", "opulence"], "answer": 3, "choice": [["isolation", "solitude"], ["inflated", "exaggerated"], ["willful", "oblivious"], ["infirmity", "strength"], ["no", "choice"]], "prefix": "ML: http://www.queendom.com/tests/iq/verbal_iq_b_1.html (1)"}
|
330 |
+
{"stem": ["saunter", "walk"], "answer": 1, "choice": [["snore", "sleep"], ["drawl", "speak"], ["throw", "toss"], ["ladle", "brush"], ["finish", "end"]], "prefix": "KS type: 6"}
|
331 |
+
{"stem": ["veer", "course"], "answer": 4, "choice": [["swerve", "obstacle"], ["blaze", "paint"], ["bar", "door"], ["emigrate", "travel"], ["digress", "subject"]], "prefix": "190 FROM REAL SATs"}
|
332 |
+
{"stem": ["abbreviation", "word"], "answer": 4, "choice": [["outline", "story"], ["plot", "fiction"], ["page", "paper"], ["paragraph", "book"], ["abstract", "report"]], "prefix": "ML: http://www.kagi.com/edicom/edu/sat_51.htm (2)"}
|
333 |
+
{"stem": ["iron", "metal"], "answer": 3, "choice": [["hydrogen", "water"], ["rock", "quarry"], ["wheel", "bicycle"], ["emerald", "gem"], ["coral", "ocean"]], "prefix": "KS type: 26"}
|
334 |
+
{"stem": ["scissors", "cut"], "answer": 1, "choice": [["window", "close"], ["spice", "season"], ["cloth", "weave"], ["mask", "frighten"], ["country", "vote"]], "prefix": "KS type: 13"}
|
335 |
+
{"stem": ["cogent", "persuasiveness"], "answer": 4, "choice": [["pardoned", "blame"], ["staid", "manner"], ["tactful", "awkwardness"], ["conceited", "reputation"], ["lucid", "clarity"]], "prefix": "190 FROM REAL SATs"}
|
336 |
+
{"stem": ["indolent", "sloth"], "answer": 0, "choice": [["fertile", "fecundity"], ["presumptuous", "deviation"], ["miserable", "tragedy"], ["appealing", "delineation"], ["destructive", "progress"]], "prefix": "ML: Kaplan, practice set 1 (10)"}
|
337 |
+
{"stem": ["devotion", "obsession"], "answer": 1, "choice": [["ability", "skill"], ["confidence", "conceit"], ["intelligence", "capability"], ["surprise", "horror"], ["pleasure", "blessing"]], "prefix": "ML: http://www.kagi.com/edicom/edu/sat_52.htm (5)"}
|
dataset/sat/valid.jsonl
ADDED
@@ -0,0 +1,37 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{"stem": ["choreography", "dance"], "answer": 4, "choice": [["ceremony", "sermon"], ["agenda", "advertisement"], ["poetry", "recitation"], ["instrumentation", "conductor"], ["plot", "story"]], "prefix": "ML: http://www.gre.org/pprepdwnld.html GRE questions (4)"}
|
2 |
+
{"stem": ["rife", "singular"], "answer": 3, "choice": [["sharp", "pointed"], ["one", "unit"], ["round", "square"], ["strong", "weak"], ["smell", "good"]], "prefix": "ML: http://www.kagi.com/edicom/edu/sat_51.htm (10)"}
|
3 |
+
{"stem": ["weave", "fabric"], "answer": 4, "choice": [["illustrate", "manual"], ["hang", "picture"], ["sew", "thread"], ["bake", "oven"], ["write", "text"]], "prefix": "190 FROM REAL SATs"}
|
4 |
+
{"stem": ["verification", "confirm"], "answer": 2, "choice": [["synopsis", "avoid"], ["application", "file"], ["obscenity", "censor"], ["conciliation", "appease"], ["reiteration", "say"]], "prefix": "KS type: 42"}
|
5 |
+
{"stem": ["drift", "move"], "answer": 2, "choice": [["sprint", "run"], ["boil", "heat"], ["ramble", "walk"], ["evade", "elude"], ["crawl", "creep"]], "prefix": "190 FROM REAL SATs"}
|
6 |
+
{"stem": ["recycle", "waste"], "answer": 3, "choice": [["salvage", "rescuer"], ["restate", "emphasis"], ["recall", "product"], ["reclaim", "land"], ["irrigate", "earth"]], "prefix": "190 FROM REAL SATs"}
|
7 |
+
{"stem": ["ostrich", "bird"], "answer": 0, "choice": [["lion", "cat"], ["goose", "flock"], ["ewe", "sheep"], ["cub", "bear"], ["primate", "monkey"]], "prefix": "190 FROM REAL SATs"}
|
8 |
+
{"stem": ["stammer", "speech"], "answer": 1, "choice": [["ovation", "adulation"], ["hobble", "movement"], ["generosity", "kindness"], ["fighting", "noise"], ["brightness", "sight"]], "prefix": "ML: http://www.kagi.com/edicom/edu/sat_53.htm (4)"}
|
9 |
+
{"stem": ["perceptive", "discern"], "answer": 2, "choice": [["determined", "hesitate"], ["authoritarian", "heed"], ["persistent", "persevere"], ["abandoned", "neglect"], ["restrained", "rebel"]], "prefix": "190 FROM REAL SATs"}
|
10 |
+
{"stem": ["museum", "exhibit"], "answer": 2, "choice": [["studio", "painter"], ["library", "research"], ["theater", "performance"], ["picture", "frame"], ["orchestra", "conductor"]], "prefix": "190 FROM REAL SATs"}
|
11 |
+
{"stem": ["portfolio", "documents"], "answer": 0, "choice": [["album", "photographs"], ["government", "policies"], ["drama", "acts"], ["excavation", "artifacts"], ["rhythm", "drums"]], "prefix": "190 FROM REAL SATs"}
|
12 |
+
{"stem": ["florid", "prose"], "answer": 4, "choice": [["detailed", "sketch"], ["melodious", "music"], ["colorful", "cliche"], ["tragic", "play"], ["ornate", "building"]], "prefix": "190 FROM REAL SATs"}
|
13 |
+
{"stem": ["wallet", "money"], "answer": 1, "choice": [["safe", "lock"], ["suitcase", "clothing"], ["camera", "film"], ["setting", "jewel"], ["car", "engine"]], "prefix": "190 FROM REAL SATs"}
|
14 |
+
{"stem": ["animosity", "hatred"], "answer": 1, "choice": [["carnal", "active"], ["genial", "amiable"], ["insomnia", "sleepy"], ["pacify", "peace"], ["liveliness", "careful"]], "prefix": "ML: http://www.kagi.com/edicom/edu/sat_51.htm (4)"}
|
15 |
+
{"stem": ["ticket", "admission"], "answer": 1, "choice": [["letter", "salutation"], ["coupon", "discount"], ["receipt", "payment"], ["license", "travel"], ["application", "interview"]], "prefix": "190 FROM REAL SATs"}
|
16 |
+
{"stem": ["void", "empty"], "answer": 1, "choice": [["glut", "prosperous"], ["system", "organized"], ["answer", "questioning"], ["ration", "scarce"], ["intent", "clear"]], "prefix": "ML: Kaplan, practice set 1 (6)"}
|
17 |
+
{"stem": ["precarious", "stability"], "answer": 2, "choice": [["cantankerous", "testiness"], ["ornamental", "flourishes"], ["susceptible", "resistance"], ["flexible", "strength"], ["conclusive", "results"]], "prefix": "ML: http://www.collegeboard.org/sat/center/q0101/113q.html (medium)"}
|
18 |
+
{"stem": ["wing", "air"], "answer": 2, "choice": [["arm", "hand"], ["lung", "breath"], ["flipper", "water"], ["cloud", "sky"], ["engine", "jet"]], "prefix": "190 FROM REAL SATs"}
|
19 |
+
{"stem": ["carpenter", "woodwork"], "answer": 3, "choice": [["guitarist", "pick"], ["cook", "heat"], ["sculptor", "studio"], ["weaver", "cloth"], ["potter", "shape"]], "prefix": "190 FROM REAL SATs"}
|
20 |
+
{"stem": ["indolent", "assiduous"], "answer": 2, "choice": [["normal", "mean"], ["powerful", "omnipotent"], ["abstemious", "overindulgent"], ["rife", "vogue"], ["beneficial", "strong"]], "prefix": "ML: http://www.kagi.com/edicom/edu/sat_53.htm (7)"}
|
21 |
+
{"stem": ["shard", "pottery"], "answer": 3, "choice": [["flint", "stone"], ["flange", "wheel"], ["cinder", "coal"], ["fragment", "bone"], ["tare", "grain"]], "prefix": "ML: http://www.gre.org/pprepdwnld.html GRE questions (7)"}
|
22 |
+
{"stem": ["tree", "forest"], "answer": 2, "choice": [["bird", "sky"], ["fish", "sea"], ["star", "galaxy"], ["mammal", "land"], ["lake", "river"]], "prefix": "ML: Kaplan, practice set 1 (1)"}
|
23 |
+
{"stem": ["orator", "speech"], "answer": 3, "choice": [["protagonist", "story"], ["chronicler", "events"], ["playwright", "stage"], ["comedian", "jokes"], ["vocalist", "voice"]], "prefix": "190 FROM REAL SATs"}
|
24 |
+
{"stem": ["lubricate", "smoothly"], "answer": 3, "choice": [["weigh", "heavily"], ["assist", "grudgingly"], ["speak", "softly"], ["muffle", "quietly"], ["absorb", "quickly"]], "prefix": "190 FROM REAL SATs"}
|
25 |
+
{"stem": ["sort", "criterion"], "answer": 2, "choice": [["shuffle", "order"], ["train", "competence"], ["rank", "value"], ["divide", "quantity"], ["poll", "opinion"]], "prefix": "190 FROM REAL SATs"}
|
26 |
+
{"stem": ["waiter", "diner"], "answer": 1, "choice": [["ballerina", "dancer"], ["clerk", "customer"], ["nurse", "orderly"], ["juror", "judge"], ["captain", "teammate"]], "prefix": "190 FROM REAL SATs"}
|
27 |
+
{"stem": ["fond", "doting"], "answer": 2, "choice": [["polite", "servile"], ["whisper", "scream"], ["grasping", "needy"], ["abstinent", "indulgent"], ["no", "choice"]], "prefix": "ML: http://www.queendom.com/tests/iq/verbal_iq_b_1.html (10)"}
|
28 |
+
{"stem": ["remuneration", "labor"], "answer": 3, "choice": [["gratuity", "bonus"], ["apology", "regret"], ["pledge", "donation"], ["trophy", "victory"], ["debt", "loan"]], "prefix": "190 FROM REAL SATs"}
|
29 |
+
{"stem": ["submit", "subordinate"], "answer": 2, "choice": [["loud", "cacophony"], ["rebel", "solitude"], ["secede", "autonomous"], ["inferior", "dominant"], ["no", "choice"]], "prefix": "ML: http://www.queendom.com/tests/iq/verbal_iq_a_1.html (8)"}
|
30 |
+
{"stem": ["novice", "experience"], "answer": 0, "choice": [["pauper", "wealth"], ["vehicle", "wheels"], ["drop", "out"], ["weather", "mutability"], ["nurse", "information"]], "prefix": "ML: http://www.appliedpractice.com/pdfs/Anal.%20and%20Sent.%20Comp.%20for%20S.%20L.pdf (4)"}
|
31 |
+
{"stem": ["eraser", "page"], "answer": 0, "choice": [["mop", "floor"], ["sponge", "soap"], ["pen", "ink"], ["nail", "wall"], ["bleach", "stain"]], "prefix": "190 FROM REAL SATs"}
|
32 |
+
{"stem": ["mechanical", "garage"], "answer": 4, "choice": [["artist", "canvas"], ["administrator", "personnel"], ["teller", "window"], ["teacher", "information"], ["nurse", "hospital"]], "prefix": "KS type: 43"}
|
33 |
+
{"stem": ["foolhardy", "recklessness"], "answer": 1, "choice": [["defiant", "complacency"], ["serene", "tranquillity"], ["precious", "worthlessness"], ["sociable", "antagonism"], ["lucky", "persistence"]], "prefix": "190 FROM REAL SATs"}
|
34 |
+
{"stem": ["kernel", "nut"], "answer": 0, "choice": [["yolk", "egg"], ["grape", "raisin"], ["flour", "bread"], ["soil", "seed"], ["thorn", "stem"]], "prefix": "190 FROM REAL SATs"}
|
35 |
+
{"stem": ["skull", "head"], "answer": 2, "choice": [["heart", "organ"], ["finger", "hand"], ["skeleton", "body"], ["elbow", "joint"], ["scalp", "hair"]], "prefix": "190 FROM REAL SATs"}
|
36 |
+
{"stem": ["ream", "paper"], "answer": 1, "choice": [["stack", "brick"], ["cord", "wood"], ["barrel", "oil"], ["bushel", "apple"], ["no", "choice"]], "prefix": "ML: http://www.queendom.com/tests/iq/verbal_iq_b_1.html (9)"}
|
37 |
+
{"stem": ["trial", "jury"], "answer": 0, "choice": [["dispute", "arbiter"], ["poll", "contestant"], ["championship", "spectator"], ["conference", "speaker"], ["match", "competitor"]], "prefix": "190 FROM REAL SATs"}
|
dataset/u2/test.jsonl
ADDED
@@ -0,0 +1,228 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{"stem": ["lie", "prevaricate"], "answer": 2, "choice": [["betray", "trust"], ["philander", "donate"], ["waver", "falter"], ["deride", "praise"], ["corroborate", "doubt"]], "prefix": "grade12"}
|
2 |
+
{"stem": ["laconic", "concise"], "answer": 1, "choice": [["obdurate", "cooperative"], ["ephemeral", "fleeting"], ["malleable", "unchanging"], ["vindictive", "forgiving"], ["equivocal", "certain"]], "prefix": "grade12"}
|
3 |
+
{"stem": ["pragmatism", "philosophy"], "answer": 1, "choice": [["elevation", "pinnacle"], ["cancer", "malady"], ["electricity", "outlet"], ["cacophony", "opera"], ["chemistry", "element"]], "prefix": "grade12"}
|
4 |
+
{"stem": ["blandishment", "coax"], "answer": 3, "choice": [["directory", "telephone"], ["pavilion", "promenade"], ["surplus", "squander"], ["eulogy", "praise"], ["controversy", "placate"]], "prefix": "grade12"}
|
5 |
+
{"stem": ["powerless", "efficacy"], "answer": 4, "choice": [["turbulent", "violence"], ["anomalous", "irregularity"], ["homogenous", "similarity"], ["effluent", "water"], ["explicit", "ambiguity"]], "prefix": "grade12"}
|
6 |
+
{"stem": ["nefarious", "virtuous"], "answer": 2, "choice": [["stringent", "solid"], ["subliminal", "secret"], ["reticent", "talkative"], ["jocular", "humorous"], ["haggard", "old"]], "prefix": "grade12"}
|
7 |
+
{"stem": ["unprecedented", "forerunners"], "answer": 4, "choice": [["unnecessary", "prerequisites"], ["nauseating", "medicine"], ["bloodthirsty", "anemia"], ["holistic", "proof"], ["adulterated", "purity"]], "prefix": "grade12"}
|
8 |
+
{"stem": ["tyro", "inexperienced"], "answer": 3, "choice": [["headmaster", "principled"], ["scapegoat", "blameworthy"], ["forgery", "valuable"], ["sycophant", "servile"], ["risk", "worthwhile"]], "prefix": "grade12"}
|
9 |
+
{"stem": ["level", "hierarchy"], "answer": 0, "choice": [["installment", "serial"], ["halo", "messiah"], ["vinaigrette", "salad"], ["courtroom", "drama"], ["misnomer", "definition"]], "prefix": "grade12"}
|
10 |
+
{"stem": ["decanter", "pour"], "answer": 0, "choice": [["monument", "venerate"], ["criminal", "deviate"], ["nunnery", "convert"], ["pharmacy", "prescribe"], ["stiletto", "walk"]], "prefix": "grade12"}
|
11 |
+
{"stem": ["wretched", "cheerful"], "answer": 1, "choice": [["territorial", "terrestrial"], ["innocuous", "dangerous"], ["floundering", "struggling"], ["redacted", "censored"], ["solitary", "confined"]], "prefix": "grade12"}
|
12 |
+
{"stem": ["invective", "blame"], "answer": 4, "choice": [["homage", "copy"], ["grandeur", "admire"], ["duplicity", "increase"], ["depravity", "corrupt"], ["masonry", "construct"]], "prefix": "grade12"}
|
13 |
+
{"stem": ["erudite", "uneducated"], "answer": 1, "choice": [["fiery", "flagrant"], ["fervid", "dispassionate"], ["loquacious", "talkative"], ["gullible", "naive"], ["dissonant", "discordant"]], "prefix": "grade12"}
|
14 |
+
{"stem": ["vitriol", "bitter"], "answer": 1, "choice": [["hindsight", "perfect"], ["alabaster", "white"], ["buoyancy", "light"], ["equilibrium", "just"], ["jubilation", "biblical"]], "prefix": "grade12"}
|
15 |
+
{"stem": ["vernacular", "regional"], "answer": 2, "choice": [["leaf", "autumnal"], ["senator", "dissentious"], ["fluctuation", "irregular"], ["budget", "austere"], ["autopsy", "fatal"]], "prefix": "grade12"}
|
16 |
+
{"stem": ["fake", "authenticity"], "answer": 0, "choice": [["latent", "manifestation"], ["impenetrable", "defense"], ["lacteal", "milk"], ["preponderant", "thought"], ["retrograde", "direction"]], "prefix": "grade12"}
|
17 |
+
{"stem": ["castigate", "criticize"], "answer": 0, "choice": [["dishevel", "destroy"], ["brutalize", "attack"], ["legalize", "filibuster"], ["predict", "forecast"], ["kill", "massacre"]], "prefix": "grade12"}
|
18 |
+
{"stem": ["virulent", "poisonous"], "answer": 1, "choice": [["autonomous", "free"], ["disparate", "different"], ["botanical", "flowery"], ["dormant", "tired"], ["unique", "eccentric"]], "prefix": "grade12"}
|
19 |
+
{"stem": ["rivulet", "small"], "answer": 4, "choice": [["dissertation", "plagiarized"], ["bird", "fledgling"], ["bankruptcy", "indebted"], ["hooligan", "athletic"], ["citadel", "fortified"]], "prefix": "grade12"}
|
20 |
+
{"stem": ["grenadier", "army"], "answer": 3, "choice": [["inkling", "pen"], ["wheelchair", "paraplegic"], ["couch", "lethargy"], ["count", "nobility"], ["insurrection", "government"]], "prefix": "grade12"}
|
21 |
+
{"stem": ["truism", "obvious"], "answer": 2, "choice": [["waiver", "safe"], ["president", "tyrannical"], ["daredevil", "audacious"], ["novel", "ingenuous"], ["pedant", "imaginative"]], "prefix": "grade12"}
|
22 |
+
{"stem": ["element", "aggregate"], "answer": 1, "choice": [["fresco", "painting"], ["foreground", "landscape"], ["benefactor", "fortune"], ["mandate", "ruler"], ["diet", "nutrient"]], "prefix": "grade12"}
|
23 |
+
{"stem": ["microwave", "heat"], "answer": 0, "choice": [["refrigerator", "cool"], ["freezer", "cook"], ["sink", "organize"], ["fireplace", "destroy"]], "prefix": "grade6"}
|
24 |
+
{"stem": ["helmet", "head"], "answer": 0, "choice": [["mask", "face"], ["belt", "train"], ["ring", "wrist"], ["slipper", "ankle"]], "prefix": "grade6"}
|
25 |
+
{"stem": ["cigarette", "unhealthy"], "answer": 0, "choice": [["sin", "immoral"], ["baby", "wise"], ["husband", "rich"], ["nation", "peaceful"]], "prefix": "grade6"}
|
26 |
+
{"stem": ["positive", "negative"], "answer": 0, "choice": [["clean", "filthy"], ["angry", "upset"], ["friendly", "popular"], ["challenging", "interesting"]], "prefix": "grade6"}
|
27 |
+
{"stem": ["skeptical", "belief"], "answer": 1, "choice": [["unpopular", "wealth"], ["homeless", "shelter"], ["polite", "power"], ["nervous", "stress"]], "prefix": "grade6"}
|
28 |
+
{"stem": ["spaghetti", "pasta"], "answer": 0, "choice": [["ketchup", "condiment"], ["lettuce", "sauce"], ["bacon", "fruit"], ["cereal", "dairy"]], "prefix": "grade6"}
|
29 |
+
{"stem": ["expert", "skilled"], "answer": 3, "choice": [["athlete", "thin"], ["student", "intelligent"], ["spy", "friendly"], ["fanatic", "enthusiastic"]], "prefix": "grade6"}
|
30 |
+
{"stem": ["comedy", "funny"], "answer": 2, "choice": [["mystery", "boring"], ["drama", "romantic"], ["tragedy", "sad"], ["newspaper", "expensive"]], "prefix": "grade6"}
|
31 |
+
{"stem": ["butcher", "meat"], "answer": 3, "choice": [["maid", "chores"], ["teacher", "knowledge"], ["librarian", "books"], ["baker", "bread"]], "prefix": "grade6"}
|
32 |
+
{"stem": ["brother", "sibling"], "answer": 3, "choice": [["mother", "daughter"], ["doctor", "nurse"], ["uncle", "aunt"], ["father", "parent"]], "prefix": "grade6"}
|
33 |
+
{"stem": ["verse", "song"], "answer": 0, "choice": [["core", "apple"], ["mop", "broom"], ["supermarket", "office"], ["coat", "jacket"]], "prefix": "grade6"}
|
34 |
+
{"stem": ["liar", "honesty"], "answer": 2, "choice": [["lawyer", "mercy"], ["mother", "children"], ["fool", "wisdom"], ["soldier", "power"]], "prefix": "grade6"}
|
35 |
+
{"stem": ["sunscreen", "skin"], "answer": 2, "choice": [["magic", "children"], ["grass", "house"], ["armor", "body"], ["faith", "country"]], "prefix": "grade6"}
|
36 |
+
{"stem": ["engine", "car"], "answer": 0, "choice": [["lens", "microscope"], ["day", "night"], ["picture", "frame"], ["club", "member"]], "prefix": "grade6"}
|
37 |
+
{"stem": ["downpour", "rain"], "answer": 2, "choice": [["wave", "water"], ["tornado", "clouds"], ["blizzard", "snow"], ["desert", "heat"]], "prefix": "grade6"}
|
38 |
+
{"stem": ["wizard", "magical"], "answer": 0, "choice": [["king", "royal"], ["nun", "silent"], ["teacher", "ordinary"], ["chef", "delicious"]], "prefix": "grade6"}
|
39 |
+
{"stem": ["bus", "automobile"], "answer": 1, "choice": [["building", "house"], ["tiger", "animal"], ["letter", "alphabet"], ["bath", "shower"]], "prefix": "grade6"}
|
40 |
+
{"stem": ["wool", "sheep"], "answer": 0, "choice": [["leather", "cows"], ["metal", "trees"], ["paper", "rocks"], ["wood", "mountains"]], "prefix": "grade6"}
|
41 |
+
{"stem": ["humiliated", "embarrassed"], "answer": 1, "choice": [["shy", "timid"], ["enraged", "angry"], ["sad", "upset"], ["excited", "anxious"]], "prefix": "grade6"}
|
42 |
+
{"stem": ["sewing", "craft"], "answer": 2, "choice": [["salt", "food"], ["fate", "science"], ["gasoline", "fuel"], ["sunrise", "art"]], "prefix": "grade6"}
|
43 |
+
{"stem": ["pebble", "stone"], "answer": 0, "choice": [["minnow", "fish"], ["car", "truck"], ["tiger", "lion"], ["dictionary", "book"]], "prefix": "grade6"}
|
44 |
+
{"stem": ["obscene", "inappropriate"], "answer": 3, "choice": [["impossible", "easy"], ["polite", "rude"], ["tall", "honest"], ["spotless", "clean"]], "prefix": "grade6"}
|
45 |
+
{"stem": ["accident", "unintended"], "answer": 2, "choice": [["idea", "true"], ["law", "perfect"], ["villain", "evil"], ["castle", "unknown"]], "prefix": "grade6"}
|
46 |
+
{"stem": ["optimism", "pesimissm"], "answer": 0, "choice": [["success", "failure"], ["food", "hunger"], ["motivation", "dedication"], ["maturity", "youth"]], "prefix": "grade6"}
|
47 |
+
{"stem": ["train", "railroad"], "answer": 2, "choice": [["boat", "mountain"], ["helicopter", "cloud"], ["truck", "highway"], ["wagon", "wheel"]], "prefix": "grade6"}
|
48 |
+
{"stem": ["athlete", "fit"], "answer": 2, "choice": [["chef", "fat"], ["dog", "energetic"], ["priest", "religious"], ["dancer", "intelligent"]], "prefix": "grade6"}
|
49 |
+
{"stem": ["trivial", "importance"], "answer": 3, "choice": [["prestigious", "honor"], ["written", "rhyme"], ["invisible", "sight"], ["familiar", "novelty"]], "prefix": "grade6"}
|
50 |
+
{"stem": ["rock", "hard"], "answer": 0, "choice": [["water", "wet"], ["table", "wooden"], ["mom", "nice"], ["sound", "loud"]], "prefix": "grade4"}
|
51 |
+
{"stem": ["chair", "sit"], "answer": 0, "choice": [["cup", "drink"], ["bottle", "break"], ["book", "read"], ["eye", "listen"]], "prefix": "grade4"}
|
52 |
+
{"stem": ["poor", "money"], "answer": 0, "choice": [["tired", "energy"], ["angry", "emotion"], ["hot", "ice"], ["hungry", "water"]], "prefix": "grade4"}
|
53 |
+
{"stem": ["hammer", "hit"], "answer": 0, "choice": [["knife", "cut"], ["table", "eat"], ["pen", "build"], ["wheel", "race"]], "prefix": "grade4"}
|
54 |
+
{"stem": ["ham", "meat"], "answer": 2, "choice": [["air", "water"], ["tennis", "school"], ["juice", "drink"], ["math", "number"]], "prefix": "grade4"}
|
55 |
+
{"stem": ["beautiful", "pretty"], "answer": 0, "choice": [["terrible", "bad"], ["brave", "valiant"], ["new", "old"], ["tall", "skinny"]], "prefix": "grade4"}
|
56 |
+
{"stem": ["play", "work"], "answer": 0, "choice": [["laugh", "cry"], ["eat", "talk"], ["run", "walk"], ["see", "hear"]], "prefix": "grade4"}
|
57 |
+
{"stem": ["match", "fire"], "answer": 1, "choice": [["bag", "wallet"], ["key", "car"], ["gas", "machine"], ["cookie", "mouth"]], "prefix": "grade4"}
|
58 |
+
{"stem": ["tongue", "taste"], "answer": 3, "choice": [["boat", "swim"], ["bed", "sit"], ["bag", "buy"], ["nose", "smell"]], "prefix": "grade4"}
|
59 |
+
{"stem": ["hilarious", "funny"], "answer": 3, "choice": [["right", "wrong"], ["hard", "boring"], ["nice", "crazy"], ["great", "good"]], "prefix": "grade4"}
|
60 |
+
{"stem": ["teacher", "educate"], "answer": 0, "choice": [["doctor", "heal"], ["farmer", "talk"], ["engine", "oil"], ["dog", "sit"]], "prefix": "grade4"}
|
61 |
+
{"stem": ["whale", "ocean"], "answer": 1, "choice": [["car", "garage"], ["tiger", "jungle"], ["chair", "table"]], "prefix": "grade4"}
|
62 |
+
{"stem": ["great", "good"], "answer": 2, "choice": [["fun", "cool"], ["strange", "weird"], ["hot", "warm"], ["dull", "sharp"]], "prefix": "grade4"}
|
63 |
+
{"stem": ["huge", "big"], "answer": 1, "choice": [["nice", "good"], ["tiny", "small"], ["funny", "happy"], ["old", "new"]], "prefix": "grade4"}
|
64 |
+
{"stem": ["tiny", "little"], "answer": 0, "choice": [["huge", "big"], ["long", "tall"], ["small", "loud"], ["neat", "messy"]], "prefix": "grade4"}
|
65 |
+
{"stem": ["candy", "sweet"], "answer": 3, "choice": [["water", "cold"], ["time", "fast"], ["money", "expensive"], ["fire", "hot"]], "prefix": "grade4"}
|
66 |
+
{"stem": ["ugly", "beauty"], "answer": 0, "choice": [["serious", "humor"], ["old", "age"], ["hot", "heat"], ["sweet", "strength"]], "prefix": "grade4"}
|
67 |
+
{"stem": ["sad", "happiness"], "answer": 0, "choice": [["weak", "strength"], ["sweet", "flavor"], ["fast", "time"], ["pretty", "beauty"]], "prefix": "grade4"}
|
68 |
+
{"stem": ["shield", "protect"], "answer": 1, "choice": [["computer", "talk"], ["vehicle", "transport"], ["pencil", "make"], ["song", "sing"]], "prefix": "grade4"}
|
69 |
+
{"stem": ["terrified", "scared"], "answer": 2, "choice": [["quiet", "secret"], ["sweet", "rich"], ["obsessed", "interested"], ["funny", "serious"]], "prefix": "grade4"}
|
70 |
+
{"stem": ["ring", "finger"], "answer": 0, "choice": [["necklace", "neck"], ["bracelet", "diamond"], ["sock", "hand"], ["glove", "foot"]], "prefix": "grade4"}
|
71 |
+
{"stem": ["wrench", "tool"], "answer": 3, "choice": [["cow", "milk"], ["radio", "sound"], ["tree", "forest"], ["carrot", "vegetable"]], "prefix": "grade4"}
|
72 |
+
{"stem": ["wall", "room"], "answer": 2, "choice": [["lettuce", "sandwich"], ["dog", "cat"], ["wheel", "car"], ["song", "dance"]], "prefix": "grade4"}
|
73 |
+
{"stem": ["sick", "health"], "answer": 2, "choice": [["sad", "emotion"], ["tall", "intelligence"], ["scared", "courage"], ["smart", "energy"]], "prefix": "grade4"}
|
74 |
+
{"stem": ["correct", "right"], "answer": 3, "choice": [["crazy", "smart"], ["weak", "fun"], ["strong", "hard"], ["cheap", "inexpensive"]], "prefix": "grade4"}
|
75 |
+
{"stem": ["puppy", "dog"], "answer": 0, "choice": [["kitten", "cat"], ["bear", "cub"], ["fish", "minnow"], ["cow", "calf"]], "prefix": "grade4"}
|
76 |
+
{"stem": ["musician", "music"], "answer": 1, "choice": [["shower", "water"], ["chef", "food"], ["machine", "snow"], ["child", "art"]], "prefix": "grade4"}
|
77 |
+
{"stem": ["hidden", "visible"], "answer": 1, "choice": [["spicy", "delicious"], ["flimsy", "sturdy"], ["tasteful", "classy"], ["elevated", "escalated"]], "prefix": "grade8"}
|
78 |
+
{"stem": ["honor", "disgrace"], "answer": 1, "choice": [["comfort", "pleasure"], ["safety", "peril"], ["sanity", "sense"], ["anger", "rage"]], "prefix": "grade8"}
|
79 |
+
{"stem": ["island", "archipelago"], "answer": 3, "choice": [["anchor", "aircraft"], ["archive", "album"], ["ocean", "iceberg"], ["article", "newspaper"]], "prefix": "grade8"}
|
80 |
+
{"stem": ["lifejacket", "boat"], "answer": 1, "choice": [["medicine", "disease"], ["seatbelt", "plane"], ["shield", "sword"], ["hat", "helmet"]], "prefix": "grade8"}
|
81 |
+
{"stem": ["ignite", "extinguish"], "answer": 0, "choice": [["harvest", "plant"], ["rest", "relax"], ["investigate", "trust"], ["remove", "confiscate"]], "prefix": "grade8"}
|
82 |
+
{"stem": ["devout", "religious"], "answer": 0, "choice": [["hyper", "energetic"], ["depressed", "angry"], ["fit", "strong"], ["cruel", "strange"]], "prefix": "grade8"}
|
83 |
+
{"stem": ["klutz", "clumsy"], "answer": 1, "choice": [["priest", "evil"], ["cold", "contagious"], ["car", "broken"], ["vegetable", "green"]], "prefix": "grade8"}
|
84 |
+
{"stem": ["algebra", "mathematics"], "answer": 0, "choice": [["rain", "precipitation"], ["bronze", "metal"], ["tradition", "culture"], ["trade", "economy"]], "prefix": "grade8"}
|
85 |
+
{"stem": ["epidemic", "widespread"], "answer": 2, "choice": [["artist", "idealistic"], ["island", "lonesome"], ["emergency", "urgent"], ["intention", "challenged"]], "prefix": "grade8"}
|
86 |
+
{"stem": ["cough", "cold"], "answer": 2, "choice": [["fever", "issue"], ["problem", "solution"], ["disagreement", "argument"], ["room", "hotel"]], "prefix": "grade8"}
|
87 |
+
{"stem": ["network", "connect"], "answer": 0, "choice": [["statue", "memorialize"], ["funeral", "eliminate"], ["telephone", "hear"], ["device", "create"]], "prefix": "grade8"}
|
88 |
+
{"stem": ["veins", "circulate"], "answer": 3, "choice": [["calculators", "think"], ["boots", "sprint"], ["laws", "enforce"], ["ornaments", "decorate"]], "prefix": "grade8"}
|
89 |
+
{"stem": ["note", "melody"], "answer": 0, "choice": [["bone", "skeleton"], ["movie", "film"], ["meal", "restaurant"], ["career", "job"]], "prefix": "grade8"}
|
90 |
+
{"stem": ["hasty", "patience"], "answer": 2, "choice": [["unskilled", "magic"], ["terrified", "logic"], ["unqualified", "credentials"], ["gullible", "belief"]], "prefix": "grade8"}
|
91 |
+
{"stem": ["elderly", "youth"], "answer": 3, "choice": [["famous", "popularity"], ["rational", "proof"], ["smug", "satisfaction"], ["well", "illness"]], "prefix": "grade8"}
|
92 |
+
{"stem": ["conclusion", "essay"], "answer": 3, "choice": [["theme", "song"], ["meal", "dessert"], ["parade", "party"], ["scene", "play"]], "prefix": "grade8"}
|
93 |
+
{"stem": ["fame", "obscurity"], "answer": 3, "choice": [["peace", "harmony"], ["music", "art"], ["knowledge", "wisdom"], ["sorrow", "joy"]], "prefix": "grade8"}
|
94 |
+
{"stem": ["whisper", "quiet"], "answer": 0, "choice": [["folktale", "traditional"], ["whip", "evil"], ["disease", "curable"], ["meal", "satisfying"]], "prefix": "grade8"}
|
95 |
+
{"stem": ["assassination", "murder"], "answer": 2, "choice": [["document", "certificate"], ["beverage", "drink"], ["relay", "race"], ["technology", "robot"]], "prefix": "grade8"}
|
96 |
+
{"stem": ["uninhibited", "restraint"], "answer": 3, "choice": [["overweight", "shape"], ["unhealthy", "control"], ["intelligent", "thought"], ["generous", "selfishness"]], "prefix": "grade8"}
|
97 |
+
{"stem": ["aluminum", "metal"], "answer": 0, "choice": [["limerick", "poetry"], ["mathematics", "numbers"], ["rain", "season"], ["water", "thirst"]], "prefix": "grade8"}
|
98 |
+
{"stem": ["devastated", "damaged"], "answer": 3, "choice": [["unusual", "weird"], ["unkind", "hurtful"], ["incredible", "mundane"], ["prevalent", "common"]], "prefix": "grade8"}
|
99 |
+
{"stem": ["excruciating", "painful"], "answer": 0, "choice": [["baffling", "confusing"], ["upsetting", "exciting"], ["improving", "hopeful"], ["crippling", "stressful"]], "prefix": "grade8"}
|
100 |
+
{"stem": ["locker", "storage"], "answer": 0, "choice": [["telephone", "communication"], ["wallet", "cash"], ["pencil", "paper"], ["lake", "moisture"]], "prefix": "grade8"}
|
101 |
+
{"stem": ["kiss", "affection"], "answer": 2, "choice": [["smile", "fear"], ["joke", "importance"], ["message", "information"], ["television", "actors"]], "prefix": "grade8"}
|
102 |
+
{"stem": ["active", "idle"], "answer": 2, "choice": [["challenging", "difficult"], ["dramatic", "tragic"], ["brief", "lengthy"], ["scholarly", "studious"]], "prefix": "grade8"}
|
103 |
+
{"stem": ["heirloom", "inherited"], "answer": 1, "choice": [["ship", "wooden"], ["sermon", "religious"], ["newspaper", "popular"], ["coupon", "valuable"]], "prefix": "grade8"}
|
104 |
+
{"stem": ["panacea", "cure"], "answer": 2, "choice": [["cello", "compose"], ["stereo", "listen"], ["contagion", "infect"], ["stopwatch", "hasten"]], "prefix": "grade9"}
|
105 |
+
{"stem": ["blatant", "inconspicuous"], "answer": 0, "choice": [["tedious", "engaging"], ["restorative", "peaceful"], ["indulgent", "luxurious"], ["pedantic", "ordinary"]], "prefix": "grade9"}
|
106 |
+
{"stem": ["sacrosanct", "holy"], "answer": 3, "choice": [["surprising", "remarkable"], ["skeptical", "gullible"], ["ridiculous", "absurd"], ["abominable", "evil"]], "prefix": "grade9"}
|
107 |
+
{"stem": ["livid", "angry"], "answer": 3, "choice": [["trim", "anorexic"], ["contrary", "contrite"], ["faithful", "dogmatic"], ["crestfallen", "depressed"]], "prefix": "grade9"}
|
108 |
+
{"stem": ["neighborhood", "city"], "answer": 3, "choice": [["priory", "monk"], ["jumper", "dress"], ["iceberg", "tip"], ["annex", "building"]], "prefix": "grade9"}
|
109 |
+
{"stem": ["lamentation", "sorrow"], "answer": 2, "choice": [["psalm", "warning"], ["sonnet", "religion"], ["eulogy", "praise"], ["newspaper", "disapproval"]], "prefix": "grade9"}
|
110 |
+
{"stem": ["objective", "bias"], "answer": 2, "choice": [["fallacious", "lies"], ["autistic", "health"], ["tentative", "certainty"], ["awake", "insomnia"]], "prefix": "grade9"}
|
111 |
+
{"stem": ["mallet", "strike"], "answer": 2, "choice": [["harpsichord", "twinkle"], ["impression", "paint"], ["ornament", "embellish"], ["ottoman", "weave"]], "prefix": "grade9"}
|
112 |
+
{"stem": ["ruse", "trick"], "answer": 2, "choice": [["hangman", "condemn"], ["funeral", "eliminate"], ["spectacle", "entertain"], ["inventor", "deviate"]], "prefix": "grade9"}
|
113 |
+
{"stem": ["piccolo", "instrument"], "answer": 2, "choice": [["violoncello", "bass"], ["currency", "dollar"], ["decathlon", "competition"], ["cult", "festival"]], "prefix": "grade9"}
|
114 |
+
{"stem": ["aloof", "connected"], "answer": 0, "choice": [["deliberate", "accidental"], ["rigid", "firm"], ["ethereal", "fleeting"], ["logical", "calculating"]], "prefix": "grade9"}
|
115 |
+
{"stem": ["inconceivable", "doubtful"], "answer": 3, "choice": [["healthful", "beneficial"], ["credible", "plausible"], ["indecent", "lustful"], ["sickening", "repugnant"]], "prefix": "grade9"}
|
116 |
+
{"stem": ["plagiarism", "wrongdoing"], "answer": 3, "choice": [["citrus", "lemonade"], ["infection", "bacteria"], ["crime", "punishment"], ["cancer", "malady"]], "prefix": "grade9"}
|
117 |
+
{"stem": ["provisional", "permanent"], "answer": 3, "choice": [["aggressive", "fierce"], ["improved", "enhanced"], ["undercover", "covert"], ["moderate", "extreme"]], "prefix": "grade9"}
|
118 |
+
{"stem": ["medal", "accolade"], "answer": 1, "choice": [["song", "hymnal"], ["cauldron", "kettle"], ["fire", "kindling"], ["airplane", "hangar"]], "prefix": "grade9"}
|
119 |
+
{"stem": ["carnival", "entertainment"], "answer": 2, "choice": [["poster", "propaganda"], ["handout", "welfare"], ["encyclopedia", "information"], ["statement", "persuasion"]], "prefix": "grade9"}
|
120 |
+
{"stem": ["selfish", "altruism"], "answer": 3, "choice": [["ambiguity", "uncertainty"], ["hollow", "emptiness"], ["insidious", "diseases"], ["depraved", "morality"]], "prefix": "grade9"}
|
121 |
+
{"stem": ["filament", "lightbulb"], "answer": 1, "choice": [["misunderstanding", "conversation"], ["blade", "propeller"], ["car", "gearshift"], ["outlet", "economy"]], "prefix": "grade9"}
|
122 |
+
{"stem": ["foolish", "sagacity"], "answer": 0, "choice": [["miserly", "generosity"], ["tangible", "fingers"], ["tardy", "time"], ["infamous", "celebrity"]], "prefix": "grade9"}
|
123 |
+
{"stem": ["loquacious", "quiet"], "answer": 1, "choice": [["forgiven", "annulled"], ["trivial", "crucial"], ["salacious", "impure"], ["enduring", "ongoing"]], "prefix": "grade9"}
|
124 |
+
{"stem": ["denouement", "plot"], "answer": 0, "choice": [["appetizer", "meal"], ["gown", "ball"], ["rifle", "dagger"], ["libertarian", "revolution"]], "prefix": "grade9"}
|
125 |
+
{"stem": ["pragmatic", "unrealistic"], "answer": 0, "choice": [["perplexing", "straightforward"], ["flirtatious", "coquettish"], ["opulent", "rich"], ["sinful", "erotic"]], "prefix": "grade9"}
|
126 |
+
{"stem": ["exhausting", "rejuvenating"], "answer": 0, "choice": [["disturbing", "soothing"], ["cruel", "ruthless"], ["pitiful", "miserable"], ["vexing", "irritating"]], "prefix": "grade9"}
|
127 |
+
{"stem": ["corpse", "deceased"], "answer": 0, "choice": [["infant", "nascent"], ["prophet", "skeptical"], ["tyrant", "easygoing"], ["athlete", "sluggish"]], "prefix": "grade9"}
|
128 |
+
{"stem": ["labyrinth", "complicated"], "answer": 1, "choice": [["tempo", "upbeat"], ["enigma", "mysterious"], ["narrator", "biased"], ["legend", "credible"]], "prefix": "grade9"}
|
129 |
+
{"stem": ["priest", "ordained"], "answer": 2, "choice": [["lord", "defrocked"], ["senator", "allowed"], ["president", "inaugurated"], ["king", "graduated"]], "prefix": "grade9"}
|
130 |
+
{"stem": ["euphemism", "inoffensive"], "answer": 0, "choice": [["charlatan", "dishonest"], ["wizard", "mundane"], ["scorpion", "harmless"], ["gymnast", "clumsy"]], "prefix": "grade9"}
|
131 |
+
{"stem": ["hurricane", "storm"], "answer": 0, "choice": [["table", "furniture"], ["tornado", "rain"], ["snow", "wind"], ["chair", "sofa"]], "prefix": "grade5"}
|
132 |
+
{"stem": ["commercial", "advertise"], "answer": 2, "choice": [["sport", "teach"], ["newspaper", "inspire"], ["comedy", "entertain"], ["drama", "annoy"]], "prefix": "grade5"}
|
133 |
+
{"stem": ["infuriating", "annoying"], "answer": 1, "choice": [["ruined", "ugly"], ["devastated", "sad"], ["depressed", "intelligent"], ["arrogant", "clever"]], "prefix": "grade5"}
|
134 |
+
{"stem": ["mother", "female"], "answer": 2, "choice": [["vegetable", "green"], ["snake", "dangerous"], ["rock", "hard"], ["tree", "old"]], "prefix": "grade5"}
|
135 |
+
{"stem": ["weak", "strength"], "answer": 3, "choice": [["silly", "comedy"], ["wild", "friends"], ["brave", "courage"], ["lost", "direction"]], "prefix": "grade5"}
|
136 |
+
{"stem": ["zebra", "animal"], "answer": 0, "choice": [["green", "color"], ["shape", "cube"], ["country", "Brazil"], ["food", "dessert"]], "prefix": "grade5"}
|
137 |
+
{"stem": ["lap", "race"], "answer": 1, "choice": [["head", "hair"], ["act", "play"], ["runner", "athlete"], ["show", "theater"]], "prefix": "grade5"}
|
138 |
+
{"stem": ["meat", "animals"], "answer": 0, "choice": [["paper", "trees"], ["diamonds", "pearls"], ["wood", "rocks"], ["oranges", "apples"]], "prefix": "grade5"}
|
139 |
+
{"stem": ["wonderful", "good"], "answer": 2, "choice": [["great", "terrific"], ["sinful", "evil"], ["terrifying", "scary"], ["perfect", "flawed"]], "prefix": "grade5"}
|
140 |
+
{"stem": ["obvious", "hidden"], "answer": 2, "choice": [["silver", "jewelry"], ["dress", "gown"], ["idea", "belief"], ["liberal", "conservative"]], "prefix": "grade5"}
|
141 |
+
{"stem": ["unknown", "fame"], "answer": 1, "choice": [["rapid", "speed"], ["ignorant", "education"], ["refined", "manners"], ["lovely", "sight"]], "prefix": "grade5"}
|
142 |
+
{"stem": ["television", "watched"], "answer": 2, "choice": [["record", "baked"], ["newspaper", "cooked"], ["novel", "read"], ["comic", "laughed"]], "prefix": "grade5"}
|
143 |
+
{"stem": ["evil", "morals"], "answer": 2, "choice": [["special", "manners"], ["famous", "friends"], ["blind", "sight"], ["beautiful", "opinions"]], "prefix": "grade5"}
|
144 |
+
{"stem": ["gold", "expensive"], "answer": 3, "choice": [["jewelry", "dull"], ["cotton", "beautiful"], ["silver", "outrageous"], ["velvet", "soft"]], "prefix": "grade5"}
|
145 |
+
{"stem": ["volleyball", "sport"], "answer": 1, "choice": [["rabbit", "cat"], ["runner", "athlete"], ["tiger", "zoo"], ["soccer", "football"]], "prefix": "grade5"}
|
146 |
+
{"stem": ["broken", "repaired"], "answer": 1, "choice": [["foreign", "strange"], ["selfish", "generous"], ["unusual", "weird"], ["nasty", "mean"]], "prefix": "grade5"}
|
147 |
+
{"stem": ["knife", "sharp"], "answer": 0, "choice": [["crime", "illegal"], ["child", "rude"], ["wife", "powerful"], ["war", "peaceful"]], "prefix": "grade5"}
|
148 |
+
{"stem": ["pie", "dessert"], "answer": 0, "choice": [["bacon", "meat"], ["candy", "drink"], ["cola", "tea"], ["ham", "beef"]], "prefix": "grade5"}
|
149 |
+
{"stem": ["suit", "formal"], "answer": 1, "choice": [["hat", "attractive"], ["coat", "warm"], ["shoe", "lonely"], ["tie", "black"]], "prefix": "grade5"}
|
150 |
+
{"stem": ["hungry", "full"], "answer": 2, "choice": [["salty", "delicious"], ["polite", "kind"], ["evil", "good"], ["beautiful", "lovely"]], "prefix": "grade5"}
|
151 |
+
{"stem": ["racist", "prejudiced"], "answer": 3, "choice": [["saint", "holy"], ["worker", "tired"], ["nurse", "sick"], ["clerk", "hungry"]], "prefix": "grade5"}
|
152 |
+
{"stem": ["hamburger", "sandwich"], "answer": 3, "choice": [["foot", "leg"], ["cow", "pig"], ["sport", "baseball"], ["pretzel", "snack"]], "prefix": "grade5"}
|
153 |
+
{"stem": ["second", "minute"], "answer": 0, "choice": [["day", "week"], ["centimeter", "inch"], ["mile", "hour"], ["year", "month"]], "prefix": "grade5"}
|
154 |
+
{"stem": ["author", "write"], "answer": 3, "choice": [["mother", "annoy"], ["banker", "preach"], ["firefighter", "study"], ["janitor", "clean"]], "prefix": "grade5"}
|
155 |
+
{"stem": ["nice", "unkind"], "answer": 0, "choice": [["hideous", "pretty"], ["safe", "solid"], ["loud", "noisy"], ["terrible", "awful"]], "prefix": "grade5"}
|
156 |
+
{"stem": ["mountain", "high"], "answer": 1, "choice": [["river", "ugly"], ["valley", "low"], ["forest", "lonely"], ["desert", "wet"]], "prefix": "grade5"}
|
157 |
+
{"stem": ["helicopter", "sky"], "answer": 3, "choice": [["canoe", "street"], ["truck", "river"], ["motorcycle", "bus"], ["submarine", "water"]], "prefix": "grade5"}
|
158 |
+
{"stem": ["thwart", "frustrate"], "answer": 4, "choice": [["retain", "burst"], ["meditate", "snooze"], ["bully", "balk"], ["bristle", "brush"], ["laud", "praise"]], "prefix": "grade11"}
|
159 |
+
{"stem": ["legend", "map"], "answer": 1, "choice": [["continent", "nation"], ["page", "tome"], ["tirade", "government"], ["legion", "family"], ["army", "soldier"]], "prefix": "grade11"}
|
160 |
+
{"stem": ["blatant", "obvious"], "answer": 4, "choice": [["obscure", "marred"], ["legendary", "unbelievable"], ["novel", "obsolete"], ["powerful", "dominant"], ["preeminent", "important"]], "prefix": "grade11"}
|
161 |
+
{"stem": ["acrophobia", "heights"], "answer": 2, "choice": [["claustrophobia", "closets"], ["homophobia", "discrimination"], ["agoraphobia", "crowds"], ["vertigo", "balance"], ["arachnophobia", "insects"]], "prefix": "grade11"}
|
162 |
+
{"stem": ["pragmatic", "practical"], "answer": 3, "choice": [["irritating", "pleasing"], ["tenacious", "faltering"], ["opaque", "translucent"], ["trivial", "negligible"], ["unusual", "ludicrous"]], "prefix": "grade11"}
|
163 |
+
{"stem": ["enigma", "mysterious"], "answer": 0, "choice": [["bigot", "prejudiced"], ["beetle", "venomous"], ["politician", "obtuse"], ["professor", "glib"], ["potion", "potent"]], "prefix": "grade11"}
|
164 |
+
{"stem": ["bishop", "ordained"], "answer": 0, "choice": [["palace", "stately"], ["transgression", "acceptable"], ["cliche", "intrepid"], ["loft", "unattainable"], ["character", "humorous"]], "prefix": "grade11"}
|
165 |
+
{"stem": ["tedium", "excitement"], "answer": 3, "choice": [["revision", "edition"], ["honor", "prestige"], ["mortgage", "debt"], ["acceptance", "denial"], ["perturbation", "frustration"]], "prefix": "grade11"}
|
166 |
+
{"stem": ["altruism", "selfishness"], "answer": 4, "choice": [["alacrity", "clarity"], ["passion", "fervor"], ["levity", "flippancy"], ["gravity", "momentum"], ["impartiality", "bias"]], "prefix": "grade11"}
|
167 |
+
{"stem": ["saccharine", "sweet"], "answer": 2, "choice": [["omniscient", "omnipotent"], ["lethargic", "slovenly"], ["sacrosanct", "sacred"], ["hypocritical", "dissonant"], ["obtuse", "angular"]], "prefix": "grade11"}
|
168 |
+
{"stem": ["debunk", "verify"], "answer": 0, "choice": [["revere", "denigrate"], ["besmirch", "slander"], ["cower", "submit"], ["pontificate", "pronounce"], ["capitulate", "surrender"]], "prefix": "grade11"}
|
169 |
+
{"stem": ["cauldron", "pot"], "answer": 1, "choice": [["vibration", "perception"], ["pictograph", "symbol"], ["favor", "currency"], ["luminary", "phantasm"], ["paragon", "light"]], "prefix": "grade11"}
|
170 |
+
{"stem": ["frail", "brawn"], "answer": 3, "choice": [["humorous", "wit"], ["obtuse", "intensity"], ["disinterested", "ennui"], ["longwinded", "brevity"], ["tenuous", "weakness"]], "prefix": "grade11"}
|
171 |
+
{"stem": ["tawdry", "taste"], "answer": 2, "choice": [["vicious", "wrath"], ["bourgeois", "wealth"], ["haughty", "humility"], ["paraplegic", "legs"], ["misshapen", "deformity"]], "prefix": "grade11"}
|
172 |
+
{"stem": ["archaeologist", "hieroglyphics"], "answer": 4, "choice": [["theologian", "cancer"], ["sojourner", "destiny"], ["storyteller", "mysteries"], ["courier", "packages"], ["translator", "languages"]], "prefix": "grade11"}
|
173 |
+
{"stem": ["jury", "deliberate"], "answer": 3, "choice": [["candidate", "deprecate"], ["precedent", "preside"], ["ruse", "illuminate"], ["lobbyist", "persuade"], ["parachute", "open"]], "prefix": "grade11"}
|
174 |
+
{"stem": ["placid", "tumultuous"], "answer": 3, "choice": [["coveted", "desired"], ["reviled", "despised"], ["tangential", "irrelevant"], ["credible", "dubious"], ["unconventional", "irregular"]], "prefix": "grade11"}
|
175 |
+
{"stem": ["precept", "guidance"], "answer": 4, "choice": [["chord", "music"], ["footnote", "connotation"], ["mathematician", "numbers"], ["epilogue", "introduction"], ["alibi", "defense"]], "prefix": "grade11"}
|
176 |
+
{"stem": ["buttress", "wall"], "answer": 4, "choice": [["precinct", "city"], ["column", "pillar"], ["cream", "lotion"], ["document", "preamble"], ["philanthropist", "charity"]], "prefix": "grade11"}
|
177 |
+
{"stem": ["epistle", "letter"], "answer": 0, "choice": [["decathlon", "competition"], ["multitude", "feast"], ["lounge", "vacation"], ["credo", "church"], ["festival", "carnival"]], "prefix": "grade11"}
|
178 |
+
{"stem": ["poison", "noxious"], "answer": 2, "choice": [["performance", "stellar"], ["satellite", "worldly"], ["maze", "labyrinthine"], ["wavelength", "shallow"], ["leather", "worn"]], "prefix": "grade11"}
|
179 |
+
{"stem": ["blasphemy", "religion"], "answer": 1, "choice": [["fornication", "marriage"], ["treason", "state"], ["lethargy", "energy"], ["avarice", "currency"], ["apathy", "motivation"]], "prefix": "grade11"}
|
180 |
+
{"stem": ["grain", "silo"], "answer": 0, "choice": [["water", "reservoir"], ["fuel", "ration"], ["gasoline", "automobile"], ["snow", "igloo"], ["parchment", "library"]], "prefix": "grade10"}
|
181 |
+
{"stem": ["hidden", "covert"], "answer": 2, "choice": [["diverse", "ordinary"], ["angry", "judgmental"], ["feminine", "ladylike"], ["hardworking", "dull"], ["prohibited", "allowed"]], "prefix": "grade10"}
|
182 |
+
{"stem": ["game", "spectators"], "answer": 1, "choice": [["theater", "actors"], ["opera", "audience"], ["diner", "waitresses"], ["museum", "dinosaurs"], ["school", "pupils"]], "prefix": "grade10"}
|
183 |
+
{"stem": ["bohemian", "unconventional"], "answer": 0, "choice": [["pariah", "unpopular"], ["fairy", "ephemeral"], ["symphony", "cacophonous"], ["masterpiece", "novel"], ["libertine", "chaste"]], "prefix": "grade10"}
|
184 |
+
{"stem": ["listen", "eavesdrop"], "answer": 4, "choice": [["grin", "smile"], ["donate", "relinquish"], ["assume", "conclude"], ["prognosticate", "guess"], ["move", "sneak"]], "prefix": "grade10"}
|
185 |
+
{"stem": ["bluff", "intentions"], "answer": 1, "choice": [["cloak", "mask"], ["disguise", "appearance"], ["backpack", "computer"], ["envelope", "messenger"], ["prayer", "faith"]], "prefix": "grade10"}
|
186 |
+
{"stem": ["altercation", "discussion"], "answer": 3, "choice": [["sermon", "preacher"], ["judgment", "mercy"], ["insult", "critic"], ["diatribe", "speech"], ["requiem", "composer"]], "prefix": "grade10"}
|
187 |
+
{"stem": ["clemency", "forgiveness"], "answer": 0, "choice": [["ardor", "passion"], ["oblivion", "repair"], ["nirvana", "faith"], ["intoxication", "sobriety"], ["digestion", "cuisine"]], "prefix": "grade10"}
|
188 |
+
{"stem": ["pain", "sensation"], "answer": 4, "choice": [["knowledge", "mathematics"], ["resonance", "music"], ["pork", "meatloaf"], ["judgment", "court"], ["excitement", "emotion"]], "prefix": "grade10"}
|
189 |
+
{"stem": ["anguish", "pain"], "answer": 4, "choice": [["lust", "virtue"], ["bliss", "sadness"], ["emptiness", "vacancy"], ["similarity", "relationship"], ["longing", "desire"]], "prefix": "grade10"}
|
190 |
+
{"stem": ["winery", "merlot"], "answer": 3, "choice": [["supermarket", "espresso"], ["marathon", "water"], ["cafe", "whiskey"], ["brewery", "beer"], ["grove", "applesauce"]], "prefix": "grade10"}
|
191 |
+
{"stem": ["couch", "furniture"], "answer": 1, "choice": [["bookcase", "encyclopedia"], ["knife", "cutlery"], ["bed", "canopy"], ["cinema", "rental"], ["protestor", "villain"]], "prefix": "grade10"}
|
192 |
+
{"stem": ["predictable", "spontaneity"], "answer": 1, "choice": [["stormy", "reason"], ["unfeeling", "sympathy"], ["capricious", "will"], ["dreamy", "rest"], ["unafraid", "shame"]], "prefix": "grade10"}
|
193 |
+
{"stem": ["articulate", "mute"], "answer": 0, "choice": [["graceful", "klutzy"], ["spectacular", "showy"], ["ornate", "elegant"], ["embellished", "superficial"], ["excruciating", "painful"]], "prefix": "grade10"}
|
194 |
+
{"stem": ["finale", "musical"], "answer": 4, "choice": [["inning", "baseball"], ["stitch", "tapestry"], ["mystery", "novel"], ["barista", "coffee"], ["homestretch", "race"]], "prefix": "grade10"}
|
195 |
+
{"stem": ["sharp", "blunt"], "answer": 3, "choice": [["studious", "intelligent"], ["impermanent", "temporary"], ["philosophical", "religious"], ["forgiving", "harsh"], ["translated", "interpreted"]], "prefix": "grade10"}
|
196 |
+
{"stem": ["propaganda", "opinion"], "answer": 0, "choice": [["sermon", "morality"], ["commercial", "economy"], ["battle", "violence"], ["diatribe", "negativity"], ["eulogy", "death"]], "prefix": "grade10"}
|
197 |
+
{"stem": ["splinter", "wood"], "answer": 2, "choice": [["skin", "cell"], ["guitar", "orchestra"], ["shard", "glass"], ["seed", "bagel"], ["glaze", "pottery"]], "prefix": "grade10"}
|
198 |
+
{"stem": ["surreptitious", "obvious"], "answer": 2, "choice": [["scholarly", "professional"], ["harmonious", "musical"], ["pacifying", "enraging"], ["sponsored", "bribed"], ["artistic", "masterful"]], "prefix": "grade10"}
|
199 |
+
{"stem": ["arid", "moisture"], "answer": 2, "choice": [["vacant", "emptiness"], ["prophetic", "vision"], ["stoic", "emotion"], ["crystal", "clarity"], ["salty", "sodium"]], "prefix": "grade10"}
|
200 |
+
{"stem": ["anarchist", "government"], "answer": 3, "choice": [["activist", "diversity"], ["feminist", "men"], ["politician", "order"], ["abolitionist", "slavery"], ["teetotaler", "prohibition"]], "prefix": "grade10"}
|
201 |
+
{"stem": ["cat", "shed"], "answer": 0, "choice": [["bird", "molt"], ["elephant", "hunt"], ["dog", "fetch"], ["ferret", "burrow"], ["human", "tattoo"]], "prefix": "grade10"}
|
202 |
+
{"stem": ["clumsy", "grace"], "answer": 0, "choice": [["doubtful", "faith"], ["determined", "work"], ["rich", "charity"], ["beautiful", "love"]], "prefix": "grade7"}
|
203 |
+
{"stem": ["corrupt", "morals"], "answer": 3, "choice": [["talented", "skill"], ["rude", "intelligence"], ["fortunate", "money"], ["ruthless", "mercy"]], "prefix": "grade7"}
|
204 |
+
{"stem": ["attorney", "lawyer"], "answer": 2, "choice": [["worker", "secretary"], ["flower", "daffodil"], ["dog", "canine"], ["doctor", "dentist"]], "prefix": "grade7"}
|
205 |
+
{"stem": ["permanent", "temporary"], "answer": 3, "choice": [["ordinary", "plain"], ["imaginary", "fake"], ["astonishing", "surprising"], ["skeptical", "trusting"]], "prefix": "grade7"}
|
206 |
+
{"stem": ["dreamer", "idealistic"], "answer": 1, "choice": [["judge", "legal"], ["cynic", "critical"], ["parent", "feminine"], ["novice", "skilled"]], "prefix": "grade7"}
|
207 |
+
{"stem": ["knight", "chivalrous"], "answer": 0, "choice": [["flower", "fragrant"], ["daughter", "rebellious"], ["conversation", "short"], ["disease", "curable"]], "prefix": "grade7"}
|
208 |
+
{"stem": ["square", "quadrilateral"], "answer": 0, "choice": [["rifle", "weapon"], ["instrument", "violin"], ["pattern", "plaid"], ["airplane", "spacecraft"]], "prefix": "grade7"}
|
209 |
+
{"stem": ["verdict", "judgment"], "answer": 3, "choice": [["jet", "helicopter"], ["observation", "science"], ["principal", "school"], ["infant", "baby"]], "prefix": "grade7"}
|
210 |
+
{"stem": ["hobby", "pastime"], "answer": 0, "choice": [["emperor", "leader"], ["producer", "product"], ["skill", "sport"], ["player", "athlete"]], "prefix": "grade7"}
|
211 |
+
{"stem": ["blizzard", "storm"], "answer": 0, "choice": [["novelist", "writer"], ["boat", "submarine"], ["radio", "television"], ["organization", "party"]], "prefix": "grade7"}
|
212 |
+
{"stem": ["cat", "feline"], "answer": 1, "choice": [["book", "novel"], ["blunder", "mistake"], ["theatre", "play"], ["automobile", "tank"]], "prefix": "grade7"}
|
213 |
+
{"stem": ["academy", "educate"], "answer": 2, "choice": [["court", "blame"], ["trailer", "roam"], ["jail", "imprison"], ["cafe", "ingest"]], "prefix": "grade7"}
|
214 |
+
{"stem": ["honest", "sincere"], "answer": 0, "choice": [["solitary", "alone"], ["peaceful", "nervous"], ["vengeful", "forgiving"], ["religious", "doubtful"]], "prefix": "grade7"}
|
215 |
+
{"stem": ["glass", "delicate"], "answer": 2, "choice": [["air", "bearable"], ["stone", "gray"], ["cola", "bubbly"], ["peace", "eternal"]], "prefix": "grade7"}
|
216 |
+
{"stem": ["ambitious", "lazy"], "answer": 3, "choice": [["embarrassed", "timid"], ["talkative", "loud"], ["friendly", "gregarious"], ["insecure", "confident"]], "prefix": "grade7"}
|
217 |
+
{"stem": ["rain", "precipitation"], "answer": 0, "choice": [["salmon", "seafood"], ["snow", "tundra"], ["jungle", "desert"], ["pet", "hamster"]], "prefix": "grade7"}
|
218 |
+
{"stem": ["rectangle", "shape"], "answer": 3, "choice": [["dealer", "employer"], ["deer", "antelope"], ["telephone", "call"], ["assault", "crime"]], "prefix": "grade7"}
|
219 |
+
{"stem": ["senate", "congress"], "answer": 1, "choice": [["cinema", "theater"], ["lobby", "hotel"], ["judge", "chamber"], ["government", "democracy"]], "prefix": "grade7"}
|
220 |
+
{"stem": ["cowardly", "brave"], "answer": 1, "choice": [["numerous", "many"], ["foolish", "wise"], ["awful", "dreadful"], ["anxious", "nervous"]], "prefix": "grade7"}
|
221 |
+
{"stem": ["carefree", "worries"], "answer": 1, "choice": [["hesitant", "doubt"], ["ignorant", "knowledge"], ["pleasing", "happiness"], ["lovely", "affection"]], "prefix": "grade7"}
|
222 |
+
{"stem": ["scribe", "write"], "answer": 3, "choice": [["mother", "reign"], ["tribute", "offend"], ["translator", "read"], ["watchman", "guard"]], "prefix": "grade7"}
|
223 |
+
{"stem": ["cruel", "unkind"], "answer": 1, "choice": [["graceful", "flexible"], ["vicious", "aggressive"], ["frightening", "spooky"], ["evil", "insane"]], "prefix": "grade7"}
|
224 |
+
{"stem": ["pipe", "water"], "answer": 2, "choice": [["bottle", "wine"], ["artery", "paint"], ["vein", "blood"], ["nozzle", "hose"]], "prefix": "grade7"}
|
225 |
+
{"stem": ["slave", "submissive"], "answer": 0, "choice": [["murderer", "violent"], ["circus", "laughable"], ["professor", "ignorant"], ["professional", "bossy"]], "prefix": "grade7"}
|
226 |
+
{"stem": ["heinous", "evil"], "answer": 0, "choice": [["tremendous", "large"], ["old", "antique"], ["distressed", "flawed"], ["possible", "probable"]], "prefix": "grade7"}
|
227 |
+
{"stem": ["master", "dominant"], "answer": 3, "choice": [["nation", "powerful"], ["activist", "naive"], ["worker", "impoverished"], ["ghost", "ethereal"]], "prefix": "grade7"}
|
228 |
+
{"stem": ["carnivore", "meat"], "answer": 1, "choice": [["vegetarian", "wheat"], ["herbivore", "plants"], ["omnivore", "food"], ["vegan", "pastries"]], "prefix": "grade7"}
|
dataset/u2/valid.jsonl
ADDED
@@ -0,0 +1,24 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{"stem": ["peccadillo", "sin"], "answer": 0, "choice": [["masquerade", "party"], ["peasant", "serf"], ["sarcophagus", "funeral"], ["letdown", "devastation"], ["hex", "wizard"]], "prefix": "grade12"}
|
2 |
+
{"stem": ["concession", "placate"], "answer": 2, "choice": [["female", "engender"], ["artillery", "bolster"], ["catalyst", "precipitate"], ["exercise", "enervate"], ["adjudicator", "mitigate"]], "prefix": "grade12"}
|
3 |
+
{"stem": ["almond", "nut"], "answer": 1, "choice": [["hill", "mountain"], ["helicopter", "aircraft"], ["sport", "football"], ["lamp", "lightbulb"]], "prefix": "grade6"}
|
4 |
+
{"stem": ["newspaper", "inform"], "answer": 3, "choice": [["television", "watch"], ["book", "communicate"], ["movie", "persuade"], ["game", "entertain"]], "prefix": "grade6"}
|
5 |
+
{"stem": ["misfortune", "luck"], "answer": 0, "choice": [["victory", "defeat"], ["coffee", "tea"], ["life", "birth"], ["sugar", "salt"]], "prefix": "grade6"}
|
6 |
+
{"stem": ["safe", "dangerous"], "answer": 0, "choice": [["silent", "noisy"], ["upset", "late"], ["wise", "smart"], ["fast", "quick"]], "prefix": "grade4"}
|
7 |
+
{"stem": ["shoe", "foot"], "answer": 2, "choice": [["boot", "hand"], ["glove", "wrist"], ["hat", "head"], ["sock", "leg"]], "prefix": "grade4"}
|
8 |
+
{"stem": ["eyes", "see"], "answer": 1, "choice": [["hands", "cry"], ["ears", "hear"], ["feet", "talk"], ["teeth", "think"]], "prefix": "grade4"}
|
9 |
+
{"stem": ["offer", "request"], "answer": 0, "choice": [["damage", "repair"], ["enjoy", "entertain"], ["experience", "participate"], ["endure", "continue"]], "prefix": "grade8"}
|
10 |
+
{"stem": ["patience", "virtue"], "answer": 2, "choice": [["essay", "story"], ["currency", "credit"], ["denial", "reaction"], ["faith", "religion"]], "prefix": "grade8"}
|
11 |
+
{"stem": ["sunscreen", "sunburn"], "answer": 1, "choice": [["hope", "tornado"], ["vaccination", "disease"], ["carelessness", "accident"], ["dream", "sleep"]], "prefix": "grade8"}
|
12 |
+
{"stem": ["neutral", "indifferent"], "answer": 1, "choice": [["exotic", "commonplace"], ["lazy", "indolent"], ["finicky", "relaxed"], ["unsettling", "detached"]], "prefix": "grade9"}
|
13 |
+
{"stem": ["conundrum", "puzzle"], "answer": 0, "choice": [["palace", "estate"], ["phenomenon", "science"], ["dynamite", "destruction"], ["actor", "choreographer"]], "prefix": "grade9"}
|
14 |
+
{"stem": ["cathedral", "church"], "answer": 0, "choice": [["university", "school"], ["orchestra", "symphony"], ["preamble", "constitution"], ["prefix", "suffix"]], "prefix": "grade9"}
|
15 |
+
{"stem": ["boots", "feet"], "answer": 2, "choice": [["socks", "underwear"], ["shorts", "pants"], ["mittens", "hands"], ["braces", "glasses"]], "prefix": "grade5"}
|
16 |
+
{"stem": ["teacher", "educate"], "answer": 0, "choice": [["senator", "represent"], ["lawyer", "instruct"], ["coach", "condemn"], ["priest", "annoy"]], "prefix": "grade5"}
|
17 |
+
{"stem": ["angry", "mad"], "answer": 3, "choice": [["awake", "alone"], ["depressed", "confused"], ["polite", "rude"], ["nice", "kind"]], "prefix": "grade5"}
|
18 |
+
{"stem": ["veil", "enshroud"], "answer": 1, "choice": [["beautician", "paint"], ["lampoon", "mock"], ["laureate", "preside"], ["flare", "locate"], ["lantern", "identify"]], "prefix": "grade11"}
|
19 |
+
{"stem": ["heretic", "unorthodox"], "answer": 1, "choice": [["hero", "folksy"], ["braggart", "boastful"], ["javelin", "underhanded"], ["hiatus", "eternal"], ["jinx", "auspicious"]], "prefix": "grade11"}
|
20 |
+
{"stem": ["waterway", "navigable"], "answer": 1, "choice": [["farm", "famished"], ["mountain", "surmountable"], ["vault", "unimpressed"], ["fountain", "youthful"], ["judge", "ramshackle"]], "prefix": "grade10"}
|
21 |
+
{"stem": ["glutton", "moderation"], "answer": 0, "choice": [["braggart", "humility"], ["professor", "knowledge"], ["sage", "wisdom"], ["lawyer", "prudence"], ["caretaker", "affection"]], "prefix": "grade10"}
|
22 |
+
{"stem": ["democracy", "government"], "answer": 2, "choice": [["master", "slave"], ["storm", "blizzard"], ["sonnet", "poem"], ["tribe", "family"]], "prefix": "grade7"}
|
23 |
+
{"stem": ["success", "failure"], "answer": 2, "choice": [["grief", "sadness"], ["debt", "loss"], ["virtue", "evil"], ["life", "birth"]], "prefix": "grade7"}
|
24 |
+
{"stem": ["buckle", "belt"], "answer": 3, "choice": [["suit", "tie"], ["shovel", "pit"], ["summer", "season"], ["month", "year"]], "prefix": "grade7"}
|
dataset/u4/test.jsonl
ADDED
@@ -0,0 +1,432 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{"stem": ["classroom", "desk"], "answer": 1, "choice": [["bank", "dollar"], ["church", "pew"], ["studio", "paintbrush"], ["museum", "artifact"]], "prefix": "high-intermediate"}
|
2 |
+
{"stem": ["heirloom", "inherited"], "answer": 1, "choice": [["ship", "wooden"], ["sermon", "religious"], ["newspaper", "popular"], ["coupon", "valuable"]], "prefix": "high-intermediate"}
|
3 |
+
{"stem": ["veins", "circulate"], "answer": 3, "choice": [["calculators", "think"], ["boots", "sprint"], ["laws", "enforce"], ["ornaments", "decorate"]], "prefix": "high-intermediate"}
|
4 |
+
{"stem": ["devout", "religious"], "answer": 0, "choice": [["hyper", "energetic"], ["depressed", "angry"], ["fit", "strong"], ["cruel", "strange"]], "prefix": "high-intermediate"}
|
5 |
+
{"stem": ["superstition", "irrational"], "answer": 2, "choice": [["opinion", "factual"], ["purse", "expensive"], ["reward", "motivational"], ["invention", "successful"]], "prefix": "high-intermediate"}
|
6 |
+
{"stem": ["documentary", "film"], "answer": 1, "choice": [["parka", "sweater"], ["hut", "dwelling"], ["debt", "fee"], ["chair", "sofa"]], "prefix": "high-intermediate"}
|
7 |
+
{"stem": ["gasoline", "flammable"], "answer": 1, "choice": [["love", "wonderful"], ["radiation", "toxic"], ["justice", "arbitrary"], ["religion", "strict"]], "prefix": "high-intermediate"}
|
8 |
+
{"stem": ["nearby", "distant"], "answer": 0, "choice": [["timid", "bold"], ["classy", "mannered"], ["permanent", "eternal"], ["criminal", "illegal"]], "prefix": "high-intermediate"}
|
9 |
+
{"stem": ["bunch", "bananas"], "answer": 2, "choice": [["street", "neighborhoods"], ["vine", "oranges"], ["herd", "cows"], ["club", "wolves"]], "prefix": "high-intermediate"}
|
10 |
+
{"stem": ["insecure", "confidence"], "answer": 3, "choice": [["fluent", "language"], ["powerful", "ability"], ["modest", "grace"], ["indecisive", "resolution"]], "prefix": "high-intermediate"}
|
11 |
+
{"stem": ["ignite", "extinguish"], "answer": 0, "choice": [["harvest", "plant"], ["rest", "relax"], ["investigate", "trust"], ["remove", "confiscate"]], "prefix": "high-intermediate"}
|
12 |
+
{"stem": ["airplane", "hangar"], "answer": 0, "choice": [["car", "garage"], ["bus", "stop"], ["boat", "lake"], ["ship", "ocean"]], "prefix": "high-intermediate"}
|
13 |
+
{"stem": ["bun", "hamburger"], "answer": 1, "choice": [["ketchup", "hotdog"], ["windshield", "car"], ["theater", "script"], ["laugh", "joke"]], "prefix": "high-intermediate"}
|
14 |
+
{"stem": ["confirm", "deny"], "answer": 2, "choice": [["use", "employ"], ["define", "prove"], ["dispense", "collect"], ["entertain", "amuse"]], "prefix": "high-intermediate"}
|
15 |
+
{"stem": ["advocate", "criticize"], "answer": 1, "choice": [["excuse", "permit"], ["conquer", "liberate"], ["enjoy", "satisfy"], ["relinquish", "give"]], "prefix": "high-intermediate"}
|
16 |
+
{"stem": ["believable", "credible"], "answer": 3, "choice": [["chilly", "freezing"], ["horrible", "monstrous"], ["visible", "obvious"], ["eternal", "endless"]], "prefix": "high-intermediate"}
|
17 |
+
{"stem": ["ocean", "immense"], "answer": 2, "choice": [["surface", "flat"], ["career", "fulfilling"], ["enemy", "adversarial"], ["quilt", "detailed"]], "prefix": "high-intermediate"}
|
18 |
+
{"stem": ["patience", "virtue"], "answer": 2, "choice": [["essay", "story"], ["currency", "credit"], ["denial", "reaction"], ["faith", "religion"]], "prefix": "high-intermediate"}
|
19 |
+
{"stem": ["tidy", "unkempt"], "answer": 0, "choice": [["smooth", "jagged"], ["moral", "judgmental"], ["finite", "limited"], ["intended", "declared"]], "prefix": "high-intermediate"}
|
20 |
+
{"stem": ["christmas", "gifts"], "answer": 2, "choice": [["Thanksgiving", "turkey"], ["summer", "school"], ["Halloween", "candy"], ["May", "flowers"]], "prefix": "high-intermediate"}
|
21 |
+
{"stem": ["infantile", "immature"], "answer": 0, "choice": [["outstanding", "impressive"], ["plain", "ordinary"], ["absurd", "hilarious"], ["unwise", "clever"]], "prefix": "high-intermediate"}
|
22 |
+
{"stem": ["lifejacket", "boat"], "answer": 1, "choice": [["medicine", "disease"], ["seatbelt", "plane"], ["shield", "sword"], ["hat", "helmet"]], "prefix": "high-intermediate"}
|
23 |
+
{"stem": ["boastful", "proud"], "answer": 1, "choice": [["angry", "outraged"], ["impeccable", "clean"], ["ridiculous", "humorous"], ["skeptical", "doubtful"]], "prefix": "high-intermediate"}
|
24 |
+
{"stem": ["adolescent", "maturity"], "answer": 3, "choice": [["murder", "motive"], ["suitcase", "wheels"], ["idea", "clarity"], ["lunatic", "sanity"]], "prefix": "high-intermediate"}
|
25 |
+
{"stem": ["uninhibited", "restraint"], "answer": 3, "choice": [["overweight", "shape"], ["unhealthy", "control"], ["intelligent", "thought"], ["generous", "selfishness"]], "prefix": "high-intermediate"}
|
26 |
+
{"stem": ["lantern", "light"], "answer": 2, "choice": [["fan", "oxygen"], ["toilet", "waste"], ["curtain", "privacy"], ["television", "electricity"]], "prefix": "high-intermediate"}
|
27 |
+
{"stem": ["combatant", "fighter"], "answer": 0, "choice": [["queen", "monarch"], ["palace", "hut"], ["horse", "carriage"], ["knife", "sword"]], "prefix": "high-intermediate"}
|
28 |
+
{"stem": ["conclusion", "essay"], "answer": 3, "choice": [["theme", "song"], ["meal", "dessert"], ["parade", "party"], ["scene", "play"]], "prefix": "high-intermediate"}
|
29 |
+
{"stem": ["infection", "bacteria"], "answer": 0, "choice": [["intoxication", "alcohol"], ["glitter", "shine"], ["worth", "money"], ["rain", "fog"]], "prefix": "high-intermediate"}
|
30 |
+
{"stem": ["passport", "document"], "answer": 2, "choice": [["mineral", "geology"], ["clock", "watch"], ["fossil", "artifact"], ["notebook", "literature"]], "prefix": "high-intermediate"}
|
31 |
+
{"stem": ["fisherman", "net"], "answer": 1, "choice": [["teacher", "professor"], ["doctor", "stethoscope"], ["demon", "soul"], ["mother", "child"]], "prefix": "high-intermediate"}
|
32 |
+
{"stem": ["contract", "agreement"], "answer": 0, "choice": [["limerick", "poem"], ["human", "monster"], ["scarf", "jewelry"], ["dog", "feline"]], "prefix": "high-intermediate"}
|
33 |
+
{"stem": ["coal", "fuel"], "answer": 1, "choice": [["kidney", "body"], ["dictatorship", "government"], ["thought", "feeling"], ["partner", "accomplice"]], "prefix": "high-intermediate"}
|
34 |
+
{"stem": ["hasty", "patience"], "answer": 2, "choice": [["unskilled", "magic"], ["terrified", "logic"], ["unqualified", "credentials"], ["gullible", "belief"]], "prefix": "high-intermediate"}
|
35 |
+
{"stem": ["dwindle", "increase"], "answer": 1, "choice": [["ridicule", "mock"], ["denounce", "embrace"], ["celebrate", "congratulate"], ["sting", "stab"]], "prefix": "high-intermediate"}
|
36 |
+
{"stem": ["elderly", "youth"], "answer": 3, "choice": [["famous", "popularity"], ["rational", "proof"], ["smug", "satisfaction"], ["well", "illness"]], "prefix": "high-intermediate"}
|
37 |
+
{"stem": ["locker", "storage"], "answer": 0, "choice": [["telephone", "communication"], ["wallet", "cash"], ["pencil", "paper"], ["lake", "moisture"]], "prefix": "high-intermediate"}
|
38 |
+
{"stem": ["slob", "messy"], "answer": 1, "choice": [["benefactor", "poor"], ["miser", "stingy"], ["godmother", "magical"], ["researcher", "intuitive"]], "prefix": "high-intermediate"}
|
39 |
+
{"stem": ["active", "idle"], "answer": 2, "choice": [["challenging", "difficult"], ["dramatic", "tragic"], ["brief", "lengthy"], ["scholarly", "studious"]], "prefix": "high-intermediate"}
|
40 |
+
{"stem": ["taboo", "acceptance"], "answer": 2, "choice": [["factual", "opinion"], ["inspirational", "reality"], ["unpopular", "support"], ["independent", "structure"]], "prefix": "high-intermediate"}
|
41 |
+
{"stem": ["offer", "request"], "answer": 0, "choice": [["damage", "repair"], ["enjoy", "entertain"], ["experience", "participate"], ["endure", "continue"]], "prefix": "high-intermediate"}
|
42 |
+
{"stem": ["network", "connect"], "answer": 0, "choice": [["statue", "memorialize"], ["funeral", "eliminate"], ["telephone", "hear"], ["device", "create"]], "prefix": "high-intermediate"}
|
43 |
+
{"stem": ["illiterate", "read"], "answer": 0, "choice": [["immobile", "move"], ["excited", "cheer"], ["bored", "concentrate"], ["correct", "falsify"]], "prefix": "high-intermediate"}
|
44 |
+
{"stem": ["lizard", "reptile"], "answer": 3, "choice": [["ambulance", "hospital"], ["fight", "argument"], ["painting", "sketch"], ["crystal", "mineral"]], "prefix": "high-intermediate"}
|
45 |
+
{"stem": ["lenient", "strict"], "answer": 1, "choice": [["hopeful", "optimistic"], ["punctual", "late"], ["sentimental", "emotional"], ["irrational", "inexplicable"]], "prefix": "high-intermediate"}
|
46 |
+
{"stem": ["algebra", "mathematics"], "answer": 0, "choice": [["rain", "precipitation"], ["bronze", "metal"], ["tradition", "culture"], ["trade", "economy"]], "prefix": "high-intermediate"}
|
47 |
+
{"stem": ["fever", "symptom"], "answer": 2, "choice": [["debate", "argument"], ["newspaper", "magazine"], ["fable", "story"], ["device", "strategy"]], "prefix": "high-intermediate"}
|
48 |
+
{"stem": ["examination", "diagnosis"], "answer": 2, "choice": [["evaluation", "title"], ["inference", "consequences"], ["search", "rescue"], ["minute", "hour"]], "prefix": "high-intermediate"}
|
49 |
+
{"stem": ["charity", "aid"], "answer": 2, "choice": [["dictionary", "words"], ["fortune", "money"], ["counselor", "advice"], ["translator", "language"]], "prefix": "high-intermediate"}
|
50 |
+
{"stem": ["article", "magazine"], "answer": 3, "choice": [["revolution", "war"], ["hood", "jacket"], ["speech", "meeting"], ["trigger", "gun"]], "prefix": "high-intermediate"}
|
51 |
+
{"stem": ["lens", "camera"], "answer": 3, "choice": [["amplifier", "violin"], ["keyboard", "television"], ["bank", "vault"], ["lobby", "hotel"]], "prefix": "high-intermediate"}
|
52 |
+
{"stem": ["referee", "officiate"], "answer": 0, "choice": [["sentry", "guard"], ["grandmother", "age"], ["detective", "accuse"], ["wizard", "curse"]], "prefix": "high-intermediate"}
|
53 |
+
{"stem": ["hyperactive", "energetic"], "answer": 3, "choice": [["fabulous", "drab"], ["superficial", "genuine"], ["wealthy", "greedy"], ["gullible", "trusting"]], "prefix": "high-intermediate"}
|
54 |
+
{"stem": ["whimper", "fear"], "answer": 1, "choice": [["grimace", "comfort"], ["shrug", "uncertainty"], ["speech", "language"], ["receipt", "price"]], "prefix": "high-intermediate"}
|
55 |
+
{"stem": ["treaty", "peace"], "answer": 0, "choice": [["title", "ownership"], ["license", "traffic"], ["declaration", "independence"], ["dictionary", "language"]], "prefix": "high-intermediate"}
|
56 |
+
{"stem": ["battle", "war"], "answer": 2, "choice": [["button", "hole"], ["friend", "companion"], ["handle", "shovel"], ["lighthouse", "coast"]], "prefix": "high-intermediate"}
|
57 |
+
{"stem": ["faded", "brilliance"], "answer": 0, "choice": [["decrepit", "strength"], ["contemporary", "modernity"], ["downtrodden", "sadness"], ["troubled", "danger"]], "prefix": "high-intermediate"}
|
58 |
+
{"stem": ["fame", "obscurity"], "answer": 3, "choice": [["peace", "harmony"], ["music", "art"], ["knowledge", "wisdom"], ["sorrow", "joy"]], "prefix": "high-intermediate"}
|
59 |
+
{"stem": ["witness", "testimony"], "answer": 3, "choice": [["spouse", "marriage"], ["judge", "laws"], ["waterfall", "rivers"], ["generator", "electricity"]], "prefix": "high-intermediate"}
|
60 |
+
{"stem": ["klutz", "clumsy"], "answer": 1, "choice": [["priest", "evil"], ["cold", "contagious"], ["car", "broken"], ["vegetable", "green"]], "prefix": "high-intermediate"}
|
61 |
+
{"stem": ["clarify", "obscure"], "answer": 2, "choice": [["guard", "protect"], ["instruct", "educate"], ["acquire", "dispose"], ["hike", "climb"]], "prefix": "high-intermediate"}
|
62 |
+
{"stem": ["heart", "organ"], "answer": 2, "choice": [["glaze", "sauce"], ["spacecraft", "rocket"], ["octagon", "shape"], ["hero", "doctor"]], "prefix": "high-intermediate"}
|
63 |
+
{"stem": ["whisper", "quiet"], "answer": 0, "choice": [["folktale", "traditional"], ["whip", "evil"], ["disease", "curable"], ["meal", "satisfying"]], "prefix": "high-intermediate"}
|
64 |
+
{"stem": ["flamboyant", "elaborate"], "answer": 2, "choice": [["kind", "benevolent"], ["autocratic", "democratic"], ["ludicrous", "absurd"], ["desirable", "necessary"]], "prefix": "high-intermediate"}
|
65 |
+
{"stem": ["brake", "decelerate"], "answer": 1, "choice": [["nurse", "operate"], ["veil", "conceal"], ["commercial", "purchase"], ["gift", "receive"]], "prefix": "high-intermediate"}
|
66 |
+
{"stem": ["salutation", "letter"], "answer": 1, "choice": [["courtship", "marriage"], ["summit", "mountain"], ["book", "character"], ["composition", "notebook"]], "prefix": "high-intermediate"}
|
67 |
+
{"stem": ["blender", "appliance"], "answer": 1, "choice": [["tent", "cabin"], ["letter", "symbol"], ["chemical", "biology"], ["fungus", "mushroom"]], "prefix": "high-intermediate"}
|
68 |
+
{"stem": ["honor", "disgrace"], "answer": 1, "choice": [["comfort", "pleasure"], ["safety", "peril"], ["sanity", "sense"], ["anger", "rage"]], "prefix": "high-intermediate"}
|
69 |
+
{"stem": ["hidden", "visible"], "answer": 1, "choice": [["spicy", "delicious"], ["flimsy", "sturdy"], ["tasteful", "classy"], ["elevated", "escalated"]], "prefix": "high-intermediate"}
|
70 |
+
{"stem": ["appalled", "dismayed"], "answer": 2, "choice": [["interested", "apathetic"], ["incomprehensible", "illegible"], ["overjoyed", "happy"], ["aloof", "untouchable"]], "prefix": "high-intermediate"}
|
71 |
+
{"stem": ["rifle", "gun"], "answer": 0, "choice": [["van", "automobile"], ["sin", "blessing"], ["memory", "prediction"], ["trombone", "orchestra"]], "prefix": "high-intermediate"}
|
72 |
+
{"stem": ["assassination", "murder"], "answer": 2, "choice": [["document", "certificate"], ["beverage", "drink"], ["relay", "race"], ["technology", "robot"]], "prefix": "high-intermediate"}
|
73 |
+
{"stem": ["perish", "die"], "answer": 1, "choice": [["ignore", "oversee"], ["fabricate", "lie"], ["inspire", "insult"], ["clarify", "muddle"]], "prefix": "high-intermediate"}
|
74 |
+
{"stem": ["doughnut", "pastry"], "answer": 0, "choice": [["passport", "document"], ["stamp", "currency"], ["symphony", "opera"], ["volcano", "lava"]], "prefix": "high-intermediate"}
|
75 |
+
{"stem": ["devastated", "damaged"], "answer": 3, "choice": [["unusual", "weird"], ["unkind", "hurtful"], ["incredible", "mundane"], ["prevalent", "common"]], "prefix": "high-intermediate"}
|
76 |
+
{"stem": ["cough", "cold"], "answer": 2, "choice": [["fever", "issue"], ["problem", "solution"], ["disagreement", "dispute"], ["room", "hotel"]], "prefix": "high-intermediate"}
|
77 |
+
{"stem": ["ballad", "song"], "answer": 3, "choice": [["burial", "death"], ["party", "politician"], ["meal", "restaurant"], ["mammal", "animal"]], "prefix": "high-intermediate"}
|
78 |
+
{"stem": ["island", "archipelago"], "answer": 3, "choice": [["anchor", "aircraft"], ["archive", "album"], ["ocean", "iceberg"], ["article", "newspaper"]], "prefix": "high-intermediate"}
|
79 |
+
{"stem": ["star", "constellation"], "answer": 3, "choice": [["crystal", "jewel"], ["reservation", "table"], ["bank", "fortune"], ["wick", "candle"]], "prefix": "high-intermediate"}
|
80 |
+
{"stem": ["professor", "scholarly"], "answer": 2, "choice": [["friend", "imaginary"], ["mystery", "obvious"], ["sorcerer", "magical"], ["father", "maternal"]], "prefix": "high-intermediate"}
|
81 |
+
{"stem": ["note", "melody"], "answer": 0, "choice": [["bone", "skeleton"], ["movie", "film"], ["meal", "restaurant"], ["career", "job"]], "prefix": "high-intermediate"}
|
82 |
+
{"stem": ["antique", "aged"], "answer": 3, "choice": [["technique", "effective"], ["microphone", "loud"], ["grandfather", "deceased"], ["sphere", "round"]], "prefix": "high-intermediate"}
|
83 |
+
{"stem": ["infinite", "limited"], "answer": 0, "choice": [["valid", "illegitimate"], ["restored", "renewed"], ["destroyed", "ruined"], ["beloved", "admired"]], "prefix": "high-intermediate"}
|
84 |
+
{"stem": ["kiss", "affection"], "answer": 2, "choice": [["smile", "fear"], ["joke", "importance"], ["message", "information"], ["television", "actors"]], "prefix": "high-intermediate"}
|
85 |
+
{"stem": ["traitor", "treasonous"], "answer": 3, "choice": [["reporter", "biased"], ["hero", "fictional"], ["alligator", "angry"], ["crime", "illegal"]], "prefix": "high-intermediate"}
|
86 |
+
{"stem": ["granite", "stone"], "answer": 3, "choice": [["action", "event"], ["opera", "song"], ["culture", "history"], ["bleach", "chemical"]], "prefix": "high-intermediate"}
|
87 |
+
{"stem": ["remember", "predict"], "answer": 1, "choice": [["hear", "listen"], ["scrutinize", "ignore"], ["repeat", "copy"], ["interrogate", "question"]], "prefix": "high-intermediate"}
|
88 |
+
{"stem": ["fish", "gills"], "answer": 1, "choice": [["pig", "hooves"], ["human", "lungs"], ["whale", "tails"], ["eagle", "talons"]], "prefix": "high-intermediate"}
|
89 |
+
{"stem": ["helium", "gas"], "answer": 0, "choice": [["Christianity", "religion"], ["truth", "knowledge"], ["courage", "bravery"], ["polarity", "magnet"]], "prefix": "high-intermediate"}
|
90 |
+
{"stem": ["mask", "disguise"], "answer": 1, "choice": [["powder", "moisten"], ["perfume", "scent"], ["shield", "attack"], ["daughter", "marry"]], "prefix": "high-intermediate"}
|
91 |
+
{"stem": ["galleon", "sail"], "answer": 1, "choice": [["masterpiece", "create"], ["quarantine", "isolate"], ["neurologist", "think"], ["nominee", "vote"]], "prefix": "low-advanced"}
|
92 |
+
{"stem": ["caucus", "meeting"], "answer": 2, "choice": [["chef", "entree"], ["dissertation", "degree"], ["paleontologist", "scientist"], ["salute", "capitulation"]], "prefix": "low-advanced"}
|
93 |
+
{"stem": ["smorgasbord", "foods"], "answer": 0, "choice": [["anthology", "passages"], ["almanac", "books"], ["disparity", "crimes"], ["massacre", "soldiers"]], "prefix": "low-advanced"}
|
94 |
+
{"stem": ["mutinous", "compliant"], "answer": 0, "choice": [["nebulous", "distinct"], ["heinous", "awful"], ["laborious", "toilsome"], ["nominal", "trivial"]], "prefix": "low-advanced"}
|
95 |
+
{"stem": ["marathon", "endurance"], "answer": 1, "choice": [["tournament", "judges"], ["examination", "knowledge"], ["revolution", "ideology"], ["disaster", "piety"]], "prefix": "low-advanced"}
|
96 |
+
{"stem": ["suspect", "credibility"], "answer": 1, "choice": [["dubious", "discussion"], ["conventional", "novelty"], ["controversial", "evidence"], ["mountainous", "elevation"]], "prefix": "low-advanced"}
|
97 |
+
{"stem": ["ingenue", "naive"], "answer": 1, "choice": [["witness", "judgmental"], ["slur", "pejorative"], ["epitaph", "deceased"], ["feline", "feminine"]], "prefix": "low-advanced"}
|
98 |
+
{"stem": ["indigent", "poor"], "answer": 3, "choice": [["ethereal", "concrete"], ["apathetic", "depressed"], ["inadvertent", "presaged"], ["sanctimonious", "hypocritical"]], "prefix": "low-advanced"}
|
99 |
+
{"stem": ["euphemism", "polite"], "answer": 2, "choice": [["prophet", "rogue"], ["metaphor", "literal"], ["expletive", "vulgar"], ["sonnet", "renegade"]], "prefix": "low-advanced"}
|
100 |
+
{"stem": ["infallible", "error"], "answer": 0, "choice": [["inebriated", "sobriety"], ["obstinate", "acceptance"], ["polytheistic", "salvation"], ["pusillanimous", "fear"]], "prefix": "low-advanced"}
|
101 |
+
{"stem": ["disparage", "encourage"], "answer": 0, "choice": [["venerate", "desecrate"], ["diverge", "distract"], ["purloin", "steal"], ["defy", "reject"]], "prefix": "low-advanced"}
|
102 |
+
{"stem": ["debunk", "verify"], "answer": 0, "choice": [["revere", "denigrate"], ["besmirch", "slander"], ["cower", "submit"], ["pontificate", "pronounce"]], "prefix": "low-advanced"}
|
103 |
+
{"stem": ["senator", "legislature"], "answer": 1, "choice": [["palisade", "resort"], ["battleship", "armada"], ["predator", "wolf"], ["introvert", "personality"]], "prefix": "low-advanced"}
|
104 |
+
{"stem": ["meticulous", "careful"], "answer": 0, "choice": [["ascetic", "frugal"], ["knowledgeable", "informative"], ["malignant", "cancerous"], ["artificial", "genuine"]], "prefix": "low-advanced"}
|
105 |
+
{"stem": ["placid", "tumultuous"], "answer": 3, "choice": [["coveted", "desired"], ["reviled", "despised"], ["tangential", "irrelevant"], ["credible", "dubious"]], "prefix": "low-advanced"}
|
106 |
+
{"stem": ["extrovert", "gregarious"], "answer": 0, "choice": [["jingoist", "nationalistic"], ["judge", "deciduous"], ["philanthropist", "amorous"], ["businessman", "shrewd"]], "prefix": "low-advanced"}
|
107 |
+
{"stem": ["capillary", "vessel"], "answer": 1, "choice": [["concubine", "spouse"], ["tabernacle", "sanctuary"], ["pedestrian", "sidewalk"], ["vignette", "theater"]], "prefix": "low-advanced"}
|
108 |
+
{"stem": ["diffident", "confidence"], "answer": 3, "choice": [["infertile", "family"], ["incorrigible", "punishment"], ["rash", "audacity"], ["deceitful", "honesty"]], "prefix": "low-advanced"}
|
109 |
+
{"stem": ["poison", "noxious"], "answer": 2, "choice": [["performance", "stellar"], ["satellite", "worldly"], ["maze", "labyrinthine"], ["wavelength", "shallow"]], "prefix": "low-advanced"}
|
110 |
+
{"stem": ["bourgeoisie", "class"], "answer": 3, "choice": [["commission", "wage"], ["mortgage", "insurance"], ["disciple", "leader"], ["smorgasbord", "buffet"]], "prefix": "low-advanced"}
|
111 |
+
{"stem": ["cauldron", "pot"], "answer": 1, "choice": [["vibration", "perception"], ["pictograph", "symbol"], ["favor", "currency"], ["luminary", "phantasm"]], "prefix": "low-advanced"}
|
112 |
+
{"stem": ["pragmatic", "practical"], "answer": 3, "choice": [["irritating", "pleasing"], ["tenacious", "faltering"], ["opaque", "translucent"], ["trivial", "negligible"]], "prefix": "low-advanced"}
|
113 |
+
{"stem": ["frail", "brawn"], "answer": 3, "choice": [["humorous", "wit"], ["obtuse", "intensity"], ["disinterested", "ennui"], ["longwinded", "brevity"]], "prefix": "low-advanced"}
|
114 |
+
{"stem": ["ignoramus", "unintelligent"], "answer": 1, "choice": [["teacher", "tenured"], ["virtuoso", "skilled"], ["illness", "terminal"], ["hooligan", "popular"]], "prefix": "low-advanced"}
|
115 |
+
{"stem": ["voluminous", "large"], "answer": 0, "choice": [["ravenous", "hungry"], ["separable", "divisible"], ["sinuous", "straight"], ["lustrous", "golden"]], "prefix": "low-advanced"}
|
116 |
+
{"stem": ["tedium", "excitement"], "answer": 3, "choice": [["revision", "edition"], ["honor", "prestige"], ["mortgage", "debt"], ["resignation", "denial"]], "prefix": "low-advanced"}
|
117 |
+
{"stem": ["impromptu", "rehearsal"], "answer": 1, "choice": [["precocious", "direction"], ["perpetual", "cessation"], ["impious", "dedication"], ["truant", "membership"]], "prefix": "low-advanced"}
|
118 |
+
{"stem": ["blasphemy", "religion"], "answer": 1, "choice": [["fornication", "marriage"], ["treason", "state"], ["lethargy", "energy"], ["avarice", "currency"]], "prefix": "low-advanced"}
|
119 |
+
{"stem": ["acrophobia", "heights"], "answer": 2, "choice": [["claustrophobia", "closets"], ["homophobia", "discrimination"], ["agoraphobia", "crowds"], ["vertigo", "balance"]], "prefix": "low-advanced"}
|
120 |
+
{"stem": ["castle", "edifice"], "answer": 2, "choice": [["objective", "task"], ["profiteer", "mercenary"], ["subpoena", "summons"], ["trilogy", "sequel"]], "prefix": "low-advanced"}
|
121 |
+
{"stem": ["irrational", "reason"], "answer": 1, "choice": [["voluble", "fluency"], ["irreproachable", "flaws"], ["eclectic", "versatility"], ["nefarious", "sin"]], "prefix": "low-advanced"}
|
122 |
+
{"stem": ["insomniac", "sleep"], "answer": 2, "choice": [["punishment", "penance"], ["innuendo", "interpretation"], ["stoic", "emotion"], ["counterfeit", "falsity"]], "prefix": "low-advanced"}
|
123 |
+
{"stem": ["enigma", "mysterious"], "answer": 0, "choice": [["bigot", "prejudiced"], ["beetle", "venomous"], ["politician", "obtuse"], ["professor", "glib"]], "prefix": "low-advanced"}
|
124 |
+
{"stem": ["negligence", "carelessness"], "answer": 3, "choice": [["stone", "lithograph"], ["jubilation", "anniversary"], ["bigotry", "friendship"], ["admiration", "reverence"]], "prefix": "low-advanced"}
|
125 |
+
{"stem": ["detective", "mysteries"], "answer": 2, "choice": [["theologian", "cancer"], ["sojourner", "destiny"], ["archaeologist", "hieroglyphics"], ["courier", "packages"]], "prefix": "low-advanced"}
|
126 |
+
{"stem": ["aimless", "direction"], "answer": 0, "choice": [["wary", "trust"], ["pathetic", "dignity"], ["lazy", "health"], ["silly", "comedy"]], "prefix": "low-advanced"}
|
127 |
+
{"stem": ["pristine", "damaged"], "answer": 3, "choice": [["ruined", "annihilated"], ["didactic", "instructive"], ["inconspicuous", "stealthy"], ["paramount", "unimportant"]], "prefix": "low-advanced"}
|
128 |
+
{"stem": ["trinket", "value"], "answer": 2, "choice": [["sequoia", "longevity"], ["physician", "medicine"], ["fool", "sagacity"], ["grandmother", "idiosyncrasy"]], "prefix": "low-advanced"}
|
129 |
+
{"stem": ["epistle", "letter"], "answer": 0, "choice": [["decathlon", "competition"], ["multitude", "feast"], ["lounge", "vacation"], ["credo", "church"]], "prefix": "low-advanced"}
|
130 |
+
{"stem": ["bishop", "ordained"], "answer": 0, "choice": [["prince", "opulent"], ["transgression", "acceptable"], ["cliche", "intrepid"], ["loft", "unattainable"]], "prefix": "low-advanced"}
|
131 |
+
{"stem": ["vacuous", "intelligence"], "answer": 0, "choice": [["vapid", "liveliness"], ["quixotic", "chivalry"], ["requisite", "necessity"], ["entertaining", "excitement"]], "prefix": "low-advanced"}
|
132 |
+
{"stem": ["tawdry", "taste"], "answer": 2, "choice": [["vicious", "wrath"], ["bourgeois", "wealth"], ["haughty", "humility"], ["paraplegic", "legs"]], "prefix": "low-advanced"}
|
133 |
+
{"stem": ["perceptive", "notice"], "answer": 2, "choice": [["apprehensive", "doubt"], ["maternal", "coddle"], ["versatile", "adapt"], ["guilty", "resent"]], "prefix": "low-advanced"}
|
134 |
+
{"stem": ["maladroit", "skill"], "answer": 2, "choice": [["domineering", "power"], ["abject", "poverty"], ["pretentious", "modesty"], ["faithful", "commitment"]], "prefix": "low-advanced"}
|
135 |
+
{"stem": ["insurgent", "rebellious"], "answer": 2, "choice": [["garrison", "garrulous"], ["rivalry", "amicable"], ["stereotype", "oversimplified"], ["voice", "monotonous"]], "prefix": "low-advanced"}
|
136 |
+
{"stem": ["panacea", "cure"], "answer": 1, "choice": [["condiment", "eat"], ["mallet", "strike"], ["paradox", "contradict"], ["charlatan", "deceive"]], "prefix": "low-advanced"}
|
137 |
+
{"stem": ["saccharine", "sweet"], "answer": 2, "choice": [["omniscient", "omnipotent"], ["lethargic", "slovenly"], ["sacrosanct", "sacred"], ["hypocritical", "dissonant"]], "prefix": "low-advanced"}
|
138 |
+
{"stem": ["succulent", "rich"], "answer": 2, "choice": [["caustic", "relaxing"], ["amiable", "indifferent"], ["bloodthirsty", "violent"], ["farcical", "funny"]], "prefix": "low-advanced"}
|
139 |
+
{"stem": ["spy", "espionage"], "answer": 0, "choice": [["manufacturer", "production"], ["principal", "tutelage"], ["clergyman", "divinity"], ["warden", "prisoners"]], "prefix": "low-advanced"}
|
140 |
+
{"stem": ["jury", "deliberate"], "answer": 3, "choice": [["candidate", "deprecate"], ["precedent", "preside"], ["ruse", "illuminate"], ["lobbyist", "persuade"]], "prefix": "low-advanced"}
|
141 |
+
{"stem": ["exoneration", "release"], "answer": 3, "choice": [["examination", "accusation"], ["death", "execution"], ["governor", "pardon"], ["conviction", "sentencing"]], "prefix": "low-advanced"}
|
142 |
+
{"stem": ["epidermis", "skin"], "answer": 0, "choice": [["hypotenuse", "triangle"], ["procedure", "method"], ["supplicant", "lender"], ["transmission", "radio"]], "prefix": "low-advanced"}
|
143 |
+
{"stem": ["altruism", "selfishness"], "answer": 1, "choice": [["alacrity", "clarity"], ["impartiality", "bias"], ["levity", "flippancy"], ["gravity", "momentum"]], "prefix": "low-advanced"}
|
144 |
+
{"stem": ["legend", "map"], "answer": 1, "choice": [["continent", "nation"], ["page", "tome"], ["tirade", "government"], ["legion", "family"]], "prefix": "low-advanced"}
|
145 |
+
{"stem": ["sophomoric", "maturity"], "answer": 3, "choice": [["circumspect", "attention"], ["capricious", "impulse"], ["prudent", "wisdom"], ["venal", "integrity"]], "prefix": "low-advanced"}
|
146 |
+
{"stem": ["bow", "boat"], "answer": 0, "choice": [["word", "lexicon"], ["compliment", "friendship"], ["seaman", "battleship"], ["henchman", "villain"]], "prefix": "low-advanced"}
|
147 |
+
{"stem": ["agnostic", "belief"], "answer": 0, "choice": [["lummox", "grace"], ["reputation", "notoriety"], ["predecessor", "origin"], ["tyrant", "prerogative"]], "prefix": "low-advanced"}
|
148 |
+
{"stem": ["incipient", "mature"], "answer": 2, "choice": [["prescient", "correct"], ["analogous", "comparable"], ["destitute", "affluent"], ["unctuous", "oily"]], "prefix": "low-advanced"}
|
149 |
+
{"stem": ["veil", "enshroud"], "answer": 1, "choice": [["beautician", "paint"], ["lampoon", "mock"], ["laureate", "preside"], ["flare", "locate"]], "prefix": "low-advanced"}
|
150 |
+
{"stem": ["maelstrom", "storm"], "answer": 1, "choice": [["feline", "cat"], ["analgesic", "painkiller"], ["omen", "destiny"], ["savant", "disability"]], "prefix": "low-advanced"}
|
151 |
+
{"stem": ["apathetic", "zeal"], "answer": 2, "choice": [["righteous", "judgment"], ["secular", "belief"], ["unapologetic", "remorse"], ["impressionable", "youth"]], "prefix": "low-advanced"}
|
152 |
+
{"stem": ["thwart", "frustrate"], "answer": 2, "choice": [["retain", "burst"], ["meditate", "snooze"], ["laud", "praise"], ["bristle", "brush"]], "prefix": "low-advanced"}
|
153 |
+
{"stem": ["grouch", "cantakerous"], "answer": 3, "choice": [["conspiracy", "successful"], ["magnate", "magnanimous"], ["building", "ramshackle"], ["palace", "ornate"]], "prefix": "low-advanced"}
|
154 |
+
{"stem": ["infamy", "reputation"], "answer": 0, "choice": [["compassion", "virtue"], ["pain", "agony"], ["emancipation", "proclamation"], ["sediment", "dirt"]], "prefix": "low-advanced"}
|
155 |
+
{"stem": ["hamlet", "village"], "answer": 2, "choice": [["fallacy", "lie"], ["formula", "milk"], ["simile", "comparison"], ["pesticide", "crop"]], "prefix": "low-advanced"}
|
156 |
+
{"stem": ["bellicose", "aggressive"], "answer": 3, "choice": [["reputable", "shady"], ["aromatic", "unscented"], ["corporeal", "imagined"], ["irksome", "annoying"]], "prefix": "low-advanced"}
|
157 |
+
{"stem": ["diatribe", "speech"], "answer": 2, "choice": [["deal", "hustle"], ["nuance", "pattern"], ["laceration", "injury"], ["plaintiff", "defendant"]], "prefix": "low-advanced"}
|
158 |
+
{"stem": ["larceny", "crime"], "answer": 0, "choice": [["bureaucracy", "administration"], ["astrology", "religion"], ["venom", "flavoring"], ["mythology", "deity"]], "prefix": "low-advanced"}
|
159 |
+
{"stem": ["partisan", "biased"], "answer": 1, "choice": [["rivulet", "powerful"], ["spinster", "unmarried"], ["savage", "classy"], ["proletarian", "socialist"]], "prefix": "low-advanced"}
|
160 |
+
{"stem": ["palliative", "relieve"], "answer": 2, "choice": [["predicament", "solve"], ["tonic", "dissolve"], ["deterrent", "dissuade"], ["correspondent", "sanction"]], "prefix": "low-advanced"}
|
161 |
+
{"stem": ["cringe", "discomfort"], "answer": 0, "choice": [["nod", "acquiescence"], ["handshake", "discrimination"], ["haiku", "poetry"], ["hyperbole", "literature"]], "prefix": "low-advanced"}
|
162 |
+
{"stem": ["initial", "acronym"], "answer": 2, "choice": [["homophone", "definition"], ["newspaper", "perspective"], ["stanza", "poem"], ["cornucopia", "harvest"]], "prefix": "low-advanced"}
|
163 |
+
{"stem": ["quandary", "uncertainty"], "answer": 1, "choice": [["treachery", "forgiveness"], ["crime", "wrongdoing"], ["coupon", "redemption"], ["government", "triumvirate"]], "prefix": "low-advanced"}
|
164 |
+
{"stem": ["menagerie", "animals"], "answer": 1, "choice": [["troupe", "theaters"], ["harem", "concubines"], ["vernacular", "dictionaries"], ["wardrobe", "furniture"]], "prefix": "low-advanced"}
|
165 |
+
{"stem": ["fastidious", "particular"], "answer": 0, "choice": [["fanatical", "enthusiastic"], ["edible", "delicious"], ["adamant", "opposed"], ["manipulative", "masterful"]], "prefix": "low-advanced"}
|
166 |
+
{"stem": ["exorcism", "demons"], "answer": 0, "choice": [["putsch", "government"], ["sin", "evil"], ["nation", "expatriates"], ["cave", "stalagmites"]], "prefix": "low-advanced"}
|
167 |
+
{"stem": ["precept", "guidance"], "answer": 2, "choice": [["chord", "music"], ["footnote", "connotation"], ["alibi", "defense"], ["epilogue", "introduction"]], "prefix": "low-advanced"}
|
168 |
+
{"stem": ["blatant", "obvious"], "answer": 0, "choice": [["preeminent", "important"], ["legendary", "unbelievable"], ["novel", "obsolete"], ["powerful", "dominant"]], "prefix": "low-advanced"}
|
169 |
+
{"stem": ["parishioner", "church"], "answer": 3, "choice": [["rant", "soliloquy"], ["lament", "testimony"], ["opera", "aria"], ["constituent", "district"]], "prefix": "low-advanced"}
|
170 |
+
{"stem": ["prosaic", "exciting"], "answer": 0, "choice": [["clandestine", "overt"], ["mendacious", "untrue"], ["militaristic", "aggressive"], ["nuanced", "detailed"]], "prefix": "low-advanced"}
|
171 |
+
{"stem": ["fetter", "restraint"], "answer": 0, "choice": [["dichotomy", "division"], ["school", "seminary"], ["parasite", "assistant"], ["follicle", "hair"]], "prefix": "low-advanced"}
|
172 |
+
{"stem": ["shepherd", "dog"], "answer": 2, "choice": [["marsupial", "kangaroo"], ["whelp", "dragon"], ["albatross", "bird"], ["hornet", "bee"]], "prefix": "low-advanced"}
|
173 |
+
{"stem": ["frivolous", "grave"], "answer": 3, "choice": [["astute", "clever"], ["pitiless", "callous"], ["sensitive", "tactful"], ["frugal", "extravagant"]], "prefix": "low-advanced"}
|
174 |
+
{"stem": ["decoy", "deceive"], "answer": 3, "choice": [["landscape", "surround"], ["eulogy", "kill"], ["quartet", "compose"], ["bulwark", "protect"]], "prefix": "low-advanced"}
|
175 |
+
{"stem": ["emaciated", "thin"], "answer": 2, "choice": [["peripatetic", "mobile"], ["quarrelsome", "agreeable"], ["meticulous", "careful"], ["insubordinate", "obedient"]], "prefix": "low-advanced"}
|
176 |
+
{"stem": ["avarice", "generosity"], "answer": 1, "choice": [["tenacity", "determination"], ["jeopardy", "security"], ["territorialism", "land"], ["retaliation", "revenge"]], "prefix": "low-advanced"}
|
177 |
+
{"stem": ["clay", "malleable"], "answer": 3, "choice": [["profanity", "censored"], ["acceleration", "quick"], ["animosity", "unwarranted"], ["chicanery", "dishonest"]], "prefix": "low-advanced"}
|
178 |
+
{"stem": ["dirge", "mournful"], "answer": 3, "choice": [["tree", "deciduous"], ["degenerate", "racist"], ["lawyer", "diplomatic"], ["parody", "amusing"]], "prefix": "low-advanced"}
|
179 |
+
{"stem": ["rant", "bombastic"], "answer": 2, "choice": [["recluse", "friendly"], ["bard", "talkative"], ["conflagration", "disastrous"], ["obelisk", "mysterious"]], "prefix": "low-advanced"}
|
180 |
+
{"stem": ["map", "atlas"], "answer": 0, "choice": [["appendage", "body"], ["reprimand", "insult"], ["typhoon", "hurricane"], ["beast", "creature"]], "prefix": "low-advanced"}
|
181 |
+
{"stem": ["erudite", "uneducated"], "answer": 1, "choice": [["fiery", "flagrant"], ["fervid", "dispassionate"], ["loquacious", "talkative"], ["gullible", "naive"], ["dissonant", "discordant"]], "prefix": "high-advanced"}
|
182 |
+
{"stem": ["powerless", "efficacy"], "answer": 4, "choice": [["turbulent", "violence"], ["anomalous", "irregularity"], ["homogenous", "similarity"], ["effluent", "water"], ["explicit", "ambiguity"]], "prefix": "high-advanced"}
|
183 |
+
{"stem": ["clause", "sentence"], "answer": 4, "choice": [["termite", "wood"], ["alcoholic", "tavern"], ["drug", "stimulant"], ["garnish", "parsley"], ["lens", "projector"]], "prefix": "high-advanced"}
|
184 |
+
{"stem": ["truism", "obvious"], "answer": 2, "choice": [["waiver", "safe"], ["president", "tyrannical"], ["daredevil", "audacious"], ["novel", "ingenuous"], ["pedant", "imaginative"]], "prefix": "high-advanced"}
|
185 |
+
{"stem": ["concession", "placate"], "answer": 2, "choice": [["woman", "engender"], ["gun", "bolster"], ["catalyst", "precipitate"], ["workout", "enervate"], ["lawyer", "mitigate"]], "prefix": "high-advanced"}
|
186 |
+
{"stem": ["exaggeration", "caricature"], "answer": 4, "choice": [["legitimacy", "scam"], ["Satanism", "prophet"], ["blitheness", "funeral"], ["authenticity", "imitation"], ["brevity", "epigram"]], "prefix": "high-advanced"}
|
187 |
+
{"stem": ["bombastic", "turgid"], "answer": 0, "choice": [["whimsical", "capricious"], ["maligned", "beneficent"], ["experienced", "inchoate"], ["robust", "disillusioned"], ["intelligent", "ingenuous"]], "prefix": "high-advanced"}
|
188 |
+
{"stem": ["defame", "venerate"], "answer": 1, "choice": [["elucidate", "clarify"], ["dismay", "embolden"], ["defend", "barricade"], ["daze", "confuse"], ["haggle", "negotiate"]], "prefix": "high-advanced"}
|
189 |
+
{"stem": ["farce", "ridiculous"], "answer": 0, "choice": [["swallow", "migratory"], ["child", "incorrigible"], ["skewer", "poignant"], ["intersection", "perpendicular"], ["porcupine", "avian"]], "prefix": "high-advanced"}
|
190 |
+
{"stem": ["indulge", "epicurean"], "answer": 1, "choice": [["complain", "ravenous"], ["revenge", "vindictive"], ["retract", "revocable"], ["startle", "frightening"], ["appreciate", "deprecatory"]], "prefix": "high-advanced"}
|
191 |
+
{"stem": ["branch", "bureaucracy"], "answer": 1, "choice": [["picnic", "basket"], ["denouement", "plot"], ["album", "photograph"], ["abbey", "cathedral"], ["impresario", "hostess"]], "prefix": "high-advanced"}
|
192 |
+
{"stem": ["playful", "banter"], "answer": 0, "choice": [["symbolic", "metaphor"], ["filthy", "lucre"], ["questionable", "interrogation"], ["maternal", "parenthood"], ["cancerous", "growth"]], "prefix": "high-advanced"}
|
193 |
+
{"stem": ["pragmatism", "philosophy"], "answer": 1, "choice": [["elevation", "pinnacle"], ["envy", "sin"], ["electricity", "outlet"], ["cacophony", "opera"], ["chemistry", "element"]], "prefix": "high-advanced"}
|
194 |
+
{"stem": ["print", "lithograph"], "answer": 4, "choice": [["koala", "marsupial"], ["raindrop", "torrent"], ["accordion", "polka"], ["ballet", "tango"], ["pathogen", "virus"]], "prefix": "high-advanced"}
|
195 |
+
{"stem": ["abolition", "slavery"], "answer": 1, "choice": [["choreography", "dance"], ["anarchism", "government"], ["vegetarianism", "food"], ["capitalism", "money"], ["conservation", "trees"]], "prefix": "high-advanced"}
|
196 |
+
{"stem": ["pathogen", "harmful"], "answer": 2, "choice": [["patron", "sexist"], ["record", "tarnished"], ["saint", "benevolent"], ["tumor", "benign"], ["madman", "angry"]], "prefix": "high-advanced"}
|
197 |
+
{"stem": ["grenadier", "army"], "answer": 3, "choice": [["inkling", "pen"], ["wheelchair", "paraplegic"], ["couch", "lethargy"], ["count", "nobility"], ["insurrection", "government"]], "prefix": "high-advanced"}
|
198 |
+
{"stem": ["mud", "opaque"], "answer": 2, "choice": [["usury", "interested"], ["jewelry", "ostentatious"], ["socialism", "destructive"], ["torture", "cruel"], ["ham", "kosher"]], "prefix": "high-advanced"}
|
199 |
+
{"stem": ["invective", "blame"], "answer": 4, "choice": [["homage", "copy"], ["grandeur", "admire"], ["duplicity", "increase"], ["depravity", "corrupt"], ["masonry", "construct"]], "prefix": "high-advanced"}
|
200 |
+
{"stem": ["obdurate", "stubborn"], "answer": 4, "choice": [["ironic", "metallic"], ["happy", "felicitous"], ["improbable", "impossible"], ["aforementioned", "appropriate"], ["lethargic", "sluggish"]], "prefix": "high-advanced"}
|
201 |
+
{"stem": ["assuage", "mollify"], "answer": 2, "choice": [["abstain", "indulge"], ["hypothesize", "prove"], ["desiccate", "dehydrate"], ["curse", "ghostwrite"], ["condemn", "neglect"]], "prefix": "high-advanced"}
|
202 |
+
{"stem": ["fake", "authenticity"], "answer": 0, "choice": [["latent", "manifestation"], ["impenetrable", "defense"], ["lacteal", "milk"], ["preponderant", "thought"], ["retrograde", "direction"]], "prefix": "high-advanced"}
|
203 |
+
{"stem": ["inevitable", "preventable"], "answer": 2, "choice": [["humorous", "amusing"], ["unintelligible", "illegible"], ["plausible", "impossible"], ["declasse", "rude"], ["racist", "prejudiced"]], "prefix": "high-advanced"}
|
204 |
+
{"stem": ["dilettante", "dabble"], "answer": 0, "choice": [["heretic", "blaspheme"], ["teetotaler", "imbibe"], ["sycophant", "dominate"], ["dowager", "remarry"], ["charlatan", "divulge"]], "prefix": "high-advanced"}
|
205 |
+
{"stem": ["renegade", "allegiance"], "answer": 0, "choice": [["atheist", "faith"], ["turncoat", "clothing"], ["bigamist", "wives"], ["monk", "contemplation"], ["torpedo", "explosion"]], "prefix": "high-advanced"}
|
206 |
+
{"stem": ["immune", "susceptible"], "answer": 0, "choice": [["corpulent", "thin"], ["audacious", "bold"], ["loquacious", "babbling"], ["laudable", "praiseworthy"], ["oblivious", "distracted"]], "prefix": "high-advanced"}
|
207 |
+
{"stem": ["martinet", "discipline"], "answer": 1, "choice": [["libertine", "freedom"], ["fundamentalist", "religion"], ["ballerina", "nutrition"], ["cynic", "optimism"], ["sculptor", "clay"]], "prefix": "high-advanced"}
|
208 |
+
{"stem": ["authenticity", "fraudulent"], "answer": 0, "choice": [["simplicity", "complex"], ["importance", "instrumental"], ["worth", "priceless"], ["thirst", "parched"], ["meaning", "purposeful"]], "prefix": "high-advanced"}
|
209 |
+
{"stem": ["sect", "religion"], "answer": 1, "choice": [["fresco", "painting"], ["foreground", "landscape"], ["benefactor", "fortune"], ["mandate", "ruler"], ["diet", "nutrient"]], "prefix": "high-advanced"}
|
210 |
+
{"stem": ["decanter", "pour"], "answer": 0, "choice": [["monument", "venerate"], ["criminal", "deviate"], ["nunnery", "convert"], ["pharmacy", "proscribe"], ["stiletto", "walk"]], "prefix": "high-advanced"}
|
211 |
+
{"stem": ["uncommon", "outlier"], "answer": 3, "choice": [["tentative", "agenda"], ["literary", "synopsis"], ["parsimonious", "spendthrift"], ["lethal", "overdose"], ["saccharine", "diabetic"]], "prefix": "high-advanced"}
|
212 |
+
{"stem": ["antipathy", "approval"], "answer": 2, "choice": [["asphyxiation", "choking"], ["crochet", "knitting"], ["incredulity", "faith"], ["infection", "contamination"], ["excrement", "waste"]], "prefix": "high-advanced"}
|
213 |
+
{"stem": ["kindling", "combustible"], "answer": 0, "choice": [["lava", "molten"], ["bleach", "white"], ["faith", "blind"], ["patriotism", "militaristic"], ["obesity", "large"]], "prefix": "high-advanced"}
|
214 |
+
{"stem": ["bailiff", "courthouse"], "answer": 4, "choice": [["tournament", "stadium"], ["priest", "synagogue"], ["ambulance", "paramedic"], ["greyhound", "racetrack"], ["majordomo", "estate"]], "prefix": "high-advanced"}
|
215 |
+
{"stem": ["legerdemain", "deception"], "answer": 4, "choice": [["ornament", "tree"], ["lemonade", "glass"], ["television", "screen"], ["demolition", "implosion"], ["alcoholism", "addiction"]], "prefix": "high-advanced"}
|
216 |
+
{"stem": ["vitriol", "spiteful"], "answer": 1, "choice": [["hindsight", "perfect"], ["alabaster", "white"], ["buoyancy", "light"], ["equilibrium", "just"], ["jubilation", "biblical"]], "prefix": "high-advanced"}
|
217 |
+
{"stem": ["rivulet", "small"], "answer": 4, "choice": [["dissertation", "plagiarized"], ["bird", "fledgling"], ["bankruptcy", "indebted"], ["hooligan", "athletic"], ["citadel", "fortified"]], "prefix": "high-advanced"}
|
218 |
+
{"stem": ["stock", "inventory"], "answer": 4, "choice": [["celebrity", "questionnaire"], ["antique", "appraisal"], ["negotiation", "bazaar"], ["trial", "interrogation"], ["population", "census"]], "prefix": "high-advanced"}
|
219 |
+
{"stem": ["level", "hierarchy"], "answer": 0, "choice": [["installment", "serial"], ["halo", "messiah"], ["vinaigrette", "salad"], ["courtroom", "drama"], ["misnomer", "definition"]], "prefix": "high-advanced"}
|
220 |
+
{"stem": ["abominable", "disagreeable"], "answer": 4, "choice": [["lovable", "annoying"], ["dry", "desiccated"], ["dismal", "lugubrious"], ["penultimate", "final"], ["precipitous", "steep"]], "prefix": "high-advanced"}
|
221 |
+
{"stem": ["beseech", "request"], "answer": 3, "choice": [["elucidate", "clarify"], ["excite", "pique"], ["search", "discover"], ["scrutinize", "observe"], ["truncate", "shorten"]], "prefix": "high-advanced"}
|
222 |
+
{"stem": ["virulent", "poisonous"], "answer": 1, "choice": [["autonomous", "free"], ["disparate", "distinct"], ["botanical", "flowery"], ["dormant", "tired"], ["unique", "eccentric"]], "prefix": "high-advanced"}
|
223 |
+
{"stem": ["peccadillo", "sin"], "answer": 0, "choice": [["masquerade", "party"], ["peasant", "serf"], ["sarcophagus", "funeral"], ["letdown", "devastation"], ["hex", "wizard"]], "prefix": "high-advanced"}
|
224 |
+
{"stem": ["embargo", "commerce"], "answer": 4, "choice": [["treaty", "war"], ["sunscreen", "radiation"], ["chauffeur", "travel"], ["muscle", "motion"], ["vaccination", "infection"]], "prefix": "high-advanced"}
|
225 |
+
{"stem": ["sanguine", "sickly"], "answer": 2, "choice": [["hazardous", "dangerous"], ["preventable", "foreseeable"], ["altruistic", "egoistic"], ["avaricious", "greedy"], ["feeble", "fruitless"]], "prefix": "high-advanced"}
|
226 |
+
{"stem": ["dermal", "skin"], "answer": 1, "choice": [["idyllic", "dreams"], ["aquatic", "water"], ["political", "democracy"], ["scientific", "medicine"], ["diverse", "cultures"]], "prefix": "high-advanced"}
|
227 |
+
{"stem": ["vernacular", "regional"], "answer": 2, "choice": [["leaf", "autumnal"], ["senator", "dissentious"], ["fluctuation", "irregular"], ["budget", "austere"], ["autopsy", "fatal"]], "prefix": "high-advanced"}
|
228 |
+
{"stem": ["tenable", "indefensible"], "answer": 3, "choice": [["unique", "unprecedented"], ["dire", "pressing"], ["bleak", "desolate"], ["theoretical", "concrete"], ["recondite", "scholarly"]], "prefix": "high-advanced"}
|
229 |
+
{"stem": ["unprecedented", "forerunners"], "answer": 4, "choice": [["unnecessary", "prerequisites"], ["nauseating", "medicine"], ["bloodthirsty", "anemia"], ["holistic", "proof"], ["adulterated", "purity"]], "prefix": "high-advanced"}
|
230 |
+
{"stem": ["demented", "lucidity"], "answer": 0, "choice": [["boorish", "propriety"], ["prodigal", "sons"], ["acrobatic", "flexibility"], ["sanguine", "blood"], ["realistic", "optimism"]], "prefix": "high-advanced"}
|
231 |
+
{"stem": ["flatter", "rebuff"], "answer": 4, "choice": [["stigmatize", "criticize"], ["implicate", "involve"], ["horrify", "concern"], ["abstain", "refrain"], ["entice", "repulse"]], "prefix": "high-advanced"}
|
232 |
+
{"stem": ["hallucinogen", "drug"], "answer": 1, "choice": [["dance", "polka"], ["nightmare", "dream"], ["stocking", "skirt"], ["banjo", "guitar"], ["aircraft", "helicopter"]], "prefix": "high-advanced"}
|
233 |
+
{"stem": ["castigate", "criticize"], "answer": 1, "choice": [["dishevel", "destroy"], ["brutalize", "bully"], ["legalize", "filibuster"], ["predict", "forecast"], ["kill", "massacre"]], "prefix": "high-advanced"}
|
234 |
+
{"stem": ["conceited", "bumptious"], "answer": 3, "choice": [["rural", "suburban"], ["tangible", "corporeal"], ["dubious", "suspicious"], ["devoted", "zealous"], ["elementary", "young"]], "prefix": "high-advanced"}
|
235 |
+
{"stem": ["asphyxia", "air"], "answer": 2, "choice": [["cancer", "tumors"], ["obesity", "fat"], ["anemia", "iron"], ["anorexia", "disorder"], ["depression", "anxiety"]], "prefix": "high-advanced"}
|
236 |
+
{"stem": ["control", "irrepressible"], "answer": 0, "choice": [["penetrate", "impermeable"], ["mend", "replaceable"], ["sell", "profitable"], ["damage", "decimated"], ["see", "visible"]], "prefix": "high-advanced"}
|
237 |
+
{"stem": ["lie", "prevaricate"], "answer": 2, "choice": [["betray", "trust"], ["philander", "donate"], ["waver", "falter"], ["deride", "praise"], ["corroborate", "doubt"]], "prefix": "high-advanced"}
|
238 |
+
{"stem": ["estimate", "approximate"], "answer": 0, "choice": [["narcissist", "egocentric"], ["canoe", "rapid"], ["businessman", "perspicacious"], ["child", "legitimate"], ["heiress", "coddled"]], "prefix": "high-advanced"}
|
239 |
+
{"stem": ["cello", "played"], "answer": 1, "choice": [["tractor", "pulled"], ["bomb", "detonated"], ["scientist", "discovered"], ["city", "populated"], ["restaurant", "eaten"]], "prefix": "high-advanced"}
|
240 |
+
{"stem": ["eccentric", "codger"], "answer": 1, "choice": [["evil", "courtesan"], ["admirable", "hero"], ["generous", "pedant"], ["powerful", "supplicant"], ["spicy", "marinade"]], "prefix": "high-advanced"}
|
241 |
+
{"stem": ["inchoate", "experience"], "answer": 3, "choice": [["vivacious", "health"], ["ignorant", "belief"], ["feminine", "hormones"], ["irreverent", "respect"], ["prudish", "desire"]], "prefix": "high-advanced"}
|
242 |
+
{"stem": ["polish", "shiny"], "answer": 1, "choice": [["procure", "valuable"], ["insulate", "warm"], ["reject", "commonplace"], ["sand", "rough"], ["varnish", "colorless"]], "prefix": "high-advanced"}
|
243 |
+
{"stem": ["pan", "saute"], "answer": 3, "choice": [["measurement", "weigh"], ["cheese", "grate"], ["newspaper", "edit"], ["pestle", "grind"], ["informant", "educate"]], "prefix": "high-advanced"}
|
244 |
+
{"stem": ["memorable", "unforgettable"], "answer": 1, "choice": [["capricious", "restrained"], ["pleasing", "breathtaking"], ["offensive", "stereotypical"], ["objectified", "purchased"], ["insignificant", "irrelevant"]], "prefix": "high-advanced"}
|
245 |
+
{"stem": ["demulcent", "unguent"], "answer": 0, "choice": [["concertina", "instrument"], ["oratorio", "rhetoric"], ["denizen", "denomination"], ["artisan", "freemason"], ["paroxysm", "hysteria"]], "prefix": "high-advanced"}
|
246 |
+
{"stem": ["disingenuous", "charlatan"], "answer": 4, "choice": [["padded", "resume"], ["hardwood", "floor"], ["cooperative", "rival"], ["somnambulant", "nightmare"], ["indigent", "mendicant"]], "prefix": "high-advanced"}
|
247 |
+
{"stem": ["subterfuge", "deceive"], "answer": 3, "choice": [["smoke", "burn"], ["allegory", "recant"], ["pedant", "walk"], ["cloak", "conceal"], ["prosecutor", "judge"]], "prefix": "high-advanced"}
|
248 |
+
{"stem": ["tyro", "inexperienced"], "answer": 3, "choice": [["headmaster", "principled"], ["scapegoat", "blameworthy"], ["forgery", "valuable"], ["sycophant", "servile"], ["risk", "worthwhile"]], "prefix": "high-advanced"}
|
249 |
+
{"stem": ["abiding", "ephemeral"], "answer": 0, "choice": [["mawkish", "stoic"], ["spineless", "timorous"], ["frightened", "petrified"], ["listless", "jejune"], ["speechless", "deaf"]], "prefix": "high-advanced"}
|
250 |
+
{"stem": ["clean", "immaculate"], "answer": 1, "choice": [["cheap", "inexpensive"], ["unadorned", "austere"], ["conscious", "asleep"], ["mysterious", "enigmatic"], ["isolated", "desolate"]], "prefix": "high-advanced"}
|
251 |
+
{"stem": ["atrocious", "bad"], "answer": 2, "choice": [["beneficent", "upset"], ["magnanimous", "generous"], ["mellifluous", "smooth"], ["common", "banal"], ["aggressive", "bellicose"]], "prefix": "high-advanced"}
|
252 |
+
{"stem": ["nefarious", "virtuous"], "answer": 2, "choice": [["stringent", "solid"], ["subliminal", "secret"], ["reticent", "talkative"], ["jocular", "humorous"], ["haggard", "old"]], "prefix": "high-advanced"}
|
253 |
+
{"stem": ["salesman", "sell"], "answer": 1, "choice": [["teacher", "learn"], ["mechanic", "repair"], ["lawyer", "free"], ["desk", "hard"]], "prefix": "high-beginning"}
|
254 |
+
{"stem": ["pilot", "airplane"], "answer": 1, "choice": [["driver", "ship"], ["conductor", "train"], ["bicycle", "car"], ["passenger", "bus"]], "prefix": "high-beginning"}
|
255 |
+
{"stem": ["chess", "game"], "answer": 3, "choice": [["checkers", "basketball"], ["kid", "child"], ["man", "woman"], ["tennis", "sport"]], "prefix": "high-beginning"}
|
256 |
+
{"stem": ["match", "fire"], "answer": 1, "choice": [["bag", "wallet"], ["key", "car"], ["gas", "machine"], ["cookie", "mouth"]], "prefix": "high-beginning"}
|
257 |
+
{"stem": ["wrench", "tool"], "answer": 3, "choice": [["cow", "milk"], ["radio", "sound"], ["tree", "forest"], ["carrot", "vegetable"]], "prefix": "high-beginning"}
|
258 |
+
{"stem": ["candy", "sweet"], "answer": 3, "choice": [["water", "cold"], ["time", "fast"], ["money", "clean"], ["fire", "hot"]], "prefix": "high-beginning"}
|
259 |
+
{"stem": ["mattress", "bed"], "answer": 0, "choice": [["drain", "sink"], ["chair", "table"], ["television", "computer"], ["lamp", "light"]], "prefix": "high-beginning"}
|
260 |
+
{"stem": ["dog", "pet"], "answer": 2, "choice": [["fire", "water"], ["cup", "drink"], ["drill", "tool"], ["car", "bus"]], "prefix": "high-beginning"}
|
261 |
+
{"stem": ["rock", "hard"], "answer": 0, "choice": [["water", "wet"], ["table", "wooden"], ["mom", "nice"], ["sound", "loud"]], "prefix": "high-beginning"}
|
262 |
+
{"stem": ["brush", "paint"], "answer": 0, "choice": [["straw", "drink"], ["eraser", "write"], ["table", "sit"], ["key", "turn"]], "prefix": "high-beginning"}
|
263 |
+
{"stem": ["ugly", "beauty"], "answer": 0, "choice": [["serious", "humor"], ["old", "age"], ["hot", "heat"], ["sweet", "strength"]], "prefix": "high-beginning"}
|
264 |
+
{"stem": ["nice", "mean"], "answer": 2, "choice": [["bad", "happy"], ["crazy", "funny"], ["sad", "happy"], ["healthy", "fun"]], "prefix": "high-beginning"}
|
265 |
+
{"stem": ["obese", "overweight"], "answer": 2, "choice": [["guilty", "wrong"], ["funny", "clever"], ["hideous", "ugly"], ["rude", "mean"]], "prefix": "high-beginning"}
|
266 |
+
{"stem": ["speakers", "stereo"], "answer": 2, "choice": [["arms", "legs"], ["feet", "toes"], ["wings", "airplane"], ["clouds", "sky"]], "prefix": "high-beginning"}
|
267 |
+
{"stem": ["shield", "protect"], "answer": 1, "choice": [["computer", "talk"], ["vehicle", "transport"], ["pencil", "make"], ["song", "sing"]], "prefix": "high-beginning"}
|
268 |
+
{"stem": ["razor", "shave"], "answer": 1, "choice": [["hair", "comb"], ["knife", "cut"], ["boat", "drive"], ["fork", "drink"]], "prefix": "high-beginning"}
|
269 |
+
{"stem": ["string", "guitar"], "answer": 1, "choice": [["shoe", "pants"], ["wheel", "bicycle"], ["candle", "table"], ["picture", "wall"]], "prefix": "high-beginning"}
|
270 |
+
{"stem": ["sick", "health"], "answer": 2, "choice": [["sad", "emotion"], ["tall", "intelligence"], ["scared", "courage"], ["smart", "energy"]], "prefix": "high-beginning"}
|
271 |
+
{"stem": ["artist", "paintbrush"], "answer": 3, "choice": [["lawyer", "computer"], ["dentist", "teeth"], ["teacher", "apple"], ["magician", "wand"]], "prefix": "high-beginning"}
|
272 |
+
{"stem": ["war", "peace"], "answer": 2, "choice": [["weather", "clouds"], ["math", "fun"], ["joy", "sadness"], ["socks", "warmth"]], "prefix": "high-beginning"}
|
273 |
+
{"stem": ["boulder", "heavy"], "answer": 3, "choice": [["ring", "beautiful"], ["steak", "good"], ["beach", "sunny"], ["mountain", "tall"]], "prefix": "high-beginning"}
|
274 |
+
{"stem": ["chair", "sit"], "answer": 0, "choice": [["cup", "drink"], ["bottle", "break"], ["book", "read"], ["eye", "listen"]], "prefix": "high-beginning"}
|
275 |
+
{"stem": ["great", "good"], "answer": 2, "choice": [["fun", "cool"], ["strange", "weird"], ["hot", "warm"], ["dull", "sharp"]], "prefix": "high-beginning"}
|
276 |
+
{"stem": ["strange", "normal"], "answer": 3, "choice": [["scared", "angry"], ["unhappy", "sad"], ["nervous", "young"], ["new", "old"]], "prefix": "high-beginning"}
|
277 |
+
{"stem": ["shy", "confidence"], "answer": 2, "choice": [["smart", "sense"], ["hard", "difficulty"], ["cowardly", "bravery"], ["young", "manners"]], "prefix": "high-beginning"}
|
278 |
+
{"stem": ["ball", "round"], "answer": 2, "choice": [["dog", "friendly"], ["computer", "expensive"], ["feather", "light"], ["car", "blue"]], "prefix": "high-beginning"}
|
279 |
+
{"stem": ["rare", "common"], "answer": 2, "choice": [["shiny", "bright"], ["fake", "phony"], ["old", "new"], ["thin", "skinny"]], "prefix": "high-beginning"}
|
280 |
+
{"stem": ["furious", "angry"], "answer": 3, "choice": [["sad", "happy"], ["cold", "cool"], ["crazy", "entertaining"], ["terrified", "afraid"]], "prefix": "high-beginning"}
|
281 |
+
{"stem": ["letter", "word"], "answer": 2, "choice": [["brick", "house"], ["hat", "suit"], ["toe", "foot"], ["phone", "room"]], "prefix": "high-beginning"}
|
282 |
+
{"stem": ["ignorant", "knowledge"], "answer": 0, "choice": [["scared", "courage"], ["old", "health"], ["nice", "power"], ["crazy", "happiness"]], "prefix": "high-beginning"}
|
283 |
+
{"stem": ["map", "guide"], "answer": 3, "choice": [["apartment", "locate"], ["bag", "open"], ["bed", "read"], ["towel", "dry"]], "prefix": "high-beginning"}
|
284 |
+
{"stem": ["terrified", "scared"], "answer": 2, "choice": [["quiet", "secret"], ["sweet", "rich"], ["obsessed", "interested"], ["funny", "serious"]], "prefix": "high-beginning"}
|
285 |
+
{"stem": ["wall", "room"], "answer": 2, "choice": [["lettuce", "sandwich"], ["dog", "cat"], ["wheel", "car"], ["song", "dance"]], "prefix": "high-beginning"}
|
286 |
+
{"stem": ["disorganized", "order"], "answer": 2, "choice": [["intelligent", "belief"], ["heavy", "power"], ["insignificant", "importance"], ["delicious", "flavor"]], "prefix": "high-beginning"}
|
287 |
+
{"stem": ["depressed", "sad"], "answer": 3, "choice": [["peaceful", "bored"], ["sweet", "strong"], ["ready", "anxious"], ["elated", "happy"]], "prefix": "high-beginning"}
|
288 |
+
{"stem": ["shark", "fish"], "answer": 1, "choice": [["sausage", "vegetable"], ["tulip", "flower"], ["aunt", "uncle"], ["mouse", "rat"]], "prefix": "high-beginning"}
|
289 |
+
{"stem": ["teeth", "chew"], "answer": 3, "choice": [["clouds", "fly"], ["hands", "run"], ["cats", "scratch"], ["legs", "walk"]], "prefix": "high-beginning"}
|
290 |
+
{"stem": ["brilliant", "intelligent"], "answer": 0, "choice": [["devastated", "disappointed"], ["talented", "skilled"], ["bored", "intrigued"], ["motivated", "dedicated"]], "prefix": "high-beginning"}
|
291 |
+
{"stem": ["needle", "sew"], "answer": 0, "choice": [["movie", "entertain"], ["pencil", "study"], ["wheel", "move"], ["plate", "drink"]], "prefix": "high-beginning"}
|
292 |
+
{"stem": ["saturday", "weekend"], "answer": 3, "choice": [["November", "December"], ["Wednesday", "night"], ["today", "afternoon"], ["January", "winter"]], "prefix": "high-beginning"}
|
293 |
+
{"stem": ["exhausted", "tired"], "answer": 3, "choice": [["ready", "lazy"], ["excited", "boring"], ["sweet", "mean"], ["starving", "hungry"]], "prefix": "high-beginning"}
|
294 |
+
{"stem": ["tuxedo", "formal"], "answer": 3, "choice": [["car", "fast"], ["king", "smart"], ["ring", "plain"], ["diamond", "hard"]], "prefix": "high-beginning"}
|
295 |
+
{"stem": ["tongue", "taste"], "answer": 3, "choice": [["boat", "swim"], ["bed", "sit"], ["bag", "buy"], ["nose", "smell"]], "prefix": "high-beginning"}
|
296 |
+
{"stem": ["ham", "meat"], "answer": 2, "choice": [["air", "water"], ["tennis", "school"], ["juice", "drink"], ["math", "number"]], "prefix": "high-beginning"}
|
297 |
+
{"stem": ["carrot", "vegetable"], "answer": 1, "choice": [["animal", "horse"], ["flute", "instrument"], ["fruit", "apple"], ["book", "novel"]], "prefix": "high-beginning"}
|
298 |
+
{"stem": ["side", "square"], "answer": 0, "choice": [["finger", "hand"], ["hat", "suit"], ["bird", "tree"], ["pencil", "paper"]], "prefix": "high-beginning"}
|
299 |
+
{"stem": ["lazy", "ambition"], "answer": 0, "choice": [["bald", "hair"], ["strong", "confidence"], ["thirsty", "food"], ["rich", "wealth"]], "prefix": "high-beginning"}
|
300 |
+
{"stem": ["bees", "hive"], "answer": 1, "choice": [["cows", "city"], ["birds", "nest"], ["snakes", "house"], ["bears", "hotel"]], "prefix": "high-beginning"}
|
301 |
+
{"stem": ["shoe", "foot"], "answer": 2, "choice": [["boot", "hand"], ["glove", "wrist"], ["hat", "head"], ["sock", "leg"]], "prefix": "high-beginning"}
|
302 |
+
{"stem": ["scale", "weight"], "answer": 0, "choice": [["thermometer", "temperature"], ["ruler", "time"], ["compass", "location"], ["calculator", "money"]], "prefix": "high-beginning"}
|
303 |
+
{"stem": ["bird", "fly"], "answer": 2, "choice": [["horse", "ride"], ["tree", "run"], ["fish", "swim"], ["arm", "dance"]], "prefix": "high-beginning"}
|
304 |
+
{"stem": ["beautiful", "pretty"], "answer": 0, "choice": [["terrible", "bad"], ["brave", "valiant"], ["new", "old"], ["tall", "skinny"]], "prefix": "high-beginning"}
|
305 |
+
{"stem": ["dry", "moisture"], "answer": 1, "choice": [["light", "height"], ["cold", "warmth"], ["healthy", "meat"], ["happy", "weakness"]], "prefix": "high-beginning"}
|
306 |
+
{"stem": ["branch", "tree"], "answer": 1, "choice": [["lemon", "fruit"], ["leg", "chair"], ["plant", "flower"], ["road", "car"]], "prefix": "high-beginning"}
|
307 |
+
{"stem": ["huge", "big"], "answer": 1, "choice": [["nice", "good"], ["tiny", "small"], ["funny", "happy"], ["old", "new"]], "prefix": "high-beginning"}
|
308 |
+
{"stem": ["full", "empty"], "answer": 0, "choice": [["boring", "exciting"], ["sweet", "tasty"], ["loud", "intense"], ["new", "young"]], "prefix": "high-beginning"}
|
309 |
+
{"stem": ["fin", "fish"], "answer": 0, "choice": [["string", "guitar"], ["nose", "bird"], ["tail", "human"], ["pickle", "sandwich"]], "prefix": "high-beginning"}
|
310 |
+
{"stem": ["whale", "ocean"], "answer": 1, "choice": [["car", "garage"], ["tiger", "jungle"], ["chair", "table"]], "prefix": "high-beginning"}
|
311 |
+
{"stem": ["pot", "cook"], "answer": 1, "choice": [["camera", "take"], ["broom", "sweep"], ["rock", "play"], ["piano", "sing"]], "prefix": "high-beginning"}
|
312 |
+
{"stem": ["blanket", "soft"], "answer": 3, "choice": [["money", "rich"], ["teacher", "good"], ["apple", "ripe"], ["circle", "round"]], "prefix": "high-beginning"}
|
313 |
+
{"stem": ["mountain", "tall"], "answer": 3, "choice": [["game", "fun"], ["ring", "expensive"], ["car", "fast"], ["rainbow", "colorful"]], "prefix": "high-beginning"}
|
314 |
+
{"stem": ["hard", "soft"], "answer": 2, "choice": [["fast", "quick"], ["smooth", "straight"], ["heavy", "light"], ["healthy", "good"]], "prefix": "high-beginning"}
|
315 |
+
{"stem": ["safe", "dangerous"], "answer": 0, "choice": [["silent", "noisy"], ["upset", "late"], ["wise", "smart"], ["fast", "quick"]], "prefix": "high-beginning"}
|
316 |
+
{"stem": ["win", "lose"], "answer": 1, "choice": [["play", "learn"], ["buy", "sell"], ["see", "hear"], ["like", "love"]], "prefix": "high-beginning"}
|
317 |
+
{"stem": ["poor", "money"], "answer": 0, "choice": [["tired", "energy"], ["angry", "emotion"], ["hot", "ice"], ["hungry", "water"]], "prefix": "high-beginning"}
|
318 |
+
{"stem": ["pen", "write"], "answer": 0, "choice": [["shovel", "dig"], ["spoon", "drink"], ["bath", "shower"], ["door", "open"]], "prefix": "high-beginning"}
|
319 |
+
{"stem": ["tiny", "little"], "answer": 0, "choice": [["huge", "big"], ["long", "tall"], ["small", "loud"], ["neat", "messy"]], "prefix": "high-beginning"}
|
320 |
+
{"stem": ["potato", "vegetable"], "answer": 1, "choice": [["fish", "shark"], ["peach", "fruit"], ["bus", "car"], ["play", "actress"]], "prefix": "high-beginning"}
|
321 |
+
{"stem": ["ice", "slippery"], "answer": 2, "choice": [["basketball", "fun"], ["cake", "delicious"], ["paper", "thin"], ["chalk", "white"]], "prefix": "high-beginning"}
|
322 |
+
{"stem": ["ancient", "old"], "answer": 1, "choice": [["crazy", "unhealthy"], ["delicious", "tasty"], ["smart", "intelligent"]], "prefix": "high-beginning"}
|
323 |
+
{"stem": ["teacher", "educate"], "answer": 0, "choice": [["doctor", "heal"], ["farmer", "talk"], ["engine", "oil"], ["dog", "sit"]], "prefix": "high-beginning"}
|
324 |
+
{"stem": ["ring", "finger"], "answer": 0, "choice": [["necklace", "neck"], ["bracelet", "diamond"], ["sock", "hand"], ["glove", "foot"]], "prefix": "high-beginning"}
|
325 |
+
{"stem": ["hilarious", "funny"], "answer": 3, "choice": [["right", "wrong"], ["hard", "boring"], ["nice", "crazy"], ["great", "good"]], "prefix": "high-beginning"}
|
326 |
+
{"stem": ["dangerous", "safe"], "answer": 1, "choice": [["hard", "nice"], ["easy", "difficult"], ["strong", "thin"], ["organized", "orderly"]], "prefix": "high-beginning"}
|
327 |
+
{"stem": ["organized", "neat"], "answer": 3, "choice": [["ugly", "pretty"], ["fun", "good"], ["disgusting", "sour"], ["transparent", "clear"]], "prefix": "high-beginning"}
|
328 |
+
{"stem": ["puppy", "dog"], "answer": 0, "choice": [["kitten", "cat"], ["bear", "cub"], ["fish", "minnow"], ["cow", "calf"]], "prefix": "high-beginning"}
|
329 |
+
{"stem": ["musician", "music"], "answer": 1, "choice": [["shower", "water"], ["chef", "food"], ["machine", "snow"], ["child", "art"]], "prefix": "high-beginning"}
|
330 |
+
{"stem": ["near", "far"], "answer": 1, "choice": [["gray", "black"], ["right", "wrong"], ["cold", "freezing"], ["good", "fun"]], "prefix": "high-beginning"}
|
331 |
+
{"stem": ["shovel", "dig"], "answer": 1, "choice": [["bus", "run"], ["pencil", "write"], ["hat", "protect"], ["fork", "take"]], "prefix": "high-beginning"}
|
332 |
+
{"stem": ["steak", "meat"], "answer": 3, "choice": [["nature", "wood"], ["water", "food"], ["transportation", "street"], ["anger", "emotion"]], "prefix": "high-beginning"}
|
333 |
+
{"stem": ["joy", "emotion"], "answer": 2, "choice": [["food", "beverage"], ["air", "water"], ["pain", "feeling"], ["money", "product"]], "prefix": "high-beginning"}
|
334 |
+
{"stem": ["correct", "right"], "answer": 3, "choice": [["crazy", "smart"], ["weak", "fun"], ["strong", "hard"], ["cheap", "inexpensive"]], "prefix": "high-beginning"}
|
335 |
+
{"stem": ["hockey", "sport"], "answer": 3, "choice": [["bus", "car"], ["rice", "hunger"], ["fight", "war"], ["chemistry", "science"]], "prefix": "high-beginning"}
|
336 |
+
{"stem": ["hammer", "hit"], "answer": 0, "choice": [["knife", "cut"], ["table", "eat"], ["pen", "build"], ["wheel", "race"]], "prefix": "high-beginning"}
|
337 |
+
{"stem": ["jazz", "music"], "answer": 0, "choice": [["silver", "metal"], ["window", "glass"], ["water", "pool"], ["juice", "fruit"]], "prefix": "high-beginning"}
|
338 |
+
{"stem": ["rich", "poor"], "answer": 0, "choice": [["young", "old"], ["smart", "tired"], ["tall", "angry"], ["fun", "nice"]], "prefix": "high-beginning"}
|
339 |
+
{"stem": ["mircroscope", "examine"], "answer": 0, "choice": [["letter", "communicate"], ["sweater", "knit"], ["ball", "hit"], ["game", "score"]], "prefix": "high-beginning"}
|
340 |
+
{"stem": ["milk", "white"], "answer": 3, "choice": [["traffic", "heavy"], ["science", "boring"], ["candy", "good"], ["honey", "sticky"]], "prefix": "high-beginning"}
|
341 |
+
{"stem": ["apple", "heathy"], "answer": 3, "choice": [["teacher", "good"], ["bed", "comfortable"], ["car", "fast"], ["rock", "hard"]], "prefix": "high-beginning"}
|
342 |
+
{"stem": ["theft", "crime"], "answer": 0, "choice": [["winter", "season"], ["glass", "window"], ["chicken", "beverage"], ["air", "cloud"]], "prefix": "high-beginning"}
|
343 |
+
{"stem": ["accident", "unintended"], "answer": 2, "choice": [["idea", "true"], ["law", "perfect"], ["villain", "evil"], ["castle", "unknown"]], "prefix": "low-intermediate"}
|
344 |
+
{"stem": ["trivial", "importance"], "answer": 3, "choice": [["prestigious", "honor"], ["written", "rhyme"], ["invisible", "sight"], ["familiar", "novelty"]], "prefix": "low-intermediate"}
|
345 |
+
{"stem": ["novel", "fictional"], "answer": 0, "choice": [["pretzel", "salty"], ["cloud", "gray"], ["man", "violent"], ["nurse", "polite"]], "prefix": "low-intermediate"}
|
346 |
+
{"stem": ["wizard", "magical"], "answer": 0, "choice": [["king", "royal"], ["nun", "silent"], ["teacher", "ordinary"], ["chef", "delicious"]], "prefix": "low-intermediate"}
|
347 |
+
{"stem": ["downpour", "rain"], "answer": 2, "choice": [["wave", "water"], ["tornado", "clouds"], ["blizzard", "snow"], ["desert", "heat"]], "prefix": "low-intermediate"}
|
348 |
+
{"stem": ["order", "chaos"], "answer": 0, "choice": [["unity", "division"], ["culture", "feeling"], ["family", "tradition"], ["anger", "pride"]], "prefix": "low-intermediate"}
|
349 |
+
{"stem": ["torch", "illuminate"], "answer": 1, "choice": [["stove", "bake"], ["vacuum", "clean"], ["car", "run"], ["phone", "write"]], "prefix": "low-intermediate"}
|
350 |
+
{"stem": ["helmet", "head"], "answer": 0, "choice": [["mask", "face"], ["belt", "train"], ["ring", "wrist"], ["slipper", "ankle"]], "prefix": "low-intermediate"}
|
351 |
+
{"stem": ["sewing", "craft"], "answer": 2, "choice": [["salt", "food"], ["fate", "science"], ["gasoline", "fuel"], ["sunrise", "art"]], "prefix": "low-intermediate"}
|
352 |
+
{"stem": ["bachelor", "wife"], "answer": 0, "choice": [["nomad", "home"], ["postman", "job"], ["computer", "fire"], ["building", "wall"]], "prefix": "low-intermediate"}
|
353 |
+
{"stem": ["sunscreen", "skin"], "answer": 2, "choice": [["magic", "children"], ["grass", "house"], ["armor", "body"], ["faith", "country"]], "prefix": "low-intermediate"}
|
354 |
+
{"stem": ["rooster", "chicken"], "answer": 2, "choice": [["frog", "tadpole"], ["girl", "human"], ["bull", "cow"], ["whale", "dolphin"]], "prefix": "low-intermediate"}
|
355 |
+
{"stem": ["engine", "car"], "answer": 0, "choice": [["lens", "microscope"], ["day", "night"], ["picture", "frame"], ["club", "member"]], "prefix": "low-intermediate"}
|
356 |
+
{"stem": ["huge", "large"], "answer": 1, "choice": [["possible", "easy"], ["critical", "important"], ["likely", "incredible"], ["upsetting", "offensive"]], "prefix": "low-intermediate"}
|
357 |
+
{"stem": ["soda", "beverage"], "answer": 3, "choice": [["fish", "ocean"], ["dirt", "ingredient"], ["cereal", "pancake"], ["shrimp", "seafood"]], "prefix": "low-intermediate"}
|
358 |
+
{"stem": ["spaghetti", "pasta"], "answer": 0, "choice": [["ketchup", "condiment"], ["lettuce", "sauce"], ["bacon", "fruit"], ["cereal", "dairy"]], "prefix": "low-intermediate"}
|
359 |
+
{"stem": ["deck", "ship"], "answer": 0, "choice": [["sleeve", "shirt"], ["player", "game"], ["tail", "human"], ["year", "month"]], "prefix": "low-intermediate"}
|
360 |
+
{"stem": ["nightmare", "dream"], "answer": 0, "choice": [["wrench", "tool"], ["want", "need"], ["friend", "enemy"], ["grade", "school"]], "prefix": "low-intermediate"}
|
361 |
+
{"stem": ["gallery", "art"], "answer": 0, "choice": [["library", "books"], ["kitchen", "food"], ["butcher", "meat"], ["mailbox", "letters"]], "prefix": "low-intermediate"}
|
362 |
+
{"stem": ["building", "manmade"], "answer": 3, "choice": [["bracelet", "stylish"], ["jacket", "leather"], ["school", "strict"], ["biography", "nonfiction"]], "prefix": "low-intermediate"}
|
363 |
+
{"stem": ["tattoo", "permanent"], "answer": 3, "choice": [["necklace", "silver"], ["boat", "electric"], ["phone", "broken"], ["marathon", "long"]], "prefix": "low-intermediate"}
|
364 |
+
{"stem": ["sculpture", "art"], "answer": 3, "choice": [["language", "book"], ["justice", "jail"], ["happiness", "religion"], ["weightlifting", "exercise"]], "prefix": "low-intermediate"}
|
365 |
+
{"stem": ["bread", "bakery"], "answer": 0, "choice": [["coffee", "cafe"], ["clothing", "laundromat"], ["medicine", "church"], ["money", "supermarket"]], "prefix": "low-intermediate"}
|
366 |
+
{"stem": ["pebble", "stone"], "answer": 0, "choice": [["minnow", "fish"], ["car", "truck"], ["tiger", "lion"], ["dictionary", "book"]], "prefix": "low-intermediate"}
|
367 |
+
{"stem": ["reckless", "caution"], "answer": 1, "choice": [["silly", "thought"], ["doubtful", "conviction"], ["selfish", "friends"], ["shy", "jewelry"]], "prefix": "low-intermediate"}
|
368 |
+
{"stem": ["wedding", "ceremony"], "answer": 3, "choice": [["animal", "dog"], ["saint", "nun"], ["mountain", "volcano"], ["president", "leader"]], "prefix": "low-intermediate"}
|
369 |
+
{"stem": ["coffee", "bitter"], "answer": 1, "choice": [["meat", "fried"], ["glass", "fragile"], ["gas", "cheap"], ["silk", "rough"]], "prefix": "low-intermediate"}
|
370 |
+
{"stem": ["democracy", "government"], "answer": 1, "choice": [["music", "invention"], ["hammer", "tool"], ["friendship", "person"], ["wine", "grape"]], "prefix": "low-intermediate"}
|
371 |
+
{"stem": ["shell", "nut"], "answer": 1, "choice": [["pill", "doctor"], ["page", "book"], ["song", "music"], ["cat", "house"]], "prefix": "low-intermediate"}
|
372 |
+
{"stem": ["train", "railroad"], "answer": 2, "choice": [["boat", "mountain"], ["helicopter", "cloud"], ["truck", "highway"], ["wagon", "wheel"]], "prefix": "low-intermediate"}
|
373 |
+
{"stem": ["clock", "time"], "answer": 1, "choice": [["guitar", "music"], ["calendar", "date"], ["ruler", "speed"], ["mother", "family"]], "prefix": "low-intermediate"}
|
374 |
+
{"stem": ["unique", "uncommon"], "answer": 3, "choice": [["pleasant", "enjoyable"], ["spicy", "powerful"], ["bitter", "delicious"], ["disgusting", "unpleasant"]], "prefix": "low-intermediate"}
|
375 |
+
{"stem": ["hilarious", "funny"], "answer": 1, "choice": [["strange", "weird"], ["famished", "hungry"], ["uncomfortable", "painful"], ["familiar", "trustworthy"]], "prefix": "low-intermediate"}
|
376 |
+
{"stem": ["brother", "sibling"], "answer": 3, "choice": [["mother", "daughter"], ["doctor", "nurse"], ["uncle", "aunt"], ["father", "parent"]], "prefix": "low-intermediate"}
|
377 |
+
{"stem": ["newspaper", "inform"], "answer": 3, "choice": [["television", "watch"], ["book", "communicate"], ["movie", "persuade"], ["game", "entertain"]], "prefix": "low-intermediate"}
|
378 |
+
{"stem": ["bus", "automobile"], "answer": 1, "choice": [["building", "house"], ["tiger", "animal"], ["letter", "alphabet"], ["bath", "shower"]], "prefix": "low-intermediate"}
|
379 |
+
{"stem": ["siren", "alert"], "answer": 2, "choice": [["heart", "love"], ["flag", "wave"], ["truck", "transport"], ["stereo", "receive"]], "prefix": "low-intermediate"}
|
380 |
+
{"stem": ["criminal", "innocence"], "answer": 0, "choice": [["novice", "experience"], ["expert", "humility"], ["worker", "employment"], ["elegant", "style"]], "prefix": "low-intermediate"}
|
381 |
+
{"stem": ["fork", "utensil"], "answer": 0, "choice": [["jet", "airplane"], ["fact", "idea"], ["program", "computer"], ["mountain", "plastic"]], "prefix": "low-intermediate"}
|
382 |
+
{"stem": ["expert", "skilled"], "answer": 3, "choice": [["athlete", "thin"], ["student", "intelligent"], ["spy", "friendly"], ["fanatic", "enthusiastic"]], "prefix": "low-intermediate"}
|
383 |
+
{"stem": ["hand", "clock"], "answer": 3, "choice": [["song", "note"], ["flag", "pole"], ["tea", "cup"], ["step", "staircase"]], "prefix": "low-intermediate"}
|
384 |
+
{"stem": ["mechanic", "cars"], "answer": 0, "choice": [["dentist", "teeth"], ["doctor", "children"], ["chef", "vegetables"], ["playwright", "theaters"]], "prefix": "low-intermediate"}
|
385 |
+
{"stem": ["verse", "song"], "answer": 0, "choice": [["core", "apple"], ["mop", "broom"], ["supermarket", "office"], ["coat", "jacket"]], "prefix": "low-intermediate"}
|
386 |
+
{"stem": ["helmet", "protect"], "answer": 0, "choice": [["bomb", "destroy"], ["storm", "rain"], ["parade", "walk"], ["dream", "sleep"]], "prefix": "low-intermediate"}
|
387 |
+
{"stem": ["cloth", "threads"], "answer": 2, "choice": [["gun", "bullets"], ["guitar", "drums"], ["chain", "links"], ["star", "planets"]], "prefix": "low-intermediate"}
|
388 |
+
{"stem": ["foot", "inches"], "answer": 2, "choice": [["bathtub", "gallons"], ["meter", "miles"], ["pound", "ounces"], ["fork", "spoons"]], "prefix": "low-intermediate"}
|
389 |
+
{"stem": ["full", "empty"], "answer": 3, "choice": [["piercing", "sharp"], ["fancy", "elegant"], ["traditional", "old"], ["relaxing", "stressful"]], "prefix": "low-intermediate"}
|
390 |
+
{"stem": ["alarm", "warn"], "answer": 0, "choice": [["map", "navigate"], ["dog", "party"], ["cup", "pour"], ["shirt", "design"]], "prefix": "low-intermediate"}
|
391 |
+
{"stem": ["trip", "fall"], "answer": 2, "choice": [["spill", "run"], ["play", "cry"], ["exercise", "sweat"], ["order", "enjoy"]], "prefix": "low-intermediate"}
|
392 |
+
{"stem": ["adorable", "cute"], "answer": 3, "choice": [["obvious", "mysterious"], ["unkind", "happy"], ["polite", "common"], ["tragic", "sad"]], "prefix": "low-intermediate"}
|
393 |
+
{"stem": ["priceless", "valuable"], "answer": 0, "choice": [["wonderful", "good"], ["temporary", "eternal"], ["distant", "far"], ["new", "original"]], "prefix": "low-intermediate"}
|
394 |
+
{"stem": ["loathe", "dislike"], "answer": 2, "choice": [["praise", "enjoy"], ["watch", "observe"], ["worship", "admire"], ["burn", "scorch"]], "prefix": "low-intermediate"}
|
395 |
+
{"stem": ["cotton", "cloth"], "answer": 1, "choice": [["trust", "pleasure"], ["joy", "emotion"], ["rain", "snow"], ["music", "piano"]], "prefix": "low-intermediate"}
|
396 |
+
{"stem": ["policeman", "enforce"], "answer": 1, "choice": [["politician", "destroy"], ["judge", "uphold"], ["mother", "teach"], ["television", "inform"]], "prefix": "low-intermediate"}
|
397 |
+
{"stem": ["mirror", "reflect"], "answer": 1, "choice": [["preacher", "cook"], ["telescope", "magnify"], ["nurse", "smoke"], ["lock", "unlock"]], "prefix": "low-intermediate"}
|
398 |
+
{"stem": ["help", "hinder"], "answer": 0, "choice": [["hurry", "delay"], ["travel", "fly"], ["steal", "take"], ["smile", "laugh"]], "prefix": "low-intermediate"}
|
399 |
+
{"stem": ["apathetic", "motivation"], "answer": 3, "choice": [["brilliant", "ideas"], ["active", "technology"], ["employed", "money"], ["lonesome", "company"]], "prefix": "low-intermediate"}
|
400 |
+
{"stem": ["outdated", "modern"], "answer": 0, "choice": [["beautiful", "ugly"], ["happy", "glad"], ["successful", "rich"], ["curious", "smart"]], "prefix": "low-intermediate"}
|
401 |
+
{"stem": ["butcher", "meat"], "answer": 3, "choice": [["maid", "chores"], ["teacher", "knowledge"], ["librarian", "books"], ["baker", "bread"]], "prefix": "low-intermediate"}
|
402 |
+
{"stem": ["positive", "negative"], "answer": 0, "choice": [["clean", "filthy"], ["angry", "upset"], ["friendly", "popular"], ["challenging", "interesting"]], "prefix": "low-intermediate"}
|
403 |
+
{"stem": ["strange", "familiar"], "answer": 3, "choice": [["easy", "simple"], ["great", "good"], ["pretty", "sour"], ["sick", "healthy"]], "prefix": "low-intermediate"}
|
404 |
+
{"stem": ["comedy", "funny"], "answer": 2, "choice": [["mystery", "boring"], ["drama", "romantic"], ["tragedy", "sad"], ["newspaper", "expensive"]], "prefix": "low-intermediate"}
|
405 |
+
{"stem": ["daffodil", "plant"], "answer": 2, "choice": [["spider", "insect"], ["fortune", "money"], ["diamond", "stone"], ["planet", "star"]], "prefix": "low-intermediate"}
|
406 |
+
{"stem": ["root", "plant"], "answer": 0, "choice": [["blade", "knife"], ["pot", "pan"], ["microphone", "radio"], ["television", "satellite"]], "prefix": "low-intermediate"}
|
407 |
+
{"stem": ["extravagant", "modesty"], "answer": 3, "choice": [["arrogant", "money"], ["bitter", "remorse"], ["disappointed", "stress"], ["unready", "preparation"]], "prefix": "low-intermediate"}
|
408 |
+
{"stem": ["ingredient", "recipe"], "answer": 2, "choice": [["moral", "story"], ["chair", "table"], ["roof", "house"], ["map", "plan"]], "prefix": "low-intermediate"}
|
409 |
+
{"stem": ["plant", "garden"], "answer": 2, "choice": [["head", "face"], ["motorcycle", "wheel"], ["buckle", "belt"], ["idea", "plan"]], "prefix": "low-intermediate"}
|
410 |
+
{"stem": ["stage", "theater"], "answer": 1, "choice": [["march", "belief"], ["jacket", "suit"], ["fruit", "apple"], ["windmill", "wind"]], "prefix": "low-intermediate"}
|
411 |
+
{"stem": ["cigarette", "unhealthy"], "answer": 0, "choice": [["sin", "immoral"], ["baby", "wise"], ["husband", "rich"], ["nation", "peaceful"]], "prefix": "low-intermediate"}
|
412 |
+
{"stem": ["wool", "sheep"], "answer": 0, "choice": [["leather", "cows"], ["metal", "trees"], ["paper", "rocks"], ["wood", "mountains"]], "prefix": "low-intermediate"}
|
413 |
+
{"stem": ["optimism", "pesimissm"], "answer": 0, "choice": [["success", "failure"], ["food", "hunger"], ["motivation", "dedication"], ["maturity", "youth"]], "prefix": "low-intermediate"}
|
414 |
+
{"stem": ["bright", "dull"], "answer": 3, "choice": [["obvious", "clear"], ["guilty", "wrong"], ["secret", "hidden"], ["ordinary", "unusual"]], "prefix": "low-intermediate"}
|
415 |
+
{"stem": ["microwave", "heat"], "answer": 0, "choice": [["refrigerator", "cool"], ["freezer", "cook"], ["sink", "organize"], ["fireplace", "destroy"]], "prefix": "low-intermediate"}
|
416 |
+
{"stem": ["apple", "tree"], "answer": 2, "choice": [["cow", "field"], ["wish", "dream"], ["pearl", "clam"], ["tooth", "sandwich"]], "prefix": "low-intermediate"}
|
417 |
+
{"stem": ["orphan", "parents"], "answer": 0, "choice": [["prisoner", "freedom"], ["doctor", "patience"], ["man", "feelings"], ["star", "space"]], "prefix": "low-intermediate"}
|
418 |
+
{"stem": ["mansion", "large"], "answer": 1, "choice": [["tree", "free"], ["suit", "formal"], ["car", "safe"], ["ladder", "low"]], "prefix": "low-intermediate"}
|
419 |
+
{"stem": ["insecure", "confidence"], "answer": 1, "choice": [["disabled", "worth"], ["certain", "doubt"], ["unemployed", "hope"], ["elegant", "sympathy"]], "prefix": "low-intermediate"}
|
420 |
+
{"stem": ["house", "shelter"], "answer": 0, "choice": [["fire", "heat"], ["tire", "wheels"], ["mother", "children"], ["cow", "meat"]], "prefix": "low-intermediate"}
|
421 |
+
{"stem": ["pain", "discomfort"], "answer": 0, "choice": [["carelessness", "mistakes"], ["ignorance", "knowledge"], ["laughter", "jokes"], ["food", "nutrition"]], "prefix": "low-intermediate"}
|
422 |
+
{"stem": ["general", "army"], "answer": 1, "choice": [["queen", "fortress"], ["guide", "expedition"], ["dad", "business"], ["salesman", "sail"]], "prefix": "low-intermediate"}
|
423 |
+
{"stem": ["bald", "hairy"], "answer": 0, "choice": [["overweight", "skinny"], ["large", "huge"], ["strong", "forceful"], ["depressed", "sad"]], "prefix": "low-intermediate"}
|
424 |
+
{"stem": ["humiliated", "embarrassed"], "answer": 1, "choice": [["shy", "timid"], ["enraged", "angry"], ["sad", "upset"], ["excited", "anxious"]], "prefix": "low-intermediate"}
|
425 |
+
{"stem": ["silk", "smooth"], "answer": 1, "choice": [["sunset", "early"], ["night", "dark"], ["literature", "fancy"], ["television", "funny"]], "prefix": "low-intermediate"}
|
426 |
+
{"stem": ["sword", "weapon"], "answer": 1, "choice": [["father", "brother"], ["yacht", "boat"], ["salad", "cake"], ["color", "art"]], "prefix": "low-intermediate"}
|
427 |
+
{"stem": ["mandatory", "optional"], "answer": 1, "choice": [["unwanted", "discarded"], ["destructive", "creative"], ["animated", "happy"], ["pure", "clean"]], "prefix": "low-intermediate"}
|
428 |
+
{"stem": ["liar", "honesty"], "answer": 2, "choice": [["lawyer", "mercy"], ["mother", "children"], ["fool", "wisdom"], ["soldier", "power"]], "prefix": "low-intermediate"}
|
429 |
+
{"stem": ["room", "house"], "answer": 1, "choice": [["beach", "shore"], ["stem", "flower"], ["school", "classroom"], ["tree", "leaf"]], "prefix": "low-intermediate"}
|
430 |
+
{"stem": ["ruby", "gem"], "answer": 3, "choice": [["baseball", "basketball"], ["concert", "music"], ["party", "house"], ["trophy", "prize"]], "prefix": "low-intermediate"}
|
431 |
+
{"stem": ["gigantic", "large"], "answer": 3, "choice": [["new", "strange"], ["little", "small"], ["funny", "important"], ["freezing", "cold"]], "prefix": "low-intermediate"}
|
432 |
+
{"stem": ["almond", "nut"], "answer": 1, "choice": [["hill", "mountain"], ["helicopter", "aircraft"], ["sport", "football"], ["lamp", "lightbulb"]], "prefix": "low-intermediate"}
|
dataset/u4/valid.jsonl
ADDED
@@ -0,0 +1,48 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{"stem": ["platter", "serve"], "answer": 1, "choice": [["fork", "dice"], ["spice", "flavor"], ["nose", "scent"], ["oven", "boil"]], "prefix": "high-intermediate"}
|
2 |
+
{"stem": ["boundless", "limit"], "answer": 3, "choice": [["saintly", "holiness"], ["understandable", "recognition"], ["renewed", "authenticity"], ["unrivaled", "equal"]], "prefix": "high-intermediate"}
|
3 |
+
{"stem": ["unskilled", "expertise"], "answer": 1, "choice": [["vivacious", "intensity"], ["apathetic", "knowledge"], ["tacky", "taste"], ["retired", "enjoyment"]], "prefix": "high-intermediate"}
|
4 |
+
{"stem": ["blaze", "fire"], "answer": 2, "choice": [["decision", "idea"], ["lighthouse", "lamp"], ["warlord", "soldier"], ["tournament", "game"]], "prefix": "high-intermediate"}
|
5 |
+
{"stem": ["beneficial", "detrimental"], "answer": 0, "choice": [["allowed", "forbidden"], ["noteworthy", "important"], ["original", "unique"], ["faithful", "dedicated"]], "prefix": "high-intermediate"}
|
6 |
+
{"stem": ["convict", "guilty"], "answer": 1, "choice": [["clock", "digital"], ["rainforest", "lush"], ["film", "lengthy"], ["parachute", "heavy"]], "prefix": "high-intermediate"}
|
7 |
+
{"stem": ["key", "unlock"], "answer": 1, "choice": [["newspaper", "guide"], ["clothespin", "hang"], ["teacher", "study"], ["mortgage", "bankrupt"]], "prefix": "high-intermediate"}
|
8 |
+
{"stem": ["sunscreen", "sunburn"], "answer": 1, "choice": [["hope", "tornado"], ["vaccination", "disease"], ["carelessness", "accident"], ["dream", "sleep"]], "prefix": "high-intermediate"}
|
9 |
+
{"stem": ["epidemic", "widespread"], "answer": 2, "choice": [["artist", "idealistic"], ["island", "lonesome"], ["emergency", "urgent"], ["intention", "challenged"]], "prefix": "high-intermediate"}
|
10 |
+
{"stem": ["excruciating", "painful"], "answer": 0, "choice": [["baffling", "confusing"], ["upsetting", "exciting"], ["improving", "hopeful"], ["crippling", "stressful"]], "prefix": "high-intermediate"}
|
11 |
+
{"stem": ["clairvoyant", "predict"], "answer": 1, "choice": [["crustacean", "swim"], ["patron", "support"], ["prodigy", "learn"], ["savant", "teach"]], "prefix": "low-advanced"}
|
12 |
+
{"stem": ["heretic", "unorthodox"], "answer": 1, "choice": [["hero", "folksy"], ["braggart", "boastful"], ["javelin", "underhanded"], ["hiatus", "eternal"]], "prefix": "low-advanced"}
|
13 |
+
{"stem": ["colloquial", "formal"], "answer": 3, "choice": [["unbecoming", "improper"], ["resilient", "persistent"], ["perpendicular", "angled"], ["intermittent", "continuous"]], "prefix": "low-advanced"}
|
14 |
+
{"stem": ["buttress", "wall"], "answer": 1, "choice": [["precinct", "city"], ["philanthropist", "charity"], ["cream", "lotion"], ["document", "preamble"]], "prefix": "low-advanced"}
|
15 |
+
{"stem": ["platform", "policies"], "answer": 3, "choice": [["slaughterhouse", "meat"], ["congregation", "churches"], ["hierarchy", "rulers"], ["medley", "songs"]], "prefix": "low-advanced"}
|
16 |
+
{"stem": ["jurisprudence", "law"], "answer": 0, "choice": [["linguistics", "language"], ["botany", "animals"], ["literacy", "letters"], ["astrology", "space"]], "prefix": "low-advanced"}
|
17 |
+
{"stem": ["rebuttal", "refute"], "answer": 1, "choice": [["convulsion", "shudder"], ["message", "inform"], ["emporium", "purchase"], ["henchman", "lead"]], "prefix": "low-advanced"}
|
18 |
+
{"stem": ["volatile", "unstable"], "answer": 1, "choice": [["scholarly", "erudite"], ["persnickety", "picky"], ["entertaining", "jovial"], ["important", "momentous"]], "prefix": "low-advanced"}
|
19 |
+
{"stem": ["misogynist", "feminist"], "answer": 0, "choice": [["modicum", "abundance"], ["reflection", "inversion"], ["priory", "convent"], ["consequence", "action"]], "prefix": "low-advanced"}
|
20 |
+
{"stem": ["miser", "parsimonious"], "answer": 1, "choice": [["humanitarian", "mortal"], ["misanthrope", "antagonistic"], ["doctor", "hospitable"], ["mercenary", "greedy"]], "prefix": "low-advanced"}
|
21 |
+
{"stem": ["expulsion", "school"], "answer": 0, "choice": [["ostracism", "society"], ["reluctance", "hesitation"], ["rebuttal", "debate"], ["gravity", "orbit"], ["exeunt", "drama"]], "prefix": "high-advanced"}
|
22 |
+
{"stem": ["lecher", "salacious"], "answer": 0, "choice": [["conjecture", "supposed"], ["anomaly", "explicable"], ["mosaic", "ruined"], ["pastry", "bitter"], ["rabbi", "foreign"]], "prefix": "high-advanced"}
|
23 |
+
{"stem": ["heart", "cardiac"], "answer": 2, "choice": [["teenager", "neonatal"], ["piano", "Italian"], ["tree", "arboreal"], ["syringe", "medical"], ["electricity", "static"]], "prefix": "high-advanced"}
|
24 |
+
{"stem": ["blandishment", "coax"], "answer": 3, "choice": [["directory", "telephone"], ["pavilion", "promenade"], ["surplus", "squander"], ["eulogy", "praise"], ["controversy", "placate"]], "prefix": "high-advanced"}
|
25 |
+
{"stem": ["tripod", "camera"], "answer": 4, "choice": [["frame", "painting"], ["television", "screen"], ["roof", "edifice"], ["butcher", "meat"], ["easel", "canvas"]], "prefix": "high-advanced"}
|
26 |
+
{"stem": ["defendant", "plaintiff"], "answer": 2, "choice": [["predator", "ecosystem"], ["talent", "prodigy"], ["victim", "assailant"], ["juror", "prosecutor"], ["builder", "architect"]], "prefix": "high-advanced"}
|
27 |
+
{"stem": ["laconic", "concise"], "answer": 1, "choice": [["obdurate", "cooperative"], ["ephemeral", "fleeting"], ["malleable", "unchanging"], ["vindictive", "forgiving"], ["equivocal", "certain"]], "prefix": "high-advanced"}
|
28 |
+
{"stem": ["wretched", "cheerful"], "answer": 1, "choice": [["territorial", "terrestrial"], ["innocuous", "dangerous"], ["floundering", "struggling"], ["redacted", "censored"], ["solitary", "confined"]], "prefix": "high-advanced"}
|
29 |
+
{"stem": ["robin", "bird"], "answer": 0, "choice": [["pear", "fruit"], ["cucumber", "onion"], ["cow", "calf"], ["lamp", "table"]], "prefix": "high-beginning"}
|
30 |
+
{"stem": ["cushion", "sofa"], "answer": 0, "choice": [["faucet", "sink"], ["toilet", "kitchen"], ["necklace", "dress"], ["dollar", "wallet"]], "prefix": "high-beginning"}
|
31 |
+
{"stem": ["eyes", "see"], "answer": 1, "choice": [["hands", "cry"], ["ears", "hear"], ["feet", "talk"], ["teeth", "think"]], "prefix": "high-beginning"}
|
32 |
+
{"stem": ["clock", "time"], "answer": 1, "choice": [["building", "height"], ["ruler", "length"], ["pool", "depth"], ["sun", "light"]], "prefix": "high-beginning"}
|
33 |
+
{"stem": ["giant", "large"], "answer": 2, "choice": [["scary", "bad"], ["new", "expensive"], ["great", "good"], ["funny", "annoying"]], "prefix": "high-beginning"}
|
34 |
+
{"stem": ["sad", "happiness"], "answer": 0, "choice": [["weak", "strength"], ["sweet", "flavor"], ["fast", "time"], ["pretty", "beauty"]], "prefix": "high-beginning"}
|
35 |
+
{"stem": ["ecstatic", "happy"], "answer": 0, "choice": [["depressed", "sad"], ["thick", "thin"], ["terrible", "easy"], ["amazing", "poor"]], "prefix": "high-beginning"}
|
36 |
+
{"stem": ["dead", "life"], "answer": 1, "choice": [["cold", "temperature"], ["perfect", "error"], ["loud", "noise"], ["yellow", "color"]], "prefix": "high-beginning"}
|
37 |
+
{"stem": ["fork", "eat"], "answer": 2, "choice": [["calculator", "think"], ["phone", "touch"], ["flashlight", "see"], ["computer", "drink"]], "prefix": "high-beginning"}
|
38 |
+
{"stem": ["play", "work"], "answer": 0, "choice": [["laugh", "cry"], ["eat", "talk"], ["run", "walk"], ["see", "hear"]], "prefix": "high-beginning"}
|
39 |
+
{"stem": ["misfortune", "luck"], "answer": 0, "choice": [["victory", "defeat"], ["coffee", "tea"], ["life", "birth"], ["sugar", "salt"]], "prefix": "low-intermediate"}
|
40 |
+
{"stem": ["ruthless", "pity"], "answer": 0, "choice": [["neutral", "prejudice"], ["challenged", "rivals"], ["gullible", "truth"], ["childish", "speech"]], "prefix": "low-intermediate"}
|
41 |
+
{"stem": ["skeptical", "belief"], "answer": 1, "choice": [["unpopular", "wealth"], ["homeless", "shelter"], ["polite", "power"], ["nervous", "stress"]], "prefix": "low-intermediate"}
|
42 |
+
{"stem": ["obscene", "inappropriate"], "answer": 3, "choice": [["impossible", "easy"], ["polite", "rude"], ["tall", "honest"], ["spotless", "clean"]], "prefix": "low-intermediate"}
|
43 |
+
{"stem": ["carefree", "worry"], "answer": 2, "choice": [["upset", "sadness"], ["successful", "money"], ["enslaved", "freedom"], ["talented", "wisdom"]], "prefix": "low-intermediate"}
|
44 |
+
{"stem": ["jewel", "shiny"], "answer": 0, "choice": [["demon", "evil"], ["trick", "magic"], ["cat", "lazy"], ["mother", "helpless"]], "prefix": "low-intermediate"}
|
45 |
+
{"stem": ["scientist", "laboratory"], "answer": 2, "choice": [["librarian", "bookstore"], ["cashier", "hotel"], ["artist", "studio"], ["doctor", "church"]], "prefix": "low-intermediate"}
|
46 |
+
{"stem": ["athlete", "fit"], "answer": 2, "choice": [["chef", "fat"], ["dog", "energetic"], ["priest", "religious"], ["dancer", "intelligent"]], "prefix": "low-intermediate"}
|
47 |
+
{"stem": ["violinist", "orchestra"], "answer": 1, "choice": [["referee", "team"], ["employee", "company"], ["judge", "jury"], ["friend", "family"]], "prefix": "low-intermediate"}
|
48 |
+
{"stem": ["surgeon", "doctor"], "answer": 1, "choice": [["soup", "drink"], ["lollipop", "candy"], ["animal", "bear"], ["house", "hut"]], "prefix": "low-intermediate"}
|