File size: 86,530 Bytes
e841b45 | 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 | {
"Definition": [],
"Positive Examples": [],
"Negative Examples": [],
"Instances": [
{
"input": "Which sentence is the cause of \"The host cancelled the party.\"? Choose one between A and B.\nA: She was certain she had the flu.\nB: She worried she would catch the flu.",
"output": "A"
},
{
"input": "Which sentence is the effect of \"The woman betrayed her friend.\"? Choose one between A and B.\nA: Her friend sent her a greeting card.\nB: Her friend cut off contact with her.",
"output": "B"
},
{
"input": "Which sentence is the cause of \"The boy mimicked his older brother.\"? Choose one between A and B.\nA: The boy looked up to his older brother.\nB: The boy wrestled with his older brother.",
"output": "A"
},
{
"input": "Which sentence is the effect of \"The flashlight was dead.\"? Choose one between A and B.\nA: I took it apart.\nB: I replaced the batteries.",
"output": "B"
},
{
"input": "Which sentence is the effect of \"I was confused by the professor's lecture.\"? Choose one between A and B.\nA: I paid attention to the professor.\nB: I asked the professor questions.",
"output": "B"
},
{
"input": "Which sentence is the cause of \"The boy tuned the radio.\"? Choose one between A and B.\nA: The station was playing rock music.\nB: The station was coming in with static.",
"output": "B"
},
{
"input": "Which sentence is the effect of \"The vandals threw a rock at the window.\"? Choose one between A and B.\nA: The window cracked.\nB: The window fogged up.",
"output": "A"
},
{
"input": "Which sentence is the effect of \"The doctor x-rayed the patient's arm.\"? Choose one between A and B.\nA: He discovered that the patient's arm was broken.\nB: He put the patient's arm in a cast.",
"output": "A"
},
{
"input": "Which sentence is the cause of \"I jumped instinctively in fright.\"? Choose one between A and B.\nA: I sensed someone approaching me from behind.\nB: I heard people chuckling in the adjacent room.",
"output": "A"
},
{
"input": "Which sentence is the effect of \"The engine of the airplane was faulty.\"? Choose one between A and B.\nA: The airplane crashed.\nB: The pilot made an error.",
"output": "A"
},
{
"input": "Which sentence is the effect of \"The cowgirl threw her lasso towards the horse.\"? Choose one between A and B.\nA: The lasso grabbed onto the horse.\nB: The horse trotted into the barn.",
"output": "A"
},
{
"input": "Which sentence is the effect of \"The child disobeyed her parents.\"? Choose one between A and B.\nA: Her parents hugged her.\nB: Her parents punished her.",
"output": "B"
},
{
"input": "Which sentence is the effect of \"The fortune teller's revelations were convincing.\"? Choose one between A and B.\nA: She received many returning customers.\nB: Many customers asked for refunds.",
"output": "A"
},
{
"input": "Which sentence is the cause of \"The man grieved.\"? Choose one between A and B.\nA: His wife criticized him.\nB: His mother passed away.",
"output": "B"
},
{
"input": "Which sentence is the effect of \"I pushed the gas pedal.\"? Choose one between A and B.\nA: The car accelerated.\nB: The car door opened.",
"output": "A"
},
{
"input": "Which sentence is the cause of \"The audience booed the comedian off the stage.\"? Choose one between A and B.\nA: He told a racist joke.\nB: He entertained the audience.",
"output": "A"
},
{
"input": "Which sentence is the effect of \"The woman and her boyfriend got into a fight.\"? Choose one between A and B.\nA: They stopped seeing each other.\nB: They planned a vacation together.",
"output": "A"
},
{
"input": "Which sentence is the cause of \"The fans in the stadium cheered.\"? Choose one between A and B.\nA: The game ended in a tie.\nB: The player scored.",
"output": "B"
},
{
"input": "Which sentence is the cause of \"The customer filed a complaint with the store manager.\"? Choose one between A and B.\nA: The sales associate undercharged the customer.\nB: The sales associate acted rude to the customer.",
"output": "B"
},
{
"input": "Which sentence is the effect of \"The pond froze over for the winter.\"? Choose one between A and B.\nA: People skated on the pond.\nB: People brought boats to the pond.",
"output": "A"
},
{
"input": "Which sentence is the cause of \"The boy got a black eye.\"? Choose one between A and B.\nA: The bully mocked the boy.\nB: The bully punched the boy.",
"output": "B"
},
{
"input": "Which sentence is the effect of \"My grandmother passed away.\"? Choose one between A and B.\nA: My family held a funeral.\nB: My family held a reunion.",
"output": "A"
},
{
"input": "Which sentence is the cause of \"The mother suspected that her son was lying.\"? Choose one between A and B.\nA: He refused to talk to her.\nB: He avoided making eye contact with her.",
"output": "B"
},
{
"input": "Which sentence is the cause of \"The boy filled the bucket with sand.\"? Choose one between A and B.\nA: He was collecting seashells in the sand.\nB: He was building a sand castle.",
"output": "B"
},
{
"input": "Which sentence is the effect of \"The man's eye became infected.\"? Choose one between A and B.\nA: He went blind.\nB: He put on glasses.",
"output": "A"
},
{
"input": "Which sentence is the cause of \"The dust came off the desk.\"? Choose one between A and B.\nA: I wiped the desk with a cloth.\nB: I removed the books from the desk.",
"output": "A"
},
{
"input": "Which sentence is the effect of \"The speaker disarmed her debate opponent.\"? Choose one between A and B.\nA: The speaker congratulated her opponent.\nB: The speaker won the debate.",
"output": "B"
},
{
"input": "Which sentence is the effect of \"The archeologist dug up the site.\"? Choose one between A and B.\nA: She excavated ancient artifacts.\nB: She read about the site's history.",
"output": "A"
},
{
"input": "Which sentence is the cause of \"The boy giggled uncontrollably.\"? Choose one between A and B.\nA: His brother tickled him.\nB: His brother kicked him.",
"output": "A"
},
{
"input": "Which sentence is the effect of \"The man had an attack of conscience.\"? Choose one between A and B.\nA: He manipulated his friend.\nB: He admitted his indiscretion.",
"output": "B"
},
{
"input": "Which sentence is the effect of \"I clumsily bumped into the stranger.\"? Choose one between A and B.\nA: I ran away.\nB: I apologized to him.",
"output": "B"
},
{
"input": "Which sentence is the cause of \"The boy was afraid to go to bed.\"? Choose one between A and B.\nA: He turned on his nightlight.\nB: He watched a horror movie.",
"output": "B"
},
{
"input": "Which sentence is the effect of \"The school principal implemented a dress code.\"? Choose one between A and B.\nA: Students protested the decision.\nB: Students were expelled from school.",
"output": "A"
},
{
"input": "Which sentence is the effect of \"The student's answer on the exam was incorrect.\"? Choose one between A and B.\nA: The teacher added bonus points to the student's grade.\nB: The teacher subtracted points off the student's grade.",
"output": "B"
},
{
"input": "Which sentence is the cause of \"The woman spotted her friend from across the room.\"? Choose one between A and B.\nA: The woman waved.\nB: The woman escaped.",
"output": "A"
},
{
"input": "Which sentence is the cause of \"I put shoes on.\"? Choose one between A and B.\nA: The floor contained broken glass.\nB: The paint on the walls was wet.",
"output": "A"
},
{
"input": "Which sentence is the effect of \"A burglar broke into the house.\"? Choose one between A and B.\nA: The homeowners were asleep.\nB: The security alarm went off.",
"output": "B"
},
{
"input": "Which sentence is the effect of \"The girl went down the hill on her bike.\"? Choose one between A and B.\nA: Her bike swerved.\nB: Her bike sped up.",
"output": "B"
},
{
"input": "Which sentence is the effect of \"The grape juice fermented.\"? Choose one between A and B.\nA: The juice turned to wine.\nB: The juice evaporated.",
"output": "A"
},
{
"input": "Which sentence is the cause of \"The turtle hid in its shell.\"? Choose one between A and B.\nA: It ate a fish.\nB: It detected a predator.",
"output": "B"
},
{
"input": "Which sentence is the cause of \"The boy climbed the tree.\"? Choose one between A and B.\nA: A cat got stuck in the tree.\nB: A bird built a nest in the tree.",
"output": "A"
},
{
"input": "Which sentence is the effect of \"I flipped the light switch up and down.\"? Choose one between A and B.\nA: The light faded.\nB: The light flickered.",
"output": "B"
},
{
"input": "Which sentence is the effect of \"The bureau drawers were cluttered.\"? Choose one between A and B.\nA: I threw away unnecessary contents.\nB: I locked the drawers shut.",
"output": "A"
},
{
"input": "Which sentence is the effect of \"The tenant misplaced his keys to his apartment.\"? Choose one between A and B.\nA: His landlord unlocked the door.\nB: His landlord repaired the door.",
"output": "A"
},
{
"input": "Which sentence is the effect of \"The girl met her favorite actor.\"? Choose one between A and B.\nA: She went to see his new film.\nB: She asked him for his autograph.",
"output": "B"
},
{
"input": "Which sentence is the cause of \"The bird couldn't fly.\"? Choose one between A and B.\nA: It migrated for the winter.\nB: It injured its wing.",
"output": "B"
},
{
"input": "Which sentence is the cause of \"I learned how to play the board game.\"? Choose one between A and B.\nA: My friend explained the rules to me.\nB: My friend got the rules wrong.",
"output": "A"
},
{
"input": "Which sentence is the cause of \"The woman suffered amnesia.\"? Choose one between A and B.\nA: She had an allergic reaction.\nB: She got into a car accident.",
"output": "B"
},
{
"input": "Which sentence is the cause of \"The man urgently leaped out of bed.\"? Choose one between A and B.\nA: He wanted to shut off the alarm clock.\nB: He wanted to iron his pants before work.",
"output": "A"
},
{
"input": "Which sentence is the cause of \"The window was opaque.\"? Choose one between A and B.\nA: The glass was stained.\nB: The blinds were open.",
"output": "A"
},
{
"input": "Which sentence is the effect of \"My friend paid for my ticket.\"? Choose one between A and B.\nA: I sought a refund.\nB: I paid her back.",
"output": "B"
},
{
"input": "Which sentence is the cause of \"Air pollution in the city worsened.\"? Choose one between A and B.\nA: Factories increased their production.\nB: Factories shut down.",
"output": "A"
},
{
"input": "Which sentence is the effect of \"I stood on one foot.\"? Choose one between A and B.\nA: My balance wavered.\nB: I kneeled down.",
"output": "A"
},
{
"input": "Which sentence is the cause of \"My flight got delayed.\"? Choose one between A and B.\nA: Tornadoes were sighted in the area.\nB: I was held up at airport security.",
"output": "A"
},
{
"input": "Which sentence is the cause of \"The woman received a diploma.\"? Choose one between A and B.\nA: She enrolled in college.\nB: She graduated from college.",
"output": "B"
},
{
"input": "Which sentence is the cause of \"The chandelier shattered on the floor.\"? Choose one between A and B.\nA: The chandelier dropped from the ceiling.\nB: The chandelier's lights flickered on and off.",
"output": "A"
},
{
"input": "Which sentence is the effect of \"I tipped the bottle.\"? Choose one between A and B.\nA: The liquid in the bottle froze.\nB: The liquid in the bottle poured out.",
"output": "B"
},
{
"input": "Which sentence is the effect of \"I came upon a puddle on the sidewalk.\"? Choose one between A and B.\nA: I leapt over the puddle.\nB: I played in the puddle.",
"output": "A"
},
{
"input": "Which sentence is the cause of \"The boy felt homesick.\"? Choose one between A and B.\nA: He went away to camp.\nB: He bickered with his sister.",
"output": "A"
},
{
"input": "Which sentence is the effect of \"The woman shivered as she got out the pool.\"? Choose one between A and B.\nA: She wrapped herself in a towel.\nB: She poured herself some lemonade.",
"output": "A"
},
{
"input": "Which sentence is the cause of \"My body cast a shadow over the grass.\"? Choose one between A and B.\nA: The sun was rising.\nB: The grass was cut.",
"output": "A"
},
{
"input": "Which sentence is the cause of \"The woman felt reluctant to switch careers.\"? Choose one between A and B.\nA: She made a lot of money in her current occupation.\nB: She endured a lot of stress in her current occupation.",
"output": "A"
},
{
"input": "Which sentence is the cause of \"The leader received praise.\"? Choose one between A and B.\nA: He fought poverty.\nB: He raised taxes.",
"output": "A"
},
{
"input": "Which sentence is the effect of \"The group overlooked the woman's faux pas.\"? Choose one between A and B.\nA: The woman was relieved.\nB: The woman apologized.",
"output": "A"
},
{
"input": "Which sentence is the effect of \"My friend was recovering from surgery.\"? Choose one between A and B.\nA: I dropped her off at the hospital.\nB: I brought her a card and flowers.",
"output": "B"
},
{
"input": "Which sentence is the effect of \"We found empty seats in the theatre.\"? Choose one between A and B.\nA: The film began.\nB: We sat down.",
"output": "B"
},
{
"input": "Which sentence is the cause of \"The woman was wrongly convicted for the crime.\"? Choose one between A and B.\nA: The jury was fair.\nB: She was framed.",
"output": "B"
},
{
"input": "Which sentence is the cause of \"The man craved a cigarette.\"? Choose one between A and B.\nA: His family urged him to quit smoking.\nB: He was addicted to nicotine.",
"output": "B"
},
{
"input": "Which sentence is the cause of \"The man made an error in his calculations.\"? Choose one between A and B.\nA: He checked his work.\nB: His work was hasty.",
"output": "B"
},
{
"input": "Which sentence is the cause of \"The patient underwent the risky medical procedure.\"? Choose one between A and B.\nA: The procedure was costly.\nB: Specialists recommended the procedure.",
"output": "B"
},
{
"input": "Which sentence is the effect of \"I drank a cup of coffee.\"? Choose one between A and B.\nA: My yawning ceased.\nB: I nodded off to sleep.",
"output": "A"
},
{
"input": "Which sentence is the cause of \"The man revealed personal information to the therapist.\"? Choose one between A and B.\nA: He trusted the therapist.\nB: He disagreed with the therapist.",
"output": "A"
},
{
"input": "Which sentence is the effect of \"The girl pushed herself off the top of the slide.\"? Choose one between A and B.\nA: She glided down the slide.\nB: She crawled up the slide.",
"output": "A"
},
{
"input": "Which sentence is the effect of \"The surfer caught the wave.\"? Choose one between A and B.\nA: The wave carried her to the shore.\nB: She paddled her board into the ocean.",
"output": "A"
},
{
"input": "Which sentence is the effect of \"It got dark outside.\"? Choose one between A and B.\nA: Snowflakes began to fall from the sky.\nB: The moon became visible in the sky.",
"output": "B"
},
{
"input": "Which sentence is the effect of \"The nurse prepared the needle for the patient's injection.\"? Choose one between A and B.\nA: The patient bled.\nB: The patient tensed up.",
"output": "B"
},
{
"input": "Which sentence is the effect of \"The boy painted a picture for his mother.\"? Choose one between A and B.\nA: His mother hung the picture on the wall.\nB: His mother sold the picture to a gallery.",
"output": "A"
},
{
"input": "Which sentence is the effect of \"The scientist conducted an experiment.\"? Choose one between A and B.\nA: She validated her theory.\nB: She fabricated her data.",
"output": "A"
},
{
"input": "Which sentence is the effect of \"The girl desired her parent's approval.\"? Choose one between A and B.\nA: She ran away from home.\nB: She obeyed her parent's rules.",
"output": "B"
},
{
"input": "Which sentence is the effect of \"I misplaced my wallet.\"? Choose one between A and B.\nA: I retrieved my phone.\nB: I retraced my steps.",
"output": "B"
},
{
"input": "Which sentence is the effect of \"The girl came across an unfamiliar word in her textbook.\"? Choose one between A and B.\nA: She looked the term up in the dictionary.\nB: She chucked the textbook across the room.",
"output": "A"
},
{
"input": "Which sentence is the effect of \"I burst into a fit of laughter.\"? Choose one between A and B.\nA: My teeth began to chatter.\nB: My eyes welled up with tears.",
"output": "B"
},
{
"input": "Which sentence is the effect of \"The woman upgraded her computer hardware.\"? Choose one between A and B.\nA: She deleted old files on the computer.\nB: She installed new software on the computer.",
"output": "B"
},
{
"input": "Which sentence is the effect of \"The boy pushed his sister.\"? Choose one between A and B.\nA: His sister tattled on him.\nB: They played hide and seek.",
"output": "A"
},
{
"input": "Which sentence is the effect of \"The putrid odor filled the room.\"? Choose one between A and B.\nA: I clamped my hand over my nose.\nB: I put the rubber gloves on.",
"output": "A"
},
{
"input": "Which sentence is the cause of \"The boy's hands were shaking.\"? Choose one between A and B.\nA: He planned to ask the girl out.\nB: His palms were cold and sweaty.",
"output": "A"
},
{
"input": "Which sentence is the effect of \"The skunk sprayed the dog.\"? Choose one between A and B.\nA: The dog emitted a foul smell.\nB: The skunk roamed the woods.",
"output": "A"
},
{
"input": "Which sentence is the effect of \"The gardener wanted his plants to flourish.\"? Choose one between A and B.\nA: He planted a variety of seeds.\nB: He put fertilizer in the soil.",
"output": "B"
},
{
"input": "Which sentence is the cause of \"The parents left their children with a babysitter.\"? Choose one between A and B.\nA: Their youngest child started attending preschool.\nB: They made plans to celebrate their anniversary.",
"output": "B"
},
{
"input": "Which sentence is the effect of \"The magnet attracted the paperclip.\"? Choose one between A and B.\nA: The paperclip dropped from the magnet.\nB: The paperclip stuck to the magnet.",
"output": "B"
},
{
"input": "Which sentence is the cause of \"The woman visited her family.\"? Choose one between A and B.\nA: She distrusted them.\nB: She missed them.",
"output": "B"
},
{
"input": "Which sentence is the effect of \"The woman sensed a pleasant smell.\"? Choose one between A and B.\nA: She remembered to take her medication.\nB: She was reminded of her childhood.",
"output": "B"
},
{
"input": "Which sentence is the effect of \"My favorite song came on the radio.\"? Choose one between A and B.\nA: I covered my ears.\nB: I sang along to it.",
"output": "B"
},
{
"input": "Which sentence is the cause of \"The boy's mouth stung.\"? Choose one between A and B.\nA: He ate a pepper.\nB: He blew out the candle.",
"output": "A"
},
{
"input": "Which sentence is the cause of \"The boy lost hold of the bar of soap.\"? Choose one between A and B.\nA: The bar was slippery.\nB: The bar emitted a fragrance.",
"output": "A"
},
{
"input": "Which sentence is the effect of \"The navy bombed the ship.\"? Choose one between A and B.\nA: The ship crashed into the pier.\nB: The ship's debris sunk in the sea.",
"output": "B"
},
{
"input": "Which sentence is the cause of \"The man took a shower.\"? Choose one between A and B.\nA: He was sweaty from working out.\nB: He opened a new bar of soap.",
"output": "A"
},
{
"input": "Which sentence is the cause of \"The family postponed the barbeque.\"? Choose one between A and B.\nA: The forecast called for storms.\nB: It was a holiday weekend.",
"output": "A"
},
{
"input": "Which sentence is the cause of \"The woman's eyeglasses fogged up.\"? Choose one between A and B.\nA: She reclined by the pool.\nB: She entered the sauna.",
"output": "B"
},
{
"input": "Which sentence is the cause of \"The woman hummed to herself.\"? Choose one between A and B.\nA: She was nervous.\nB: She was in a good mood.",
"output": "B"
},
{
"input": "Which sentence is the cause of \"The girl made a wish.\"? Choose one between A and B.\nA: She saw a black cat.\nB: She saw a shooting star.",
"output": "B"
},
{
"input": "Which sentence is the cause of \"The woman deleted the email.\"? Choose one between A and B.\nA: The sender tried to solicit money from her.\nB: The sender requested a response from her.",
"output": "A"
},
{
"input": "Which sentence is the effect of \"The police aimed their weapons at the fugitive.\"? Choose one between A and B.\nA: The fugitive fell to the ground.\nB: The fugitive dropped his gun.",
"output": "B"
},
{
"input": "Which sentence is the effect of \"The man's watch was broken.\"? Choose one between A and B.\nA: He waited at the bus stop.\nB: He asked a stranger for the time.",
"output": "B"
},
{
"input": "Which sentence is the effect of \"The girl found the missing puzzle piece.\"? Choose one between A and B.\nA: She completed the puzzle.\nB: She took apart the puzzle.",
"output": "A"
},
{
"input": "Which sentence is the effect of \"The host served dinner to his guests.\"? Choose one between A and B.\nA: His guests were gracious.\nB: His guests went hungry.",
"output": "A"
},
{
"input": "Which sentence is the cause of \"The politician lost the election.\"? Choose one between A and B.\nA: He ran negative campaign ads.\nB: No one voted for him.",
"output": "B"
},
{
"input": "Which sentence is the effect of \"The patient was dehydrated.\"? Choose one between A and B.\nA: The nurse tested his reflexes.\nB: The nurse gave him an IV.",
"output": "B"
},
{
"input": "Which sentence is the effect of \"My daughter suffered an allergy attack.\"? Choose one between A and B.\nA: I encouraged her to take deep breaths.\nB: I took her to the emergency room.",
"output": "B"
},
{
"input": "Which sentence is the effect of \"The elderly woman suffered a stroke.\"? Choose one between A and B.\nA: The woman's daughter came over to clean her house.\nB: The woman's daughter moved in to take care of her.",
"output": "B"
},
{
"input": "Which sentence is the cause of \"The woman hired a lawyer.\"? Choose one between A and B.\nA: She decided to sue her employer.\nB: She decided to run for office.",
"output": "A"
},
{
"input": "Which sentence is the effect of \"The man went into denial about the tragedy.\"? Choose one between A and B.\nA: He got over it easily.\nB: He refused to talk about it.",
"output": "B"
},
{
"input": "Which sentence is the cause of \"The girl shared her lunch with her friend.\"? Choose one between A and B.\nA: Her friend forgot to bring his lunch.\nB: Her friend sat next to her at lunch.",
"output": "A"
},
{
"input": "Which sentence is the effect of \"My knees buckled on the stairs.\"? Choose one between A and B.\nA: I caught myself on the railing.\nB: The railing came loose from the wall.",
"output": "A"
},
{
"input": "Which sentence is the cause of \"I got distracted from my conversation with the woman.\"? Choose one between A and B.\nA: Everyone in the room was talking.\nB: The woman was telling a funny story.",
"output": "A"
},
{
"input": "Which sentence is the effect of \"The swimmer won the race.\"? Choose one between A and B.\nA: She received a gold medal.\nB: Her team lost the meet.",
"output": "A"
},
{
"input": "Which sentence is the effect of \"The woman had an infection.\"? Choose one between A and B.\nA: She took antibiotics.\nB: She washed her hands.",
"output": "A"
},
{
"input": "Which sentence is the cause of \"The police handcuffed the suspect.\"? Choose one between A and B.\nA: The police called for backup.\nB: The suspect resisted arrest.",
"output": "B"
},
{
"input": "Which sentence is the effect of \"The police officer dropped the gun.\"? Choose one between A and B.\nA: The gun recoiled.\nB: The gun went off.",
"output": "B"
},
{
"input": "Which sentence is the cause of \"The security guard replayed the surveillance footage.\"? Choose one between A and B.\nA: The surveillance camera was out of focus.\nB: He noticed some suspicious activity.",
"output": "B"
},
{
"input": "Which sentence is the cause of \"The women met for coffee.\"? Choose one between A and B.\nA: The cafe reopened in a new location.\nB: They wanted to catch up with each other.",
"output": "B"
},
{
"input": "Which sentence is the cause of \"The vehicles travelled slowly.\"? Choose one between A and B.\nA: It was cloudy.\nB: It was foggy.",
"output": "B"
},
{
"input": "Which sentence is the cause of \"The woman exaggerated the details of the story.\"? Choose one between A and B.\nA: She wanted attention.\nB: She felt shy.",
"output": "A"
},
{
"input": "Which sentence is the cause of \"The man went away for the weekend.\"? Choose one between A and B.\nA: He wanted to relax.\nB: He felt content.",
"output": "A"
},
{
"input": "Which sentence is the effect of \"The farmland needed irrigation.\"? Choose one between A and B.\nA: A canal was constructed.\nB: A flood occurred.",
"output": "A"
},
{
"input": "Which sentence is the effect of \"The toddler started crying.\"? Choose one between A and B.\nA: Her parents took away her toy.\nB: Her parents gave her a toy.",
"output": "B"
},
{
"input": "Which sentence is the cause of \"The doctors amputated the patient's leg.\"? Choose one between A and B.\nA: It was badly bruised.\nB: It was severely infected.",
"output": "B"
},
{
"input": "Which sentence is the cause of \"I spit out my chewing gum.\"? Choose one between A and B.\nA: I blew a bubble with the gum.\nB: The gum lost its flavor.",
"output": "B"
},
{
"input": "Which sentence is the cause of \"The man got a discount on his groceries.\"? Choose one between A and B.\nA: He greeted the cashier.\nB: He used a coupon.",
"output": "B"
},
{
"input": "Which sentence is the effect of \"I put ice cubes in the hot soup.\"? Choose one between A and B.\nA: The soup cooled down.\nB: The soup became thick.",
"output": "A"
},
{
"input": "Which sentence is the effect of \"The girl performed in a dance recital.\"? Choose one between A and B.\nA: Her parents showed her how to dance.\nB: Her parents came to watch the recital.",
"output": "B"
},
{
"input": "Which sentence is the effect of \"The man wanted to save money.\"? Choose one between A and B.\nA: He withdrew money from his savings account.\nB: He cut back on making frivolous purchases.",
"output": "B"
},
{
"input": "Which sentence is the effect of \"The baby was wailing in his crib.\"? Choose one between A and B.\nA: The mother picked up the baby.\nB: The baby crawled to the mother.",
"output": "A"
},
{
"input": "Which sentence is the effect of \"The book was deemed inappropriate for children.\"? Choose one between A and B.\nA: Schools banned it from its libraries.\nB: Teachers required students to read it.",
"output": "A"
},
{
"input": "Which sentence is the effect of \"The toddler became cranky.\"? Choose one between A and B.\nA: Her mother put her down for a nap.\nB: Her mother fixed her hair into pigtails.",
"output": "A"
},
{
"input": "Which sentence is the cause of \"The woman's makeup smeared.\"? Choose one between A and B.\nA: She brushed her hair.\nB: She wiped her eyes.",
"output": "B"
},
{
"input": "Which sentence is the cause of \"I chugged the pitcher of water.\"? Choose one between A and B.\nA: I walked upstairs.\nB: I ran five miles.",
"output": "B"
},
{
"input": "Which sentence is the cause of \"The pharmaceutical company recalled the drug.\"? Choose one between A and B.\nA: Users reported dangerous side effects.\nB: Users got refills on their prescriptions.",
"output": "A"
},
{
"input": "Which sentence is the cause of \"The clay hardened.\"? Choose one between A and B.\nA: The potter rolled the clay into a ball.\nB: The potter put the clay in the oven.",
"output": "B"
},
{
"input": "Which sentence is the cause of \"The photo albums collected dust in the attic.\"? Choose one between A and B.\nA: They remained untouched for years.\nB: The family reminisced over the photos.",
"output": "A"
},
{
"input": "Which sentence is the effect of \"The friends' dinnertime conversation turned to politics.\"? Choose one between A and B.\nA: The conversation quieted down.\nB: A debate erupted.",
"output": "B"
},
{
"input": "Which sentence is the effect of \"The offender violated parole.\"? Choose one between A and B.\nA: She was sent back to jail.\nB: She stole money from a church.",
"output": "A"
},
{
"input": "Which sentence is the cause of \"The photograph faded.\"? Choose one between A and B.\nA: It was fake.\nB: It was old.",
"output": "B"
},
{
"input": "Which sentence is the effect of \"The girl felt dizzy.\"? Choose one between A and B.\nA: She lost her balance.\nB: She did stretches.",
"output": "A"
},
{
"input": "Which sentence is the cause of \"The man fell unconscious.\"? Choose one between A and B.\nA: The assailant struck the man in the head.\nB: The assailant took the man's wallet.",
"output": "A"
},
{
"input": "Which sentence is the effect of \"The mother needed help looking after her children.\"? Choose one between A and B.\nA: She sent the children to daycare.\nB: She gave up custody of the children.",
"output": "A"
},
{
"input": "Which sentence is the effect of \"My foot went numb.\"? Choose one between A and B.\nA: I put my shoes on.\nB: I shook my foot.",
"output": "B"
},
{
"input": "Which sentence is the cause of \"The stain came out of the shirt.\"? Choose one between A and B.\nA: I patched the shirt.\nB: I bleached the shirt.",
"output": "B"
},
{
"input": "Which sentence is the cause of \"The police closed the investigation.\"? Choose one between A and B.\nA: They apprehended the suspect.\nB: The victim recovered.",
"output": "A"
},
{
"input": "Which sentence is the effect of \"I needed to get cash.\"? Choose one between A and B.\nA: I went to the bank.\nB: I bought a wallet.",
"output": "A"
},
{
"input": "Which sentence is the cause of \"My stomach hurt.\"? Choose one between A and B.\nA: I jogged on the treadmill.\nB: I ate birthday cake.",
"output": "B"
},
{
"input": "Which sentence is the effect of \"I finished a page of the book.\"? Choose one between A and B.\nA: I ripped out the next page.\nB: I turned to the next page.",
"output": "B"
},
{
"input": "Which sentence is the cause of \"The woman tolerated her friend's difficult behavior.\"? Choose one between A and B.\nA: The woman knew her friend was going through a hard time.\nB: The woman felt that her friend took advantage of her kindness.",
"output": "A"
},
{
"input": "Which sentence is the cause of \"The shirt shrunk.\"? Choose one between A and B.\nA: I poured bleach on it.\nB: I put it in the dryer.",
"output": "B"
},
{
"input": "Which sentence is the cause of \"I hung up the phone.\"? Choose one between A and B.\nA: The caller said goodbye to me.\nB: The caller identified himself to me.",
"output": "A"
},
{
"input": "Which sentence is the cause of \"The student received detention.\"? Choose one between A and B.\nA: He talked back to the teacher.\nB: The teacher graded his homework.",
"output": "A"
},
{
"input": "Which sentence is the effect of \"The water in the teapot started to boil.\"? Choose one between A and B.\nA: The teapot cooled.\nB: The teapot whistled.",
"output": "B"
},
{
"input": "Which sentence is the cause of \"The parents forbade their children from watching the movie. \"? Choose one between A and B.\nA: The movie was rated R.\nB: The movie was animated.",
"output": "A"
},
{
"input": "Which sentence is the cause of \"The boat capsized.\"? Choose one between A and B.\nA: The captain raised the sail.\nB: It was caught in a hurricane.",
"output": "B"
},
{
"input": "Which sentence is the cause of \"The girl politely declined the hamburger.\"? Choose one between A and B.\nA: She was a vegetarian.\nB: She liked fast food.",
"output": "A"
},
{
"input": "Which sentence is the effect of \"The print on the brochure was tiny.\"? Choose one between A and B.\nA: The man put his glasses on.\nB: The man retrieved a pen from his pocket.",
"output": "A"
},
{
"input": "Which sentence is the cause of \"I wrote a thank-you note to my grandmother.\"? Choose one between A and B.\nA: She became forgetful.\nB: She sent me a gift.",
"output": "B"
},
{
"input": "Which sentence is the effect of \"The clock stopped ticking.\"? Choose one between A and B.\nA: I took extra time to get ready.\nB: The clock showed the wrong time.",
"output": "B"
},
{
"input": "Which sentence is the cause of \"The man held his breath.\"? Choose one between A and B.\nA: He went underwater.\nB: He treaded water.",
"output": "A"
},
{
"input": "Which sentence is the cause of \"The man's clothes fit loosely.\"? Choose one between A and B.\nA: He bought them on sale.\nB: He lost weight.",
"output": "B"
},
{
"input": "Which sentence is the effect of \"The man read the cartoon in the newspaper.\"? Choose one between A and B.\nA: He sipped coffee.\nB: He chuckled.",
"output": "B"
},
{
"input": "Which sentence is the effect of \"The girl wanted to make her mother happy.\"? Choose one between A and B.\nA: The girl ate the cookies her mother baked.\nB: The girl picked a flower for her mother.",
"output": "B"
},
{
"input": "Which sentence is the cause of \"The woman felt an electric shock.\"? Choose one between A and B.\nA: She grabbed the doorknob.\nB: She pounded on the door.",
"output": "A"
},
{
"input": "Which sentence is the cause of \"The balloon expanded.\"? Choose one between A and B.\nA: I blew into it.\nB: I pricked it.",
"output": "A"
},
{
"input": "Which sentence is the cause of \"The teenager grew taller than his father.\"? Choose one between A and B.\nA: He went through a growth spurt.\nB: He joined the basketball team.",
"output": "A"
},
{
"input": "Which sentence is the effect of \"The woman felt compelled to help someone in need.\"? Choose one between A and B.\nA: She donated blood.\nB: She wrote a poem.",
"output": "A"
},
{
"input": "Which sentence is the effect of \"The button on my shirt fell off.\"? Choose one between A and B.\nA: I sewed the button back on.\nB: I glued the button back on.",
"output": "A"
},
{
"input": "Which sentence is the effect of \"I applied pressure to the cut on my arm.\"? Choose one between A and B.\nA: It healed.\nB: It stopped bleeding.",
"output": "B"
},
{
"input": "Which sentence is the effect of \"The climbers reached the peak of the mountain.\"? Choose one between A and B.\nA: They encountered an avalanche.\nB: They congratulated each other.",
"output": "B"
},
{
"input": "Which sentence is the effect of \"The clouds looked dark.\"? Choose one between A and B.\nA: I brought my laptop to work.\nB: I brought my umbrella to work.",
"output": "B"
},
{
"input": "Which sentence is the cause of \"The glasses on the table spilled.\"? Choose one between A and B.\nA: The child drew on the table.\nB: The child yanked the tablecloth.",
"output": "B"
},
{
"input": "Which sentence is the effect of \"The documents contained important information.\"? Choose one between A and B.\nA: I paper clipped them together.\nB: I kept them in a secure place.",
"output": "B"
},
{
"input": "Which sentence is the cause of \"My feet were blistered.\"? Choose one between A and B.\nA: I went hiking.\nB: I went swimming.",
"output": "A"
},
{
"input": "Which sentence is the cause of \"Marine life diminished.\"? Choose one between A and B.\nA: Boats sailed through the ocean.\nB: Oil spilled into the ocean.",
"output": "B"
},
{
"input": "Which sentence is the effect of \"The competition ended.\"? Choose one between A and B.\nA: The teams got pumped up.\nB: The teams shook hands.",
"output": "B"
},
{
"input": "Which sentence is the cause of \"The woman spoke with a foreign accent.\"? Choose one between A and B.\nA: She came from a wealthy family.\nB: She migrated from another country.",
"output": "B"
},
{
"input": "Which sentence is the effect of \"The company's profits started to level off.\"? Choose one between A and B.\nA: It increased its marketing efforts for new products.\nB: It moved its headquarters to a suburban location.",
"output": "A"
},
{
"input": "Which sentence is the effect of \"The boaters set off a flare.\"? Choose one between A and B.\nA: Their boat drifted to shore.\nB: Their boat was rescued.",
"output": "B"
},
{
"input": "Which sentence is the effect of \"The customer thought the souvenir was overpriced.\"? Choose one between A and B.\nA: The vender sold it to him.\nB: He bargained with the vendor.",
"output": "B"
},
{
"input": "Which sentence is the cause of \"I botched the job interview.\"? Choose one between A and B.\nA: The interviewer asked difficult questions.\nB: I anticipated the interviewer's questions.",
"output": "A"
},
{
"input": "Which sentence is the cause of \"The tenants were evicted from the apartment.\"? Choose one between A and B.\nA: They neglected to pay their rent.\nB: They got along with their landlord.",
"output": "A"
},
{
"input": "Which sentence is the effect of \"I rubbed sandpaper on the wood.\"? Choose one between A and B.\nA: The wood became smooth.\nB: The wood became sticky.",
"output": "A"
},
{
"input": "Which sentence is the cause of \"The spy discovered the enemy's location.\"? Choose one between A and B.\nA: The spy bugged the enemy's phone.\nB: The spy was hired by the government.",
"output": "A"
},
{
"input": "Which sentence is the cause of \"The soldiers were concealed in the brush.\"? Choose one between A and B.\nA: They were armed with rifles.\nB: They wore camouflage uniforms.",
"output": "B"
},
{
"input": "Which sentence is the cause of \"The woman filed a restraining order against the man.\"? Choose one between A and B.\nA: The man called her.\nB: The man stalked her.",
"output": "B"
},
{
"input": "Which sentence is the cause of \"The woman refused a second beer.\"? Choose one between A and B.\nA: She was the designated driver for the night.\nB: She was familiar with the bartender.",
"output": "A"
},
{
"input": "Which sentence is the cause of \"Cars moved to the shoulder of the road.\"? Choose one between A and B.\nA: The traffic light turned green.\nB: A screaming ambulance approached.",
"output": "B"
},
{
"input": "Which sentence is the effect of \"The man looked at his watch.\"? Choose one between A and B.\nA: He realized he forgot something.\nB: He realized he was early.",
"output": "B"
},
{
"input": "Which sentence is the effect of \"The motorcyclist twisted the throttle.\"? Choose one between A and B.\nA: The motorcycle coasted to a halt.\nB: The motorcycle shot forward.",
"output": "B"
},
{
"input": "Which sentence is the cause of \"The student flaunted his test grade to his classmates.\"? Choose one between A and B.\nA: He received a perfect score.\nB: He feigned interest in the class.",
"output": "A"
},
{
"input": "Which sentence is the cause of \"The girl stared at herself in the mirror.\"? Choose one between A and B.\nA: She felt self-conscious.\nB: The mirror was smudged.",
"output": "A"
},
{
"input": "Which sentence is the effect of \"The woman was summoned for jury duty.\"? Choose one between A and B.\nA: She contacted her lawyer.\nB: She cancelled her appointments.",
"output": "B"
},
{
"input": "Which sentence is the cause of \"The mother scolded her daughter.\"? Choose one between A and B.\nA: Her daughter burped at the kitchen table.\nB: Her daughter set the kitchen table.",
"output": "A"
},
{
"input": "Which sentence is the cause of \"The teenager ran away from home.\"? Choose one between A and B.\nA: He relied on his parents.\nB: His parents abused him.",
"output": "B"
},
{
"input": "Which sentence is the cause of \"The father shut off the children's television.\"? Choose one between A and B.\nA: It was bedtime for the children.\nB: The children were watching cartoons.",
"output": "A"
},
{
"input": "Which sentence is the effect of \"The woman was deemed mentally ill.\"? Choose one between A and B.\nA: She was sent to a psychiatric institution.\nB: She sought a career as a psychiatrist.",
"output": "A"
},
{
"input": "Which sentence is the effect of \"The man dropped food on the floor.\"? Choose one between A and B.\nA: His dog jumped up on him.\nB: His dog ran over to eat the food.",
"output": "B"
},
{
"input": "Which sentence is the effect of \"The woman had a religious awakening.\"? Choose one between A and B.\nA: She began going to church.\nB: She began travelling abroad.",
"output": "A"
},
{
"input": "Which sentence is the cause of \"The man felt thankful to be alive.\"? Choose one between A and B.\nA: He was cured of cancer.\nB: His wife was diagnosed with cancer.",
"output": "A"
},
{
"input": "Which sentence is the effect of \"I made a resolution to eat a healthy diet.\"? Choose one between A and B.\nA: I attended a yoga class.\nB: I bought fruits and vegetables.",
"output": "B"
},
{
"input": "Which sentence is the cause of \"The scientist gained recognition.\"? Choose one between A and B.\nA: She discovered a new species.\nB: She received tenure at the university.",
"output": "A"
},
{
"input": "Which sentence is the effect of \"The woman complimented the man.\"? Choose one between A and B.\nA: He sneezed.\nB: He blushed.",
"output": "B"
},
{
"input": "Which sentence is the effect of \"The DJ turned the music on.\"? Choose one between A and B.\nA: People left the party.\nB: People began to dance.",
"output": "B"
},
{
"input": "Which sentence is the effect of \"The driver rotated the steering wheel.\"? Choose one between A and B.\nA: The car halted.\nB: The car turned.",
"output": "B"
},
{
"input": "Which sentence is the cause of \"The executive decided not to hire the applicant.\"? Choose one between A and B.\nA: The applicant failed a background check.\nB: The applicant had experience for the job.",
"output": "A"
},
{
"input": "Which sentence is the cause of \"The coach gave his player a high five.\"? Choose one between A and B.\nA: The player got a penalty.\nB: The player scored a point.",
"output": "B"
},
{
"input": "Which sentence is the effect of \"The woman pressed down on the piano key.\"? Choose one between A and B.\nA: A sound played.\nB: The key got stuck.",
"output": "A"
},
{
"input": "Which sentence is the effect of \"The ocean tide was dangerous.\"? Choose one between A and B.\nA: The swimmers put on more sunscreen.\nB: The swimmers returned towards the shore.",
"output": "B"
},
{
"input": "Which sentence is the cause of \"The service at the restaurant was slow.\"? Choose one between A and B.\nA: There were many empty tables.\nB: The restaurant was crowded.",
"output": "B"
},
{
"input": "Which sentence is the effect of \"We ordered a pizza.\"? Choose one between A and B.\nA: The pizza was delivered.\nB: The pizza got cold.",
"output": "A"
},
{
"input": "Which sentence is the effect of \"The man hated his new haircut.\"? Choose one between A and B.\nA: He wore a hat.\nB: He grew a beard.",
"output": "A"
},
{
"input": "Which sentence is the cause of \"The woman fanned herself with her hand.\"? Choose one between A and B.\nA: She installed the air conditioner in the room.\nB: The air conditioner in the room broke.",
"output": "B"
},
{
"input": "Which sentence is the effect of \"I rubbed the soap between my hands.\"? Choose one between A and B.\nA: The soap foamed.\nB: My hands went numb.",
"output": "A"
},
{
"input": "Which sentence is the effect of \"The fugitive hid from the police.\"? Choose one between A and B.\nA: The police dropped the case.\nB: The fugitive remained at large.",
"output": "B"
},
{
"input": "Which sentence is the cause of \"I packed up my belongings.\"? Choose one between A and B.\nA: I was hunting for a new apartment.\nB: I was moving out of my apartment.",
"output": "B"
},
{
"input": "Which sentence is the cause of \"I ironed my shirt.\"? Choose one between A and B.\nA: It was clean.\nB: It was wrinkled.",
"output": "B"
},
{
"input": "Which sentence is the effect of \"The man slid the razor across his chin.\"? Choose one between A and B.\nA: His stubble grew.\nB: His stubble disappeared.",
"output": "B"
},
{
"input": "Which sentence is the cause of \"The woman was mistaken for her sister.\"? Choose one between A and B.\nA: The woman was close with her sister.\nB: The woman looked like her sister.",
"output": "B"
},
{
"input": "Which sentence is the cause of \"The smoke alarm went off.\"? Choose one between A and B.\nA: I lit a candle.\nB: I burnt my dinner.",
"output": "B"
},
{
"input": "Which sentence is the cause of \"The celebrity wore sunglasses.\"? Choose one between A and B.\nA: She wanted to thank her fans.\nB: She wanted to avoid recognition.",
"output": "B"
},
{
"input": "Which sentence is the cause of \"The child caught a life-threatening illness.\"? Choose one between A and B.\nA: She didn't get vaccinated.\nB: She was adopted.",
"output": "A"
},
{
"input": "Which sentence is the cause of \"The retail shop shut down.\"? Choose one between A and B.\nA: Its sales were lagging.\nB: It renewed its lease.",
"output": "A"
},
{
"input": "Which sentence is the effect of \"The truck crashed into the motorcycle on the bridge.\"? Choose one between A and B.\nA: The motorcyclist died.\nB: The bridge collapsed.",
"output": "A"
},
{
"input": "Which sentence is the cause of \"The woman repaired her faucet.\"? Choose one between A and B.\nA: The faucet was leaky.\nB: The faucet was turned off.",
"output": "A"
},
{
"input": "Which sentence is the effect of \"I wanted to lighten the mood of the conversation.\"? Choose one between A and B.\nA: I remained quiet.\nB: I told a joke.",
"output": "B"
},
{
"input": "Which sentence is the cause of \"The man was bitten by mosquitoes.\"? Choose one between A and B.\nA: He went camping in the woods.\nB: He fell asleep on his couch.",
"output": "A"
},
{
"input": "Which sentence is the effect of \"The room was dim.\"? Choose one between A and B.\nA: I opened the blinds.\nB: I washed the windows.",
"output": "A"
},
{
"input": "Which sentence is the effect of \"The girl wanted to demonstrate proper etiquette.\"? Choose one between A and B.\nA: She threw away her napkin after eating.\nB: She put her napkin on her lap before eating.",
"output": "B"
},
{
"input": "Which sentence is the effect of \"A group of teenagers crashed the party.\"? Choose one between A and B.\nA: The host of the party kicked them out.\nB: The host of the party invited them in.",
"output": "A"
},
{
"input": "Which sentence is the effect of \"The mirror in the bathroom fogged up.\"? Choose one between A and B.\nA: The girl turned on the fan.\nB: The girl applied her makeup.",
"output": "A"
},
{
"input": "Which sentence is the cause of \"The man had lipstick on his cheek.\"? Choose one between A and B.\nA: The woman kissed him.\nB: The woman made him blush.",
"output": "A"
},
{
"input": "Which sentence is the cause of \"The city re-elected the mayor.\"? Choose one between A and B.\nA: The city cut its budget.\nB: The mayor fulfilled his promises.",
"output": "B"
},
{
"input": "Which sentence is the cause of \"The driver pulled over to the side of the road.\"? Choose one between A and B.\nA: He went through an intersection.\nB: He noticed a stranded vehicle.",
"output": "B"
},
{
"input": "Which sentence is the effect of \"The woman's ring slipped off in the shower.\"? Choose one between A and B.\nA: The woman polished the ring.\nB: The ring went down the drain.",
"output": "B"
},
{
"input": "Which sentence is the effect of \"The teacher caught the student chewing gum.\"? Choose one between A and B.\nA: The gum stuck to the student's shoe.\nB: The student spit out the gum.",
"output": "B"
},
{
"input": "Which sentence is the cause of \"The trip took a long time.\"? Choose one between A and B.\nA: The driver talked the whole way.\nB: The driver made a wrong turn.",
"output": "B"
},
{
"input": "Which sentence is the effect of \"The waistband on my pants was loose.\"? Choose one between A and B.\nA: I put on a belt.\nB: I put on a hat.",
"output": "A"
},
{
"input": "Which sentence is the cause of \"The screen on the laptop went black.\"? Choose one between A and B.\nA: The laptop's warranty expired.\nB: The laptop's battery died.",
"output": "B"
},
{
"input": "Which sentence is the cause of \"The fussy baby calmed down.\"? Choose one between A and B.\nA: The parents shook a rattle in front of the baby.\nB: The parents picked out a name for the baby.",
"output": "A"
},
{
"input": "Which sentence is the cause of \"The computer crashed.\"? Choose one between A and B.\nA: I backed up my files.\nB: I downloaded a virus.",
"output": "B"
},
{
"input": "Which sentence is the cause of \"The inside of the train went dark.\"? Choose one between A and B.\nA: The train travelled through a tunnel.\nB: The train ran off the tracks.",
"output": "A"
},
{
"input": "Which sentence is the effect of \"The man woke up with a toothache.\"? Choose one between A and B.\nA: He missed an appointment with the dentist.\nB: He made an appointment with the dentist.",
"output": "B"
},
{
"input": "Which sentence is the effect of \"The boy murmured his reply to his mother.\"? Choose one between A and B.\nA: His mother told him to whisper.\nB: His mother told him to speak up.",
"output": "B"
},
{
"input": "Which sentence is the cause of \"The rider fell to the ground.\"? Choose one between A and B.\nA: The bull bucked the rider.\nB: The bull chased the rider.",
"output": "A"
},
{
"input": "Which sentence is the effect of \"The bodybuilder lifted weights.\"? Choose one between A and B.\nA: The gym closed.\nB: Her muscles became fatigued.",
"output": "B"
},
{
"input": "Which sentence is the cause of \"The girl received a trophy.\"? Choose one between A and B.\nA: She won a spelling bee.\nB: She made a new friend.",
"output": "A"
},
{
"input": "Which sentence is the cause of \"The investigators deemed the man's death a suicide.\"? Choose one between A and B.\nA: He left a note.\nB: He had children.",
"output": "A"
},
{
"input": "Which sentence is the cause of \"Air leaked out of the beach ball.\"? Choose one between A and B.\nA: It was inflated.\nB: There was a hole in it.",
"output": "B"
},
{
"input": "Which sentence is the cause of \"The customer came into the boutique.\"? Choose one between A and B.\nA: She left her wallet at home.\nB: The window display caught her eye.",
"output": "B"
},
{
"input": "Which sentence is the cause of \"My car was towed.\"? Choose one between A and B.\nA: I parked illegally.\nB: I jumped the battery.",
"output": "A"
},
{
"input": "Which sentence is the cause of \"The host of the trivia show called on the contestant for an answer.\"? Choose one between A and B.\nA: The contestant was in the lead.\nB: The contestant rang the buzzer.",
"output": "B"
},
{
"input": "Which sentence is the cause of \"I lingered in bed upon awakening.\"? Choose one between A and B.\nA: I was hungry.\nB: It was Saturday.",
"output": "B"
},
{
"input": "Which sentence is the effect of \"The girl applied the scissors to the paper.\"? Choose one between A and B.\nA: The paper sliced apart.\nB: The paper crinkled.",
"output": "A"
},
{
"input": "Which sentence is the effect of \"I scratched my skin.\"? Choose one between A and B.\nA: My itch went away.\nB: My scar faded.",
"output": "A"
},
{
"input": "Which sentence is the cause of \"The benefactor requested to stay anonymous.\"? Choose one between A and B.\nA: He wanted to maintain his privacy.\nB: He supported the cause behind his donation.",
"output": "A"
},
{
"input": "Which sentence is the effect of \"The boy found the television show boring.\"? Choose one between A and B.\nA: He recorded it.\nB: He shut it off.",
"output": "B"
},
{
"input": "Which sentence is the cause of \"The man broke his toe.\"? Choose one between A and B.\nA: He got a hole in his sock.\nB: He dropped a hammer on his foot.",
"output": "B"
},
{
"input": "Which sentence is the cause of \"The woman awakened.\"? Choose one between A and B.\nA: She took sleeping pills.\nB: Her husband was snoring.",
"output": "B"
},
{
"input": "Which sentence is the effect of \"The woman presented her brother with a gift.\"? Choose one between A and B.\nA: Her brother refused to accept the gift.\nB: Her brother unwrapped the gift.",
"output": "B"
},
{
"input": "Which sentence is the cause of \"The girl had a phobia of dogs.\"? Choose one between A and B.\nA: She rescued an abandoned dog.\nB: She was bitten by a dog.",
"output": "B"
},
{
"input": "Which sentence is the effect of \"I received a package in the mail.\"? Choose one between A and B.\nA: The package triggered my curiosity.\nB: I took the package to the post office.",
"output": "A"
},
{
"input": "Which sentence is the cause of \"The woman gave the man her phone number.\"? Choose one between A and B.\nA: She was attracted to him.\nB: She was repulsed by him.",
"output": "A"
},
{
"input": "Which sentence is the effect of \"The police officer pulled over the celebrity.\"? Choose one between A and B.\nA: The celebrity offered the officer a bribe.\nB: The celebrity sued the police officer.",
"output": "A"
},
{
"input": "Which sentence is the cause of \"I dabbed the floor with a paper towel.\"? Choose one between A and B.\nA: I spilled juice on the floor.\nB: The floor was permanently stained.",
"output": "A"
},
{
"input": "Which sentence is the effect of \"The woman wanted to be a doctor.\"? Choose one between A and B.\nA: She visited the hospital.\nB: She went to medical school.",
"output": "B"
},
{
"input": "Which sentence is the effect of \"The sun emerged from the clouds.\"? Choose one between A and B.\nA: The woman glanced at her watch.\nB: The woman took her sweater off.",
"output": "B"
},
{
"input": "Which sentence is the cause of \"The woman stayed away from public places.\"? Choose one between A and B.\nA: She was contagious.\nB: She was intoxicated.",
"output": "A"
},
{
"input": "Which sentence is the cause of \"The security guard tackled the man.\"? Choose one between A and B.\nA: The man reached into his pocket.\nB: The man displayed a weapon.",
"output": "B"
},
{
"input": "Which sentence is the cause of \"The man closed the umbrella.\"? Choose one between A and B.\nA: He got out of the car.\nB: He approached the building.",
"output": "B"
},
{
"input": "Which sentence is the cause of \"The football coach lost his voice after the game.\"? Choose one between A and B.\nA: He yelled whenever a player fumbled the ball.\nB: He whistled whenever a player scored a touchdown.",
"output": "A"
},
{
"input": "Which sentence is the cause of \"The army surrendered the battle.\"? Choose one between A and B.\nA: They were outnumbered.\nB: They stormed the city.",
"output": "A"
},
{
"input": "Which sentence is the effect of \"The cup of tea was scalding hot.\"? Choose one between A and B.\nA: I blew on it.\nB: I poured it out.",
"output": "A"
},
{
"input": "Which sentence is the cause of \"I ran out of breath.\"? Choose one between A and B.\nA: I climbed several flights of stairs.\nB: I read several chapters of the book.",
"output": "A"
},
{
"input": "Which sentence is the cause of \"I put my plate in the sink.\"? Choose one between A and B.\nA: I finished eating.\nB: I skipped dinner.",
"output": "A"
},
{
"input": "Which sentence is the cause of \"The children ran through the sprinkler.\"? Choose one between A and B.\nA: They ate popsicles.\nB: They were hot.",
"output": "B"
},
{
"input": "Which sentence is the cause of \"I slipped on the floor.\"? Choose one between A and B.\nA: The tile was wet.\nB: The tile was cracked.",
"output": "A"
},
{
"input": "Which sentence is the cause of \"The family took their dog to the veterinarian.\"? Choose one between A and B.\nA: The dog chewed on a bone.\nB: The dog injured his paw.",
"output": "B"
},
{
"input": "Which sentence is the effect of \"I saw a woman getting robbed on the street.\"? Choose one between A and B.\nA: I called 911.\nB: I hailed a cab.",
"output": "A"
},
{
"input": "Which sentence is the effect of \"The hunter ran out of ammunition.\"? Choose one between A and B.\nA: He reloaded the gun.\nB: He aimed at the deer.",
"output": "A"
},
{
"input": "Which sentence is the cause of \"The guests of the party hid behind the couch.\"? Choose one between A and B.\nA: It was a surprise party.\nB: It was a birthday party.",
"output": "A"
},
{
"input": "Which sentence is the effect of \"The bully stuck his foot out in front of his classmate.\"? Choose one between A and B.\nA: The bully picked up his classmate.\nB: The bully's classmate tripped.",
"output": "B"
},
{
"input": "Which sentence is the cause of \"The woman's purse was missing.\"? Choose one between A and B.\nA: It contained a lot of junk.\nB: She left it unsupervised.",
"output": "B"
},
{
"input": "Which sentence is the cause of \"The woman got away with the crime.\"? Choose one between A and B.\nA: Her accomplice was apprehended.\nB: She destroyed the evidence.",
"output": "B"
},
{
"input": "Which sentence is the effect of \"The papers were disorganized.\"? Choose one between A and B.\nA: I made photocopies of them.\nB: I put them into alphabetical order.",
"output": "B"
},
{
"input": "Which sentence is the cause of \"The skier slipped on the slope.\"? Choose one between A and B.\nA: She dropped her ski poles.\nB: She hit a patch of ice.",
"output": "B"
},
{
"input": "Which sentence is the effect of \"The man needed coins to fill the parking meter.\"? Choose one between A and B.\nA: He searched under his car seats for loose change.\nB: He begged people on the street for loose change.",
"output": "A"
},
{
"input": "Which sentence is the effect of \"The man became disabled.\"? Choose one between A and B.\nA: His family offered him financial support.\nB: His family cut off contact with him.",
"output": "A"
},
{
"input": "Which sentence is the cause of \"The driver got pulled over by the police.\"? Choose one between A and B.\nA: He was parking.\nB: He was speeding.",
"output": "B"
},
{
"input": "Which sentence is the effect of \"I scrubbed the stain on the floor.\"? Choose one between A and B.\nA: I got rid of the stain.\nB: I got dirt on the floor.",
"output": "A"
},
{
"input": "Which sentence is the effect of \"The girl was angry with her friend.\"? Choose one between A and B.\nA: The girl spread a rumor about her friend.\nB: The girl told a secret to her friend.",
"output": "A"
},
{
"input": "Which sentence is the effect of \"The shopper wondered about the cost of the item.\"? Choose one between A and B.\nA: He checked its price tag.\nB: He decided to buy it.",
"output": "A"
},
{
"input": "Which sentence is the effect of \"The product was heavily advertised.\"? Choose one between A and B.\nA: Consumers recognized the product.\nB: The product became outdated.",
"output": "A"
},
{
"input": "Which sentence is the cause of \"I excused myself from the group.\"? Choose one between A and B.\nA: I turned off my phone.\nB: My phone rang.",
"output": "B"
},
{
"input": "Which sentence is the cause of \"The milk stayed cold.\"? Choose one between A and B.\nA: It was pasteurized.\nB: I stored it in the refrigerator.",
"output": "B"
},
{
"input": "Which sentence is the effect of \"The woman felt lonely.\"? Choose one between A and B.\nA: She renovated her kitchen.\nB: She adopted a cat.",
"output": "B"
},
{
"input": "Which sentence is the effect of \"The man was lost.\"? Choose one between A and B.\nA: He asked for directions.\nB: He drew a map.",
"output": "A"
},
{
"input": "Which sentence is the cause of \"I approached the man.\"? Choose one between A and B.\nA: He looked busy.\nB: He looked familiar.",
"output": "B"
},
{
"input": "Which sentence is the effect of \"The terrorist set off the bomb.\"? Choose one between A and B.\nA: The bomb exploded.\nB: The bomb was deactivated.",
"output": "A"
},
{
"input": "Which sentence is the effect of \"A fistfight broke out in the hall of the school.\"? Choose one between A and B.\nA: The principal suspended the students involved.\nB: The principal called off classes for the day.",
"output": "A"
},
{
"input": "Which sentence is the effect of \"Several witnesses of the crime testified against the suspect.\"? Choose one between A and B.\nA: The suspect was acquitted.\nB: The suspect was convicted.",
"output": "B"
},
{
"input": "Which sentence is the effect of \"The homeowners disliked their nosy neighbors.\"? Choose one between A and B.\nA: They built a fence around their property.\nB: They hosted a barbeque in their backyard.",
"output": "A"
},
{
"input": "Which sentence is the effect of \"The car looked filthy.\"? Choose one between A and B.\nA: The owner took it to the car wash.\nB: He owner took it in for a paint job.",
"output": "A"
},
{
"input": "Which sentence is the effect of \"The cook stirred the ingredients in the bowl.\"? Choose one between A and B.\nA: The ingredients melted.\nB: The ingredients blended together.",
"output": "B"
},
{
"input": "Which sentence is the effect of \"The man begged for forgiveness.\"? Choose one between A and B.\nA: The woman took pity on him.\nB: The woman joked around with him.",
"output": "A"
},
{
"input": "Which sentence is the effect of \"I ran the ice cube under warm water.\"? Choose one between A and B.\nA: The ice cube stuck to my fingers.\nB: The ice cube vanished.",
"output": "B"
},
{
"input": "Which sentence is the cause of \"The librarian located the book in the stacks.\"? Choose one between A and B.\nA: I requested the librarian's help.\nB: The book was checked out.",
"output": "A"
},
{
"input": "Which sentence is the effect of \"The gardener pulled the weeds.\"? Choose one between A and B.\nA: The weeds came out of the soil.\nB: The weeds produced seeds.",
"output": "A"
},
{
"input": "Which sentence is the cause of \"The driver honked her horn.\"? Choose one between A and B.\nA: Another car swerved into her lane.\nB: She made a right turn at the light.",
"output": "A"
},
{
"input": "Which sentence is the effect of \"The woman hit a midlife crisis.\"? Choose one between A and B.\nA: She retired.\nB: She went sky diving.",
"output": "B"
},
{
"input": "Which sentence is the cause of \"The girl's mouth ached.\"? Choose one between A and B.\nA: She lost a tooth.\nB: She swallowed her gum.",
"output": "A"
},
{
"input": "Which sentence is the cause of \"The man closed the book.\"? Choose one between A and B.\nA: He finished reading it.\nB: It provoked him to think.",
"output": "A"
},
{
"input": "Which sentence is the cause of \"The woman wrote a check to the gas company.\"? Choose one between A and B.\nA: She preferred paying by cash.\nB: She received her monthly bill.",
"output": "B"
},
{
"input": "Which sentence is the cause of \"The girl handed down her clothes to her younger sister.\"? Choose one between A and B.\nA: The clothes were tattered.\nB: She outgrew the clothes.",
"output": "B"
},
{
"input": "Which sentence is the cause of \"The man drank water with his meal.\"? Choose one between A and B.\nA: His meal was cold.\nB: His meal was spicy.",
"output": "B"
},
{
"input": "Which sentence is the cause of \"A crater formed on the moon.\"? Choose one between A and B.\nA: A comet passed by the moon.\nB: A comet collided with the moon.",
"output": "B"
},
{
"input": "Which sentence is the effect of \"The baby pulled the mother's hair.\"? Choose one between A and B.\nA: The baby burped.\nB: The mother grimaced.",
"output": "B"
},
{
"input": "Which sentence is the effect of \"The woman won the lottery.\"? Choose one between A and B.\nA: She bought a yacht.\nB: She joined a church.",
"output": "A"
},
{
"input": "Which sentence is the effect of \"The boy turned the lid on the jar.\"? Choose one between A and B.\nA: The jar became warm.\nB: The lid came off.",
"output": "B"
},
{
"input": "Which sentence is the effect of \"The woman's date wanted to look like a gentleman.\"? Choose one between A and B.\nA: He opened the door for her.\nB: He asked her if she liked sushi.",
"output": "A"
},
{
"input": "Which sentence is the cause of \"I moved to a new city.\"? Choose one between A and B.\nA: I found a better-paying job.\nB: My son was born.",
"output": "A"
},
{
"input": "Which sentence is the cause of \"I avoided giving a straight answer to the question.\"? Choose one between A and B.\nA: The question made me uncomfortable.\nB: I wanted to be honest.",
"output": "A"
},
{
"input": "Which sentence is the effect of \"The man uncovered incriminating evidence against his enemy.\"? Choose one between A and B.\nA: The man avoided his enemy.\nB: The man blackmailed his enemy.",
"output": "B"
},
{
"input": "Which sentence is the cause of \"The skydiver glided safely to the ground.\"? Choose one between A and B.\nA: She opened her parachute.\nB: She jumped out of the plane.",
"output": "A"
},
{
"input": "Which sentence is the cause of \"The cat purred.\"? Choose one between A and B.\nA: It scratched me.\nB: I petted it.",
"output": "B"
},
{
"input": "Which sentence is the effect of \"I held the door for the woman entering behind me.\"? Choose one between A and B.\nA: The door slammed shut.\nB: The woman thanked me.",
"output": "B"
},
{
"input": "Which sentence is the cause of \"The child became immune to the disease.\"? Choose one between A and B.\nA: He avoided exposure to the disease.\nB: He received the vaccine for the disease.",
"output": "B"
},
{
"input": "Which sentence is the cause of \"The bar closed.\"? Choose one between A and B.\nA: It was crowded.\nB: It was 3 AM.",
"output": "B"
},
{
"input": "Which sentence is the effect of \"I poured water on my sleeping friend.\"? Choose one between A and B.\nA: My friend awoke.\nB: My friend snored.",
"output": "A"
},
{
"input": "Which sentence is the effect of \"The vase broke.\"? Choose one between A and B.\nA: I stenciled it.\nB: I glued it back together.",
"output": "B"
},
{
"input": "Which sentence is the cause of \"The hospital sent the patient home.\"? Choose one between A and B.\nA: The patient's symptoms cleared up.\nB: The patient's family visited him.",
"output": "A"
},
{
"input": "Which sentence is the cause of \"The man took notice of the woman.\"? Choose one between A and B.\nA: He caught a whiff of her perfume.\nB: He had his back turned to her.",
"output": "A"
},
{
"input": "Which sentence is the effect of \"I clenched the candy wrapper in my fist.\"? Choose one between A and B.\nA: The wrapper crinkled.\nB: The wrapper ripped.",
"output": "A"
},
{
"input": "Which sentence is the cause of \"The young woman was denied entrance into the bar.\"? Choose one between A and B.\nA: Her friends stood her up.\nB: She forgot her ID.",
"output": "B"
},
{
"input": "Which sentence is the effect of \"The teacher took roll.\"? Choose one between A and B.\nA: She identified the students that were absent.\nB: She gave her students a pop quiz.",
"output": "A"
},
{
"input": "Which sentence is the cause of \"A water pipe in the house burst.\"? Choose one between A and B.\nA: The water was unsanitary.\nB: The pipe froze.",
"output": "B"
},
{
"input": "Which sentence is the cause of \"My mailbox was overflowing with letters.\"? Choose one between A and B.\nA: The lid on the mailbox broke.\nB: I went on vacation for two weeks.",
"output": "B"
},
{
"input": "Which sentence is the effect of \"The bananas ripened.\"? Choose one between A and B.\nA: We squeezed them.\nB: We ate them.",
"output": "B"
},
{
"input": "Which sentence is the cause of \"The woman took her family on vacation.\"? Choose one between A and B.\nA: Her husband got laid off.\nB: She received a salary bonus.",
"output": "B"
},
{
"input": "Which sentence is the cause of \"The friends' debate dragged on interminably.\"? Choose one between A and B.\nA: The friends saw eye to eye.\nB: The friends were splitting hairs.",
"output": "B"
},
{
"input": "Which sentence is the cause of \"The chair squeaked.\"? Choose one between A and B.\nA: The man carried the chair to his office.\nB: The man scooted the chair closer to his desk.",
"output": "B"
},
{
"input": "Which sentence is the effect of \"I planted the seeds in the soil.\"? Choose one between A and B.\nA: I watered the soil.\nB: The seeds sprouted.",
"output": "B"
},
{
"input": "Which sentence is the effect of \"The seamstress pushed the threaded needle into the fabric.\"? Choose one between A and B.\nA: The thread wrapped around the needle.\nB: The thread went through the fabric.",
"output": "B"
},
{
"input": "Which sentence is the cause of \"The shop was closed.\"? Choose one between A and B.\nA: The owner was helping customers.\nB: The shop was undergoing renovation.",
"output": "B"
},
{
"input": "Which sentence is the effect of \"The photographer got the child to smile.\"? Choose one between A and B.\nA: The photographer quickly snapped the child's photo.\nB: The photographer quickly changed the child's pose.",
"output": "A"
},
{
"input": "Which sentence is the cause of \"The children knocked over a lamp.\"? Choose one between A and B.\nA: They had a pillow fight.\nB: They jumped on the bed.",
"output": "A"
},
{
"input": "Which sentence is the cause of \"The egg splattered.\"? Choose one between A and B.\nA: I dropped it.\nB: I boiled it.",
"output": "A"
},
{
"input": "Which sentence is the effect of \"The man caught his shirtsleeve on the rungs of the fence.\"? Choose one between A and B.\nA: He hopped the fence.\nB: The sleeve ripped.",
"output": "B"
},
{
"input": "Which sentence is the effect of \"The boy wanted to be muscular.\"? Choose one between A and B.\nA: He lifted weights.\nB: He played computer games.",
"output": "A"
},
{
"input": "Which sentence is the effect of \"The detective flashed his badge to the police officer.\"? Choose one between A and B.\nA: The police officer confiscated the detective's badge.\nB: The police officer let the detective enter the crime scene.",
"output": "B"
},
{
"input": "Which sentence is the effect of \"The child kicked the stack of blocks.\"? Choose one between A and B.\nA: The stack towered over the boy's head.\nB: The blocks scattered all over the rug.",
"output": "B"
},
{
"input": "Which sentence is the cause of \"The boy read the novel aloud to his grandfather.\"? Choose one between A and B.\nA: His grandfather was deaf.\nB: His grandfather was blind.",
"output": "B"
},
{
"input": "Which sentence is the cause of \"The runner wore shorts.\"? Choose one between A and B.\nA: The forecast predicted high temperatures.\nB: She planned to run along the beach.",
"output": "A"
},
{
"input": "Which sentence is the effect of \"The girl pushed her friend.\"? Choose one between A and B.\nA: Her friend choked.\nB: Her friend fell over.",
"output": "B"
},
{
"input": "Which sentence is the effect of \"The rain subsided.\"? Choose one between A and B.\nA: I went for a walk.\nB: I browsed the internet.",
"output": "A"
},
{
"input": "Which sentence is the effect of \"The administrator cleared her throat.\"? Choose one between A and B.\nA: The meeting was postponed.\nB: The meeting commenced.",
"output": "B"
},
{
"input": "Which sentence is the cause of \"The patient went into a coma.\"? Choose one between A and B.\nA: He suffered emotional trauma.\nB: He suffered brain damage.",
"output": "B"
},
{
"input": "Which sentence is the effect of \"The man signed the document.\"? Choose one between A and B.\nA: The transaction was voided.\nB: The transaction became official.",
"output": "B"
},
{
"input": "Which sentence is the effect of \"The chef pressed down on the dough.\"? Choose one between A and B.\nA: The dough crumbled.\nB: The dough flattened.",
"output": "B"
},
{
"input": "Which sentence is the cause of \"The girl gasped.\"? Choose one between A and B.\nA: Her friend stuck an ice cube down her back.\nB: Her friend gave her a pat on the back.",
"output": "A"
},
{
"input": "Which sentence is the cause of \"The mother became eye level with her son.\"? Choose one between A and B.\nA: She squatted down.\nB: She held his hand.",
"output": "A"
},
{
"input": "Which sentence is the effect of \"The parents recognized their daughter's creativity.\"? Choose one between A and B.\nA: They taught her how to ride a bike.\nB: They encouraged her to become an artist.",
"output": "B"
},
{
"input": "Which sentence is the cause of \"The woman covered her ears.\"? Choose one between A and B.\nA: The fire alarm blared.\nB: The woman smelled smoke.",
"output": "A"
},
{
"input": "Which sentence is the cause of \"The police eliminated the woman from the list of suspects.\"? Choose one between A and B.\nA: The police interrogated her.\nB: Her alibi checked out.",
"output": "B"
},
{
"input": "Which sentence is the effect of \"The book became a huge bestseller.\"? Choose one between A and B.\nA: It was adapted into a movie.\nB: The author faded into obscurity.",
"output": "A"
},
{
"input": "Which sentence is the effect of \"The man wanted to get revenge on his enemy.\"? Choose one between A and B.\nA: The man framed his enemy for a crime.\nB: The man declared a truce with his enemy.",
"output": "A"
},
{
"input": "Which sentence is the cause of \"The employee missed work.\"? Choose one between A and B.\nA: Her family got in touch with her.\nB: There was a death in her family.",
"output": "B"
},
{
"input": "Which sentence is the effect of \"Our group's conversation gradually lulled to silence.\"? Choose one between A and B.\nA: I felt awkward.\nB: I became enraged.",
"output": "A"
},
{
"input": "Which sentence is the effect of \"The crowd gave the band a standing ovation.\"? Choose one between A and B.\nA: The band signed autographs.\nB: The band reappeared on the stage.",
"output": "B"
},
{
"input": "Which sentence is the cause of \"My jaw dropped open.\"? Choose one between A and B.\nA: I was unhappy.\nB: I was shocked.",
"output": "B"
},
{
"input": "Which sentence is the effect of \"I put coins in the washing machine at the laundromat.\"? Choose one between A and B.\nA: The machine powered on.\nB: I ran out of laundry detergent.",
"output": "A"
},
{
"input": "Which sentence is the effect of \"The stranger cried out to me in a foreign language.\"? Choose one between A and B.\nA: I stared blankly at him.\nB: I stopped to chat with him.",
"output": "A"
},
{
"input": "Which sentence is the cause of \"I drank from the water fountain.\"? Choose one between A and B.\nA: I was thirsty.\nB: I felt nauseous.",
"output": "A"
},
{
"input": "Which sentence is the cause of \"My stomach growled.\"? Choose one between A and B.\nA: I forgot to eat breakfast.\nB: I was full from breakfast.",
"output": "A"
},
{
"input": "Which sentence is the cause of \"The rocket flew up into the sky.\"? Choose one between A and B.\nA: The girl launched it.\nB: The girl designed it.",
"output": "A"
},
{
"input": "Which sentence is the effect of \"The physician misdiagnosed the patient.\"? Choose one between A and B.\nA: The patient filed a malpractice lawsuit against the physician.\nB: The patient disclosed confidential information to the physician.",
"output": "A"
},
{
"input": "Which sentence is the effect of \"I tossed the ball upwards.\"? Choose one between A and B.\nA: The ball rolled across the ground.\nB: The ball hit the ceiling.",
"output": "B"
},
{
"input": "Which sentence is the effect of \"The man contemplated the painting.\"? Choose one between A and B.\nA: He felt in awe.\nB: He collapsed.",
"output": "A"
},
{
"input": "Which sentence is the effect of \"The man lifted the heavy box.\"? Choose one between A and B.\nA: He put out his back.\nB: He scratched his back.",
"output": "A"
},
{
"input": "Which sentence is the cause of \"The father put his daughter in her stroller.\"? Choose one between A and B.\nA: She learned to walk.\nB: He was tired of carrying her.",
"output": "B"
},
{
"input": "Which sentence is the effect of \"The man gained weight.\"? Choose one between A and B.\nA: He got his suit altered.\nB: He got his shoes shined.",
"output": "A"
},
{
"input": "Which sentence is the effect of \"I pushed the pendulum.\"? Choose one between A and B.\nA: It slowed to a stop.\nB: It swung back and forth.",
"output": "B"
},
{
"input": "Which sentence is the effect of \"The man threw his empty can onto the street.\"? Choose one between A and B.\nA: He was jumped from behind.\nB: He was fined for littering.",
"output": "B"
},
{
"input": "Which sentence is the effect of \"The car stopped at the crosswalk.\"? Choose one between A and B.\nA: The pedestrian crossed the road.\nB: The pedestrian waited on the sidewalk.",
"output": "A"
},
{
"input": "Which sentence is the cause of \"The team lost the game.\"? Choose one between A and B.\nA: Their best player was injured.\nB: Their coach pumped them up.",
"output": "A"
},
{
"input": "Which sentence is the cause of \"The bartender refused to serve the patron.\"? Choose one between A and B.\nA: The patron was alone.\nB: The patron was drunk.",
"output": "B"
},
{
"input": "Which sentence is the effect of \"A man cut in front of me in the long line.\"? Choose one between A and B.\nA: I confronted him.\nB: I smiled at him.",
"output": "A"
},
{
"input": "Which sentence is the cause of \"The man removed his coat.\"? Choose one between A and B.\nA: He entered the house.\nB: He loosened his tie.",
"output": "A"
},
{
"input": "Which sentence is the effect of \"The woman felt ashamed of scar on her face.\"? Choose one between A and B.\nA: She explained the scar to strangers.\nB: She hid the scar with makeup.",
"output": "B"
},
{
"input": "Which sentence is the effect of \"The authorities vowed to protect the identity of the crime victim.\"? Choose one between A and B.\nA: The victim struggled to recall details about the crime.\nB: They withheld the victim's name from the public.",
"output": "B"
},
{
"input": "Which sentence is the cause of \"The man threw out the bread.\"? Choose one between A and B.\nA: It was fresh.\nB: It was stale.",
"output": "B"
},
{
"input": "Which sentence is the effect of \"The boy had trouble buttoning his shirt.\"? Choose one between A and B.\nA: He refused to wear the shirt.\nB: He asked his mother for help.",
"output": "B"
},
{
"input": "Which sentence is the effect of \"My breath smelled of garlic.\"? Choose one between A and B.\nA: I wiped my mouth.\nB: I brushed my teeth.",
"output": "B"
},
{
"input": "Which sentence is the cause of \"The company lost money.\"? Choose one between A and B.\nA: Its products received positive consumer reviews.\nB: Some of its products were manufactured defectively.",
"output": "B"
},
{
"input": "Which sentence is the effect of \"The woman dangled the biscuit above the dog.\"? Choose one between A and B.\nA: The dog jumped up.\nB: The dog scratched its fur.",
"output": "A"
},
{
"input": "Which sentence is the cause of \"I went to bed.\"? Choose one between A and B.\nA: It was a clear night.\nB: It was late.",
"output": "B"
}
]
} |