File size: 48,459 Bytes
0313279 |
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 |
{
"metadata": {
"model_name": "llama-3.3-70b-instruct",
"ntrain": 0,
"ntest": -1,
"timestamp": "20241212-045946"
},
"subject": "high_school_geography",
"category": "social sciences",
"correct_rate": 86.36363636363636,
"evaluation_results": [
{
"question": "The main factor preventing subsistence economies from advancing economically is the lack of",
"model_answer": "B.",
"correct_answer": 1,
"is_correct": true,
"response_time": 23.837796926498413
},
{
"question": "The tendency for a population to continue to grow long after replacement fertility has been achieved is called",
"model_answer": "D.",
"correct_answer": 3,
"is_correct": true,
"response_time": 23.837915897369385
},
{
"question": "The tendency for migration to decrease with distance is called",
"model_answer": "C.",
"correct_answer": 2,
"is_correct": true,
"response_time": 23.83802604675293
},
{
"question": "Which zone contains low-income slums, ethnic ghettos, and general deterioration in Burgess's concentric zone model of urban form?",
"model_answer": "B.",
"correct_answer": 0,
"is_correct": false,
"response_time": 23.838119983673096
},
{
"question": "Which of the following statements is TRUE concerning women in the labor force?",
"model_answer": "D",
"correct_answer": 3,
"is_correct": true,
"response_time": 23.83821392059326
},
{
"question": "All the following factors can be considered pull factors of migration EXCEPT",
"model_answer": "D.",
"correct_answer": 3,
"is_correct": true,
"response_time": 23.83831286430359
},
{
"question": "Which of the following countries does NOT have a well-known example of a relict boundary?",
"model_answer": "A",
"correct_answer": 3,
"is_correct": false,
"response_time": 23.838404178619385
},
{
"question": "Which form of migration below are farm workers from another country most likely to be practicing during the year?",
"model_answer": "C.",
"correct_answer": 2,
"is_correct": true,
"response_time": 23.83849596977234
},
{
"question": "Which of the following is a centrifugal force in a country?",
"model_answer": "A.",
"correct_answer": 0,
"is_correct": true,
"response_time": 23.838587999343872
},
{
"question": "Early settlements and high population density along coastlines and rivers are best attributed to which of the following?",
"model_answer": "D",
"correct_answer": 3,
"is_correct": true,
"response_time": 23.838677883148193
},
{
"question": "The first stage of the demographic transition exhibits",
"model_answer": "A.",
"correct_answer": 0,
"is_correct": true,
"response_time": 22.182257890701294
},
{
"question": "What is the population statistic that tells us the level of fertility at which a population will have just enough births to replace parents and compensate for early deaths?",
"model_answer": "B",
"correct_answer": 1,
"is_correct": true,
"response_time": 22.182677030563354
},
{
"question": "What is the most rapidly growing religion in the United States today?",
"model_answer": "A.",
"correct_answer": 0,
"is_correct": true,
"response_time": 22.18488597869873
},
{
"question": "The outlying area serviced by a urban center is referred to as a",
"model_answer": "D",
"correct_answer": 3,
"is_correct": true,
"response_time": 22.18501091003418
},
{
"question": "The best definition of an urban area is",
"model_answer": "B.",
"correct_answer": 1,
"is_correct": true,
"response_time": 22.185102939605713
},
{
"question": "Which of the following religions developed first?",
"model_answer": "D",
"correct_answer": 3,
"is_correct": true,
"response_time": 22.185194969177246
},
{
"question": "Which one of the following is NOT a characteristic of world cities?",
"model_answer": "D",
"correct_answer": 3,
"is_correct": true,
"response_time": 22.185286045074463
},
{
"question": "Which type of transportation system created the star-shaped city pattern?",
"model_answer": "D",
"correct_answer": 3,
"is_correct": true,
"response_time": 22.18537402153015
},
{
"question": "In which urban US setting below would you expect to find planned communities?",
"model_answer": "B",
"correct_answer": 1,
"is_correct": true,
"response_time": 22.18546199798584
},
{
"question": "The latitude and longitude coordinates of a place are an example of",
"model_answer": "C",
"correct_answer": 2,
"is_correct": true,
"response_time": 22.185546159744263
},
{
"question": "The voluntary association of three or more countries willing to give up some measure of sovereignty is called",
"model_answer": "C.",
"correct_answer": 2,
"is_correct": true,
"response_time": 24.177151918411255
},
{
"question": "The key factor Thomas Malthus failed to recognize in his population theory was",
"model_answer": "D",
"correct_answer": 3,
"is_correct": true,
"response_time": 24.17726182937622
},
{
"question": "Which pair of religions are both universalizing religions?",
"model_answer": "D",
"correct_answer": 3,
"is_correct": true,
"response_time": 24.177355766296387
},
{
"question": "Which urban model theorizes that high-rent residential areas grow outward from the center of the city along major highways with lower-rent inhabitants taking over sequentially?",
"model_answer": "D",
"correct_answer": 3,
"is_correct": true,
"response_time": 24.17744779586792
},
{
"question": "When a country combines its religion with its government, it is called a",
"model_answer": "B.",
"correct_answer": 1,
"is_correct": true,
"response_time": 24.17754077911377
},
{
"question": "What is the chief religion practiced in Europe?",
"model_answer": "A.",
"correct_answer": 0,
"is_correct": true,
"response_time": 24.177695989608765
},
{
"question": "Which group enacted the first effective settlement in the eastern United States?",
"model_answer": "B",
"correct_answer": 1,
"is_correct": true,
"response_time": 24.17779779434204
},
{
"question": "A population pyramid, or age-sex structure, displays all the following information about a country's population EXCEPT",
"model_answer": "C.",
"correct_answer": 1,
"is_correct": false,
"response_time": 24.17789077758789
},
{
"question": "The Rhine River is an example of which type of boundary?",
"model_answer": "C",
"correct_answer": 2,
"is_correct": true,
"response_time": 24.177983045578003
},
{
"question": "Which type of economic activity is most closely tied to the physical environment?",
"model_answer": "A.",
"correct_answer": 0,
"is_correct": true,
"response_time": 24.17807173728943
},
{
"question": "The majority of workers in periphery countries are probably employed in which type of activities?",
"model_answer": "A.",
"correct_answer": 0,
"is_correct": true,
"response_time": 24.3510959148407
},
{
"question": "All of the following are non-basic jobs in the city EXCEPT",
"model_answer": "D.",
"correct_answer": 3,
"is_correct": true,
"response_time": 24.351462841033936
},
{
"question": "Transnational corporations distribute their operations",
"model_answer": "C.",
"correct_answer": 2,
"is_correct": true,
"response_time": 24.352195024490356
},
{
"question": "Which of the following is LEAST associated with the development of alluvial landscapes?",
"model_answer": "D",
"correct_answer": 3,
"is_correct": true,
"response_time": 24.352538108825684
},
{
"question": "Which of the following is LEAST self-sufficient in the natural resources needed for modern industry?",
"model_answer": "B",
"correct_answer": 1,
"is_correct": true,
"response_time": 24.352884769439697
},
{
"question": "One of the effects of the east–west orientation of the Alpine mountain system and the northern plains of western and central Europe is that it",
"model_answer": "A.",
"correct_answer": 2,
"is_correct": false,
"response_time": 24.353349685668945
},
{
"question": "The largest Hindu temple complex ever constructed is found in",
"model_answer": "C.",
"correct_answer": 2,
"is_correct": true,
"response_time": 24.353765726089478
},
{
"question": "Which term describes the forces that unify and strengthen a country?",
"model_answer": "C",
"correct_answer": 2,
"is_correct": true,
"response_time": 24.353882789611816
},
{
"question": "Which one of the following statements best describes an application of the S-curve?",
"model_answer": "D",
"correct_answer": 3,
"is_correct": true,
"response_time": 24.353977918624878
},
{
"question": "Which of the following items is NOT a challenge to the state?",
"model_answer": "D",
"correct_answer": 3,
"is_correct": true,
"response_time": 24.35406994819641
},
{
"question": "National sports teams, flags, national anthems, and national holidays all promote",
"model_answer": "A.",
"correct_answer": 0,
"is_correct": true,
"response_time": 22.97574281692505
},
{
"question": "The process whereby immigrants learn the values, language, and customs of their new country is called",
"model_answer": "A.",
"correct_answer": 1,
"is_correct": false,
"response_time": 22.976162672042847
},
{
"question": "On which of the following can one most accurately depict true geographical distance, true direction, true size, and true shape?",
"model_answer": "B",
"correct_answer": 1,
"is_correct": true,
"response_time": 22.976504802703857
},
{
"question": "Which of the following could be considered a higher-order central place function?",
"model_answer": "B",
"correct_answer": 1,
"is_correct": true,
"response_time": 22.977213859558105
},
{
"question": "Which geographer viewed the US urban community of the 1920s as a set of concentric rings radiating outward from a central core?",
"model_answer": "D",
"correct_answer": 3,
"is_correct": true,
"response_time": 22.977323055267334
},
{
"question": "To get to school in the morning, we ALL use this as our guide:",
"model_answer": "C.",
"correct_answer": 3,
"is_correct": false,
"response_time": 22.977425813674927
},
{
"question": "Of these, the map using the smallest map scale would be the map of",
"model_answer": "C.",
"correct_answer": 0,
"is_correct": false,
"response_time": 22.9776668548584
},
{
"question": "An earlier boundary formed before meticulous geographic knowledge and mapping was available is known as",
"model_answer": "C.",
"correct_answer": 0,
"is_correct": false,
"response_time": 22.977782011032104
},
{
"question": "Which of the following jobs is in the non-basic employment sector?",
"model_answer": "A",
"correct_answer": 3,
"is_correct": false,
"response_time": 22.97787380218506
},
{
"question": "In which of the following regions is subsistence agriculture being replaced by large-scale commercial development?",
"model_answer": "B",
"correct_answer": 1,
"is_correct": true,
"response_time": 22.977962017059326
},
{
"question": "A strong movement away from all religions is called",
"model_answer": "A.",
"correct_answer": 0,
"is_correct": true,
"response_time": 24.80883002281189
},
{
"question": "Regions share all of these characteristics EXCEPT",
"model_answer": "A.",
"correct_answer": 3,
"is_correct": false,
"response_time": 24.809420824050903
},
{
"question": "Which of the following U.S. main immigration flow associations is NOT correct?",
"model_answer": "B",
"correct_answer": 1,
"is_correct": true,
"response_time": 24.809542894363403
},
{
"question": "Which one of the statements below is characteristic of most African cities?",
"model_answer": "A",
"correct_answer": 2,
"is_correct": false,
"response_time": 24.809641122817993
},
{
"question": "Which country faces a serious trade disadvantage due to its location?",
"model_answer": "D",
"correct_answer": 3,
"is_correct": true,
"response_time": 24.809736013412476
},
{
"question": "In which zone of Burgess's concentric zone model would one find better houses, single-family homes, and higher-rent apartments?",
"model_answer": "B",
"correct_answer": 2,
"is_correct": false,
"response_time": 24.80982995033264
},
{
"question": "The theory that every society develops economically according to a five-stage pattern of growth is attributed to",
"model_answer": "A.",
"correct_answer": 0,
"is_correct": true,
"response_time": 24.80992293357849
},
{
"question": "Which of the following would NOT be considered a barrier to diffusion of a cultural trait?",
"model_answer": "D",
"correct_answer": 3,
"is_correct": true,
"response_time": 24.810014963150024
},
{
"question": "The process of invasion and succession is a process involving migration and is best described as when",
"model_answer": "D",
"correct_answer": 3,
"is_correct": true,
"response_time": 24.81010603904724
},
{
"question": "Which of the following best illustrates the definition of a functional region?",
"model_answer": "A.",
"correct_answer": 0,
"is_correct": true,
"response_time": 24.810193061828613
},
{
"question": "New stores opening around a large shopping mall reflect which concept?",
"model_answer": "A",
"correct_answer": 3,
"is_correct": false,
"response_time": 22.414435148239136
},
{
"question": "The birth of an urban industrial workforce in Europe contributed to the start of the",
"model_answer": "B.",
"correct_answer": 1,
"is_correct": true,
"response_time": 22.414550065994263
},
{
"question": "Which of the following statements about East Asia's industrial regions is true?",
"model_answer": "C",
"correct_answer": 2,
"is_correct": true,
"response_time": 22.41478395462036
},
{
"question": "Which of the following statements best describes the United Nations?",
"model_answer": "D",
"correct_answer": 3,
"is_correct": true,
"response_time": 22.414894104003906
},
{
"question": "Which of the following is a formal region?",
"model_answer": "B.",
"correct_answer": 1,
"is_correct": true,
"response_time": 22.414987087249756
},
{
"question": "The concentration of production activities and people spatially to benefit everyone is called",
"model_answer": "C.",
"correct_answer": 2,
"is_correct": true,
"response_time": 22.41507601737976
},
{
"question": "Which language family contains Italian, Spanish, Portuguese, and Romanian?",
"model_answer": "D",
"correct_answer": 3,
"is_correct": true,
"response_time": 22.415162801742554
},
{
"question": "Ankara, Turkey and Islamabad, Pakistan are both examples of",
"model_answer": "B",
"correct_answer": 1,
"is_correct": true,
"response_time": 22.415251970291138
},
{
"question": "Which of the following is NOT an example of syncretism?",
"model_answer": "C.",
"correct_answer": 2,
"is_correct": true,
"response_time": 22.415339946746826
},
{
"question": "The theory that whoever controlled the landmass of Europe would rule the world is called the",
"model_answer": "C.",
"correct_answer": 2,
"is_correct": true,
"response_time": 22.41542387008667
},
{
"question": "Which group represents the Persian (Iranian) variation of Islam and believes in the infallibility and divine right to authority of the Imams descended from Ali?",
"model_answer": "B",
"correct_answer": 1,
"is_correct": true,
"response_time": 23.690474271774292
},
{
"question": "The multiplier effect is",
"model_answer": "A.",
"correct_answer": 0,
"is_correct": true,
"response_time": 23.690863132476807
},
{
"question": "The sacred book of the Hindu is called the",
"model_answer": "D",
"correct_answer": 3,
"is_correct": true,
"response_time": 23.69129204750061
},
{
"question": "Which of the following is a distinct characteristic of an East European city?",
"model_answer": "C",
"correct_answer": 2,
"is_correct": true,
"response_time": 23.691731214523315
},
{
"question": "Which of the following countries is actively trying to preserve the purity of their native language from contamination by English or other languages?",
"model_answer": "D.",
"correct_answer": 2,
"is_correct": false,
"response_time": 23.692092180252075
},
{
"question": "Which of the following is an example of a bulk-gaining industry?",
"model_answer": "B",
"correct_answer": 1,
"is_correct": true,
"response_time": 23.692445278167725
},
{
"question": "Which of the following is NOT a feature of an export processing zone (EPZ)?",
"model_answer": "D",
"correct_answer": 3,
"is_correct": true,
"response_time": 23.69279408454895
},
{
"question": "Which of the following characteristics is NOT true of a state?",
"model_answer": "A",
"correct_answer": 3,
"is_correct": false,
"response_time": 23.694225072860718
},
{
"question": "You are planning to move from your hometown to Pittsburgh. Along the way, you stop in Columbus, Ohio to visit a relative and fall in love with the city! You decide to stay and make Columbus your new home. This is an example of",
"model_answer": "A.",
"correct_answer": 0,
"is_correct": true,
"response_time": 23.694339990615845
},
{
"question": "A large node of office and commercial land use outside the central city with more jobs than residents is a(n)",
"model_answer": "D",
"correct_answer": 3,
"is_correct": true,
"response_time": 23.694436073303223
},
{
"question": "Which crop began the Third Agricultural Revolution?",
"model_answer": "B",
"correct_answer": 0,
"is_correct": false,
"response_time": 24.12208104133606
},
{
"question": "Which factor in the last quarter century greatly destabilized Eastern Europe and led to ethnic conflict?",
"model_answer": "B",
"correct_answer": 1,
"is_correct": true,
"response_time": 24.122512340545654
},
{
"question": "If I wanted to ship a small piece of very valuable jewelry to my aunt who lives in Poughkeepsie, which mode of transportation makes the most sense?",
"model_answer": "B.",
"correct_answer": 1,
"is_correct": true,
"response_time": 24.123326301574707
},
{
"question": "Which of the following is a functional region?",
"model_answer": "C",
"correct_answer": 2,
"is_correct": true,
"response_time": 24.12426233291626
},
{
"question": "Which type of city model contains a distinct residential spine proceeding outward from center city along the main boulevard?",
"model_answer": "A.",
"correct_answer": 3,
"is_correct": false,
"response_time": 24.12436318397522
},
{
"question": "What family do most European languages belong to?",
"model_answer": "C",
"correct_answer": 2,
"is_correct": true,
"response_time": 24.12445902824402
},
{
"question": "What do the terms apartheid, ethnic cleansing, and integration all have in common?",
"model_answer": "B.",
"correct_answer": 1,
"is_correct": true,
"response_time": 24.124552965164185
},
{
"question": "Which one of the statements below correctly describes immigrants living in Europe?",
"model_answer": "D",
"correct_answer": 3,
"is_correct": true,
"response_time": 24.124645233154297
},
{
"question": "Which of the following activities are NOT secondary economic activities?",
"model_answer": "C",
"correct_answer": 2,
"is_correct": true,
"response_time": 24.124736070632935
},
{
"question": "Johnny and Susie are moving to Scotland to renovate and live in the family castle. What makes their move a migration?",
"model_answer": "C.",
"correct_answer": 2,
"is_correct": true,
"response_time": 24.12482523918152
},
{
"question": "Which of the following entities is a state?",
"model_answer": "C",
"correct_answer": 2,
"is_correct": true,
"response_time": 25.349178075790405
},
{
"question": "What is the most abundant fossil fuel?",
"model_answer": "D",
"correct_answer": 3,
"is_correct": true,
"response_time": 25.349310159683228
},
{
"question": "A rejection of or indifference to religion in a country is called",
"model_answer": "C.",
"correct_answer": 2,
"is_correct": true,
"response_time": 25.349409818649292
},
{
"question": "In a postindustrial economy, which of the following resources is considered most important to increase productivity?",
"model_answer": "C.",
"correct_answer": 2,
"is_correct": true,
"response_time": 25.349506855010986
},
{
"question": "A city that is more than twice as large as the next largest city in a country is called a",
"model_answer": "D.",
"correct_answer": 3,
"is_correct": true,
"response_time": 25.34960389137268
},
{
"question": "Every country with a seacoast has an exclusive economic zone (EEZ) under the UN Convention on the Law of the Sea. Which one of the following statements regarding the Law of the Sea and the EEZ is NOT correct?",
"model_answer": "D",
"correct_answer": 3,
"is_correct": true,
"response_time": 25.349704027175903
},
{
"question": "Which of the following is MOST likely to experience population pressure?",
"model_answer": "D",
"correct_answer": 3,
"is_correct": true,
"response_time": 25.349804878234863
},
{
"question": "Part of the boundary between the United States and Mexico is the Rio Grande, an example of",
"model_answer": "D",
"correct_answer": 3,
"is_correct": true,
"response_time": 25.349897146224976
},
{
"question": "When we talk about diffusion of a cultural trait, what do we mean by \"hearth\"?",
"model_answer": "B",
"correct_answer": 1,
"is_correct": true,
"response_time": 25.349989891052246
},
{
"question": "The distance north and south of the equator is the",
"model_answer": "C.",
"correct_answer": 2,
"is_correct": true,
"response_time": 25.350082874298096
},
{
"question": "Why are perceptual or vernacular regions so difficult to identify?",
"model_answer": "C.",
"correct_answer": 2,
"is_correct": true,
"response_time": 23.86694598197937
},
{
"question": "Which structure(s) traditionally occupies the center of a historic Asian city?",
"model_answer": "C.",
"correct_answer": 2,
"is_correct": true,
"response_time": 23.867058992385864
},
{
"question": "Which description best describes the urban hierarchy model in which the population of a city is inversely proportional to its rank in the hierarchy?",
"model_answer": "B.",
"correct_answer": 1,
"is_correct": true,
"response_time": 23.867161750793457
},
{
"question": "Which of the following is a major concern in countries with a large and rapidly aging population?",
"model_answer": "D",
"correct_answer": 3,
"is_correct": true,
"response_time": 23.867264986038208
},
{
"question": "Which of the following capital cities is located OUTSIDE the central core area of the country?",
"model_answer": "A",
"correct_answer": 0,
"is_correct": true,
"response_time": 23.86743402481079
},
{
"question": "Spanish colonial architecture, uneven economic development, and rural-to-urban migration flows are most commonly found in which of the following?",
"model_answer": "D",
"correct_answer": 3,
"is_correct": true,
"response_time": 23.86754083633423
},
{
"question": "The purpose for the creation of NATO was to",
"model_answer": "A.",
"correct_answer": 0,
"is_correct": true,
"response_time": 23.867639780044556
},
{
"question": "Which of the following is NOT a key milestone reached by the EU?",
"model_answer": "D",
"correct_answer": 3,
"is_correct": true,
"response_time": 23.8677339553833
},
{
"question": "The use and spread of English in nineteenth-century India is an example of what type of diffusion?",
"model_answer": "C.",
"correct_answer": 2,
"is_correct": true,
"response_time": 23.867827892303467
},
{
"question": "The theory that most migration occurs over a short distance and in steps is attributed to",
"model_answer": "B.",
"correct_answer": 1,
"is_correct": true,
"response_time": 23.867918729782104
},
{
"question": "The way of life based on breeding and herding of animals that are used as a source of food, shelter, and clothing is called",
"model_answer": "C.",
"correct_answer": 2,
"is_correct": true,
"response_time": 23.448589086532593
},
{
"question": "The European Union (EU) replaced which of the following organizations?",
"model_answer": "B",
"correct_answer": 1,
"is_correct": true,
"response_time": 23.449448347091675
},
{
"question": "The attempt by core countries to stimulate increased agricultural production in the periphery through use of technology, hybrid seed, and fertilizers is called the",
"model_answer": "D",
"correct_answer": 3,
"is_correct": true,
"response_time": 23.450111389160156
},
{
"question": "Shifting cultivation is most often practiced in",
"model_answer": "B.",
"correct_answer": 1,
"is_correct": true,
"response_time": 23.45043134689331
},
{
"question": "The migration streams into the United States between 1980 and the present have been primarily composed of emigrants from which of the following regions?",
"model_answer": "B.",
"correct_answer": 1,
"is_correct": true,
"response_time": 23.450703144073486
},
{
"question": "Which one of the following North American associations is NOT correct?",
"model_answer": "D",
"correct_answer": 3,
"is_correct": true,
"response_time": 23.450969219207764
},
{
"question": "Which of the following countries is NOT a federal state?",
"model_answer": "C.",
"correct_answer": 2,
"is_correct": true,
"response_time": 23.45123314857483
},
{
"question": "Which of the following world regions is NOT considered one of the world's most densely populated regions?",
"model_answer": "C.",
"correct_answer": 2,
"is_correct": true,
"response_time": 23.451492071151733
},
{
"question": "Olives, grapes, and chickpeas are staple crops of which type of farming?",
"model_answer": "D",
"correct_answer": 3,
"is_correct": true,
"response_time": 23.451751232147217
},
{
"question": "A person who practices the Hindu religion would be most likely to",
"model_answer": "C",
"correct_answer": 2,
"is_correct": true,
"response_time": 23.452003002166748
},
{
"question": "The language with the largest number of \"speakers\" is",
"model_answer": "D",
"correct_answer": 3,
"is_correct": true,
"response_time": 23.3982253074646
},
{
"question": "Which one of the following statements does NOT correctly describe the Green Revolution?",
"model_answer": "D",
"correct_answer": 3,
"is_correct": true,
"response_time": 23.398336172103882
},
{
"question": "Historically, the world's major languages have spread by all of the following methods EXCEPT",
"model_answer": "A.",
"correct_answer": 0,
"is_correct": true,
"response_time": 23.398430109024048
},
{
"question": "A primate city is",
"model_answer": "C",
"correct_answer": 2,
"is_correct": true,
"response_time": 23.398524045944214
},
{
"question": "Which of the following factors would be considered a \"pull\" factor for Riva when considering a move from India to the United States?",
"model_answer": "B",
"correct_answer": 1,
"is_correct": true,
"response_time": 23.398617267608643
},
{
"question": "All of the following are reasons major cities attract young people in Latin America EXCEPT",
"model_answer": "D",
"correct_answer": 3,
"is_correct": true,
"response_time": 23.398712158203125
},
{
"question": "Which language family is most widely spoken in North America and Europe and includes Baltic, Celtic, Germanic, and Greek?",
"model_answer": "D",
"correct_answer": 3,
"is_correct": true,
"response_time": 23.398805141448975
},
{
"question": "Which theorist(s) tried to explain the prices of farm products as they relate to patterns of land use?",
"model_answer": "C",
"correct_answer": 2,
"is_correct": true,
"response_time": 23.39889621734619
},
{
"question": "Which of the following is NOT a spread effect in the core-periphery model of development?",
"model_answer": "B",
"correct_answer": 3,
"is_correct": false,
"response_time": 23.398988008499146
},
{
"question": "Which of the following is NOT an important environmental factor influencing a country's agriculture?",
"model_answer": "D",
"correct_answer": 3,
"is_correct": true,
"response_time": 23.399078130722046
},
{
"question": "Which of the following countries is situated in the region of tectonic activity known as the Pacific Ring of Fire?",
"model_answer": "C",
"correct_answer": 2,
"is_correct": true,
"response_time": 24.176625967025757
},
{
"question": "Which one of the following statements is NOT true of the \"core\" countries?",
"model_answer": "D",
"correct_answer": 3,
"is_correct": true,
"response_time": 24.176759243011475
},
{
"question": "If you wanted to find the global distribution of coal, you would use a",
"model_answer": "C.",
"correct_answer": 2,
"is_correct": true,
"response_time": 24.17685627937317
},
{
"question": "Which one of the following is NOT a centripetal force in a state?",
"model_answer": "B.",
"correct_answer": 1,
"is_correct": true,
"response_time": 24.17694902420044
},
{
"question": "The cities of Varanasi (Benares) in India and Mecca in Saudi Arabia are alike because both are",
"model_answer": "B",
"correct_answer": 1,
"is_correct": true,
"response_time": 24.17704200744629
},
{
"question": "China and Vietnam's dispute over the Spratley Islands is",
"model_answer": "B.",
"correct_answer": 2,
"is_correct": false,
"response_time": 24.1771342754364
},
{
"question": "Which of the following is NOT used by geographers to determine absolute location?",
"model_answer": "D",
"correct_answer": 3,
"is_correct": true,
"response_time": 24.177231311798096
},
{
"question": "Which of the following is a characteristic of a developed country?",
"model_answer": "C",
"correct_answer": 2,
"is_correct": true,
"response_time": 24.17732524871826
},
{
"question": "Mary lives in a neighborhood with stores, offices, and restaurants so close that she does not need to own a car; however, she feels she has very little privacy. This is an example of a(n)",
"model_answer": "B.",
"correct_answer": 1,
"is_correct": true,
"response_time": 24.177415132522583
},
{
"question": "Which of the following items below is an absolute location?",
"model_answer": "D",
"correct_answer": 3,
"is_correct": true,
"response_time": 24.177507162094116
},
{
"question": "Which one of the following groups is excluded from the caste system of Hinduism?",
"model_answer": "D",
"correct_answer": 3,
"is_correct": true,
"response_time": 23.39594078063965
},
{
"question": "Which of the following is a push factor?",
"model_answer": "A.",
"correct_answer": 0,
"is_correct": true,
"response_time": 23.39607286453247
},
{
"question": "The Basques, Bretons, Kashmiris, and Tamils are all examples of",
"model_answer": "B.",
"correct_answer": 1,
"is_correct": true,
"response_time": 23.396169900894165
},
{
"question": "Which of the following factors does NOT play a role in gender relationships in a culture or society?",
"model_answer": "B.",
"correct_answer": 0,
"is_correct": false,
"response_time": 23.396265983581543
},
{
"question": "The intensive agricultural practice of planting and harvesting the same crop more than once a year is called",
"model_answer": "B.",
"correct_answer": 1,
"is_correct": true,
"response_time": 23.39635992050171
},
{
"question": "When a new fashion design is introduced globally, the information initially travels through a process known as",
"model_answer": "D.",
"correct_answer": 3,
"is_correct": true,
"response_time": 23.39645791053772
},
{
"question": "Opponents of genetically modified organisms (GMOs) in food are afraid that the GMOs",
"model_answer": "C.",
"correct_answer": 2,
"is_correct": true,
"response_time": 23.39655089378357
},
{
"question": "Which one of the following is NOT an advantage of urban agriculture?",
"model_answer": "D",
"correct_answer": 3,
"is_correct": true,
"response_time": 23.396646738052368
},
{
"question": "Which of the following is NOT a problem Europe currently faces today?",
"model_answer": "C.",
"correct_answer": 2,
"is_correct": true,
"response_time": 23.396740913391113
},
{
"question": "The world systems theory divides the world into",
"model_answer": "A.",
"correct_answer": 0,
"is_correct": true,
"response_time": 23.396908044815063
},
{
"question": "The majority of Kurds are found in which country?",
"model_answer": "C",
"correct_answer": 2,
"is_correct": true,
"response_time": 23.64824604988098
},
{
"question": "In what country are the most Basque speakers found?",
"model_answer": "D",
"correct_answer": 3,
"is_correct": true,
"response_time": 23.648358821868896
},
{
"question": "The most rapidly urbanizing area of the world is:",
"model_answer": "D.",
"correct_answer": 2,
"is_correct": false,
"response_time": 23.64852499961853
},
{
"question": "The influence of neo-Malthusianism can be seen in",
"model_answer": "A.",
"correct_answer": 0,
"is_correct": true,
"response_time": 23.648630142211914
},
{
"question": "The process of devolution involves",
"model_answer": "D",
"correct_answer": 1,
"is_correct": false,
"response_time": 23.648725986480713
},
{
"question": "The theory that cities grow outward from a core utilizing several nodes of growth was proposed by",
"model_answer": "B.",
"correct_answer": 3,
"is_correct": false,
"response_time": 23.648818969726562
},
{
"question": "The theory that the main purpose of a settlement or market town is to furnish goods and services to the surrounding market area is called the",
"model_answer": "B.",
"correct_answer": 1,
"is_correct": true,
"response_time": 23.648913145065308
},
{
"question": "Which one of the following statements does NOT correctly describe transnational companies (TNCs)?",
"model_answer": "D",
"correct_answer": 3,
"is_correct": true,
"response_time": 23.64900517463684
},
{
"question": "The \"melting pot\" theory of combining several immigrant groups into one mainstream culture is called",
"model_answer": "A.",
"correct_answer": 0,
"is_correct": true,
"response_time": 23.64909791946411
},
{
"question": "Which theory below was used as justification for US involvement in Vietnam in the 1960s and 1970s?",
"model_answer": "D",
"correct_answer": 3,
"is_correct": true,
"response_time": 23.64918804168701
},
{
"question": "Urban agriculture can benefit urban society in all of the following ways EXCEPT",
"model_answer": "D.",
"correct_answer": 3,
"is_correct": true,
"response_time": 25.266103982925415
},
{
"question": "Which one of the following organizations is NOT a supranational organization?",
"model_answer": "D",
"correct_answer": 3,
"is_correct": true,
"response_time": 25.26624298095703
},
{
"question": "Which one of the following demographic factors characterizes stages 4 and 5 in the demographic transition model?",
"model_answer": "A",
"correct_answer": 0,
"is_correct": true,
"response_time": 25.266611099243164
},
{
"question": "Which of the following statements does NOT describe a factor that contributed to suburbanization in the United States?",
"model_answer": "C.",
"correct_answer": 2,
"is_correct": true,
"response_time": 25.266942977905273
},
{
"question": "An isobar map shows lines connecting all points of equal",
"model_answer": "A.",
"correct_answer": 0,
"is_correct": true,
"response_time": 25.267217874526978
},
{
"question": "Ralph purchases garden fertilizer at the nearby garden shop rather than drive 50 miles to the neighboring town for the same product. This reflects which type of spatial interaction?",
"model_answer": "C",
"correct_answer": 2,
"is_correct": true,
"response_time": 25.267478942871094
},
{
"question": "What type of countries generally possesses a greater variety of climates and resources than other countries?",
"model_answer": "B",
"correct_answer": 2,
"is_correct": false,
"response_time": 25.26775097846985
},
{
"question": "Which of the following factors has little or no impact on mortality rates in the developing countries?",
"model_answer": "C.",
"correct_answer": 1,
"is_correct": false,
"response_time": 25.268011808395386
},
{
"question": "The idea that you identify with, and give allegiance, to a nation-state is",
"model_answer": "D",
"correct_answer": 3,
"is_correct": true,
"response_time": 25.268154859542847
},
{
"question": "What condition occurs when the people of one state want to annex a territory whose population is ethnically related to that state's population but now under the rule of another state?",
"model_answer": "C.",
"correct_answer": 2,
"is_correct": true,
"response_time": 25.26824402809143
},
{
"question": "Variations in vocabulary, pronunciation, and rhythm in a spoken language are called",
"model_answer": "D.",
"correct_answer": 3,
"is_correct": true,
"response_time": 23.779211044311523
},
{
"question": "Boundary problems along the United States–Mexico border are caused by which type of issue below?",
"model_answer": "C",
"correct_answer": 3,
"is_correct": false,
"response_time": 23.77931809425354
},
{
"question": "In which country does language pose a centrifugal force?",
"model_answer": "A.",
"correct_answer": 0,
"is_correct": true,
"response_time": 23.779421091079712
},
{
"question": "Quebec is a strong example of which of the following situations?",
"model_answer": "C.",
"correct_answer": 2,
"is_correct": true,
"response_time": 23.77951693534851
},
{
"question": "Which of the following items below is NOT considered a barrier to the diffusion of an innovation?",
"model_answer": "A.",
"correct_answer": 0,
"is_correct": true,
"response_time": 23.779608964920044
},
{
"question": "Change in any culture is introduced through all the following processes EXCEPT",
"model_answer": "D.",
"correct_answer": 3,
"is_correct": true,
"response_time": 23.779699087142944
},
{
"question": "Which of the following statements regarding historical North American migration streams is NOT correct?",
"model_answer": "C.",
"correct_answer": 2,
"is_correct": true,
"response_time": 23.779789209365845
},
{
"question": "A chief factor that contributed to the Second Agricultural Revolution was",
"model_answer": "A.",
"correct_answer": 0,
"is_correct": true,
"response_time": 23.779878854751587
},
{
"question": "Zero population growth (ZPG) is achieved when",
"model_answer": "D",
"correct_answer": 1,
"is_correct": false,
"response_time": 23.779970169067383
},
{
"question": "In which of the following Asian countries would one find special economic zones (SEZs)?",
"model_answer": "C",
"correct_answer": 2,
"is_correct": true,
"response_time": 23.780060052871704
},
{
"question": "Which of the following industries does NOT need to be close to its markets?",
"model_answer": "D",
"correct_answer": 3,
"is_correct": true,
"response_time": 25.291518926620483
},
{
"question": "Which of the following is NOT a characteristic of a city in the developing world?",
"model_answer": "B.",
"correct_answer": 1,
"is_correct": true,
"response_time": 25.291630029678345
},
{
"question": "A map that presents a single class of statistics is called a",
"model_answer": "B.",
"correct_answer": 1,
"is_correct": true,
"response_time": 25.291722059249878
},
{
"question": "The construction of freeways leads to all but which of the following results?",
"model_answer": "D",
"correct_answer": 3,
"is_correct": true,
"response_time": 25.29181218147278
},
{
"question": "Which continent has the highest total fertility rates?",
"model_answer": "A.",
"correct_answer": 0,
"is_correct": true,
"response_time": 25.291912078857422
},
{
"question": "What monotheistic religion is based on the life and teachings of Jesus Christ of Nazareth?",
"model_answer": "B",
"correct_answer": 1,
"is_correct": true,
"response_time": 25.29200315475464
},
{
"question": "Which of the following statements is true concerning folklore?",
"model_answer": "D",
"correct_answer": 3,
"is_correct": true,
"response_time": 25.292091846466064
},
{
"question": "The irregularity of the wet monsoon in South Asia in recent years may have a significant negative effect on which of the following?",
"model_answer": "A.",
"correct_answer": 0,
"is_correct": true,
"response_time": 25.292180061340332
},
{
"question": "According to Alfred Weber's least-cost theory, which one of the following costs of production is the most important factor in locating an industry?",
"model_answer": "B",
"correct_answer": 1,
"is_correct": true,
"response_time": 25.292270183563232
},
{
"question": "The climate of Great Britain is milder than most other places along the same latitude for which of the following reasons?",
"model_answer": "A.",
"correct_answer": 0,
"is_correct": true,
"response_time": 25.292358875274658
},
{
"question": "Which of the following supranational organizations is not an economic union?",
"model_answer": "D",
"correct_answer": 3,
"is_correct": true,
"response_time": 19.305880784988403
},
{
"question": "The global lingua franca is",
"model_answer": "B.",
"correct_answer": 1,
"is_correct": true,
"response_time": 19.306301832199097
},
{
"question": "What are the two major branches of Islam?",
"model_answer": "C",
"correct_answer": 2,
"is_correct": true,
"response_time": 19.306840896606445
},
{
"question": "What was the primary reason the Green Revolution did NOT help Africa much?",
"model_answer": "A.",
"correct_answer": 0,
"is_correct": true,
"response_time": 19.30964493751526
},
{
"question": "The largest exporter of agricultural goods in the world is",
"model_answer": "D.",
"correct_answer": 3,
"is_correct": true,
"response_time": 19.30998682975769
},
{
"question": "Which of the following statements is NOT part of Gunnar Myrdal's theory of cumulative causation?",
"model_answer": "A.",
"correct_answer": 0,
"is_correct": true,
"response_time": 19.31048083305359
},
{
"question": "Which pair of religions below share a long-held tradition of cremating their dead?",
"model_answer": "A.",
"correct_answer": 0,
"is_correct": true,
"response_time": 19.310627937316895
},
{
"question": "The official languages of Guyana, Suriname, and French Guiana are English, Dutch, and French, respectively. On what continent are those countries located?",
"model_answer": "B",
"correct_answer": 1,
"is_correct": true,
"response_time": 19.310795068740845
}
]
} |