Datasets:
File size: 73,071 Bytes
f8e2746 |
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 |
[
{
"instruction": "“不知细叶谁裁出,二月春风似剪刀”是诗歌《咏柳》中的名句,请问这首诗的作者是\n\nA. 王维 B. 贺知章 C. 李白 D. 韩愈",
"input": "",
"output": "《咏柳》是盛唐诗人贺知章写的一首七言绝句。这首诗的结构独具匠心,先写对柳树的总体印象,再写到柳条,最后写柳叶,由总到分,条序井然。\n故本题选择:B",
"task_type": {
"major": [
"试题"
],
"minor": [
"选择题"
]
},
"domain": [
"中国传统文化",
"语文"
],
"answer_from": "human",
"human_verified": true,
"copyright": ""
},
{
"instruction": "成语“凿壁偷光”说的是谁的故事\nA. 欧阳修\nB. 李清照\nC. 匡衡\nD. 刘禹锡",
"input": "",
"output": "凿壁借光出自西汉大文学家匡衡幼时凿穿墙壁引邻舍之烛光读书,终成一代文学家的故事。现用来形容家贫而读书刻苦的人。\n故本题选择:C",
"task_type": {
"major": [
"试题"
],
"minor": [
"选择题"
]
},
"domain": [
"中国传统文化",
"语文"
],
"answer_from": "human",
"human_verified": true,
"copyright": ""
},
{
"instruction": "《西游记》中唐僧的原型是唐代哪位著名僧人\nA. 玄奘\nB. 鉴真\nC. 皎然\nD. 灵澈",
"input": "",
"output": "玄奘,俗姓陈,名祎,洛州缑氏县人,汉传佛教史上最伟大的译经师之一,他是中国著名古典小说《西游记》中心人物唐僧的原型。\n鉴真,俗姓淳于,江苏扬州江阳县人,后东渡日本,成为日本佛教律宗开山祖师。\n皎然,唐朝诗僧,俗姓谢,湖州长城卞山人,据说是谢灵运的十世孙。\n灵澈,本姓杨氏,越州会稽(今绍兴)人,修行于云门寺,刘长卿有诗歌《送灵澈上人》。\n故本题选择:A",
"task_type": {
"major": [
"试题"
],
"minor": [
"选择题"
]
},
"domain": [
"中国传统文化",
"语文"
],
"answer_from": "human",
"human_verified": true,
"copyright": ""
},
{
"instruction": "下面哪位诗人是“初唐四杰”之一\nA. 屈原\nB. 司马相如\nC. 王勃\nD. 纳兰性德",
"input": "",
"output": "“初唐四杰”是唐代初年四位文学家王勃、杨炯、卢照邻、骆宾王的合称。\n故本题选择:C",
"task_type": {
"major": [
"试题"
],
"minor": [
"选择题"
]
},
"domain": [
"中国传统文化",
"语文"
],
"answer_from": "human",
"human_verified": true,
"copyright": ""
},
{
"instruction": "清代短篇小说集《聊斋志异》的作者是 \n\nA. 罗 贯中\nB. 曹 雪芹\nC. 吴 承恩\nD. 蒲松龄",
"input": "",
"output": "罗贯中是《三国演义》的作者,吴承恩是《西游记》的作者,而且两人都是明代小说家。曹雪芹是《红楼梦》的作者。\n故本题选择:D",
"task_type": {
"major": [
"试题"
],
"minor": [
"选择题"
]
},
"domain": [
"中国传统文化",
"语文"
],
"answer_from": "human",
"human_verified": true,
"copyright": ""
},
{
"instruction": "端午节是我国传统的节日。下列选项中,不属于端午节习俗的一项是\nA. 赛 龙舟\nB. 吃 粽子\nC. 喝雄黄酒\nD. 登高望远",
"input": "",
"output": "登高望远属于重阳节的习俗。王维《九月九日忆山东兄弟》中有相关的描写。\n故本题选择:D",
"task_type": {
"major": [
"试题"
],
"minor": [
"选择题"
]
},
"domain": [
"中国传统文化",
"语文"
],
"answer_from": "human",
"human_verified": true,
"copyright": ""
},
{
"instruction": "“贞观之治”是指中国古代哪位皇帝在位期间的清明政治\nA. 秦 始皇\nB. 唐 太宗\nC. 武 则天\nD. 乾隆帝",
"input": "",
"output": "由于唐太宗知人善用,广开言路,并采取了一些以农为本的政策,厉行节约,休养生 息,文教复兴,完善科举制度等政策,使得社会出现了安定的局面。唐太宗在位期间只使用一个年号,为“贞观”,故史称“贞观之治”。\n故本题选择:B",
"task_type": {
"major": [
"试题"
],
"minor": [
"选择题"
]
},
"domain": [
"中国传统文化",
"语文"
],
"answer_from": "human",
"human_verified": true,
"copyright": ""
},
{
"instruction": "我国古代著名中医典籍《本草纲目》的作者是\nA. 神农\nB. 华佗\nC. 李时珍\nD. 扁鹊",
"input": "",
"output": "明代李时珍用了大约27年的时间修改编写完成《本草纲目》。在这个过程中,李时珍参考了800多种书籍,多次去各地进行实地考察,采集样本,耗费了非常大的心血。\n故本题选择:C",
"task_type": {
"major": [
"试题"
],
"minor": [
"选择题"
]
},
"domain": [
"中国传统文化",
"语文"
],
"answer_from": "human",
"human_verified": true,
"copyright": ""
},
{
"instruction": "“明月几时有,把酒问青天。”苏轼的这首《水调歌头》已成为千古名篇。这是苏轼在哪个节日有感而发写下的诗篇\nA. 春节\nB. 端午节\nC. 中秋节\nD. 清明节",
"input": "",
"output": "这首《水调歌头》有一首小序,写道:“丙辰中秋,欢饮达旦,大醉作此篇,兼怀子由。”由诗歌中“月”这个意象,也能看出创作时间应该是在中秋节。\n故本题选择:C",
"task_type": {
"major": [
"试题"
],
"minor": [
"选择题"
]
},
"domain": [
"中国传统文化",
"语文"
],
"answer_from": "human",
"human_verified": true,
"copyright": ""
},
{
"instruction": "生肖,又称属相或十二年兽,是用来代表年份的十二种动物,统称为十二生肖。按照十二生肖的顺序,“鼠”后面的生肖是\nA. 猴\nB. 龙\nC. 兔\nD. 牛",
"input": "",
"output": "十二生肖,即鼠、牛、虎、兔、龙、蛇、马、羊、猴、鸡、狗、猪。\n故本题选择:D",
"task_type": {
"major": [
"试题"
],
"minor": [
"选择题"
]
},
"domain": [
"中国传统文化",
"语文"
],
"answer_from": "human",
"human_verified": true,
"copyright": ""
},
{
"instruction": "“人之初,性本善。性相近,习相远”出自我国哪本蒙学读物\nA. 《论语》\nB. 《百家姓》\nC. 《三字经》\nD. 《千字文》",
"input": "",
"output": "这是《三字经》开头的两句。意思是:人出生之初,禀性本身都是善良的,天性也都相差不多,只是后天所处的环境不同和所受教育不同,彼此的习性才形成了巨大的差别。\n故本题选择:C",
"task_type": {
"major": [
"试题"
],
"minor": [
"选择题"
]
},
"domain": [
"中国传统文化",
"语文"
],
"answer_from": "human",
"human_verified": true,
"copyright": ""
},
{
"instruction": "下列选项中,能够体现“谦让”这个中华传统美德的故事是\nA. 孔融让梨\nB. 闻鸡起舞\nC. 守株待兔\nD. 望梅止渴",
"input": "",
"output": "孔融让梨的故事:一天,孔融父亲的朋友带了一盘梨子,给孔融兄弟们吃。父亲叫孔融分梨,孔融挑了个最小的梨子,其余按照长幼顺序分给兄弟。孔融说:“我年纪小,应该吃小的梨,大梨该给哥哥们。”父亲听后十分惊喜,又问:“那弟弟也比你小啊?” 孔融说:“因为弟弟比我小,所以我也应该让着他。”\n故本题选择:A",
"task_type": {
"major": [
"试题"
],
"minor": [
"选择题"
]
},
"domain": [
"中国传统文化",
"语文"
],
"answer_from": "human",
"human_verified": true,
"copyright": ""
},
{
"instruction": "“七步成诗”是哪位诗人的故事\nA. 陶渊明\nB. 曹植\nC. 屈原\nD. 王维",
"input": "",
"output": "魏文帝曹丕称帝以后,非常嫉妒弟弟曹植的才能。有一次,因为一件小事,曹丕打算借机杀曹植,就要曹植于七步之内作出一首完整而且合乎韵律的诗。曹植明知曹丕故意为难自己,但君命难违。想到迫害自己的人是自己的亲兄长,曹植感到异常悲愤。他吟下这首诗:“煮豆持作羹,漉菽以为汁。萁在釜下燃,豆在釜中泣。本自同根生,相煎何太急?”曹丕听了这首诗,感到很惭愧。现在“七步成诗”已成为一个成语,形容人才思敏捷,能够出口成章,下笔成文。\n故本题选择:B",
"task_type": {
"major": [
"试题"
],
"minor": [
"选择题"
]
},
"domain": [
"中国传统文化",
"语文"
],
"answer_from": "human",
"human_verified": true,
"copyright": ""
},
{
"instruction": "我国有许多或巍峨或秀丽的山峰,它们也得到了许多诗人的吟咏。“不识真面目,只缘身在此山中。”横线上应该填入的名山是\nA. 泰山\nB. 华山\nC. 黄山\nD. 庐山",
"input": "",
"output": "这句诗出自苏轼的《题西林壁》,大意是:我之所以认不清庐山真正的面目,是因为我自身处在庐山之中。\n故本题选择:D",
"task_type": {
"major": [
"试题"
],
"minor": [
"选择题"
]
},
"domain": [
"中国传统文化",
"语文"
],
"answer_from": "human",
"human_verified": true,
"copyright": ""
},
{
"instruction": "文学史上被合称为“李杜”的诗人是\nA. 李商隐和杜牧\nB. 李清照和杜荀鹤\nC. 李白和杜甫\nD. 李世民和杜审言",
"input": "",
"output": "诗仙李白与诗圣杜甫,合称“李杜”,代表着唐诗的最高成就。\n故本题选择:C",
"task_type": {
"major": [
"试题"
],
"minor": [
"选择题"
]
},
"domain": [
"中国传统文化",
"语文"
],
"answer_from": "human",
"human_verified": true,
"copyright": ""
},
{
"instruction": "“采菊东篱下,悠然见南山”是哪位诗人写下的名句\nA. 孟 浩然\nB. 王 安石\nC. 陶 渊明\nD. 白居易",
"input": "",
"output": "这句诗出自陶渊明的《饮酒(其五)》。\n故本题选择:C",
"task_type": {
"major": [
"试题"
],
"minor": [
"选择题"
]
},
"domain": [
"中国传统文化",
"语文"
],
"answer_from": "human",
"human_verified": true,
"copyright": ""
},
{
"instruction": "下列成语中不包含十二生肖的是\nA. 打草惊蛇\nB. 亡羊补牢\nC. 马不停蹄\nD. 如鱼得水",
"input": "",
"output": "十二生肖,即鼠、牛、虎、兔、龙、蛇、马、羊、猴、鸡、狗、猪。\n故本题选择:D",
"task_type": {
"major": [
"试题"
],
"minor": [
"选择题"
]
},
"domain": [
"中国传统文化",
"语文"
],
"answer_from": "human",
"human_verified": true,
"copyright": ""
},
{
"instruction": "下面哪个故事不是出自《三国演义》 \n\nA. 桃园三结义\nB. 武松打虎\nC. 赤壁之战\nD. 草船借箭B",
"input": "",
"output": "武松打虎的故事出自《水浒传》。\n故本题选择:B",
"task_type": {
"major": [
"试题"
],
"minor": [
"选择题"
]
},
"domain": [
"中国传统文化",
"语文"
],
"answer_from": "human",
"human_verified": true,
"copyright": ""
},
{
"instruction": "在《西游记》和民间神话“宝莲灯”中有一个人物,额头上有第三只眼睛,可辨别妖魔鬼怪,手持三尖两刃刀,还带着一只名为“哮天犬”的神兽。这个人物是\nA. 玉皇大帝\nB. 太上老君\nC. 后羿\nD. 二郎神",
"input": "",
"output": "二郎神,又称二郎真君、清源妙道真君等,是中国民间和道教的神祇人物。\n故本题选择:D",
"task_type": {
"major": [
"试题"
],
"minor": [
"选择题"
]
},
"domain": [
"中国传统文化",
"语文"
],
"answer_from": "human",
"human_verified": true,
"copyright": ""
},
{
"instruction": "秦观《鹊桥仙》一词中写道:“柔情似水,佳期如梦,忍顾鹊桥归路。两情若是久长\n时,又岂在朝朝暮暮。”请问民间传说中,七月七日在“鹊桥”上相会的人物是\nA. 牛郎和织女\nB. 梁山伯和祝英台\nC. 董永和七仙女\nD. 白娘子和许仙",
"input": "",
"output": "相传牛郎和织女被王母娘娘拆散,并被王母金簪化作的银河隔开,只能每年的农历七月七日相见。为了让牛郎和织女相会,各地的喜鹊就会飞过来用身体紧贴着搭成一座桥, 此桥就叫做鹊桥。牛郎和织女便在这鹊桥上相会。\n故本题选择:A",
"task_type": {
"major": [
"试题"
],
"minor": [
"选择题"
]
},
"domain": [
"中国传统文化",
"语文"
],
"answer_from": "human",
"human_verified": true,
"copyright": ""
},
{
"instruction": "“但愿人长久,千里共婵娟”,其中“婵娟”指的是什么\nA. 月亮\nB. 姻缘\nC. 美女\nD. 光 明",
"input": "",
"output": "此处是月亮的意思,注意语境。\n故本题选择:A",
"task_type": {
"major": [
"试题"
],
"minor": [
"选择题"
]
},
"domain": [
"中国传统文化",
"语文"
],
"answer_from": "human",
"human_verified": true,
"copyright": ""
},
{
"instruction": "下面哪个字常用作表示天干顺序的第五位\nA. 戊\nB. 戍\nC. 戌\nD. 戎",
"input": "",
"output": "注意区分形近字,同时记忆“甲乙丙丁戊己庚辛”。戍是戍守边疆的那个字。戌是十二地支之一,排在第十一位。戎,róng,从十从戈。古代兵器的总称。\n故本题选择:A",
"task_type": {
"major": [
"试题"
],
"minor": [
"选择题"
]
},
"domain": [
"中国传统文化",
"语文"
],
"answer_from": "human",
"human_verified": true,
"copyright": ""
},
{
"instruction": "我国书法艺术博大精深,请问“欧体”是指谁的字体\nA. 欧 阳修\nB. 欧 阳询\nC. 欧 阳海\nD. 欧阳靖",
"input": "",
"output": "注意欧体是唐代大书法家欧阳询创作的一种楷书字体,其特点是方圆兼施,以方为主, 点画劲挺,笔力凝聚。\n故本题选择:B",
"task_type": {
"major": [
"试题"
],
"minor": [
"选择题"
]
},
"domain": [
"中国传统文化",
"语文"
],
"answer_from": "human",
"human_verified": true,
"copyright": ""
},
{
"instruction": "“入木三分”这个成语原本是用来形容什么的\nA. 文章\nB. 书法\nC. 雕刻\nD. 武 艺",
"input": "",
"output": "唐朝张环權《书断》说,东晋书法家王羲之在木板上写字,刻字的人发现字迹的墨汁透\n入木板有三分深。后用“入木三分”形容书法笔力遒劲,也比喻见解或议论深刻、确 切。\n故本题选择:B",
"task_type": {
"major": [
"试题"
],
"minor": [
"选择题"
]
},
"domain": [
"中国传统文化",
"语文"
],
"answer_from": "human",
"human_verified": true,
"copyright": ""
},
{
"instruction": "“态生两靥之愁,娇袭一身之病”是《红楼梦》中贾宝玉对林黛玉的第一印象,其中\n“靥”是指\nA. 酒窝\nB. 眼睛\nC. 嘴角\nD. 腮 帮",
"input": "",
"output": "靥,《说文》中的解释是:姿也,从面厭声。本义:面颊上的酒窝。\n故本题选择:A",
"task_type": {
"major": [
"试题"
],
"minor": [
"选择题"
]
},
"domain": [
"中国传统文化",
"语文"
],
"answer_from": "human",
"human_verified": true,
"copyright": ""
},
{
"instruction": "周敦颐在《爱莲说》中把菊花形容为\nA. 花之君子者 B. 花之隐逸者 C. 花之妖娆者 D. 花之坚韧者",
"input": "",
"output": "见原文:予谓菊,花之隐逸者也;牡丹,花之富贵者也;莲,花之君子者也。\n故本题选择:B",
"task_type": {
"major": [
"试题"
],
"minor": [
"选择题"
]
},
"domain": [
"中国传统文化",
"语文"
],
"answer_from": "human",
"human_verified": true,
"copyright": ""
},
{
"instruction": "我们常用“社稷”来指代国家,其中“稷”字代表的是\nA. 土地之神\nB. 五谷之神\nC. 战争之神\nD. 房舍之神",
"input": "",
"output": "注意“稷”字有个“禾”字旁,稷本义指古代一种粮食作物,指粟或黍属,后来引申为五谷之神。\n故本题选择:B",
"task_type": {
"major": [
"试题"
],
"minor": [
"选择题"
]
},
"domain": [
"中国传统文化",
"语文"
],
"answer_from": "human",
"human_verified": true,
"copyright": ""
},
{
"instruction": "下面是“鼎”的甲骨文,思考一下它的最初用途是\nA. 祭祀用礼器\nB. 地位象征物\nC. 烹煮器具\nD. 屋宅装饰",
"input": "",
"output": "鼎,象形文字,本来是本古代烹煮用的器物,一般是三足两耳。图中的“鼎”很像火上的大锅。\n故本题选择:C",
"task_type": {
"major": [
"试题"
],
"minor": [
"选择题"
]
},
"domain": [
"中国传统文化",
"语文"
],
"answer_from": "human",
"human_verified": true,
"copyright": ""
},
{
"instruction": "下列植物中,不应当出现在《岁寒三友图》中的是\nA. 菊\nB. 梅\nC. 竹\nD. 松",
"input": "",
"output": "在中国画中,松、竹、梅是常被表现的题材,在“文人画”中,松、竹、梅被称为“岁寒三友”。\n故本题选择:A",
"task_type": {
"major": [
"试题"
],
"minor": [
"选择题"
]
},
"domain": [
"中国传统文化",
"语文"
],
"answer_from": "human",
"human_verified": true,
"copyright": ""
},
{
"instruction": "下面是一个汉字的演变过程,请根据以下字形演变猜测这个字是\nA. 鸟\nB. 象\nC. 猪\nD. 马",
"input": "",
"output": "马(繁体“馬”)是象形文字,注意多数字体中都画了鬃毛和马头。\n故本题选择:D",
"task_type": {
"major": [
"试题"
],
"minor": [
"选择题"
]
},
"domain": [
"中国传统文化",
"语文"
],
"answer_from": "human",
"human_verified": true,
"copyright": ""
},
{
"instruction": "乐府名诗《孔雀东南飞》讲述的是焦仲卿和哪位女性的爱情悲剧\nA. 罗敷\nB. 柳如是\nC. 刘兰芝\nD. 文姜",
"input": "",
"output": "《孔雀东南飞》主要讲述了焦仲卿、刘兰芝夫妇被迫分离并双双自杀的故事,控诉了封建礼教的残酷无情,歌颂了焦刘夫妇的真挚感情和反抗精神。\n故本题选择:C",
"task_type": {
"major": [
"试题"
],
"minor": [
"选择题"
]
},
"domain": [
"中国传统文化",
"语文"
],
"answer_from": "human",
"human_verified": true,
"copyright": ""
},
{
"instruction": "“记言则玄远冷隽,记行则高简瑰奇。”鲁迅的这句话是对哪本古籍的评价\nA. 《搜神记》\nB. 《世说新语》\nC. 《西京杂记》\nD. 《笑林》",
"input": "",
"output": "关于《世说新语》的艺术成就,鲁迅先生在《中国小说史略》中概括为:“记言则玄远冷隽,记行则高简瑰奇”。\n故本题选择:B",
"task_type": {
"major": [
"试题"
],
"minor": [
"选择题"
]
},
"domain": [
"中国传统文化",
"语文"
],
"answer_from": "human",
"human_verified": true,
"copyright": ""
},
{
"instruction": "《孔雀东南飞》最早见于\nA. 《昭明文选》\nB. 《玉台新咏》\nC. 《乐府诗集》\nD. 《古文苑》",
"input": "",
"output": "最早著录于徐陵所编《玉台新咏》,文常要记牢。\n故本题选择:B",
"task_type": {
"major": [
"试题"
],
"minor": [
"选择题"
]
},
"domain": [
"中国传统文化",
"语文"
],
"answer_from": "human",
"human_verified": true,
"copyright": ""
},
{
"instruction": "被称作“七绝圣手”的诗人是\nA. 刘 长卿\nB. 王 昌龄\nC. 李益\nD. 常 建",
"input": "",
"output": "“七绝圣手”是王昌龄,他是唐代杰出的边塞诗人,其诗歌体裁很大一部分是易于入乐的七言绝句。\n故本题选择:B",
"task_type": {
"major": [
"试题"
],
"minor": [
"选择题"
]
},
"domain": [
"中国传统文化",
"语文"
],
"answer_from": "human",
"human_verified": true,
"copyright": ""
},
{
"instruction": "被称作“诗囚”的诗人是\nA. 王维\nB. 孟郊\nC. 李贺\nD. 卢 纶",
"input": "",
"output": "孟郊的诗多描写民间疾苦和炎凉世态,语言力戒平庸,追求瘦硬奇僻的风格,以苦吟著名,所以被元好问称为“诗囚”。\n故本题选择:B",
"task_type": {
"major": [
"试题"
],
"minor": [
"选择题"
]
},
"domain": [
"中国传统文化",
"语文"
],
"answer_from": "human",
"human_verified": true,
"copyright": ""
},
{
"instruction": "以下不属于白居易作品的一项是\nA. 《长恨歌》\nB. 《酬乐天扬州初逢席上见赠》\nC. 《大林寺桃花》\nD. 《卖炭翁》",
"input": "",
"output": "《酬乐天扬州初逢席上见赠》的作者是刘禹锡。\n故本题选择:B",
"task_type": {
"major": [
"试题"
],
"minor": [
"选择题"
]
},
"domain": [
"中国传统文化",
"语文"
],
"answer_from": "human",
"human_verified": true,
"copyright": ""
},
{
"instruction": "“春蚕到死丝方尽,蜡炬成灰泪始干”的作者是\nA. 李白\nB. 杜甫\nC. 李商隐\nD. 杜牧",
"input": "",
"output": "“春蚕到死丝方尽,蜡炬成灰泪始干”出自李商隐的《无题》。\n故本题选择:C",
"task_type": {
"major": [
"试题"
],
"minor": [
"选择题"
]
},
"domain": [
"中国传统文化",
"语文"
],
"answer_from": "human",
"human_verified": true,
"copyright": ""
},
{
"instruction": "姜夔的字是尧章,他的号是\nA. 少陵野老\nB. 白石道人\nC. 空空道人\nD. 青莲居士",
"input": "",
"output": "少陵野老是杜甫的自号,空空道人是《红楼梦》(首见第一回)中的幻异人物,青莲居士是李白。\n故本题选择:B",
"task_type": {
"major": [
"试题"
],
"minor": [
"选择题"
]
},
"domain": [
"中国传统文化",
"语文"
],
"answer_from": "human",
"human_verified": true,
"copyright": ""
},
{
"instruction": "“半亩方塘一鉴开,天光云影共徘徊”的作者是\nA. 王安石\nB. 陆九渊\nC. 程颐\nD. 朱熹",
"input": "",
"output": "“半亩方塘一鉴开,天光云影共徘徊”出自朱熹《观书有感》。\n故本题选择:D",
"task_type": {
"major": [
"试题"
],
"minor": [
"选择题"
]
},
"domain": [
"中国传统文化",
"语文"
],
"answer_from": "human",
"human_verified": true,
"copyright": ""
},
{
"instruction": "下列不属于陆游作品的一项是\nA. 《示儿》\nB. 《钗头凤》\nC. 《冬夜读书示子聿》\nD. 《闻官军收河南河北》",
"input": "",
"output": "《闻官军收河南河北》是杜甫的诗歌。\n故本题选择:D",
"task_type": {
"major": [
"试题"
],
"minor": [
"选择题"
]
},
"domain": [
"中国传统文化",
"语文"
],
"answer_from": "human",
"human_verified": true,
"copyright": ""
},
{
"instruction": "《红楼梦》中对金陵十二钗的判词相当精辟,其中对林黛玉和薛宝钗的判词是一起概括的:“可叹停机德,堪怜咏絮才。玉带林中挂,金簪雪里埋。”其中\"停机德\"指的是\nA. 薛宝钗\nB. 林黛玉\nC. 薛宝琴\nD. 史湘云",
"input": "",
"output": "\"停机德\"指的是出自战国时代燕国乐羊子妻停下机子不织布来劝勉丈夫求取功名贤淑之德的故事。符合封建道德标准的女人,称为具有\"停机德\" ,这里是赞叹宝钗。\n故本题选择:A",
"task_type": {
"major": [
"试题"
],
"minor": [
"选择题"
]
},
"domain": [
"中国传统文化",
"语文"
],
"answer_from": "human",
"human_verified": true,
"copyright": ""
},
{
"instruction": "中国小说史上,最早的一部长篇章回体历史小说是\nA. 《西游记》\nB. 《三国演义》\nC. 《红楼梦》\nD. 《水浒传》",
"input": "",
"output": "《三国演义》是我国最早的一部长篇章回体历史小说。\n故本题选择:B",
"task_type": {
"major": [
"试题"
],
"minor": [
"选择题"
]
},
"domain": [
"中国传统文化",
"语文"
],
"answer_from": "human",
"human_verified": true,
"copyright": ""
},
{
"instruction": "小云在阅读中国古典小说《红楼梦》时,看到一句话“彩云易散,霁月难逢,心比天\n高,身为下贱”。请问该句话描述的是下列哪位女子\nA. 晴雯\nB. 袭人\nC. 小红\nD. 平 儿",
"input": "",
"output": "此句是《红楼梦》中晴雯的判词,译为雨后皎洁的明月难得一见, 美丽的云霞也容易飘散。 她的心志比天还要高远, 可惜身为奴婢地位卑贱。写尽了晴雯的一生。\n故本题选择:A",
"task_type": {
"major": [
"试题"
],
"minor": [
"选择题"
]
},
"domain": [
"中国传统文化",
"语文"
],
"answer_from": "human",
"human_verified": true,
"copyright": ""
},
{
"instruction": "下列诗人与其名号搭配不正确的是\nA. 诗魔——白居易\nB. 诗佛——王维\nC. 诗奴——贾岛\nD. 诗鬼——刘禹锡",
"input": "",
"output": "诗鬼是李贺。\n故本题选择:D",
"task_type": {
"major": [
"试题"
],
"minor": [
"选择题"
]
},
"domain": [
"中国传统文化",
"语文"
],
"answer_from": "human",
"human_verified": true,
"copyright": ""
},
{
"instruction": "被称为“百戏之祖,百戏之师”的剧种是\nA. 昆曲\nB. 京剧\nC. 评剧\nD. 越 剧",
"input": "",
"output": "昆曲是明朝中叶至清代中叶戏曲中影响最大的声腔剧种,很多剧种都是在昆曲的基础上发展起来的。\n故本题选择:A",
"task_type": {
"major": [
"试题"
],
"minor": [
"选择题"
]
},
"domain": [
"中国传统文化",
"语文"
],
"answer_from": "human",
"human_verified": true,
"copyright": ""
},
{
"instruction": "下列哪项的诗歌风格与其他三项不同\nA. 大漠孤烟直,长河落日圆。\nB. 黄河远上白云间,一片孤城万仞山。\nC. 明月松间照,清泉石上流。\nD. 青海长云暗雪山,孤城遥望玉门关。",
"input": "",
"output": "C项中的诗歌中所绘之景清新自然,颇有体悟山水田园之趣。其他三项都属于边塞诗。\n故本题选择:C",
"task_type": {
"major": [
"试题"
],
"minor": [
"选择题"
]
},
"domain": [
"中国传统文化",
"语文"
],
"answer_from": "human",
"human_verified": true,
"copyright": ""
},
{
"instruction": "下列哪项不属于海外三大仙岛\nA. 瀛洲\nB. 方丈\nC. 天方\nD. 蓬莱",
"input": "",
"output": "海外三大仙岛是指中国神话传说中渤海的神山,为蓬莱、瀛洲和方丈,在《山海经》中都有记载。“天方”是我国古代对阿拉伯地区的称呼。\n故本题选择:C",
"task_type": {
"major": [
"试题"
],
"minor": [
"选择题"
]
},
"domain": [
"中国传统文化",
"语文"
],
"answer_from": "human",
"human_verified": true,
"copyright": ""
},
{
"instruction": "下列哪项不属于“苏门四学士”\nA. 黄庭坚\nB. 晁补之\nC. 欧阳修\nD. 张耒",
"input": "",
"output": "“苏门四学士”即黄庭坚、秦观、晁补之、张耒四人合称。\n故本题选择:C",
"task_type": {
"major": [
"试题"
],
"minor": [
"选择题"
]
},
"domain": [
"中国传统文化",
"语文"
],
"answer_from": "human",
"human_verified": true,
"copyright": ""
},
{
"instruction": "《西游记》中孙悟空的如意金箍棒是从哪位龙王府中所得\nA. 东海\nB. 南海\nC. 北海\nD. 西海",
"input": "",
"output": "原文:“四猴道:‘大王既有此神通,我们这铁板桥下,水通东海龙宫。大王若肯下去,寻着老龙王,问他要件什么兵器,却不趁心?’悟空闻言甚喜道:‘等我去来。’”\n故本题选择:A",
"task_type": {
"major": [
"试题"
],
"minor": [
"选择题"
]
},
"domain": [
"中国传统文化",
"语文"
],
"answer_from": "human",
"human_verified": true,
"copyright": ""
},
{
"instruction": "下列《水浒传》中的人物与其对应绰号搭配不正确的是\nA. 青面兽——杨志\nB. 黑旋风——李逵\nC. 及时雨——宋江\nD. 智多星——晁盖",
"input": "",
"output": "智多星——吴用,晁盖的绰号是“托塔天王”。\n故本题选择:D",
"task_type": {
"major": [
"试题"
],
"minor": [
"选择题"
]
},
"domain": [
"中国传统文化",
"语文"
],
"answer_from": "human",
"human_verified": true,
"copyright": ""
},
{
"instruction": "“写鬼写妖高人一等,刺贪刺虐入骨三分”,这副对联所写的作家是\nA. 冯梦龙\nB. 蒲松龄\nC. 吴敬梓\nD. 曹雪芹",
"input": "",
"output": "写鬼写妖:鲁迅《中国小说史略》:“《聊斋志异》于详尽之外,示以平常,使花妖狐魅多具人情,和易可亲,忘为异类。”此指《聊斋志异》题材的特点是描写鬼狐花妖的。\n高人一等:既指蒲松龄在小说中塑造的鬼狐形象比“人”更生动,又指蒲松龄的写作才能不同常人。\n刺贪刺虐:贪虐:指贪官污吏。联语指蒲松龄所著《聊斋志异》的主题思想是讽刺封建统治阶级的贪婪和暴虐。\n入骨三分:化用成语“入木三分”,比喻见解、议论的深刻,指《聊斋志异》对罪恶社会的揭露深入骨髓。这副对联是郭沫若1962年为蒲松龄故居题写的。\n故本题选择:B",
"task_type": {
"major": [
"试题"
],
"minor": [
"选择题"
]
},
"domain": [
"中国传统文化",
"语文"
],
"answer_from": "human",
"human_verified": true,
"copyright": ""
},
{
"instruction": "下列对联都与诗歌作者有关,与其他三句不是指同一作者的一项是\nA.民间疾苦,笔底波澜;世上疮痍,诗中圣哲。\nB.满眼河山,大地早非李唐有;一腔君国,草堂犹是落花春。\nC.花溪留后世,诗圣著千秋。\nD.盛唐诗酒无双士,青莲文苑第一家。",
"input": "",
"output": "A中“诗中圣哲”和C中“诗圣”都提到了杜甫的称号“诗圣”,B中“草堂”指杜甫在成都生活时的居所。D中“青莲”指号“青莲居士”的李白。\n故本题选择:D",
"task_type": {
"major": [
"试题"
],
"minor": [
"选择题"
]
},
"domain": [
"中国传统文化",
"语文"
],
"answer_from": "human",
"human_verified": true,
"copyright": ""
},
{
"instruction": "集句联是从古今文人的诗词、赋文、碑帖、经典中分别选取两个有关联的句子,按照对联中的声律、对仗、平仄等要求组成对联。例如,上联:风定花犹落(谢贞),下联:鸟鸣山更幽(王籍)。请为“与尔同销万古愁”(李白)选择一句上联\nA. 人间四月芳菲尽(白居易)\nB. 九万里风鹏正举(李清照)\nC. 劝君更尽一杯酒(王维)\nD. 呼儿将出换美酒(李白)",
"input": "",
"output": "只有C选项对仗工整,且文意连贯。“与尔同销万古愁”本身也是说的喝酒。D选项是原诗中“与尔同销万古愁”的上一句,但不适合作为上联,因为不满足对联的要求。\n故本题选择:C",
"task_type": {
"major": [
"试题"
],
"minor": [
"选择题"
]
},
"domain": [
"中国传统文化",
"语文"
],
"answer_from": "human",
"human_verified": true,
"copyright": ""
},
{
"instruction": "下列诗句与“墙头雨细垂纤草”对仗工整的一项是\nA. 水面风回聚落花\nB. 数峰无语立斜阳\nC. 楼上春容带雨来\nD. 蝉曳残声过别枝",
"input": "",
"output": "按照“对仗”的规则[名词对名词,动词对动词,形容词对形容词等;结构对结构(主谓、动宾、定中等)]可知:“墙头”对“水面”和“楼上”,(定中短语相对)“雨细”对“风回”,(主谓短语相对)“墙头雨细”和“水面风回”相对,即可选A项了。",
"task_type": {
"major": [
"试题"
],
"minor": [
"选择题"
]
},
"domain": [
"中国传统文化",
"语文"
],
"answer_from": "human",
"human_verified": true,
"copyright": ""
},
{
"instruction": "福州乌山的琵琶亭有一副对联,上联是:一弹流水一弹月。下面最合适作为下联的一句是\nA. 半入江风半入云\nB. 一味清凉上月时\nC. 二分明月万梅花\nD. 三月细雨春妩媚",
"input": "",
"output": "本题不难,易于判断。对联的特点是,句子形式工整,上下句内容相承。“一弹流水一弹月”当中两个“一弹”只有A 两个“半入”与之相对。填写对联要了解这一特点,要注意下上句中某字语表述事物上的密切联系,比如本题中的“月”与“云”。\n故本题选择:A",
"task_type": {
"major": [
"试题"
],
"minor": [
"选择题"
]
},
"domain": [
"中国传统文化",
"语文"
],
"answer_from": "human",
"human_verified": true,
"copyright": ""
},
{
"instruction": "有一谜语,说“天下第一家,出门先用它,人人说它小,三月开白花”,谜底是\nA. 刘杨赵钱\nB. 王朱孙李\nC. 陈赵钱孙\nD. 赵钱孙李",
"input": "",
"output": "每句话是一个姓氏,合在一起是《百家姓》的首句:赵钱孙李。\n故本题选择:D",
"task_type": {
"major": [
"试题"
],
"minor": [
"选择题"
]
},
"domain": [
"中国传统文化",
"语文"
],
"answer_from": "human",
"human_verified": true,
"copyright": ""
},
{
"instruction": "小明出生在2011年,那他的属相是\nA. 马\nB. 龙\nC. 虎\nD. 兔",
"input": "",
"output": "2011出生的属兔。\n2011年为农历辛卯年,卯为兔,此年属相是生肖兔,属兔的年份有:1951年、1963年、1975年、1987年、1999年、2011年、2023年、2035年、2047年、2059年、2071年、2083年等。\n生肖兔是中国的十二生肖之一,排名第四,对应地支中的卯。我国农历采用干支纪年,逢丁卯年、己卯年、辛卯年、癸卯年、乙卯年,民间俗称兔年。\n兔年是根据中国传统历法来确定的,生肖中的“兔”对应着十二地支中的卯,兔年即卯年,每十二年作为一个轮回,2011年是兔年,即辛卯年,以农历立春为界,在公历2011年2月3日起,就进入了兔年。\n故本题选择:D",
"task_type": {
"major": [
"试题"
],
"minor": [
"选择题"
]
},
"domain": [
"中国传统文化",
"语文"
],
"answer_from": "human",
"human_verified": true,
"copyright": ""
},
{
"instruction": "十二种生肖动物,大致可分为三类:一类是已被驯化的“六畜”;第二类是野生动物中\n为人们所熟知的,与人的日常、社会生活有着密切关系的动物;第三类是中国人传统的象征性的吉祥物——龙。下列不属于“六畜”的是\nA. 狗\nB. 兔\nC. 马\nD. 羊",
"input": "",
"output": "“六畜”即牛、羊、马、猪、狗、鸡。\n故本题选择:B",
"task_type": {
"major": [
"试题"
],
"minor": [
"选择题"
]
},
"domain": [
"中国传统文化",
"语文"
],
"answer_from": "human",
"human_verified": true,
"copyright": ""
},
{
"instruction": "“顺其自然”是哪位思想家提出的观点\nA. 老子\nB. 孔子\nC. 墨子\nD. 荀 子",
"input": "",
"output": "顺其自然,也称顺应自然,即道家的“无为”思想。由中国的知名哲学家老子在《道德经》中提出。\n故本题选择:A",
"task_type": {
"major": [
"试题"
],
"minor": [
"选择题"
]
},
"domain": [
"中国传统文化",
"语文"
],
"answer_from": "human",
"human_verified": true,
"copyright": ""
},
{
"instruction": "家中老人时常教育后代说:“为人处世不可有贪心,衣能遮体,食能果腹,足矣”,\n“遇事要冷静,做到以静制动”。显然老人继承了中国传统文化中的\nA. 儒家思想\nB. 道家思想\nC. 墨家思想\nD. 法家思想",
"input": "",
"output": "道家的老子强调一切要顺应自然,提倡清静无为、知足寡欲;提出“无为而治”的政治主张。\n故本题选择:B",
"task_type": {
"major": [
"试题"
],
"minor": [
"选择题"
]
},
"domain": [
"中国传统文化",
"语文"
],
"answer_from": "human",
"human_verified": true,
"copyright": ""
},
{
"instruction": "“志士仁人,无求生以害仁,有杀身以成仁。”这段论述当出自\nA. 儒家\nB. 道家\nC. 法家\nD. 兵家",
"input": "",
"output": "这句话的意思是:志士仁人决不为了自己活命而做出损害仁义的事情,而是宁可牺牲自己也要恪守仁义的原则。”儒家主张仁与义,故A项正确。\n故本题选择:A",
"task_type": {
"major": [
"试题"
],
"minor": [
"选择题"
]
},
"domain": [
"中国传统文化",
"语文"
],
"answer_from": "human",
"human_verified": true,
"copyright": ""
},
{
"instruction": "被尊为“亚圣”的是\nA. 庄子\nB. 老子\nC. 荀子\nD. 孟子",
"input": "",
"output": "孟子是继孔子以后的第二位儒家圣人,所以称为亚圣。他不仅发挥了孔子提出的仁,还从人性方面提出性本善,对后来的儒家影响很大,特别是宋代理学。\n故本题选择:D",
"task_type": {
"major": [
"试题"
],
"minor": [
"选择题"
]
},
"domain": [
"中国传统文化",
"语文"
],
"answer_from": "human",
"human_verified": true,
"copyright": ""
},
{
"instruction": "能体现老子的“祸兮,福之所倚;福兮,祸之所伏”思想的成语是\nA. 塞翁失马\nB. 守株待兔\nC. 掩耳盗铃\nD. 拔苗助长",
"input": "",
"output": "“祸兮,福之所倚;福兮,祸之所伏”指福与祸相互依存,互相转化。是老子辩证法的思想,因此选择A 。",
"task_type": {
"major": [
"试题"
],
"minor": [
"选择题"
]
},
"domain": [
"中国传统文化",
"语文"
],
"answer_from": "human",
"human_verified": true,
"copyright": ""
},
{
"instruction": "传说天帝怕妖魔鬼怪到人间作祟,派了两名神将——神荼和郁垒,把住从仙山到人间的大门。于是人们每逢过年,便用桃木刻上这两位神的名字,挂在门的两边,以示去灾压邪。到了唐代,门神换成了两位开国功臣的名字,他们是 \n\nA. 尉迟恭,长孙无忌 B. 尉迟恭,秦叔宝 C. 长孙无忌,秦叔宝 D. 程咬金,房玄龄",
"input": "",
"output": "清代李调元《新搜神记·神考》:“今世惜相沿,正月元旦,或画文臣,或书神蒂郁垒, 或画武将,以为唐太宗寝疾,令尉迟恭秦琼守门,疾连愈。”\n故本题选择:B",
"task_type": {
"major": [
"试题"
],
"minor": [
"选择题"
]
},
"domain": [
"中国传统文化",
"语文"
],
"answer_from": "human",
"human_verified": true,
"copyright": ""
},
{
"instruction": "立春在元月一日至元月十五之间,这是古代传统的祭农节日。立春这天,官员要亲自穿戴庆祝,坐小春牛表示支持和重视开春后的农事,民间也相应有庆祝活动。下列不属于立春的庆祝活动是\nA. 立 春蛋\nB. 吃 春菜\nC. 祭 春日\nD. 贴春联",
"input": "",
"output": "贴春联是春节的习俗。\n故本题选择:D",
"task_type": {
"major": [
"试题"
],
"minor": [
"选择题"
]
},
"domain": [
"中国传统文化",
"语文"
],
"answer_from": "human",
"human_verified": true,
"copyright": ""
},
{
"instruction": "盘古、女娲、夸父、后羿都是我国古代神话中的人物,其中创造人类的是\nA. 盘古\nB. 女娲\nC. 夸父\nD. 后羿",
"input": "",
"output": "女娲:创世女神,是华夏民族人文先始,福佑社稷之正神。相传女娲抟土造人,并化生万物,使天地不再沉寂。\n故本题选择:B",
"task_type": {
"major": [
"试题"
],
"minor": [
"选择题"
]
},
"domain": [
"中国传统文化",
"语文"
],
"answer_from": "human",
"human_verified": true,
"copyright": ""
},
{
"instruction": "被后人称为“水师”,即水利之神的是\nA. 女娲\nB. 盘古\nC. 共工\nD. 伏 羲",
"input": "",
"output": "共工,中国古代神话中的水神,掌控洪水。\n故本题选择:C",
"task_type": {
"major": [
"试题"
],
"minor": [
"选择题"
]
},
"domain": [
"中国传统文化",
"语文"
],
"answer_from": "human",
"human_verified": true,
"copyright": ""
},
{
"instruction": "中国古代神话传说中,钻木取火,给人间带来光明和温暖的是\nA. 黄帝\nB. 仓颉\nC. 神农氏\nD. 燧人氏",
"input": "",
"output": "燧人氏,三皇之首,风姓,简称燧人,尊称燧皇。燧明国(今河南商丘)人。几十万年以前的旧石器时代,燧人氏在今河南商丘一带钻木取火,成为华夏人工取火的发明者,教人熟食,结束了远古人类茹毛饮血的历史,开创了华夏文明,奉为“火祖”。\n故本题选择:D",
"task_type": {
"major": [
"试题"
],
"minor": [
"选择题"
]
},
"domain": [
"中国传统文化",
"语文"
],
"answer_from": "human",
"human_verified": true,
"copyright": ""
},
{
"instruction": "中国古代神话传说中,农业和医药的发明者是\nA. 黄帝\nB. 仓颉\nC. 神农氏\nD. 燧人氏",
"input": "",
"output": "神农氏(炎帝):相传炎帝牛首人身,他亲尝百草,发展用草药治病;他发明刀耕火种创造了两种翻土农具,教部落人民垦荒种植粮食作物;他还领导部落人民制造出了饮食用的陶器和炊具。\n故本题选择:C",
"task_type": {
"major": [
"试题"
],
"minor": [
"选择题"
]
},
"domain": [
"中国传统文化",
"语文"
],
"answer_from": "human",
"human_verified": true,
"copyright": ""
},
{
"instruction": "舜帝在南巡途中去世,他的两个妻子娥皇和女英哭了九天九夜,最后两人的血泪洒在了一种植物上,形成了眼泪一样的斑点,这种植物是\nA. 枫树\nB. 君子兰\nC. 湘妃竹\nD. 杜鹃花",
"input": "",
"output": "传说帝舜南巡,暴病死于苍梧,舜的二位妃子娥皇、女英泪下沾竹,竟再也无法褪去,就形成了眼泪一样的斑点,所以后人又称湘妃竹。湘妃竹为著名观赏竹。\n故本题选择:C",
"task_type": {
"major": [
"试题"
],
"minor": [
"选择题"
]
},
"domain": [
"中国传统文化",
"语文"
],
"answer_from": "human",
"human_verified": true,
"copyright": ""
},
{
"instruction": "中国四大民间传说之一的《白蛇传》中,“白娘娘盗仙草”盗的是\nA. 灵芝\nB. 人参\nC. 天山雪莲\nD. 蟠桃",
"input": "",
"output": "山寺僧法海嫉恨许仙与白素贞美满姻缘,警告许仙白为蛇妖所变。端阳节日,许听从法海之言,劝白饮雄黄酒,白现原形,许仙惊吓而死。白潜入昆仑山,盗取灵芝仙草,遭鹤鹿二仙毫阻止,白素贞被打败,恰在此时,南极仙翁出于同情而赠以灵芝,救活许仙。\n故本题选择:A",
"task_type": {
"major": [
"试题"
],
"minor": [
"选择题"
]
},
"domain": [
"中国传统文化",
"语文"
],
"answer_from": "human",
"human_verified": true,
"copyright": ""
},
{
"instruction": "在我国汉代时期,有“天马”之称的汗血宝马主要产自下列哪个国家\nA. 龟兹\nB. 大宛\nC. 匈奴\nD. 安 息",
"input": "",
"output": "汗血宝马主要产自大宛。\n故本题选择:B",
"task_type": {
"major": [
"试题"
],
"minor": [
"选择题"
]
},
"domain": [
"中国传统文化",
"语文"
],
"answer_from": "human",
"human_verified": true,
"copyright": ""
},
{
"instruction": "“桃李满天下”的“桃李“指什么\nA. 朋友\nB. 学生\nC. 水果\nD. 知 识",
"input": "",
"output": "“桃李”本义是桃花和李花,后比喻栽培的后辈和所教的门生。\n故本题选择:B",
"task_type": {
"major": [
"试题"
],
"minor": [
"选择题"
]
},
"domain": [
"中国传统文化",
"语文"
],
"answer_from": "human",
"human_verified": true,
"copyright": ""
},
{
"instruction": "孟子说:“不以规矩,不成方圆”,这里“规矩”的本义是\nA. 法律条文\nB. 美德善行\nC. 圆规曲尺\nD. 社会秩序",
"input": "",
"output": "规矩本义指画圆(规)画方(矩)的工具,后来引申为法律或者道德准则。\n故本题选择:C",
"task_type": {
"major": [
"试题"
],
"minor": [
"选择题"
]
},
"domain": [
"中国传统文化",
"语文"
],
"answer_from": "human",
"human_verified": true,
"copyright": ""
},
{
"instruction": "在中国传统丧礼中,晚辈戴孝主要是为了表示对长辈的孝意和哀悼,这反映了诸子百家\n中哪一家的思想主张 A. 道家\nB. 儒家\nC. 佛家\nD. 墨 家",
"input": "",
"output": "重孝是儒家的主张。\n故本题选择:B",
"task_type": {
"major": [
"试题"
],
"minor": [
"选择题"
]
},
"domain": [
"中国传统文化",
"语文"
],
"answer_from": "human",
"human_verified": true,
"copyright": ""
},
{
"instruction": "拍电影时常用的“杀青”来表示拍摄完成,“杀青”原指什么\nA. 制作竹简的一道工序\nB. 加工新茶的一种方法\nC. 军事上的一种策略\nD. 过年大扫除的习俗",
"input": "",
"output": "经过火烤处理的竹简刻字方便且防虫蛀所以火烤是竹简制作的重要工序。当时人们把这个工序叫做“杀青”,也叫“汗青”“汗简”。“杀青”一词就是这样来的。\n故本题选择:A",
"task_type": {
"major": [
"试题"
],
"minor": [
"选择题"
]
},
"domain": [
"中国传统文化",
"语文"
],
"answer_from": "human",
"human_verified": true,
"copyright": ""
},
{
"instruction": "“杂家”是诸子百家中比较特别的一派。杂家之所以为杂家,是因为杂家不具有原创思\n想,而以取各家所长,避各家所短见长。以下属于杂家代表人物的是 A. 韩 非子\nB. 吕 不韦\nC. 苏秦\nD. 惠 施",
"input": "",
"output": "韩非子是法家代表人物,苏秦是纵横家代表人物,惠施是名家代表人物。吕不韦是杂家代表人物。\n故本题选择:B",
"task_type": {
"major": [
"试题"
],
"minor": [
"选择题"
]
},
"domain": [
"中国传统文化",
"语文"
],
"answer_from": "human",
"human_verified": true,
"copyright": ""
},
{
"instruction": "“九流十家”一称出自班固《汉书·艺文志·诸子略序》:“诸子十家,其可观者,九家而\n已。”被班固认为“不入流”的那一家是 A. 阴 阳家\nB. 小 说家\nC. 纵 横家\nD. 农 家",
"input": "",
"output": "东周时期诸子百家的具代表性的十家,即是儒家、道家、阴阳家、法家、名家、墨家、纵横家、杂家、农家、小说家,当中小说家不入流。\n故本题选择:B",
"task_type": {
"major": [
"试题"
],
"minor": [
"选择题"
]
},
"domain": [
"中国传统文化",
"语文"
],
"answer_from": "human",
"human_verified": true,
"copyright": ""
},
{
"instruction": "诗风呈现冷、艳、奇、诡的诗人是\nA. 韩愈\nB. 孟郊\nC. 李贺\nD. 李商隐",
"input": "",
"output": "中唐著名诗人李贺冷、艳、奇、诡诗风为历代评论家所称道,他的诗被称为长吉体。\n故本题选择:C",
"task_type": {
"major": [
"试题"
],
"minor": [
"选择题"
]
},
"domain": [
"中国传统文化",
"语文"
],
"answer_from": "human",
"human_verified": true,
"copyright": ""
},
{
"instruction": "在唐代,下列哪位诗人一生被卷入“牛李党争”中,致使其郁郁不得其志\nA. 李白\nB. 李贺\nC. 李 商隐\nD. 韩愈",
"input": "",
"output": "李商隐因卷入“牛李党争”的政治旋涡而备受排挤,一生困顿不得志。\n故本题选择:C",
"task_type": {
"major": [
"试题"
],
"minor": [
"选择题"
]
},
"domain": [
"中国传统文化",
"语文"
],
"answer_from": "human",
"human_verified": true,
"copyright": ""
},
{
"instruction": "北宋诗文革新运动的领袖是\nA. 欧 阳修\nB. 苏轼\nC. 曾巩\nD. 梅尧臣",
"input": "",
"output": "欧阳修是在宋代文学史上最早开创一代文风的文坛领袖。领导了北宋诗文革新运动,继承并发展了韩愈的古文理论。他的散文创作的高度成就与其正确的古文理论相辅相成, 从而开创了一代文风。欧阳修在变革文风的同时,也对诗风词风进行了革新。在史学方面,也有较高成就。\n故本题选择:A",
"task_type": {
"major": [
"试题"
],
"minor": [
"选择题"
]
},
"domain": [
"中国传统文化",
"语文"
],
"answer_from": "human",
"human_verified": true,
"copyright": ""
},
{
"instruction": "“山谷体”是指哪位诗人的诗歌创作风格\nA. 黄 庭坚\nB. 陈 与义\nC. 陈 师道\nD. 吕本中",
"input": "",
"output": "黄庭坚自号山谷道人,杨万里在《诚斋诗话》中称黄庭坚诗为“山谷诗体”。\n故本题选择:A",
"task_type": {
"major": [
"试题"
],
"minor": [
"选择题"
]
},
"domain": [
"中国传统文化",
"语文"
],
"answer_from": "human",
"human_verified": true,
"copyright": ""
},
{
"instruction": "关汉卿历史剧的代表作是\nA. 《梧桐雨》\nB. 《汉宫秋》\nC. 《赵氏孤儿》\nD. 《单刀会》",
"input": "",
"output": "关汉卿一共四部历史剧:《单刀会》《哭存孝》《西蜀梦》《陈母教子》。这里只出现了《单刀会》。《梧桐雨》的作者是白朴,《汉宫秋》的作者是马致远。\n故本题选择:D",
"task_type": {
"major": [
"试题"
],
"minor": [
"选择题"
]
},
"domain": [
"中国传统文化",
"语文"
],
"answer_from": "human",
"human_verified": true,
"copyright": ""
},
{
"instruction": "“滚滚长江东逝水,浪花淘尽英雄。是非成败转头空。青山依旧在,几度夕阳红。”这\n是我国哪部古典名著的开篇词 A. 《红楼梦》\nB. 《三国演义》\nC. 《西游记》\nD. 《水浒传》",
"input": "",
"output": "“滚滚长江东逝水,浪花淘尽英雄。是非成败转头空。青山依旧在,几度夕阳红”出自明代杨慎的《临江仙》,是《三国演义》的开篇词。\n故本题选择:B",
"task_type": {
"major": [
"试题"
],
"minor": [
"选择题"
]
},
"domain": [
"中国传统文化",
"语文"
],
"answer_from": "human",
"human_verified": true,
"copyright": ""
},
{
"instruction": "下列有关各节日的对联不恰当的一项是\nA. 教师节对联:旭日灿星照学府,春风化雨育新苗。\nB. 中秋节对联:灯火交辉元夜里,笙歌簇拥月明中。\nC. 国庆节对联:惠政兴邦千家乐,赤诚报国万众心。\nD. 重阳节对联:何处题糕酬锦句,有人送酒对黄花。",
"input": "",
"output": "“灯火交辉元夜里,笙歌簇拥月明中”为元宵节对联。“元夜”即上元之夜,“灯火交辉”是指元宵节赏灯的习俗。\n故本题选择:B",
"task_type": {
"major": [
"试题"
],
"minor": [
"选择题"
]
},
"domain": [
"中国传统文化",
"语文"
],
"answer_from": "human",
"human_verified": true,
"copyright": ""
},
{
"instruction": "对联“枫叶四弦秋,根触天涯迁谪恨;浔阳千尺水,勾留江山别离情”所写的诗人是\n\nA. 苏轼 B. 白居易 C. 柳宗元 D. 李商隐",
"input": "",
"output": "“四弦”指琵琶,琵琶正好四根弦,白居易的代表作之一就是《琵琶行》。“浔阳” 和“枫叶”指的都是这首诗的前两句“浔阳江头夜送客,枫叶荻花秋瑟瑟”。\n故本题选择:B",
"task_type": {
"major": [
"试题"
],
"minor": [
"选择题"
]
},
"domain": [
"中国传统文化",
"语文"
],
"answer_from": "human",
"human_verified": true,
"copyright": ""
},
{
"instruction": "“河北醉归,怒斩曹瞒六将;江南赴宴,笑倾鲁肃三杯。”这副对联包含了《三国演义》中哪两个故事\nA. 千里走单骑,单刀赴会\nB. 千里走单骑,白衣渡江\nC. 水淹七军,单刀赴会\nD. 水淹七军,白衣渡江",
"input": "",
"output": "“怒斩曹瞒六将”即关羽千里走单骑时的“过五关斩六将”,“江南赴宴,笑倾鲁肃三杯”即鲁肃邀请关羽来商讨还荆州的事宜,关羽单刀赴会。\n故本题选择:A",
"task_type": {
"major": [
"试题"
],
"minor": [
"选择题"
]
},
"domain": [
"中国传统文化",
"语文"
],
"answer_from": "human",
"human_verified": true,
"copyright": ""
},
{
"instruction": "下列对联加粗字注音正确的一项是\n云朝朝朝朝朝朝朝朝散\n潮长长长长长长长长消\nA. zhāo cháo zhǎng cháng\nB. cháo cháo cháng zhǎng\nC. cháo cháo cháng zhǎng\nD. cháo zhāo zhǎng cháng",
"input": "",
"output": "上联中第一、三、四、六、八字之“朝”,读音为“朝夕”之“朝”,其余读为“朝拜”的“朝”,下联中第一、三、四、六、八字之“长”,读音为“长短”之“长”,其余读为“生长”的“长”。\n断句为:云朝朝/朝朝朝/朝朝朝散/潮长长/长长长/长长长消\n意思:浮云早晨来会聚,每天早晨来会聚,早晨会聚后早晨飞散了;潮水常涨,时常上涨,时常上涨后时常消退。\n故本题选择:D",
"task_type": {
"major": [
"试题"
],
"minor": [
"选择题"
]
},
"domain": [
"中国传统文化",
"语文"
],
"answer_from": "human",
"human_verified": true,
"copyright": ""
},
{
"instruction": "下列哪项不是南京城的别称\nA. 金陵\nB. 建业\nC. 兖州\nD. 江宁",
"input": "",
"output": "兖州位置在今天的山东地区。\n故本题选择:C",
"task_type": {
"major": [
"试题"
],
"minor": [
"选择题"
]
},
"domain": [
"中国传统文化",
"语文"
],
"answer_from": "human",
"human_verified": true,
"copyright": ""
},
{
"instruction": "《三国演义》中有不少经典的人物描写,下列描写与人物搭配不正确的是A. 紫髯碧眼——孙策 B. 声若巨雷,势若奔马——张飞C. 浓眉掀眼,黑面短髯——庞统 D. 面如重枣,唇若涂脂——关羽",
"input": "",
"output": "“紫髯碧眼”指的是孙权的外貌。\n故本题选择:A",
"task_type": {
"major": [
"试题"
],
"minor": [
"选择题"
]
},
"domain": [
"中国传统文化",
"语文"
],
"answer_from": "human",
"human_verified": true,
"copyright": ""
},
{
"instruction": "不属于杜甫律诗的一项是\nA. 《登高》\nB. 《春夜喜雨》\nC. 《旅夜书怀》\nD. 《兵车行》",
"input": "",
"output": "《兵车行》是乐府诗,不是律诗。\n故本题选择:D",
"task_type": {
"major": [
"试题"
],
"minor": [
"选择题"
]
},
"domain": [
"中国传统文化",
"语文"
],
"answer_from": "human",
"human_verified": true,
"copyright": ""
},
{
"instruction": "中国古代神话传说中,造出了酒,被后人称为酒神的是\nA. 仪狄\nB. 麻姑\nC. 仓颉\nD. 炎帝",
"input": "",
"output": "仪狄是夏禹时代司掌造酒的官员,相传是我国最早的酿酒人,虞舜的后人。在吕不韦的《吕氏春秋》、刘向的《战国策》等先秦典籍中均有仪狄造酒的记载。\n故本题选择:A",
"task_type": {
"major": [
"试题"
],
"minor": [
"选择题"
]
},
"domain": [
"中国传统文化",
"语文"
],
"answer_from": "human",
"human_verified": true,
"copyright": ""
},
{
"instruction": "宋明理学除了程朱理学、陆王心学还有张王气学,请问“张王”是哪两位人物的并称A. 张籍和王建 B. 张飞和王双 C. 张先和王守仁 D. 张载和王夫之",
"input": "",
"output": "张载王夫之开创了宋明理学中的“气学”派别。A是两位唐代的诗人,B是两位三国时期的武将,C项张先是宋代词人,王守仁就是王阳明。\n故本题选择:D",
"task_type": {
"major": [
"试题"
],
"minor": [
"选择题"
]
},
"domain": [
"中国传统文化",
"语文"
],
"answer_from": "human",
"human_verified": true,
"copyright": ""
},
{
"instruction": "《元日》一诗中“爆竹声中一岁除,春风送暖入屠苏”,这里的“屠苏”指的是\n\nA. 苏州 B. 房屋 C. 酒 D. 庄稼",
"input": "",
"output": "屠苏,指古代春节时喝的用屠苏草或几种草药泡的酒。古代风俗,每年正月初一,全家老小喝屠苏酒,然后用红布把渣滓包起来,挂在门框上,用来“驱邪”和躲避瘟疫。\n故本题选择:C",
"task_type": {
"major": [
"试题"
],
"minor": [
"选择题"
]
},
"domain": [
"中国传统文化",
"语文"
],
"answer_from": "human",
"human_verified": true,
"copyright": ""
},
{
"instruction": "选出下列句子内容表述有误的一项\nA.郎朗在27岁时就成为了世界钢琴界的领军人物之一,那年他刚过而立之年。\nB.“清明”是我国传统节日,在清明时节人们有上坟和踏青等习俗。\nC.“文房四宝”指“笔、墨、纸、砚”,是书房中常备的四种文具。\nD.生肖包括鼠、牛、虎、兔、龙、蛇、马、羊、猴、鸡、狗、猪十二种动物。",
"input": "",
"output": "A、有误,三十岁才是而立之年,所以“而立之年”使用不当。\n故本题选择:A",
"task_type": {
"major": [
"试题"
],
"minor": [
"选择题"
]
},
"domain": [
"中国传统文化",
"语文"
],
"answer_from": "human",
"human_verified": true,
"copyright": ""
}
] |