File size: 92,722 Bytes
0ab56fa | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 | [
{
"id": "000",
"noun_compound": "car park",
"context": "delightful en - suite bedrooms , cosy dining room and conservatory lounge overlooking our gardens and private car park . non smoking . waterbury guest house murthly terrace , birnam , perthshire , ph",
"A": "Compositional",
"B": "None of the above",
"C": "Partly compositional",
"D": "Non-compositional",
"target": "C"
},
{
"id": "001",
"noun_compound": "case study",
"context": "meeting this standard in their teaching , the analysis of , for example , video - based case studies of pupils for whom english is an additional language or the preparation of resources might",
"A": "Non-compositional",
"B": "None of the above",
"C": "Partly compositional",
"D": "Compositional",
"target": "D"
},
{
"id": "002",
"noun_compound": "cash cow",
"context": "at the back there . grammar makes for good headlines , unlikely best - sellers and elt cash cows because deep down and for all sorts of reasons we wish it would do a",
"A": "Compositional",
"B": "None of the above",
"C": "Non-compositional",
"D": "Partly compositional",
"target": "C"
},
{
"id": "003",
"noun_compound": "fair play",
"context": "fair play incorporates the concepts of friendship , respect for others and always playing in the right spirit .",
"A": "Compositional",
"B": "Partly compositional",
"C": "None of the above",
"D": "Non-compositional",
"target": "B"
},
{
"id": "004",
"noun_compound": "fairy tale",
"context": "i loved my father ' s old fairy tale books .",
"A": "None of the above",
"B": "Compositional",
"C": "Non-compositional",
"D": "Partly compositional",
"target": "D"
},
{
"id": "005",
"noun_compound": "fall guy",
"context": "and though the chairman and chief executive have been the fall guys , much of the blame that has been placed upon them is a little unfair .",
"A": "None of the above",
"B": "Partly compositional",
"C": "Compositional",
"D": "Non-compositional",
"target": "B"
},
{
"id": "006",
"noun_compound": "chain reaction",
"context": "more modern methods are used to amplify portions of dna , typified by the polymerase chain reaction ( pcr ) . the use of dna sequencing has rendered distance measures such as",
"A": "Compositional",
"B": "Partly compositional",
"C": "Non-compositional",
"D": "None of the above",
"target": "B"
},
{
"id": "007",
"noun_compound": "field work",
"context": "the arbitrary removal of metal objects from the ground inevitably will jeopardise both present and future field work .",
"A": "None of the above",
"B": "Non-compositional",
"C": "Compositional",
"D": "Partly compositional",
"target": "D"
},
{
"id": "008",
"noun_compound": "football season",
"context": "every week of the football season there is always a top class football match to watch .",
"A": "None of the above",
"B": "Compositional",
"C": "Non-compositional",
"D": "Partly compositional",
"target": "B"
},
{
"id": "009",
"noun_compound": "fresh water",
"context": "finally , increased fresh water from melting glaciers and sea ice could alter ocean circulation patterns and destabilize regional climate patterns .",
"A": "Compositional",
"B": "Non-compositional",
"C": "None of the above",
"D": "Partly compositional",
"target": "D"
},
{
"id": "010",
"noun_compound": "critical review",
"context": "you may be asked in the course of your studies to write a critical review .",
"A": "Non-compositional",
"B": "Partly compositional",
"C": "Compositional",
"D": "None of the above",
"target": "C"
},
{
"id": "011",
"noun_compound": "ghost town",
"context": "the town centre is now deserted - it ' s almost like a ghost town !",
"A": "Compositional",
"B": "Non-compositional",
"C": "Partly compositional",
"D": "None of the above",
"target": "C"
},
{
"id": "012",
"noun_compound": "cheat sheet",
"context": "malaya , africa , etc . designed for skirmish to company level games . includes cheat sheet ' . . . . 5 . 75 ( plus 70 p p & p ) feba +",
"A": "Non-compositional",
"B": "Partly compositional",
"C": "None of the above",
"D": "Compositional",
"target": "B"
},
{
"id": "013",
"noun_compound": "glass ceiling",
"context": "women are continuing to slowly break through the glass ceiling of uk business and increase their company ' s profitability , according to new research .",
"A": "Partly compositional",
"B": "None of the above",
"C": "Non-compositional",
"D": "Compositional",
"target": "C"
},
{
"id": "014",
"noun_compound": "dead end",
"context": "the house is located on a dead end street .",
"A": "Compositional",
"B": "None of the above",
"C": "Non-compositional",
"D": "Partly compositional",
"target": "C"
},
{
"id": "015",
"noun_compound": "grass root",
"context": "i have asked the arts council to develop strategies to recognise the importance of community , grass roots activity in developing the arts in wales .",
"A": "Non-compositional",
"B": "Compositional",
"C": "Partly compositional",
"D": "None of the above",
"target": "A"
},
{
"id": "016",
"noun_compound": "china clay",
"context": "the ' lunar ' qualities of the landscape , dramatically shaped by the working of china clay , forming peaks and platforms of waste sand and pits often flooded with turquoise green",
"A": "Compositional",
"B": "None of the above",
"C": "Non-compositional",
"D": "Partly compositional",
"target": "D"
},
{
"id": "017",
"noun_compound": "dirty word",
"context": "we spend our formative years being obsessed by the city and considering suburb as a dirty word .",
"A": "Partly compositional",
"B": "None of the above",
"C": "Non-compositional",
"D": "Compositional",
"target": "A"
},
{
"id": "018",
"noun_compound": "hard drive",
"context": "all these temporary files will slow down your computer , take up space on your hard drive ( memory ) .",
"A": "Non-compositional",
"B": "Partly compositional",
"C": "Compositional",
"D": "None of the above",
"target": "B"
},
{
"id": "019",
"noun_compound": "climate change",
"context": "more energy - saving cars . last and not least , at the international summit meeting on climate change in kyoto in 1997 , all countries agreed to make cuts in their production of",
"A": "None of the above",
"B": "Compositional",
"C": "Partly compositional",
"D": "Non-compositional",
"target": "B"
},
{
"id": "020",
"noun_compound": "academy award",
"context": "lardner shared an academy award for best original screenplay with michael kanin in 1942 for woman of the year",
"A": "Compositional",
"B": "Partly compositional",
"C": "Non-compositional",
"D": "None of the above",
"target": "B"
},
{
"id": "021",
"noun_compound": "cloud nine",
"context": "her to do any more work that night was an impossibility ; she was on cloud nine ! ” remembers fenia . \" jill was not only a genuine and natural warm",
"A": "Partly compositional",
"B": "Compositional",
"C": "Non-compositional",
"D": "None of the above",
"target": "C"
},
{
"id": "022",
"noun_compound": "head hunter",
"context": "for a head hunter , networking is all about visibility and profile .",
"A": "Partly compositional",
"B": "Non-compositional",
"C": "None of the above",
"D": "Compositional",
"target": "B"
},
{
"id": "023",
"noun_compound": "divine service",
"context": "after restoration in 1876 and again in 1905 , the building re - opened for divine service .",
"A": "None of the above",
"B": "Partly compositional",
"C": "Non-compositional",
"D": "Compositional",
"target": "D"
},
{
"id": "024",
"noun_compound": "arcade game",
"context": "the monkey in the game is king kong and it is another version of the classic arcade game donkey kong .",
"A": "Partly compositional",
"B": "Compositional",
"C": "None of the above",
"D": "Non-compositional",
"target": "A"
},
{
"id": "025",
"noun_compound": "baby blues",
"context": "while as many as 80 % of mothers experience a temporary and mild condition referred to as the baby blues , up to 15 % of women have the more severe reaction you ' re experiencing .",
"A": "Compositional",
"B": "None of the above",
"C": "Partly compositional",
"D": "Non-compositional",
"target": "C"
},
{
"id": "026",
"noun_compound": "cocktail dress",
"context": "ladies ) . formal evenings require a suit or dinner jacket for men and a cocktail dress for ladies . the rating for children is very good . facilities for children are",
"A": "None of the above",
"B": "Compositional",
"C": "Non-compositional",
"D": "Partly compositional",
"target": "D"
},
{
"id": "027",
"noun_compound": "health care",
"context": "his interests are effectiveness of public health interventions and the measurement of health care performance , including alternative medicines .",
"A": "None of the above",
"B": "Non-compositional",
"C": "Compositional",
"D": "Partly compositional",
"target": "C"
},
{
"id": "028",
"noun_compound": "law firm",
"context": "and israel . since the 60 s , clintons , as one of the leading law firms in the music industry , has represented artists in the pop , rock and classical",
"A": "None of the above",
"B": "Partly compositional",
"C": "Non-compositional",
"D": "Compositional",
"target": "D"
},
{
"id": "029",
"noun_compound": "heavy cross",
"context": "having to pay back university top - up fees is a heavy cross to carry , especially for those graduates from less well - off homes .",
"A": "Partly compositional",
"B": "Non-compositional",
"C": "None of the above",
"D": "Compositional",
"target": "B"
},
{
"id": "030",
"noun_compound": "backroom boy",
"context": "there are lots of technical and scientific staff whom you never see who are deeply involved in your disease : they often get forgotten as ' backroom boys and girls '",
"A": "Non-compositional",
"B": "Partly compositional",
"C": "Compositional",
"D": "None of the above",
"target": "A"
},
{
"id": "031",
"noun_compound": "couch potato",
"context": ", \" he added . the ultimate aim of the project is good news for couch potatoes everywhere - to give patients ' bones the benefits of exercise without having to exert",
"A": "None of the above",
"B": "Partly compositional",
"C": "Non-compositional",
"D": "Compositional",
"target": "C"
},
{
"id": "032",
"noun_compound": "hen party",
"context": "you can spot the stag and hen parties easily because they always dress in stupid outfits or matching t - shirts with their names printed on .",
"A": "Non-compositional",
"B": "Partly compositional",
"C": "Compositional",
"D": "None of the above",
"target": "B"
},
{
"id": "033",
"noun_compound": "crash course",
"context": "continued on its ground level flight a skein of geese came flying across on a crash course and both had to take emergency manoeuvres to avoid each other - the soldier sat",
"A": "Partly compositional",
"B": "Non-compositional",
"C": "Compositional",
"D": "None of the above",
"target": "B"
},
{
"id": "034",
"noun_compound": "lip service",
"context": ". \" when we advocate sustainable development of air transport , we are not paying lip service to the environment , rather we are calling for a comprehensive set of measures to",
"A": "Partly compositional",
"B": "Compositional",
"C": "None of the above",
"D": "Non-compositional",
"target": "D"
},
{
"id": "035",
"noun_compound": "bad apple",
"context": "the problem for them , of course , is how to explain how these few bad apples managed to stay in place for so many years .",
"A": "Partly compositional",
"B": "Non-compositional",
"C": "None of the above",
"D": "Compositional",
"target": "A"
},
{
"id": "036",
"noun_compound": "credit card",
"context": "button to confirm the order placed . the client shall provide his / her credit card details , the type , the expiry date and the security code ( 3 last",
"A": "Partly compositional",
"B": "Compositional",
"C": "Non-compositional",
"D": "None of the above",
"target": "B"
},
{
"id": "037",
"noun_compound": "home run",
"context": "ou can ' t hit a home run every time up at bat , but at least i want to show that i ' m trying my best .",
"A": "Compositional",
"B": "None of the above",
"C": "Non-compositional",
"D": "Partly compositional",
"target": "D"
},
{
"id": "038",
"noun_compound": "banana republic",
"context": "the result is our roads are more congested than ever before ; so congested , indeed , that we seem less like the world ' s fourth - largest economy and more like the most inept banana republic .",
"A": "None of the above",
"B": "Non-compositional",
"C": "Partly compositional",
"D": "Compositional",
"target": "B"
},
{
"id": "039",
"noun_compound": "crocodile tear",
"context": "one less hour for debate , so those on the tory front bench are shedding crocodile tears . listening to the debates on some of the amendments this afternoon , i felt",
"A": "Compositional",
"B": "Non-compositional",
"C": "None of the above",
"D": "Partly compositional",
"target": "B"
},
{
"id": "040",
"noun_compound": "lotus position",
"context": "them as they go . they might tuck their legs under their groin in a lotus position , increasing their flexibility and movement of limbs and help them to release their stiffness",
"A": "Compositional",
"B": "None of the above",
"C": "Non-compositional",
"D": "Partly compositional",
"target": "D"
},
{
"id": "041",
"noun_compound": "eager beaver",
"context": "if you are a really eager beaver you can pre - order the dvd now from either of the below retailers .",
"A": "Partly compositional",
"B": "None of the above",
"C": "Non-compositional",
"D": "Compositional",
"target": "C"
},
{
"id": "042",
"noun_compound": "bankruptcy proceeding",
"context": "geoffrey richmond was today the subject of bankruptcy proceedings at leeds crown court with debts of around £ 3 . 3 million following the collapse of a business .",
"A": "Partly compositional",
"B": "Compositional",
"C": "None of the above",
"D": "Non-compositional",
"target": "B"
},
{
"id": "043",
"noun_compound": "mailing list",
"context": ". for the keen , it has more information about the commands used by the mailing list software . if your confirmation e - mail went through successfully , you will be sent an",
"A": "Partly compositional",
"B": "Non-compositional",
"C": "None of the above",
"D": "Compositional",
"target": "D"
},
{
"id": "044",
"noun_compound": "cutting edge",
"context": "it is committed to it ' s continued development of new products and the implementation of cutting edge online coaching educational services . our company will be launching several new and exciting projects",
"A": "Compositional",
"B": "Partly compositional",
"C": "Non-compositional",
"D": "None of the above",
"target": "C"
},
{
"id": "045",
"noun_compound": "economic aid",
"context": "a government ' s success in reducing population movement should be a key factor in allocating economic aid .",
"A": "Non-compositional",
"B": "Partly compositional",
"C": "Compositional",
"D": "None of the above",
"target": "C"
},
{
"id": "046",
"noun_compound": "honey trap",
"context": "by planting a local weed ( napier grass ) , pests are lured away from the corn into a honey trap .",
"A": "None of the above",
"B": "Compositional",
"C": "Non-compositional",
"D": "Partly compositional",
"target": "D"
},
{
"id": "047",
"noun_compound": "melting pot",
"context": "ranging from irish folk to music from asia minor ; zuba - providing a global melting pot of world beat flavours , afro beat influences and traditional folk - based lyrical tales ; barrioviejo",
"A": "None of the above",
"B": "Partly compositional",
"C": "Non-compositional",
"D": "Compositional",
"target": "C"
},
{
"id": "048",
"noun_compound": "basket case",
"context": "i ' d forgotten what a basket case i am at the end of pregnancy ( mind you , last time i was for the whole 9 months !",
"A": "None of the above",
"B": "Compositional",
"C": "Non-compositional",
"D": "Partly compositional",
"target": "C"
},
{
"id": "049",
"noun_compound": "diamond wedding",
"context": "beck cyril & sylvia congratulations on your beck cyril & sylvia congratulations on your diamond wedding anniversarie july 20 th 2006 much love from melvyn , margaret , stewart , pam",
"A": "None of the above",
"B": "Compositional",
"C": "Non-compositional",
"D": "Partly compositional",
"target": "C"
},
{
"id": "050",
"noun_compound": "elbow grease",
"context": "it may be that the pay - off for using bleach free products is a little more elbow grease !",
"A": "Non-compositional",
"B": "Compositional",
"C": "Partly compositional",
"D": "None of the above",
"target": "A"
},
{
"id": "051",
"noun_compound": "memory lane",
"context": "sussex county council ' s children ' s services as \" excel more » trip down memory lane from the early 1940 ' s when beaches were a heavily defended no go area ,",
"A": "Compositional",
"B": "None of the above",
"C": "Non-compositional",
"D": "Partly compositional",
"target": "D"
},
{
"id": "052",
"noun_compound": "end user",
"context": "appropriate ro systems , there are far fewer with the resources and expertise to help end users maximise the return on their investment once the installation and commissioning engineers⠊ ™ work",
"A": "Compositional",
"B": "None of the above",
"C": "Non-compositional",
"D": "Partly compositional",
"target": "D"
},
{
"id": "053",
"noun_compound": "incubation period",
"context": "the incubation period , from exposure to the appearance of the rash , is usually 14 to 21 days .",
"A": "Compositional",
"B": "Non-compositional",
"C": "Partly compositional",
"D": "None of the above",
"target": "A"
},
{
"id": "054",
"noun_compound": "elbow room",
"context": "under one - party - rule there was no elbow room for the democratisation of taiwan .",
"A": "Compositional",
"B": "Partly compositional",
"C": "None of the above",
"D": "Non-compositional",
"target": "D"
},
{
"id": "055",
"noun_compound": "engine room",
"context": "1916 , hms king edward vii was mined off cape wrath , and with both engine rooms flooded hms king edward vii capsized 12 hours later and sunk . kinsha name origin",
"A": "Non-compositional",
"B": "Compositional",
"C": "None of the above",
"D": "Partly compositional",
"target": "B"
},
{
"id": "056",
"noun_compound": "information age",
"context": "computers are playing an ever increasing role in the delivery of education and training , and are indeed the nexus of the information age .",
"A": "Non-compositional",
"B": "Compositional",
"C": "None of the above",
"D": "Partly compositional",
"target": "B"
},
{
"id": "057",
"noun_compound": "best man",
"context": "all stories aside neil is a great mate and it made me extremely proud to be asked to be his best man",
"A": "Compositional",
"B": "None of the above",
"C": "Partly compositional",
"D": "Non-compositional",
"target": "C"
},
{
"id": "058",
"noun_compound": "eye candy",
"context": "claw . the central characters are great too , eriko sato is more than just eye candy as honey ( although she is absolutely stunning , and spends several scenes running around",
"A": "Partly compositional",
"B": "None of the above",
"C": "Compositional",
"D": "Non-compositional",
"target": "D"
},
{
"id": "059",
"noun_compound": "injury time",
"context": "sam was replaced in injury time having just missed a try scoring opportunity .",
"A": "Non-compositional",
"B": "None of the above",
"C": "Partly compositional",
"D": "Compositional",
"target": "C"
},
{
"id": "060",
"noun_compound": "monkey business",
"context": "the lessons . ' in o ' brien ' s case the prosecutor said \" clearly monkey business \" had occurred with police notes . in interrogation i was offered £ 10 , 000 to",
"A": "Partly compositional",
"B": "Non-compositional",
"C": "None of the above",
"D": "Compositional",
"target": "B"
},
{
"id": "061",
"noun_compound": "face value",
"context": "a total of 145 , 000 coins , and you ' ve got a tonne . on their face value , those coins are worth just £ 2 , 900 . but taking them to a scrap",
"A": "None of the above",
"B": "Partly compositional",
"C": "Compositional",
"D": "Non-compositional",
"target": "D"
},
{
"id": "062",
"noun_compound": "big cheese",
"context": "i ' ve just spent a week trawling round silicon valley , talking to a mix of developers , entrepreneurs , venture capitalists , industry observers and big cheeses from well established companies .",
"A": "Compositional",
"B": "None of the above",
"C": "Partly compositional",
"D": "Non-compositional",
"target": "D"
},
{
"id": "063",
"noun_compound": "nest egg",
"context": "allowing younger workers to save some of their taxes in a personal accountÍ - - a nest egg you can call your own , and government can never take away . in all",
"A": "Compositional",
"B": "Partly compositional",
"C": "None of the above",
"D": "Non-compositional",
"target": "D"
},
{
"id": "064",
"noun_compound": "big picture",
"context": "whilst we ' re relieved that this is the outcome of the chancellor ' s deliberations over uk sports ' proposals , the government also has to look at the big picture .",
"A": "Partly compositional",
"B": "Non-compositional",
"C": "Compositional",
"D": "None of the above",
"target": "B"
},
{
"id": "065",
"noun_compound": "night owl",
"context": "constant battle for us , as he is a morning person & i am a night owl , so i find that going to sleep at 9 . 30 really cuts out the best",
"A": "Compositional",
"B": "Non-compositional",
"C": "None of the above",
"D": "Partly compositional",
"target": "B"
},
{
"id": "066",
"noun_compound": "eternal rest",
"context": "the passengers , with early morning porridge complexions , don ' t look far from eternal rest .",
"A": "None of the above",
"B": "Compositional",
"C": "Partly compositional",
"D": "Non-compositional",
"target": "C"
},
{
"id": "067",
"noun_compound": "fashion plate",
"context": "9 ) . dr alice mackrell , a costume historian specializing in the history of fashion plates , is also the author of several books , including art and fashion ( isbn",
"A": "Partly compositional",
"B": "None of the above",
"C": "Non-compositional",
"D": "Compositional",
"target": "C"
},
{
"id": "068",
"noun_compound": "fish story",
"context": "i have a fish story to tell you .",
"A": "None of the above",
"B": "Non-compositional",
"C": "Compositional",
"D": "Partly compositional",
"target": "D"
},
{
"id": "069",
"noun_compound": "big wig",
"context": "the popstar turned dj has been booked as a panellist on the bbc ' s question time , a slot more usually reserved for political big wigs and the like .",
"A": "Partly compositional",
"B": "Compositional",
"C": "Non-compositional",
"D": "None of the above",
"target": "C"
},
{
"id": "070",
"noun_compound": "jet lag",
"context": "this is similar to jet lag , where rapid travel between time zones means that you find yourself awake when everybody else is asleep",
"A": "Partly compositional",
"B": "None of the above",
"C": "Non-compositional",
"D": "Compositional",
"target": "A"
},
{
"id": "071",
"noun_compound": "number crunching",
"context": "for developing speaking and listening skills ! and then there are those who enjoy the number crunching . kieran and joe in miss moran ' s class ensure that our score boards are",
"A": "Non-compositional",
"B": "Compositional",
"C": "Partly compositional",
"D": "None of the above",
"target": "C"
},
{
"id": "072",
"noun_compound": "fine line",
"context": "particular aircraft . i also have to define the control surfaces , probably with ' fine line decals ' . the small size of my models means that some components have to",
"A": "Compositional",
"B": "Non-compositional",
"C": "None of the above",
"D": "Partly compositional",
"target": "D"
},
{
"id": "073",
"noun_compound": "flower child",
"context": "in the sixties , one would have called her a flower child , in the sense that she does n ' t pursue life with a fixed agenda or timetable of ambitions .",
"A": "Compositional",
"B": "Non-compositional",
"C": "Partly compositional",
"D": "None of the above",
"target": "B"
},
{
"id": "074",
"noun_compound": "panda car",
"context": "night at 11 . 00 p . m . some two years earlier he had followed a cyclist in his panda car from the village , hoping that the man would realise he had failed to switch",
"A": "Compositional",
"B": "Non-compositional",
"C": "Partly compositional",
"D": "None of the above",
"target": "B"
},
{
"id": "075",
"noun_compound": "biological clock",
"context": "the biological clock ticks — but slowly it is not so bad to delay having a first baby until your thirties , according to professor john mirowsky .",
"A": "Non-compositional",
"B": "Compositional",
"C": "Partly compositional",
"D": "None of the above",
"target": "B"
},
{
"id": "076",
"noun_compound": "firing line",
"context": "that are forced to be more responsible , because they are the ones in the firing line . ' if you are going to have a go at fast food , you",
"A": "Non-compositional",
"B": "None of the above",
"C": "Compositional",
"D": "Partly compositional",
"target": "D"
},
{
"id": "077",
"noun_compound": "job fair",
"context": "update your cv and visit plenty of career fairs , brush up on your interview techniques , ensure you dry - clean your best , plain suit in advance of any job fairs .",
"A": "Compositional",
"B": "None of the above",
"C": "Partly compositional",
"D": "Non-compositional",
"target": "A"
},
{
"id": "078",
"noun_compound": "black box",
"context": "smart sensors are sold as black boxes despite the fact that their safety justification might require knowledge of their internal structure and development process .",
"A": "None of the above",
"B": "Non-compositional",
"C": "Partly compositional",
"D": "Compositional",
"target": "B"
},
{
"id": "079",
"noun_compound": "foot soldier",
"context": "the role of the working class was not to be a foot soldier of the actions of a \" left - wing \" reforming government .",
"A": "Non-compositional",
"B": "None of the above",
"C": "Partly compositional",
"D": "Compositional",
"target": "A"
},
{
"id": "080",
"noun_compound": "leap year",
"context": "it comprises 12 months of 30 days , plus 5 days ( 6 in a leap year ) ; each month has 3 decades of 10 days .",
"A": "Compositional",
"B": "None of the above",
"C": "Partly compositional",
"D": "Non-compositional",
"target": "C"
},
{
"id": "081",
"noun_compound": "flea market",
"context": "commission on each listing and sale . some people view the site as an online flea market where supply and demand dictate prices . whatever you call it , ebay has built",
"A": "Partly compositional",
"B": "None of the above",
"C": "Non-compositional",
"D": "Compositional",
"target": "C"
},
{
"id": "082",
"noun_compound": "front man",
"context": "john paul ii was an effective front man for the catholic church .",
"A": "Partly compositional",
"B": "Compositional",
"C": "None of the above",
"D": "Non-compositional",
"target": "D"
},
{
"id": "083",
"noun_compound": "front runner",
"context": ". on 11 october 2005 the first round of presidential elections were held . the front runner george weah led the field with 28 % followed by former world bank official ellen",
"A": "None of the above",
"B": "Partly compositional",
"C": "Non-compositional",
"D": "Compositional",
"target": "B"
},
{
"id": "084",
"noun_compound": "goose egg",
"context": "and he has a black goose egg on his forehead .",
"A": "Non-compositional",
"B": "Compositional",
"C": "Partly compositional",
"D": "None of the above",
"target": "A"
},
{
"id": "085",
"noun_compound": "black operation",
"context": "on the one hand the cia acquired $ 4 billion for use in future black operations .",
"A": "Non-compositional",
"B": "Compositional",
"C": "None of the above",
"D": "Partly compositional",
"target": "D"
},
{
"id": "086",
"noun_compound": "love song",
"context": "the romance in moulin rouge breathes thanks to the love songs that his protagonists sing .",
"A": "Non-compositional",
"B": "None of the above",
"C": "Compositional",
"D": "Partly compositional",
"target": "C"
},
{
"id": "087",
"noun_compound": "parking lot",
"context": "shopping , the first thing to remember is that you should not park in the parking lot and walk to the mall buildings , because you will probably get killed . instead",
"A": "None of the above",
"B": "Partly compositional",
"C": "Compositional",
"D": "Non-compositional",
"target": "C"
},
{
"id": "088",
"noun_compound": "blind alley",
"context": "the science of economics has been led up a blind alley by theories that have made it seem increasingly remote and unreal to anyone outside the academic community .",
"A": "Compositional",
"B": "Non-compositional",
"C": "Partly compositional",
"D": "None of the above",
"target": "B"
},
{
"id": "089",
"noun_compound": "game plan",
"context": "and doing showcases , i had lots of irons in the fire . the only game plan i had was when to finish university , which was when everyone else was getting",
"A": "Partly compositional",
"B": "None of the above",
"C": "Non-compositional",
"D": "Compositional",
"target": "A"
},
{
"id": "090",
"noun_compound": "grey matter",
"context": "give your grey matter the workout that it needs to stay sharp and focused .",
"A": "Non-compositional",
"B": "None of the above",
"C": "Compositional",
"D": "Partly compositional",
"target": "A"
},
{
"id": "091",
"noun_compound": "pecking order",
"context": ". i know you can say that birds are only too keen to demonstrate the pecking order and some may conveniently be described as bullies . but by and large everyone gets",
"A": "None of the above",
"B": "Partly compositional",
"C": "Compositional",
"D": "Non-compositional",
"target": "B"
},
{
"id": "092",
"noun_compound": "low profile",
"context": "i ' ve written the guestbook myself in asp and it was the shock that someone was targeting my low profile site which i found a bit creepy .",
"A": "Compositional",
"B": "Partly compositional",
"C": "None of the above",
"D": "Non-compositional",
"target": "D"
},
{
"id": "093",
"noun_compound": "gold mine",
"context": "gardeners watching gordon taylor and guy cooper in action is like stumbling across a tv gold mine ! apart from their instant star appeal , this is a funny and charming duo",
"A": "None of the above",
"B": "Compositional",
"C": "Partly compositional",
"D": "Non-compositional",
"target": "C"
},
{
"id": "094",
"noun_compound": "blood bath",
"context": "what was meant to be the perfect crime turns into a nasty gang war resulting in a blood bath on the glorious streets of 1950s paris .",
"A": "Non-compositional",
"B": "Compositional",
"C": "Partly compositional",
"D": "None of the above",
"target": "A"
},
{
"id": "095",
"noun_compound": "graduate student",
"context": "as a dunn student , you also become a member of a wider community of graduate students on the hospital site . we ' ve recently begun to have closer contact with students",
"A": "Non-compositional",
"B": "Compositional",
"C": "Partly compositional",
"D": "None of the above",
"target": "B"
},
{
"id": "096",
"noun_compound": "polo shirt",
"context": "we went to guernsey last september we were all decked out in a specific tour polo shirt . we looked the best team there and everyone knew who we were ( this",
"A": "Compositional",
"B": "Partly compositional",
"C": "None of the above",
"D": "Non-compositional",
"target": "B"
},
{
"id": "097",
"noun_compound": "blue blood",
"context": "the cloister attracted vacationing blue bloods , drawn by its old world ambience - the coolidges , the eisenhowers and carters would come to play bingo in the lounge and dance the cha - cha in the ballroom .",
"A": "Partly compositional",
"B": "Compositional",
"C": "None of the above",
"D": "Non-compositional",
"target": "D"
},
{
"id": "098",
"noun_compound": "grandfather clock",
"context": "died . details of any special gifts you wish to make ( e . g . jewellery , grandfather clock etc . ) details of any legacies you wish to make ( e . g . £ 500 to",
"A": "Compositional",
"B": "Non-compositional",
"C": "Partly compositional",
"D": "None of the above",
"target": "B"
},
{
"id": "099",
"noun_compound": "medical procedure",
"context": "accidental exposures in radiotherapy continue to occur ; radiation injuries continue to be caused in interventional medical procedures .",
"A": "None of the above",
"B": "Partly compositional",
"C": "Compositional",
"D": "Non-compositional",
"target": "C"
},
{
"id": "100",
"noun_compound": "public service",
"context": "needs to be improved . the freeing - up of radio spectrum for new applications and modernising public services both need to be sped up too , the authors say . reding added :",
"A": "Non-compositional",
"B": "Partly compositional",
"C": "None of the above",
"D": "Compositional",
"target": "D"
},
{
"id": "101",
"noun_compound": "blue print",
"context": "our free health check will give you the blue print to identify , select and measure the key metrics to enable you to better manage your service delivery .",
"A": "Non-compositional",
"B": "Compositional",
"C": "Partly compositional",
"D": "None of the above",
"target": "A"
},
{
"id": "102",
"noun_compound": "guinea pig",
"context": "but ford has devised a test to prove them wrong - - and i agreed to play guinea pig .",
"A": "Compositional",
"B": "Partly compositional",
"C": "None of the above",
"D": "Non-compositional",
"target": "D"
},
{
"id": "103",
"noun_compound": "graveyard shift",
"context": "in the meyrick suite , bic at 12 . 45 pm . hmm , that ' s the graveyard shift of conference week is n ' t it ? not at all - it ' s the fringe meeting so",
"A": "Partly compositional",
"B": "Compositional",
"C": "Non-compositional",
"D": "None of the above",
"target": "C"
},
{
"id": "104",
"noun_compound": "box office",
"context": "arguably the king of comedy for the last ten years , jim carrey is box office gold .",
"A": "None of the above",
"B": "Non-compositional",
"C": "Compositional",
"D": "Partly compositional",
"target": "B"
},
{
"id": "105",
"noun_compound": "half sister",
"context": "he learns the truth , that his mistress is also his half sister .",
"A": "Partly compositional",
"B": "Compositional",
"C": "Non-compositional",
"D": "None of the above",
"target": "A"
},
{
"id": "106",
"noun_compound": "radio station",
"context": "the times educational supplement ) and as a broadcaster for the bbc and various independent radio stations . he was the editor of books for keeps from 1989 till 1996 when it",
"A": "None of the above",
"B": "Compositional",
"C": "Non-compositional",
"D": "Partly compositional",
"target": "B"
},
{
"id": "107",
"noun_compound": "rat race",
"context": ". some people have felt the light commanding them to opt out of the rat race ' perhaps to abandon a status - driven career path in favour of work that embodies",
"A": "Compositional",
"B": "Partly compositional",
"C": "Non-compositional",
"D": "None of the above",
"target": "C"
},
{
"id": "108",
"noun_compound": "brain drain",
"context": "a flow of scientists in both directions between the us and europe would make the perceived \" brain drain \" of researchers to the former much less of a problem .",
"A": "Partly compositional",
"B": "None of the above",
"C": "Non-compositional",
"D": "Compositional",
"target": "C"
},
{
"id": "109",
"noun_compound": "music journalist",
"context": "other guest speakers include music journalist and radio presenter steve lamacq , music industry lawyer helen searle , whose clients include jamiroquai and moby .",
"A": "Partly compositional",
"B": "Compositional",
"C": "Non-compositional",
"D": "None of the above",
"target": "B"
},
{
"id": "110",
"noun_compound": "gravy train",
"context": "complains , and gains , most from taxes and government - from the federal government gravy train might provide the right with just the kind of crash course in addition and subtraction",
"A": "None of the above",
"B": "Non-compositional",
"C": "Partly compositional",
"D": "Compositional",
"target": "B"
},
{
"id": "111",
"noun_compound": "half wit",
"context": "brock brock , called half wit by the villagers , claims he is a herald .",
"A": "None of the above",
"B": "Non-compositional",
"C": "Partly compositional",
"D": "Compositional",
"target": "B"
},
{
"id": "112",
"noun_compound": "rat run",
"context": "indicates that the problem in brookside is that it is used as a cut - through ( rat run ) . by far the majority of motor vehicles using this narrow street are not",
"A": "Compositional",
"B": "Non-compositional",
"C": "None of the above",
"D": "Partly compositional",
"target": "B"
},
{
"id": "113",
"noun_compound": "noise complaint",
"context": "some of the noise complaints i get relate to incoming planes .",
"A": "Partly compositional",
"B": "Non-compositional",
"C": "Compositional",
"D": "None of the above",
"target": "C"
},
{
"id": "114",
"noun_compound": "bull market",
"context": "taking out the recent bull market , however , it did not even double in value in the 25 years to 1994 .",
"A": "Compositional",
"B": "Partly compositional",
"C": "None of the above",
"D": "Non-compositional",
"target": "B"
},
{
"id": "115",
"noun_compound": "cable car",
"context": "every day offers a new and exciting trip as cable cars and funicular railways transport you throughout the region with absolute swiss precision .",
"A": "Partly compositional",
"B": "Non-compositional",
"C": "None of the above",
"D": "Compositional",
"target": "B"
},
{
"id": "116",
"noun_compound": "high life",
"context": "he was accused by the daily mirror of living the high life at the charity ' s expense .",
"A": "Partly compositional",
"B": "Non-compositional",
"C": "None of the above",
"D": "Compositional",
"target": "A"
},
{
"id": "117",
"noun_compound": "pain killer",
"context": "there may be symptoms such as bleeding or persistent pain not relieved by simple pain killers .",
"A": "Non-compositional",
"B": "Compositional",
"C": "Partly compositional",
"D": "None of the above",
"target": "C"
},
{
"id": "118",
"noun_compound": "peace conference",
"context": "this report stimulated widespread discussion among the governmental representatives attending the peace conference .",
"A": "None of the above",
"B": "Partly compositional",
"C": "Non-compositional",
"D": "Compositional",
"target": "D"
},
{
"id": "119",
"noun_compound": "research project",
"context": "to the european commission ' s 6 th framework programme . he also managed fp 6 research projects on ethics and contributed to eu policy development on ethics . after leaving the commission",
"A": "Compositional",
"B": "None of the above",
"C": "Partly compositional",
"D": "Non-compositional",
"target": "A"
},
{
"id": "120",
"noun_compound": "ground floor",
"context": "eight , even the divers did n ' t get to see these floors . on the ground floor we were shown into one of the escape chambers , inside there was a red",
"A": "None of the above",
"B": "Non-compositional",
"C": "Partly compositional",
"D": "Compositional",
"target": "D"
},
{
"id": "121",
"noun_compound": "inner product",
"context": "you can use the product global function to do matrix - matrix inner product multiplication .",
"A": "Compositional",
"B": "Non-compositional",
"C": "Partly compositional",
"D": "None of the above",
"target": "C"
},
{
"id": "122",
"noun_compound": "guilt trip",
"context": "self - discipline . food can also be about weight , and weight gain - an instant guilt trip for many women . some women live in areas , and on incomes , where",
"A": "None of the above",
"B": "Non-compositional",
"C": "Partly compositional",
"D": "Compositional",
"target": "B"
},
{
"id": "123",
"noun_compound": "rock bottom",
"context": "has been an acceptable outturn for this season for most of us since we hit rock bottom at xmas . some fans were talking about the club being relegated and being better",
"A": "Non-compositional",
"B": "None of the above",
"C": "Partly compositional",
"D": "Compositional",
"target": "A"
},
{
"id": "124",
"noun_compound": "insane asylum",
"context": "her half - sister was an inmate of an insane asylum .",
"A": "Non-compositional",
"B": "Partly compositional",
"C": "Compositional",
"D": "None of the above",
"target": "C"
},
{
"id": "125",
"noun_compound": "pipe dream",
"context": "the party ' s vision of an independent , socialist scotland is fast becoming a pipe dream .",
"A": "Compositional",
"B": "Partly compositional",
"C": "Non-compositional",
"D": "None of the above",
"target": "C"
},
{
"id": "126",
"noun_compound": "civil marriage",
"context": "the ban on same - sex civil marriage defines lesbian and gay couples as second - class citizens .",
"A": "Partly compositional",
"B": "None of the above",
"C": "Compositional",
"D": "Non-compositional",
"target": "C"
},
{
"id": "127",
"noun_compound": "rocket science",
"context": "jacket might be called ' the secret of my success ' . this is n ' t rocket science : he talks about basic business skills like negotiation , time management and creativity .",
"A": "Compositional",
"B": "Non-compositional",
"C": "None of the above",
"D": "Partly compositional",
"target": "B"
},
{
"id": "128",
"noun_compound": "cocoa butter",
"context": "hear all about the fascinating stages of chocolate making , sample different cocoa beans and cocoa butter .",
"A": "Non-compositional",
"B": "Compositional",
"C": "Partly compositional",
"D": "None of the above",
"target": "B"
},
{
"id": "129",
"noun_compound": "role model",
"context": "- studying and observing individuals whose personal success in their field qualifies them as exceptional role models . no wonder they call it the study of excellence - the art of change",
"A": "Non-compositional",
"B": "Partly compositional",
"C": "Compositional",
"D": "None of the above",
"target": "B"
},
{
"id": "130",
"noun_compound": "head teacher",
"context": "pupils to safeguard their reputation or position in school league tables . the association said head teachers had reduced their \" tolerance threshold \" for bad behaviour because competition for pupils and",
"A": "None of the above",
"B": "Partly compositional",
"C": "Non-compositional",
"D": "Compositional",
"target": "B"
},
{
"id": "131",
"noun_compound": "rush hour",
"context": "subway stations also were hit in up to seven apparently coordinated blasts in the morning rush hour . trackback uri rss feed for comments on this post 1 comment » trackback by",
"A": "Non-compositional",
"B": "Compositional",
"C": "Partly compositional",
"D": "None of the above",
"target": "C"
},
{
"id": "132",
"noun_compound": "health insurance",
"context": "health insurance policy packages may soon offer vouchers for gym membership , protein supplements",
"A": "Partly compositional",
"B": "Non-compositional",
"C": "Compositional",
"D": "None of the above",
"target": "C"
},
{
"id": "133",
"noun_compound": "computer expert",
"context": "a computer user may call over the telephone to a computer expert for advice when things go wrong .",
"A": "Non-compositional",
"B": "Partly compositional",
"C": "None of the above",
"D": "Compositional",
"target": "D"
},
{
"id": "134",
"noun_compound": "radioactive material",
"context": "we are exhausting fossil fuels and using dangerous radioactive materials to produce energy and run cars .",
"A": "Partly compositional",
"B": "Compositional",
"C": "None of the above",
"D": "Non-compositional",
"target": "B"
},
{
"id": "135",
"noun_compound": "sacred cow",
"context": "seller , two ice cream vendors , a fruit stall , a beggar and a sacred cow have all arrived on the scene . about two dozen adults are waiting to go",
"A": "Partly compositional",
"B": "Compositional",
"C": "None of the above",
"D": "Non-compositional",
"target": "D"
},
{
"id": "136",
"noun_compound": "human being",
"context": "not only , got to be connected into things but also to be a decent human being ¬ö all that power can be corrupting . jc : the greatest strength of the",
"A": "Non-compositional",
"B": "Partly compositional",
"C": "Compositional",
"D": "None of the above",
"target": "C"
},
{
"id": "137",
"noun_compound": "contact lens",
"context": "yes there are various options available to you to correct your astigmatism with contact lenses .",
"A": "Compositional",
"B": "Partly compositional",
"C": "None of the above",
"D": "Non-compositional",
"target": "B"
},
{
"id": "138",
"noun_compound": "search engine",
"context": "wins battle for the . no domain name one of the world ' s most popular search engines won the rights thursday to the norwegian domain \" google . no . \" it",
"A": "Partly compositional",
"B": "Compositional",
"C": "None of the above",
"D": "Non-compositional",
"target": "A"
},
{
"id": "139",
"noun_compound": "iron collar",
"context": "the remains of an iron ring to which a chain and iron collar would have been attached .",
"A": "Non-compositional",
"B": "None of the above",
"C": "Partly compositional",
"D": "Compositional",
"target": "D"
},
{
"id": "140",
"noun_compound": "copy cat",
"context": "we ' re sure the competition is working hard on releasing copy cat products .",
"A": "Compositional",
"B": "None of the above",
"C": "Non-compositional",
"D": "Partly compositional",
"target": "D"
},
{
"id": "141",
"noun_compound": "shrinking violet",
"context": "vehicle to the family fleet of conventional cars . it definitely is not for the shrinking violet , you attract attention driving the solo , its very bright and in your face",
"A": "Non-compositional",
"B": "Compositional",
"C": "None of the above",
"D": "Partly compositional",
"target": "A"
},
{
"id": "142",
"noun_compound": "interest rate",
"context": "7 times your salary works very well if coupled with rising property prices and low interest rates but think carefully about what may happen to your personal financial commitments should that trend",
"A": "None of the above",
"B": "Partly compositional",
"C": "Compositional",
"D": "Non-compositional",
"target": "C"
},
{
"id": "143",
"noun_compound": "labour union",
"context": "that same year the first campesino labour union was formed .",
"A": "Compositional",
"B": "Partly compositional",
"C": "Non-compositional",
"D": "None of the above",
"target": "A"
},
{
"id": "144",
"noun_compound": "silver bullet",
"context": "improve data resource quality . many of these approaches are simply the current wave of silver bullets that will not substantially resolve data disparity or improve data resource quality . the only",
"A": "None of the above",
"B": "Partly compositional",
"C": "Non-compositional",
"D": "Compositional",
"target": "C"
},
{
"id": "145",
"noun_compound": "crime rate",
"context": "the crime rate in australia is low , however travellers should be aware that tourists could be targeted by petty criminals .",
"A": "Partly compositional",
"B": "None of the above",
"C": "Non-compositional",
"D": "Compositional",
"target": "D"
},
{
"id": "146",
"noun_compound": "damp squib",
"context": "the important thing is to manage it well , ensure the season does n ' t fizzle out into a damp squib as it did after our cup run two years ago .",
"A": "Non-compositional",
"B": "Compositional",
"C": "None of the above",
"D": "Partly compositional",
"target": "A"
},
{
"id": "147",
"noun_compound": "silver screen",
"context": "the fourways built in the 1930 ' s a huge emporium to the delights of the silver screen ! after a few minutes moston lane bends to the right and ahead of us",
"A": "None of the above",
"B": "Non-compositional",
"C": "Partly compositional",
"D": "Compositional",
"target": "C"
},
{
"id": "148",
"noun_compound": "dark horse",
"context": "she was the favourite , with the erratic but occasionally brilliant cuban runner aurelia pento , the dark horse .",
"A": "Non-compositional",
"B": "Compositional",
"C": "None of the above",
"D": "Partly compositional",
"target": "A"
},
{
"id": "149",
"noun_compound": "ivory tower",
"context": ". \" to get two letters passing it further down the line underlines the rather ivory tower approach by senior officers . \" yesterday , a police spokesman said : \" bedfordshire",
"A": "Non-compositional",
"B": "None of the above",
"C": "Partly compositional",
"D": "Compositional",
"target": "A"
},
{
"id": "150",
"noun_compound": "silver spoon",
"context": "a wee dig at little rich gurls šš “ josephine snorts her coke from a silver spoon and wonders where here life is going to ? ” šš . . these lyrics say",
"A": "Non-compositional",
"B": "Compositional",
"C": "None of the above",
"D": "Partly compositional",
"target": "D"
},
{
"id": "151",
"noun_compound": "life vest",
"context": "in this way , the vest resembles a typical ' life vest ' used by boaters .",
"A": "Partly compositional",
"B": "Non-compositional",
"C": "None of the above",
"D": "Compositional",
"target": "A"
},
{
"id": "152",
"noun_compound": "kangaroo court",
"context": "shall not yield in our quest for justice and we shall refuse to acknowledge the kangaroo courts which will facilitate this farce of amnesty . rest assured we shall fight ever avenue",
"A": "Non-compositional",
"B": "Compositional",
"C": "Partly compositional",
"D": "None of the above",
"target": "A"
},
{
"id": "153",
"noun_compound": "sitting duck",
"context": "tim to act as \" decoy , \" or as tim puts it \" a sitting duck . \" the police guard is removed from tim to lure the crooks who arrive",
"A": "Non-compositional",
"B": "None of the above",
"C": "Compositional",
"D": "Partly compositional",
"target": "A"
},
{
"id": "154",
"noun_compound": "lime tree",
"context": "they posted the letter , which begins ' dear the tree ' , on the lime tree ' s trunk .",
"A": "Non-compositional",
"B": "Compositional",
"C": "Partly compositional",
"D": "None of the above",
"target": "B"
},
{
"id": "155",
"noun_compound": "disability insurance",
"context": "if you have any other unemployment or disability insurance to cover your mortgage payment , we will reduce your monthly benefit .",
"A": "Compositional",
"B": "Partly compositional",
"C": "None of the above",
"D": "Non-compositional",
"target": "A"
},
{
"id": "156",
"noun_compound": "double cross",
"context": "the epsiode \" gambit \" is a fantastic episode full of plotting , sub plotting , betrayal , double cross , a game of chess , and the bbc costume departement going wild !",
"A": "Partly compositional",
"B": "Compositional",
"C": "Non-compositional",
"D": "None of the above",
"target": "C"
},
{
"id": "157",
"noun_compound": "smoking gun",
"context": "cause is often a breakdown in communication or record keeping and the hunt for the smoking gun ( the post - it - note on the job docket ) is the only way proof can be",
"A": "Partly compositional",
"B": "Compositional",
"C": "None of the above",
"D": "Non-compositional",
"target": "D"
},
{
"id": "158",
"noun_compound": "loose woman",
"context": "if you are a female musician in zimbabwe you are seen as a kind of loose woman .",
"A": "Compositional",
"B": "None of the above",
"C": "Partly compositional",
"D": "Non-compositional",
"target": "C"
},
{
"id": "159",
"noun_compound": "smoking jacket",
"context": "the men in dinner jackets , except sir claud who is wearing a maroon velvet smoking jacket and the ladies in long , flowing , silk dresses of the 1930 ' s period",
"A": "Compositional",
"B": "Non-compositional",
"C": "Partly compositional",
"D": "None of the above",
"target": "B"
},
{
"id": "160",
"noun_compound": "mail service",
"context": "a more recent development is the web - based mail service , such as hotmail , yahoo mail , and others .",
"A": "Compositional",
"B": "None of the above",
"C": "Partly compositional",
"D": "Non-compositional",
"target": "A"
},
{
"id": "161",
"noun_compound": "radioactive waste",
"context": "the london dumping convention halted all ocean dumping of radioactive waste .",
"A": "Non-compositional",
"B": "Compositional",
"C": "Partly compositional",
"D": "None of the above",
"target": "B"
},
{
"id": "162",
"noun_compound": "snail mail",
"context": "solution however that is no excuse for not answering the telephone , not replying to snail mail , not replying to online support request submissions and not replying to emails to the",
"A": "None of the above",
"B": "Non-compositional",
"C": "Partly compositional",
"D": "Compositional",
"target": "B"
},
{
"id": "163",
"noun_compound": "market place",
"context": "my client is one of the most recognised brands in the financial services market place .",
"A": "Non-compositional",
"B": "Compositional",
"C": "None of the above",
"D": "Partly compositional",
"target": "B"
},
{
"id": "164",
"noun_compound": "double whammy",
"context": "cpre points out that the countryside is facing a double whammy with traffic levels rising faster on rural than urban roads , while the reduction in road accidents is slower { 3 } .",
"A": "Compositional",
"B": "Partly compositional",
"C": "Non-compositional",
"D": "None of the above",
"target": "C"
},
{
"id": "165",
"noun_compound": "rainy season",
"context": "thailand ' s monsoons arrive around july and last into november ( the ' rainy season ' ) .",
"A": "Compositional",
"B": "None of the above",
"C": "Partly compositional",
"D": "Non-compositional",
"target": "A"
},
{
"id": "166",
"noun_compound": "rice paper",
"context": "rice paper is a thinner paper which is also used in the manufacture of chinese and japanese lanterns .",
"A": "Partly compositional",
"B": "Compositional",
"C": "None of the above",
"D": "Non-compositional",
"target": "A"
},
{
"id": "167",
"noun_compound": "middle school",
"context": "by interacting with american inventors and entrepreneurs , middle school students learn firsthand about history , technology , and science .",
"A": "Partly compositional",
"B": "None of the above",
"C": "Non-compositional",
"D": "Compositional",
"target": "D"
},
{
"id": "168",
"noun_compound": "snake oil",
"context": ", fire eaters , prize fighters , acrobats , tumblers , strongmen , puppeteers , snake oil sellers and assorted other circus acts and quacks . crime , vice and violence flourished",
"A": "Non-compositional",
"B": "Compositional",
"C": "None of the above",
"D": "Partly compositional",
"target": "A"
},
{
"id": "169",
"noun_compound": "shelf life",
"context": "it ' s done merely to maintain the visual appearance and extend the shelf life .",
"A": "Non-compositional",
"B": "Compositional",
"C": "Partly compositional",
"D": "None of the above",
"target": "A"
},
{
"id": "170",
"noun_compound": "speed limit",
"context": "to have decided in advance that crashes can be cured by simply sticking to the speed limit . we are very concerned that the \" accident investigation \" angle could be a",
"A": "Partly compositional",
"B": "Non-compositional",
"C": "Compositional",
"D": "None of the above",
"target": "C"
},
{
"id": "171",
"noun_compound": "skin tone",
"context": "the benefits of exercise are well known and include conditioning of the heart , lungs and muscles as well as improved skin tone .",
"A": "Partly compositional",
"B": "Non-compositional",
"C": "Compositional",
"D": "None of the above",
"target": "C"
},
{
"id": "172",
"noun_compound": "mother tongue",
"context": "all translators ranslate into mother tongue and live in - country .",
"A": "Compositional",
"B": "Non-compositional",
"C": "Partly compositional",
"D": "None of the above",
"target": "B"
},
{
"id": "173",
"noun_compound": "spelling bee",
"context": "primarily with family and relatives or at church . activities such as penny readings , spelling bees and magic lantern shows were common forms of entertainment . occasionally travelling theatre groups would",
"A": "Partly compositional",
"B": "Non-compositional",
"C": "None of the above",
"D": "Compositional",
"target": "B"
},
{
"id": "174",
"noun_compound": "net income",
"context": "the record company posted a net income of $ 178 million on sales .",
"A": "Compositional",
"B": "None of the above",
"C": "Partly compositional",
"D": "Non-compositional",
"target": "A"
},
{
"id": "175",
"noun_compound": "spinning jenny",
"context": "scotch cotton mill . again in 1792 william kelly of new lanark introduced the mechanically - moved spinning jenny . in 1793 james louis robertson introduced the power loom . in 1795 archibald buchanan",
"A": "Compositional",
"B": "None of the above",
"C": "Non-compositional",
"D": "Partly compositional",
"target": "C"
},
{
"id": "176",
"noun_compound": "smoke screen",
"context": "myths have become popularly known as smoke screens and are largely being peddled by the anti - gmo activists .",
"A": "Partly compositional",
"B": "Compositional",
"C": "Non-compositional",
"D": "None of the above",
"target": "C"
},
{
"id": "177",
"noun_compound": "social insurance",
"context": "there is strong support ( especially among the well off ) for a social insurance system based on the principle of solidarity and accountability .",
"A": "None of the above",
"B": "Non-compositional",
"C": "Compositional",
"D": "Partly compositional",
"target": "D"
},
{
"id": "178",
"noun_compound": "swan song",
"context": "debt of gratitude to paddy . his impending move to wales may make this his swan song , but many of us hope not . the following major event was the register",
"A": "Non-compositional",
"B": "Partly compositional",
"C": "None of the above",
"D": "Compositional",
"target": "A"
},
{
"id": "179",
"noun_compound": "speed trap",
"context": "anstey had passed through the speed trap at 188 mph ( 300 . 6 km / h ) .",
"A": "Compositional",
"B": "None of the above",
"C": "Partly compositional",
"D": "Non-compositional",
"target": "C"
},
{
"id": "180",
"noun_compound": "swimming pool",
"context": "an english style pub ) and more formal dining . there is a library , swimming pool , squash courts , a gym and various other athletic facilities . business / casual",
"A": "Non-compositional",
"B": "None of the above",
"C": "Compositional",
"D": "Partly compositional",
"target": "C"
},
{
"id": "181",
"noun_compound": "stag night",
"context": "although it is traditionally the best man ' s responsibility to organise the stag night it is ultimately the groom ' s decision as to where he wants to spend it and whom he wants to invite .",
"A": "Non-compositional",
"B": "Partly compositional",
"C": "Compositional",
"D": "None of the above",
"target": "B"
},
{
"id": "182",
"noun_compound": "noble gas",
"context": "other elements in the periodic table react with other elements to gain the ' more stable ' noble gas configuration .",
"A": "Non-compositional",
"B": "Compositional",
"C": "None of the above",
"D": "Partly compositional",
"target": "D"
},
{
"id": "183",
"noun_compound": "think tank",
"context": ", design and environmental initiatives . the group is intended to act as a think tank ' and offer expertise to the development community and statutory regeneration agencies . general comments",
"A": "None of the above",
"B": "Partly compositional",
"C": "Compositional",
"D": "Non-compositional",
"target": "D"
},
{
"id": "184",
"noun_compound": "video game",
"context": "containing webguides , bibliography and essays paperrad artist collective paper rad gobbles up tv , video games , and advertising imagery spewing it all back out into their exuberantly neo - primitivist cartoons ,",
"A": "Non-compositional",
"B": "Partly compositional",
"C": "None of the above",
"D": "Compositional",
"target": "D"
},
{
"id": "185",
"noun_compound": "sugar daddy",
"context": "it is only polite that she doesn ' t start treating me like some sort of sugar daddy .",
"A": "Partly compositional",
"B": "Compositional",
"C": "Non-compositional",
"D": "None of the above",
"target": "C"
},
{
"id": "186",
"noun_compound": "nut case",
"context": "just between you and me he ' s a bit of a nut case .",
"A": "Partly compositional",
"B": "Compositional",
"C": "Non-compositional",
"D": "None of the above",
"target": "C"
},
{
"id": "187",
"noun_compound": "web site",
"context": "can simply update the firmware and modem drivers by downloading patches from the modem manufacturers web site . it may be best to contact the manufacturers of your modem in the first",
"A": "Non-compositional",
"B": "Partly compositional",
"C": "Compositional",
"D": "None of the above",
"target": "B"
},
{
"id": "188",
"noun_compound": "tear gas",
"context": "the soldiers either experienced something they really objected to , or were ordered to disperse people , and suddenly tear gas started to fly .",
"A": "None of the above",
"B": "Non-compositional",
"C": "Partly compositional",
"D": "Compositional",
"target": "D"
},
{
"id": "189",
"noun_compound": "old flame",
"context": "she is an old flame of steve ' s , so he invites her to lunch .",
"A": "Partly compositional",
"B": "Non-compositional",
"C": "Compositional",
"D": "None of the above",
"target": "B"
},
{
"id": "190",
"noun_compound": "time difference",
"context": "our daughter had flown from london to los angeles the previous day and , despite the time difference , i called our son ' s la home to make sure they were safe .",
"A": "Compositional",
"B": "Partly compositional",
"C": "None of the above",
"D": "Non-compositional",
"target": "A"
},
{
"id": "191",
"noun_compound": "old hat",
"context": "i think perhaps that zap - it - up games are becoming a little bit old hat .",
"A": "Partly compositional",
"B": "Non-compositional",
"C": "Compositional",
"D": "None of the above",
"target": "B"
},
{
"id": "192",
"noun_compound": "zebra crossing",
"context": "having to dismount . see also pelican crossing ; puffin crossing ; toucan crossing ; zebra crossing . pelican crossing the name given to pedestrian crossings which use traffic lights to control",
"A": "None of the above",
"B": "Compositional",
"C": "Non-compositional",
"D": "Partly compositional",
"target": "C"
},
{
"id": "193",
"noun_compound": "traffic control",
"context": "it will soon be central in air traffic control , guiding planes to land and take - off .",
"A": "Compositional",
"B": "Partly compositional",
"C": "None of the above",
"D": "Non-compositional",
"target": "A"
},
{
"id": "194",
"noun_compound": "old timer",
"context": "a handicap system means that any new player can successfully challenge the old timers .",
"A": "None of the above",
"B": "Compositional",
"C": "Partly compositional",
"D": "Non-compositional",
"target": "D"
},
{
"id": "195",
"noun_compound": "traffic jam",
"context": "but then picture him trying to drive through the traffic jam on sunday morning in downtown austin .",
"A": "Non-compositional",
"B": "None of the above",
"C": "Partly compositional",
"D": "Compositional",
"target": "C"
},
{
"id": "196",
"noun_compound": "pillow slip",
"context": "i ' d rather use little incidents like when the clash stole a pillow slip from a hotel .",
"A": "Non-compositional",
"B": "None of the above",
"C": "Partly compositional",
"D": "Compositional",
"target": "D"
},
{
"id": "197",
"noun_compound": "wedding anniversary",
"context": "i also provide disco for engagement evenings , wedding evenings , wedding anniversaries , stag / hen parties .",
"A": "Compositional",
"B": "Partly compositional",
"C": "Non-compositional",
"D": "None of the above",
"target": "A"
},
{
"id": "198",
"noun_compound": "pocket book",
"context": "she had written down the date in her pocket book of the day when she dispatched it .",
"A": "Partly compositional",
"B": "Non-compositional",
"C": "None of the above",
"D": "Compositional",
"target": "D"
},
{
"id": "199",
"noun_compound": "wedding day",
"context": "the engagement period is a busy and exciting time where the betrothed couple plan their wedding day and prepare for married life .",
"A": "Partly compositional",
"B": "Non-compositional",
"C": "Compositional",
"D": "None of the above",
"target": "C"
},
{
"id": "200",
"noun_compound": "white noise",
"context": "if you try to transmit , in digital mode , into an analog repeater , all the analog radios on the repeater will simply hear white noise .",
"A": "None of the above",
"B": "Partly compositional",
"C": "Non-compositional",
"D": "Compositional",
"target": "B"
},
{
"id": "201",
"noun_compound": "prison guard",
"context": "the partially - deaf defendant stood in the dock wearing a blue shirt and was flanked by a single prison guard .",
"A": "None of the above",
"B": "Partly compositional",
"C": "Compositional",
"D": "Non-compositional",
"target": "C"
},
{
"id": "202",
"noun_compound": "private eye",
"context": "carmella is missing , but will private eye connor take the case ?",
"A": "Non-compositional",
"B": "Partly compositional",
"C": "None of the above",
"D": "Compositional",
"target": "B"
},
{
"id": "203",
"noun_compound": "winter solstice",
"context": "festivals were held in honour of events that were important to people ' s daily lives ; eg , the change of seasons , harvest , and the summer and winter solstices .",
"A": "Partly compositional",
"B": "Compositional",
"C": "Non-compositional",
"D": "None of the above",
"target": "B"
},
{
"id": "204",
"noun_compound": "world conference",
"context": "eddie participated in several world conferences and was elected with the highest number of votes .",
"A": "Compositional",
"B": "Partly compositional",
"C": "None of the above",
"D": "Non-compositional",
"target": "A"
},
{
"id": "205",
"noun_compound": "ancient history",
"context": "the days of triple - digit growth now seem like ancient history .",
"A": "None of the above",
"B": "Non-compositional",
"C": "Compositional",
"D": "Partly compositional",
"target": "D"
},
{
"id": "206",
"noun_compound": "research lab",
"context": "the fourth year is spent doing a research project in a ' real ' research lab .",
"A": "Partly compositional",
"B": "Non-compositional",
"C": "Compositional",
"D": "None of the above",
"target": "C"
},
{
"id": "207",
"noun_compound": "sex bomb",
"context": "ferrara and holmes double - team canadian sex bomb bella marie wolf .",
"A": "Compositional",
"B": "Non-compositional",
"C": "None of the above",
"D": "Partly compositional",
"target": "D"
},
{
"id": "208",
"noun_compound": "silver lining",
"context": "but is the practice totally bad news for the local pharma companies or is there a silver lining ?",
"A": "Partly compositional",
"B": "Non-compositional",
"C": "Compositional",
"D": "None of the above",
"target": "B"
},
{
"id": "209",
"noun_compound": "small fry",
"context": "britain is nothing , just small fry with an elevated sense of self - importance .",
"A": "None of the above",
"B": "Compositional",
"C": "Non-compositional",
"D": "Partly compositional",
"target": "D"
},
{
"id": "210",
"noun_compound": "sound judgement",
"context": "we ' re reassured that he ' s exercising sound judgement in this situation .",
"A": "Non-compositional",
"B": "None of the above",
"C": "Compositional",
"D": "Partly compositional",
"target": "C"
},
{
"id": "211",
"noun_compound": "armchair critic",
"context": "he will be quoted as an example of ' all that is wrong with the game ' by every armchair critic in wales .",
"A": "Partly compositional",
"B": "Non-compositional",
"C": "Compositional",
"D": "None of the above",
"target": "A"
},
{
"id": "212",
"noun_compound": "street girl",
"context": "in ghana , 6 , 000 babies are living on the streets of accra with their street girl mothers .",
"A": "Non-compositional",
"B": "Compositional",
"C": "None of the above",
"D": "Partly compositional",
"target": "D"
},
{
"id": "213",
"noun_compound": "subway system",
"context": "the road above leaks into the catacombs of a subway system .",
"A": "Non-compositional",
"B": "None of the above",
"C": "Partly compositional",
"D": "Compositional",
"target": "D"
},
{
"id": "214",
"noun_compound": "top dog",
"context": "you ' ll mix with other gangs and prove who the top dog is .",
"A": "Compositional",
"B": "Non-compositional",
"C": "None of the above",
"D": "Partly compositional",
"target": "B"
},
{
"id": "215",
"noun_compound": "wet blanket",
"context": "no wonder tom couldn ' t work with him ; he is a wet blanket .",
"A": "Non-compositional",
"B": "Compositional",
"C": "None of the above",
"D": "Partly compositional",
"target": "A"
},
{
"id": "216",
"noun_compound": "baby buggy",
"context": "can i take my baby buggy on to the london eye ?",
"A": "None of the above",
"B": "Non-compositional",
"C": "Compositional",
"D": "Partly compositional",
"target": "C"
},
{
"id": "217",
"noun_compound": "word painting",
"context": "words and music are closely matched , and the composer introduces word painting .",
"A": "Compositional",
"B": "Partly compositional",
"C": "Non-compositional",
"D": "None of the above",
"target": "B"
},
{
"id": "218",
"noun_compound": "bad hat",
"context": "one month later still another bad hat came along to further harass him",
"A": "None of the above",
"B": "Compositional",
"C": "Non-compositional",
"D": "Partly compositional",
"target": "C"
},
{
"id": "219",
"noun_compound": "acid test",
"context": "on the fate of the acle straight within weeks . this is seen as an acid test of the government ' s commitment to protecting our most valuable environments ( 3 ) .",
"A": "Partly compositional",
"B": "Non-compositional",
"C": "Compositional",
"D": "None of the above",
"target": "B"
},
{
"id": "220",
"noun_compound": "benign tumour",
"context": "prince came onboard to have a large benign tumour removed from his head .",
"A": "None of the above",
"B": "Partly compositional",
"C": "Non-compositional",
"D": "Compositional",
"target": "B"
},
{
"id": "221",
"noun_compound": "big fish",
"context": "the criminals are after big fishes than journalists , and usually concentrate on the richer countries .",
"A": "Compositional",
"B": "Partly compositional",
"C": "Non-compositional",
"D": "None of the above",
"target": "C"
},
{
"id": "222",
"noun_compound": "agony aunt",
"context": "feel as if this baby is more important than they are . \" counsellor and agony aunt suzie hayman , author of the relate guide to second families ( vermilion ) ,",
"A": "Non-compositional",
"B": "Compositional",
"C": "None of the above",
"D": "Partly compositional",
"target": "A"
},
{
"id": "223",
"noun_compound": "birth rate",
"context": "the birth rate necessary for a nation to reproduce itself is 2 . 2 children per couple .",
"A": "Non-compositional",
"B": "None of the above",
"C": "Compositional",
"D": "Partly compositional",
"target": "C"
},
{
"id": "224",
"noun_compound": "application form",
"context": "in a christian preaching ministry in any denomination for at least two years . the application form for the mth course is available on the spurgeon ' s or as a download (",
"A": "Non-compositional",
"B": "Compositional",
"C": "None of the above",
"D": "Partly compositional",
"target": "B"
},
{
"id": "225",
"noun_compound": "black cherry",
"context": "plum and black cherry scented , this can be enjoyed now or cellared .",
"A": "Partly compositional",
"B": "Non-compositional",
"C": "None of the above",
"D": "Compositional",
"target": "D"
},
{
"id": "226",
"noun_compound": "balance sheet",
"context": "in the enron corp . ' s partnerships which were not even entered on enron ' s balance sheet because derivatives are still unregulated and do n ' t have to be reported . and once",
"A": "Partly compositional",
"B": "Non-compositional",
"C": "None of the above",
"D": "Compositional",
"target": "D"
},
{
"id": "227",
"noun_compound": "bank account",
"context": "you can pay with bank transfer directly into our bank accounts . we hold them in the cattle bank in nebraska , usa , and with branches of the hsbc",
"A": "Partly compositional",
"B": "Compositional",
"C": "None of the above",
"D": "Non-compositional",
"target": "B"
},
{
"id": "228",
"noun_compound": "bow tie",
"context": "blood had also dripped onto the judge ' s striped bow tie .",
"A": "Non-compositional",
"B": "Compositional",
"C": "None of the above",
"D": "Partly compositional",
"target": "D"
},
{
"id": "229",
"noun_compound": "blame game",
"context": ", and then returning home to play to their national audiences , with \" the blame game \" against eu institutions . \" if there is not enough democratic development , not",
"A": "Partly compositional",
"B": "None of the above",
"C": "Non-compositional",
"D": "Compositional",
"target": "A"
},
{
"id": "230",
"noun_compound": "brass ring",
"context": "courtney to tori amos . which does n ' t mean the bends wo n ' t grab that brass ring . but it ' ll be a difficult stretch . 8 / 10 nude as the",
"A": "Compositional",
"B": "None of the above",
"C": "Partly compositional",
"D": "Non-compositional",
"target": "D"
},
{
"id": "231",
"noun_compound": "brain teaser",
"context": "you may occasionally enjoy a good spirited debate or a ' brain teaser ' .",
"A": "None of the above",
"B": "Non-compositional",
"C": "Partly compositional",
"D": "Compositional",
"target": "B"
},
{
"id": "232",
"noun_compound": "brick wall",
"context": "of the merits of the case . the 3 month limit though is not a brick wall , if circumstances demand an extention of time , then it is in the discretion",
"A": "Partly compositional",
"B": "None of the above",
"C": "Non-compositional",
"D": "Compositional",
"target": "A"
},
{
"id": "233",
"noun_compound": "call centre",
"context": "results private from the employee operator - particularly useful in an environment such as a call centre where higher levels of insider theft traditionally occur . uru ? allows the employee to",
"A": "Partly compositional",
"B": "None of the above",
"C": "Non-compositional",
"D": "Compositional",
"target": "D"
},
{
"id": "234",
"noun_compound": "busy bee",
"context": "i love being a busy bee but i would like a bit of ' jill ' time .",
"A": "Partly compositional",
"B": "None of the above",
"C": "Compositional",
"D": "Non-compositional",
"target": "D"
},
{
"id": "235",
"noun_compound": "carpet bombing",
"context": "in a continent that had recently experienced carpet bombing and the death - camps the resonance of titus was obvious .",
"A": "Partly compositional",
"B": "Non-compositional",
"C": "None of the above",
"D": "Compositional",
"target": "A"
},
{
"id": "236",
"noun_compound": "cellular phone",
"context": "pc tries to improve on cellular phone privacy and security by incorporating cryptographic techniques .",
"A": "Non-compositional",
"B": "None of the above",
"C": "Partly compositional",
"D": "Compositional",
"target": "C"
},
{
"id": "237",
"noun_compound": "close call",
"context": "it ' s going to be a close call as both teams will be expecting to beat the other .",
"A": "None of the above",
"B": "Partly compositional",
"C": "Non-compositional",
"D": "Compositional",
"target": "C"
},
{
"id": "238",
"noun_compound": "closed book",
"context": "the mentality of the average foreigner is a closed book to us .",
"A": "Non-compositional",
"B": "None of the above",
"C": "Compositional",
"D": "Partly compositional",
"target": "A"
},
{
"id": "239",
"noun_compound": "con artist",
"context": "a self - confessed thief , forger , and con artist , he used a roster of assumed names and false identities .",
"A": "None of the above",
"B": "Partly compositional",
"C": "Compositional",
"D": "Non-compositional",
"target": "B"
},
{
"id": "240",
"noun_compound": "cooking stove",
"context": "the shepherd could be assured of a hot meal from the cast - iron cooking stove inside .",
"A": "None of the above",
"B": "Partly compositional",
"C": "Non-compositional",
"D": "Compositional",
"target": "D"
},
{
"id": "241",
"noun_compound": "cotton candy",
"context": "afraid your tot is being dumbed - down by too much cotton candy and miniature golf ?",
"A": "None of the above",
"B": "Compositional",
"C": "Partly compositional",
"D": "Non-compositional",
"target": "C"
}
] |