Instructions to use j30231/Llama-3.3-70B-Instruct_Q2_K.gguf with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use j30231/Llama-3.3-70B-Instruct_Q2_K.gguf with llama.cpp:
Install (macOS, Linux)
curl -LsSf https://llama.app/install.sh | sh # Start a local OpenAI-compatible server with a web UI: llama serve -hf j30231/Llama-3.3-70B-Instruct_Q2_K.gguf:Q2_K # Run inference directly in the terminal: llama cli -hf j30231/Llama-3.3-70B-Instruct_Q2_K.gguf:Q2_K
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf j30231/Llama-3.3-70B-Instruct_Q2_K.gguf:Q2_K # Run inference directly in the terminal: llama cli -hf j30231/Llama-3.3-70B-Instruct_Q2_K.gguf:Q2_K
Use pre-built binary
# Download pre-built binary from: # https://github.com/ggerganov/llama.cpp/releases # Start a local OpenAI-compatible server with a web UI: ./llama-server -hf j30231/Llama-3.3-70B-Instruct_Q2_K.gguf:Q2_K # Run inference directly in the terminal: ./llama-cli -hf j30231/Llama-3.3-70B-Instruct_Q2_K.gguf:Q2_K
Build from source code
git clone https://github.com/ggerganov/llama.cpp.git cd llama.cpp cmake -B build cmake --build build -j --target llama-server llama-cli # Start a local OpenAI-compatible server with a web UI: ./build/bin/llama-server -hf j30231/Llama-3.3-70B-Instruct_Q2_K.gguf:Q2_K # Run inference directly in the terminal: ./build/bin/llama-cli -hf j30231/Llama-3.3-70B-Instruct_Q2_K.gguf:Q2_K
Use Docker
docker model run hf.co/j30231/Llama-3.3-70B-Instruct_Q2_K.gguf:Q2_K
- LM Studio
- Jan
- Ollama
How to use j30231/Llama-3.3-70B-Instruct_Q2_K.gguf with Ollama:
ollama run hf.co/j30231/Llama-3.3-70B-Instruct_Q2_K.gguf:Q2_K
- Unsloth Desktop
- Pi
How to use j30231/Llama-3.3-70B-Instruct_Q2_K.gguf with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf j30231/Llama-3.3-70B-Instruct_Q2_K.gguf:Q2_K
Configure the model in Pi
# Install Pi: npm install -g @earendil-works/pi-coding-agent # Add to ~/.pi/agent/models.json: { "providers": { "llama-cpp": { "baseUrl": "http://localhost:8080/v1", "api": "openai-completions", "apiKey": "none", "models": [ { "id": "j30231/Llama-3.3-70B-Instruct_Q2_K.gguf:Q2_K" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Docker Model Runner
How to use j30231/Llama-3.3-70B-Instruct_Q2_K.gguf with Docker Model Runner:
docker model run hf.co/j30231/Llama-3.3-70B-Instruct_Q2_K.gguf:Q2_K
- Lemonade
How to use j30231/Llama-3.3-70B-Instruct_Q2_K.gguf with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull j30231/Llama-3.3-70B-Instruct_Q2_K.gguf:Q2_K
Run and chat with the model
lemonade run user.Llama-3.3-70B-Instruct_Q2_K.gguf-Q2_K
List all available models
lemonade list
- Hermes Agent
How to use j30231/Llama-3.3-70B-Instruct_Q2_K.gguf with Hermes Agent:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf j30231/Llama-3.3-70B-Instruct_Q2_K.gguf:Q2_K
Configure Hermes
# Install Hermes: curl -fsSL https://hermes-agent.nousresearch.com/install.sh | bash hermes setup # Point Hermes at the local server: hermes config set model.provider custom hermes config set model.base_url http://127.0.0.1:8080/v1 hermes config set model.default j30231/Llama-3.3-70B-Instruct_Q2_K.gguf:Q2_K
Run Hermes
hermes
- Atomic Chat
- OpenClaw
How to use j30231/Llama-3.3-70B-Instruct_Q2_K.gguf with OpenClaw:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf j30231/Llama-3.3-70B-Instruct_Q2_K.gguf:Q2_K
Configure OpenClaw
# Install OpenClaw: npm install -g openclaw@latest # Register the local server and set it as the default model: openclaw onboard --non-interactive --mode local \ --auth-choice custom-api-key \ --custom-base-url http://127.0.0.1:8080/v1 \ --custom-model-id "j30231/Llama-3.3-70B-Instruct_Q2_K.gguf:Q2_K" \ --custom-provider-id llama-cpp \ --custom-compatibility openai \ --custom-text-input \ --accept-risk \ --skip-health
Run OpenClaw
openclaw agent --local --agent main --message "Hello from Hugging Face"
File size: 161,029 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 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 | {
"metadata": {
"model_name": "llama-3.3-70b-instruct",
"ntrain": 0,
"ntest": -1,
"timestamp": "20241212-062747"
},
"subject": "high_school_psychology",
"category": "social sciences",
"correct_rate": 91.19266055045871,
"evaluation_results": [
{
"question": "Nearsightedness results from",
"model_answer": "B.",
"correct_answer": 0,
"is_correct": false,
"response_time": 31.41556692123413
},
{
"question": "Delusions of grandeur are most characteristic of",
"model_answer": "B.",
"correct_answer": 1,
"is_correct": true,
"response_time": 31.41567373275757
},
{
"question": "Abraham Maslow proposed the idea that some motives are more imperative to survival than others. Which of the following approaches expresses this?",
"model_answer": "D",
"correct_answer": 3,
"is_correct": true,
"response_time": 31.415766716003418
},
{
"question": "In test construction and evaluation, validity refers to the degree to which a test",
"model_answer": "A.",
"correct_answer": 0,
"is_correct": true,
"response_time": 31.415857791900635
},
{
"question": "The precedent established in Larry P. v. Riles resulted in",
"model_answer": "A.",
"correct_answer": 2,
"is_correct": false,
"response_time": 31.415952920913696
},
{
"question": "The heritability for traits of a cloned population is",
"model_answer": "A.",
"correct_answer": 0,
"is_correct": true,
"response_time": 31.41604471206665
},
{
"question": "Which of the following statistics provides the most information about how spread out a distribution of scores is?",
"model_answer": "A.",
"correct_answer": 0,
"is_correct": true,
"response_time": 31.41613483428955
},
{
"question": "According to the position statement Supervision in School Psychology published by the National Association of School Psychologists (NASP), which of the following is most accurate concerning school psychologists who will be supervising in a school district?",
"model_answer": "D",
"correct_answer": 3,
"is_correct": true,
"response_time": 31.41622567176819
},
{
"question": "Dan read a list of 30 vocabulary words only once. If he is typical and shows the serial position effect, we would expect that the words he remembers two days later are",
"model_answer": "A, C",
"correct_answer": 0,
"is_correct": true,
"response_time": 31.416316986083984
},
{
"question": "Which developmental stage theory explained how experiences in infancy, childhood, adolscence, adulthood, and old age influence later personality characteristics?",
"model_answer": "B.",
"correct_answer": 1,
"is_correct": true,
"response_time": 31.41640591621399
},
{
"question": "The AP Psychology examination given by the College Board in May exemplifies which of the following types of tests?",
"model_answer": "C",
"correct_answer": 2,
"is_correct": true,
"response_time": 27.041767835617065
},
{
"question": "Our ability to perceive depth depends primarily on what other perceptual abilities?",
"model_answer": "C",
"correct_answer": 2,
"is_correct": true,
"response_time": 27.041876792907715
},
{
"question": "A person who sustains major injuries that involve the destruction of the medulla oblongata will",
"model_answer": "D",
"correct_answer": 3,
"is_correct": true,
"response_time": 27.041972875595093
},
{
"question": "Which of the following terms applies to IQ tests?",
"model_answer": "B.",
"correct_answer": 1,
"is_correct": true,
"response_time": 27.04206681251526
},
{
"question": "Which classical conditioning term best describes the following scenario: Later in his classical conditioning experiments, Ivan Pavlov's dogs began to salivate whenever they heard any sound similar to a bell, such as a doorbell or someone accidentally clinking a water glass.",
"model_answer": "D",
"correct_answer": 3,
"is_correct": true,
"response_time": 27.042160749435425
},
{
"question": "Sal meets Petunia for the first time. She is outgoing and funny. He walks away with the opinion that Petunia is a fun person, whereas in actuality Petunia is temporarily gleeful because she just won the lottery. Sal's opinion that Petunia is funny is best explained by",
"model_answer": "D.",
"correct_answer": 3,
"is_correct": true,
"response_time": 27.042255878448486
},
{
"question": "All of the following are examples of punishment EXCEPT",
"model_answer": "D",
"correct_answer": 3,
"is_correct": true,
"response_time": 27.042349815368652
},
{
"question": "Which of the following must be done when universal screening data show that very few students are successfully meeting school competencies?",
"model_answer": "A.",
"correct_answer": 0,
"is_correct": true,
"response_time": 27.042442798614502
},
{
"question": "Substances that are toxic to humans often taste",
"model_answer": "D",
"correct_answer": 3,
"is_correct": true,
"response_time": 27.042534828186035
},
{
"question": "All public institutions subscribe to all of the following ethical guidelines EXCEPT",
"model_answer": "C",
"correct_answer": 2,
"is_correct": true,
"response_time": 27.042625665664673
},
{
"question": "Which of the following kinds of tests is most likely to be an achievement test?",
"model_answer": "B.",
"correct_answer": 1,
"is_correct": true,
"response_time": 25.427882194519043
},
{
"question": "A fetus with the genotype XXY will most likely",
"model_answer": "B.",
"correct_answer": 1,
"is_correct": true,
"response_time": 25.42826223373413
},
{
"question": "Susan is a first-grade student who is referred to the school psychologist because she will not remain seated at her desk. Her teacher reports that Susan is \"always getting up and walking around the room.\" What observation data is LEAST relevant to the referral concern?",
"model_answer": "D",
"correct_answer": 2,
"is_correct": false,
"response_time": 25.428381204605103
},
{
"question": "In order to prove a psychological theory,",
"model_answer": "D",
"correct_answer": 3,
"is_correct": true,
"response_time": 25.428481101989746
},
{
"question": "Research indicates that which of the following factors most influence a person's sexual orientation?",
"model_answer": "C",
"correct_answer": 2,
"is_correct": true,
"response_time": 25.42857599258423
},
{
"question": "Which of the following usually increases with age in healthy adults between the ages of 18 and 70?",
"model_answer": "B",
"correct_answer": 1,
"is_correct": true,
"response_time": 25.42866826057434
},
{
"question": "The left cerebral hemisphere is specialized for which of the following functions?",
"model_answer": "C",
"correct_answer": 2,
"is_correct": true,
"response_time": 25.428757190704346
},
{
"question": "Runners in a park were found to pick up their pace when another runner came into view; this finding illustrates the phenomenon of",
"model_answer": "A.",
"correct_answer": 0,
"is_correct": true,
"response_time": 25.428847074508667
},
{
"question": "A researcher tests the problem solving skills of twenty 10-year-old, twenty 20-year-old, and twenty 30-year-old participants for a study on age and problem solving. What research method is this researcher using?",
"model_answer": "D",
"correct_answer": 3,
"is_correct": true,
"response_time": 25.428940057754517
},
{
"question": "Bessie could barely detect sweetness in a sip of water from a pitcher in which one quarter of a teaspoon of water was mixed into a half gallon of water. For taste, this is Bessie's",
"model_answer": "A",
"correct_answer": 0,
"is_correct": true,
"response_time": 25.42903423309326
},
{
"question": "During assigned seat-work time, Mary, a firstgrade student, sometimes leaves her seat and attempts to play with a block collection. When she leaves her seat, she fails to complete her seat work. Which of the following behavioral intervention strategies will most effectively increase the long-term likelihood that Mary will complete her seat work?",
"model_answer": "B.",
"correct_answer": 1,
"is_correct": true,
"response_time": 34.82648301124573
},
{
"question": "Which of the following are most directly designed to help determine whether the findings of a study reflect a truly replicable phenomenon rather than the outcomes of chance processes?",
"model_answer": "A.",
"correct_answer": 0,
"is_correct": true,
"response_time": 34.82663297653198
},
{
"question": "An unjustifiable and usually negative attitude toward a group and its members is called",
"model_answer": "A.",
"correct_answer": 0,
"is_correct": true,
"response_time": 34.82683181762695
},
{
"question": "Calvin's fear of dogs was so great that he could not even visit his friends who had dogs or who lived in a neighborhood that had a lot of dogs. Once he sought help, he worked to overcome this fear first by witnessing his counselor playing with a dog and then, after a while, by actually touching and petting a dog himself. The method used to help Calvin overcome his fears is known as",
"model_answer": "D",
"correct_answer": 3,
"is_correct": true,
"response_time": 34.82693004608154
},
{
"question": "Mr. Gordon suffered damage to the back of his right frontal lobe. As a result, he is unable to",
"model_answer": "D",
"correct_answer": 3,
"is_correct": true,
"response_time": 34.82702398300171
},
{
"question": "During the manic phase of a bipolar disorder, individuals are most likely to experience",
"model_answer": "A.",
"correct_answer": 0,
"is_correct": true,
"response_time": 34.82711601257324
},
{
"question": "According to Kohlberg, at the third (postconventional) level of moral development, individuals",
"model_answer": "D",
"correct_answer": 3,
"is_correct": true,
"response_time": 34.82720899581909
},
{
"question": "To which perspective are the roles of knowledge, information processing, and their interactions most central?",
"model_answer": "B",
"correct_answer": 1,
"is_correct": true,
"response_time": 34.82729983329773
},
{
"question": "Which of the following is primarily a chemical sense?",
"model_answer": "C",
"correct_answer": 2,
"is_correct": true,
"response_time": 34.82739210128784
},
{
"question": "A 7-year-old student arrived in the United States one year ago from a non-Englishspeaking country, where she achieved high scores in reading. Over the year, she has become fluent in social English. After a few months in a monolingual English second grade, her teacher refers her for evaluation because she has great difficulty with the basal reader used in the class. Two English proficiency tests administered to the student show that she performs above the mean for monolingual English grade peers in speaking and listening but well below the mean in reading and writing. She also performs well above the mean for grade peers on reading tests in her native language. Based on this information alone, which of the following is the most accurate interpretation?",
"model_answer": "C.",
"correct_answer": 2,
"is_correct": true,
"response_time": 34.82748079299927
},
{
"question": "The limbic system plays an important role in",
"model_answer": "B.",
"correct_answer": 1,
"is_correct": true,
"response_time": 28.483726024627686
},
{
"question": "To demonstrate causation, a researcher must",
"model_answer": "D",
"correct_answer": 3,
"is_correct": true,
"response_time": 28.483838081359863
},
{
"question": "A special diet can prevent the expression of the trait for",
"model_answer": "B",
"correct_answer": 1,
"is_correct": true,
"response_time": 28.48393201828003
},
{
"question": "Which of the following is an example of an implicit memory?",
"model_answer": "B",
"correct_answer": 1,
"is_correct": true,
"response_time": 28.48402690887451
},
{
"question": "After collecting and analyzing the responses of 2,000 randomly selected study participants, Adeel finds that college juniors who work at paying jobs 15 hours a week get higher grades than juniors who don't have paying jobs or who work full time. Which of the following research methods did Adeel use?",
"model_answer": "D",
"correct_answer": 3,
"is_correct": true,
"response_time": 28.48412799835205
},
{
"question": "Nat's therapist tells him to relax, close his eyes, and breathe slowly whenever he begins to experience fear associated with being in an enclosed space. The therapist is using a technique that is central to",
"model_answer": "D",
"correct_answer": 3,
"is_correct": true,
"response_time": 28.484219074249268
},
{
"question": "Periods of special sensitivity to specific types of learning that shape the capacity for future development are known as",
"model_answer": "B.",
"correct_answer": 1,
"is_correct": true,
"response_time": 28.48431086540222
},
{
"question": "Areas of the brain that are damaged are referred to as having",
"model_answer": "A.",
"correct_answer": 0,
"is_correct": true,
"response_time": 28.484403133392334
},
{
"question": "Which of the following best summarizes a view of classical behaviorism?",
"model_answer": "A.",
"correct_answer": 0,
"is_correct": true,
"response_time": 28.48449397087097
},
{
"question": "A sixth-grade teacher is concerned because Kerry, a student in class, has been hostile to classmates. Which of the following teacher strategies is most likely to encourage Kerry to be more cooperative with classmates?",
"model_answer": "D",
"correct_answer": 3,
"is_correct": true,
"response_time": 28.484583139419556
},
{
"question": "Daniel is a toddler who lags behind his peers in terms of speech development. He avoids eye contact with people and resists alterations to routine. Daniel is most likely to be diagnosed with",
"model_answer": "D",
"correct_answer": 3,
"is_correct": true,
"response_time": 35.85216403007507
},
{
"question": "Garcia and Koelling's research regarding learned aversions established that which of the following UCS and CS pairs are the most powerful and learned most quickly?",
"model_answer": "B",
"correct_answer": 1,
"is_correct": true,
"response_time": 35.85266089439392
},
{
"question": "Which structure is found in the inner ear?",
"model_answer": "B",
"correct_answer": 1,
"is_correct": true,
"response_time": 35.852808237075806
},
{
"question": "Psychogenic amnesia is an indication of which kind of psychological disorder?",
"model_answer": "D",
"correct_answer": 3,
"is_correct": true,
"response_time": 35.85290598869324
},
{
"question": "Although a man watched in horror as his wife and children were killed by a speeding truck as they crossed the street, he has no memory of the event and gets upset when people tell him he must remember. The man is most likely suffering from",
"model_answer": "C.",
"correct_answer": 2,
"is_correct": true,
"response_time": 35.85300087928772
},
{
"question": "Michelle watches David Letterman on television, but doesn't recognize him when she walks past him in Manhattan. Which effect on perception does this best illustrate?",
"model_answer": "B",
"correct_answer": 1,
"is_correct": true,
"response_time": 35.853092193603516
},
{
"question": "In a meeting with the school psychologist, Ms. Harcar, a new sixth-grade teacher, expresses some concerns about a student, Anthony. The school psychologist has worked with the boy and knows him well. Anthony has a mild learning disability and receives academic support. He is doing well on a daily basis but has difficulty performing on tests. The school psychologist discusses ways in which Ms. Harcar could incorporate study-skills training into classroom activities. With regard to study-skills training, the school psychologist should stress which of the following principles while advising Ms. Harcar?",
"model_answer": "C",
"correct_answer": 2,
"is_correct": true,
"response_time": 35.853184938430786
},
{
"question": "In class, John's teacher tells him that she will give him the coin and bill for each picture he can correctly identify on the face of the penny, nickel, dime, quarter, half-dollar, dollar bill, and five-dollar bill. John cannot identify any of them although he has been handling money for 17 years. His inability to remember the pictures most likely results from",
"model_answer": "C",
"correct_answer": 2,
"is_correct": true,
"response_time": 35.85327506065369
},
{
"question": "The somatic nervous system is part of the",
"model_answer": "B.",
"correct_answer": 1,
"is_correct": true,
"response_time": 35.85336399078369
},
{
"question": "Professor Ek is interested in studying online bullying behaviors of middle school students. Which of the following research method choices (and the rationale for the choice) is the most appropriate?",
"model_answer": "B.",
"correct_answer": 1,
"is_correct": true,
"response_time": 35.85345721244812
},
{
"question": "In the rock opera Tommy, Tommy becomes deaf and blind after witnessing a terrible murder, although there is nothing organically wrong with his ears or eyes. Tommy is suffering from",
"model_answer": "C",
"correct_answer": 2,
"is_correct": true,
"response_time": 29.527071952819824
},
{
"question": "The \"c\" in the word cat is best described as a",
"model_answer": "A.",
"correct_answer": 0,
"is_correct": true,
"response_time": 29.5271999835968
},
{
"question": "Xavier is beginning his first year of college. He is eager to find a few other freshmen to \"hang out\" with. Psychologists would say that Xavier is motivated by a(n)",
"model_answer": "D",
"correct_answer": 3,
"is_correct": true,
"response_time": 29.52729606628418
},
{
"question": "Research indicates that a test participant exposed to a list of positive words and then asked to recall the words from that list a week later will be more likely to remember those words if he",
"model_answer": "B",
"correct_answer": 1,
"is_correct": true,
"response_time": 29.527393102645874
},
{
"question": "All of the following are characteristic of physiological arousal EXCEPT",
"model_answer": "B.",
"correct_answer": 1,
"is_correct": true,
"response_time": 29.52749490737915
},
{
"question": "What color are the shortest electromagnetic waves humans can see?",
"model_answer": "B.",
"correct_answer": 1,
"is_correct": true,
"response_time": 29.52759599685669
},
{
"question": "One cause of the deinstitutionalization of many psychiatric patients in the mid-1900s was",
"model_answer": "C.",
"correct_answer": 2,
"is_correct": true,
"response_time": 29.527692079544067
},
{
"question": "Which of the following would play a role in quickly alerting you to a gas leak in your car?",
"model_answer": "A.",
"correct_answer": 0,
"is_correct": true,
"response_time": 29.527786016464233
},
{
"question": "Garcia and Koelling's research regarding learned aversions established that which of the following UCS and CS pairs are the most powerful and learned most quickly?",
"model_answer": "B",
"correct_answer": 1,
"is_correct": true,
"response_time": 29.527880907058716
},
{
"question": "A school psychologist is providing feedback to a student's parents regarding the student's performance on a measure of academic achievement. To explain the concept of grade equivalent, the school psychologist should explain that it is",
"model_answer": "A.",
"correct_answer": 0,
"is_correct": true,
"response_time": 29.527970790863037
},
{
"question": "Which of the following types of data involves counting the number of occurrences of a behavior observed during a specified time period?",
"model_answer": "C.",
"correct_answer": 2,
"is_correct": true,
"response_time": 26.469645023345947
},
{
"question": "Which of the following structures is located at the most central and protected part of the brain?",
"model_answer": "D",
"correct_answer": 3,
"is_correct": true,
"response_time": 26.469759941101074
},
{
"question": "Abnormal behavior can be defined as maladaptive behavior according to",
"model_answer": "B",
"correct_answer": 1,
"is_correct": true,
"response_time": 26.469854831695557
},
{
"question": "Which personality theory is criticized for having an unrealistically optimistic view of human nature?",
"model_answer": "C.",
"correct_answer": 2,
"is_correct": true,
"response_time": 26.469948768615723
},
{
"question": "\"Get cookie,\" best exemplifies",
"model_answer": "D",
"correct_answer": 3,
"is_correct": true,
"response_time": 26.470038890838623
},
{
"question": "What area of psychology focuses on the study of subjective well-being, optimism, and happiness?",
"model_answer": "D",
"correct_answer": 3,
"is_correct": true,
"response_time": 26.47012972831726
},
{
"question": "A disorder characterized by delusions of persecution, hallucinations, and disordered thinking is",
"model_answer": "A",
"correct_answer": 0,
"is_correct": true,
"response_time": 26.47021985054016
},
{
"question": "Which of the following responses was most likely acquired through classical conditioning?",
"model_answer": "A.",
"correct_answer": 0,
"is_correct": true,
"response_time": 26.47031879425049
},
{
"question": "Which of the following disorders is most likely related to the amount of light to which a susceptible person is exposed?",
"model_answer": "A.",
"correct_answer": 0,
"is_correct": true,
"response_time": 26.470407724380493
},
{
"question": "Which of the following clinicians most likely follows Carl Rogers's approach to psychotherapy?",
"model_answer": "C",
"correct_answer": 2,
"is_correct": true,
"response_time": 26.470505952835083
},
{
"question": "Children who suffer brain damage may be able to regain their physical and mental abilities more quickly than older brain damage patients due to which of the following properties of the brain?",
"model_answer": "D",
"correct_answer": 3,
"is_correct": true,
"response_time": 28.605926036834717
},
{
"question": "Mr. Thomas, a school psychologist, works with Ms. Riddle, a special education teacher, to meet the needs of Mark, a student with autism spectrum disorder. Mr. Thomas does not work with Mark directly; Ms. Riddle acts as his mediator. This collaboration is an example of which consultation model?",
"model_answer": "C",
"correct_answer": 2,
"is_correct": true,
"response_time": 28.606047868728638
},
{
"question": "Which of the following approaches emphasizes the importance of people's feelings and views human nature as naturally positive and growth seeking?",
"model_answer": "D",
"correct_answer": 3,
"is_correct": true,
"response_time": 28.60614800453186
},
{
"question": "A pigeon trained to peck at a green light pecks at a yellow light also. This illustrates",
"model_answer": "A.",
"correct_answer": 0,
"is_correct": true,
"response_time": 28.60624408721924
},
{
"question": "The medical model of psychologically disordered behavior is most likely to be criticized for neglecting the importance of",
"model_answer": "D",
"correct_answer": 3,
"is_correct": true,
"response_time": 28.6063449382782
},
{
"question": "Javier wants to study the effects on achievement of taking a course in chemistry in the afternoon, rather than in the morning. A teacher has chemistry classes with the same number of students at 8:30 A.M. and 1:00 P.M., and volunteers to participate with her classes. A major problem in this study would be",
"model_answer": "C",
"correct_answer": 2,
"is_correct": true,
"response_time": 28.606451988220215
},
{
"question": "Learned helplessness is most likely to be directly related to",
"model_answer": "C",
"correct_answer": 2,
"is_correct": true,
"response_time": 28.60655689239502
},
{
"question": "Which of the following is the strongest piece of evidence for the idea that animals are capable of developing and using a sophisticated language?",
"model_answer": "D",
"correct_answer": 3,
"is_correct": true,
"response_time": 28.606657028198242
},
{
"question": "The scores of Brian's team on the quiz were: 8, 6, 9, 7, 10, 9, 5, 4, 9. The median of the team's scores is",
"model_answer": "A.",
"correct_answer": 1,
"is_correct": false,
"response_time": 28.60675597190857
},
{
"question": "Alpha waves are most closely associated with",
"model_answer": "A",
"correct_answer": 0,
"is_correct": true,
"response_time": 28.60685420036316
},
{
"question": "Which of the following scans can image brain function?",
"model_answer": "D",
"correct_answer": 2,
"is_correct": false,
"response_time": 25.253549814224243
},
{
"question": "Memory research indicates that memories may be physically stored in the brain through strengthened connections between brain neurons. What is this process called?",
"model_answer": "B.",
"correct_answer": 1,
"is_correct": true,
"response_time": 25.254308938980103
},
{
"question": "Human senses can be divided into which two major categories based on what the senses gather from the outside world?",
"model_answer": "A",
"correct_answer": 2,
"is_correct": false,
"response_time": 25.254711866378784
},
{
"question": "Within a multimethod model of assessment, child interviews are most helpful for which purpose?",
"model_answer": "D",
"correct_answer": 3,
"is_correct": true,
"response_time": 25.25506901741028
},
{
"question": "Which of the following samples would be considered most representative of male college students?",
"model_answer": "D",
"correct_answer": 3,
"is_correct": true,
"response_time": 25.255465030670166
},
{
"question": "A person who experiences flashbacks and nightmares after being involved in a serious car accident is likely to be diagnosed with which psychological disorder?",
"model_answer": "D",
"correct_answer": 3,
"is_correct": true,
"response_time": 25.255818128585815
},
{
"question": "Hunger and eating are primarily regulated by the",
"model_answer": "B",
"correct_answer": 1,
"is_correct": true,
"response_time": 25.256274938583374
},
{
"question": "The most widely used self-report inventory for personality assessment is the",
"model_answer": "A.",
"correct_answer": 0,
"is_correct": true,
"response_time": 25.256595134735107
},
{
"question": "In a crisis, the adrenal glands of the body secrete \"emergency\" hormones, while the body prepares for fight-or-flight, directed by",
"model_answer": "D",
"correct_answer": 3,
"is_correct": true,
"response_time": 25.256713151931763
},
{
"question": "During periods of darkness, the pineal gland in the middle of the brain produces which of the following hormones that is essential to sleep regulation?",
"model_answer": "D",
"correct_answer": 3,
"is_correct": true,
"response_time": 25.256809949874878
},
{
"question": "According to Selye's General Adaptation Syndrome (GAS) theory, of the following stages, we are most susceptible to disease during",
"model_answer": "D",
"correct_answer": 3,
"is_correct": true,
"response_time": 24.960402965545654
},
{
"question": "Which of the following is a hallucination?",
"model_answer": "D",
"correct_answer": 3,
"is_correct": true,
"response_time": 24.960528135299683
},
{
"question": "Jupiter pilots his newly created perfectionism scale on a high school psychology class. He returns one month later to administer the same test to the same students, and then he correlates the two sets of results. What is Jupiter probably doing?",
"model_answer": "D",
"correct_answer": 3,
"is_correct": true,
"response_time": 24.96062207221985
},
{
"question": "Stranded in a deserted area after a boating accident, Harry was able to survive by eating leaves and insects, and drinking water he boiled in a fire he made. According to Gardner's Theory of Multiple Intelligences, Harry displayed a high level of which of the following intelligences?",
"model_answer": "A.",
"correct_answer": 0,
"is_correct": true,
"response_time": 24.96072006225586
},
{
"question": "Someone who is unable to encode new memories is said to suffer from",
"model_answer": "D.",
"correct_answer": 3,
"is_correct": true,
"response_time": 24.96081304550171
},
{
"question": "According to cognitive theorist Jean Piaget, children in which of the following stages of cognitive development are egocentric, or unable to understand another person's perspective?",
"model_answer": "B.",
"correct_answer": 1,
"is_correct": true,
"response_time": 24.960903882980347
},
{
"question": "Nell decides not to throw her stuffed animal in the toilet after she witnesses her brother Matthew being punished for putting his stuffed animal in the toilet. Nell's decision exemplifies",
"model_answer": "D",
"correct_answer": 3,
"is_correct": true,
"response_time": 24.96099615097046
},
{
"question": "B. F. Skinner was well known for his work involving the",
"model_answer": "B",
"correct_answer": 1,
"is_correct": true,
"response_time": 24.96109104156494
},
{
"question": "Answering multiple-choice questions is often easier than answering fill-in or completion questions, because multiple choice questions",
"model_answer": "A.",
"correct_answer": 0,
"is_correct": true,
"response_time": 24.961181163787842
},
{
"question": "Which of the following psychological disorders is characterized by an abnormally elevated or expansive mood?",
"model_answer": "D",
"correct_answer": 3,
"is_correct": true,
"response_time": 24.96126914024353
},
{
"question": "Quinn awoke from a dream, shaking and covered with sweat. When his wife asked him what had happened, he said he had dreamed he was falling to his death. Quinn's experience is often categorized as a",
"model_answer": "D",
"correct_answer": 3,
"is_correct": true,
"response_time": 29.89156699180603
},
{
"question": "The case study of Phineas Gage's brain injury was significant for which of the following reasons?",
"model_answer": "B",
"correct_answer": 1,
"is_correct": true,
"response_time": 29.89172101020813
},
{
"question": "What is the mode of the following set of scores? 70, 70, 80, 80, 60, 60, 50, 90, 90, 90",
"model_answer": "C",
"correct_answer": 2,
"is_correct": true,
"response_time": 29.89182209968567
},
{
"question": "The ability to perceive your front door as a rectangle even when it is open, displaying a different retinal image is known as",
"model_answer": "C.",
"correct_answer": 2,
"is_correct": true,
"response_time": 29.8921217918396
},
{
"question": "It has been suggested that learned helplessness may be related to",
"model_answer": "A.",
"correct_answer": 0,
"is_correct": true,
"response_time": 29.892247200012207
},
{
"question": "A low level of glucose in Sam's bloodstream is most likely to make him want to",
"model_answer": "C",
"correct_answer": 2,
"is_correct": true,
"response_time": 29.89234495162964
},
{
"question": "Tonya runs into an old schoolmate on the street. During their brief conversation, Tonya is unable to recall the schoolmate's name. Days later, she remembers the name out of the blue. To remember the name \"out of the blue\" is an example of",
"model_answer": "A.",
"correct_answer": 0,
"is_correct": true,
"response_time": 29.892439126968384
},
{
"question": "In a number of experiments, Elizabeth Loftus has shown that the wording of a question can affect participants' recall of an incident. These studies best illustrate",
"model_answer": "A.",
"correct_answer": 0,
"is_correct": true,
"response_time": 29.892536163330078
},
{
"question": "The scientific investigation of mental processes and behavior is called",
"model_answer": "B",
"correct_answer": 1,
"is_correct": true,
"response_time": 29.892630100250244
},
{
"question": "Noam Chomsky and B. F. Skinner disagreed about how children acquire language. Which of the following concepts is most relevant to the differences between their theories?",
"model_answer": "D",
"correct_answer": 3,
"is_correct": true,
"response_time": 29.892723083496094
},
{
"question": "Which type of assessment attempts to identify the most pressing behavioral problem, and possible ways to alleviate it, by investigating the relationship between aspects of an individual's environment and behavior?",
"model_answer": "C",
"correct_answer": 2,
"is_correct": true,
"response_time": 33.316205739974976
},
{
"question": "Extinction occurs when the conditioned stimulus",
"model_answer": "D",
"correct_answer": 3,
"is_correct": true,
"response_time": 33.31648588180542
},
{
"question": "How would Piaget describe the process of learning something new using terminology from his cognitive development theory?",
"model_answer": "A.",
"correct_answer": 0,
"is_correct": true,
"response_time": 33.31660580635071
},
{
"question": "Which of the following best states why the study of twins is significant to the field of behavioral genetics?",
"model_answer": "D",
"correct_answer": 3,
"is_correct": true,
"response_time": 33.31670665740967
},
{
"question": "Which of the following questions best frames the nature-nurture controversy?",
"model_answer": "D",
"correct_answer": 3,
"is_correct": true,
"response_time": 33.31680178642273
},
{
"question": "According to social learning theory, gender identity results primarily from",
"model_answer": "C",
"correct_answer": 2,
"is_correct": true,
"response_time": 33.31689667701721
},
{
"question": "In the nature versus nurture debate, nature is most closely associated with",
"model_answer": "D.",
"correct_answer": 3,
"is_correct": true,
"response_time": 33.31699204444885
},
{
"question": "Tests that have been pretested with a sample of the population for whom the test is intended and have a uniform set of instructions and administration procedures are",
"model_answer": "B",
"correct_answer": 1,
"is_correct": true,
"response_time": 33.317086935043335
},
{
"question": "To save the expense of purchasing a new test form, a chief school administrator asks a certified school psychologist to administer a six-year-old form of an achievement test that agreed with the curriculum of the school district at that time. Considering the situation and the Principles for Professional Ethics of the National Association of School Psychologists' (NASP) the school psychologist should",
"model_answer": "C.",
"correct_answer": 2,
"is_correct": true,
"response_time": 33.31718397140503
},
{
"question": "If arrested for committing a crime, who of the following would be most likely to be declared legally insane?",
"model_answer": "A.",
"correct_answer": 0,
"is_correct": true,
"response_time": 33.31727576255798
},
{
"question": "What is the first step in any example of classical conditioning?",
"model_answer": "C",
"correct_answer": 2,
"is_correct": true,
"response_time": 28.103140830993652
},
{
"question": "Which of the following accurately states the order of the transmission of visual information?",
"model_answer": "D",
"correct_answer": 3,
"is_correct": true,
"response_time": 28.103269815444946
},
{
"question": "As a result of an accident, Abdul lost sight in his right eye. To judge the distance of vehicles when he is driving, Abdul is able to rely on cues of",
"model_answer": "D",
"correct_answer": 3,
"is_correct": true,
"response_time": 28.103372812271118
},
{
"question": "Certain cross-cultural studies have suggested that six facial expressions are recognized by people of virtually every culture. Which of the following correctly lists these expressions?",
"model_answer": "D",
"correct_answer": 3,
"is_correct": true,
"response_time": 28.103469848632812
},
{
"question": "The brainstem is comprised of the",
"model_answer": "B.",
"correct_answer": 1,
"is_correct": true,
"response_time": 28.10356378555298
},
{
"question": "An artist doing a pencil drawing could use which of the following techniques to add depth to her or his drawing?",
"model_answer": "D",
"correct_answer": 3,
"is_correct": true,
"response_time": 28.103659868240356
},
{
"question": "A musician's ability to make a distinction between two very similar pitches depends on which of the following concepts?",
"model_answer": "D",
"correct_answer": 3,
"is_correct": true,
"response_time": 28.103752851486206
},
{
"question": "When Antoinette comes home to her apartment, people suddenly jump out towards her. Her heart begins to race and she shrieks. Once she recognizes that it is her friends throwing a surprise party, rather than ninjas, her heart continues to race, but she experiences happiness. Which theory of emotions best explains this fact?",
"model_answer": "B.",
"correct_answer": 1,
"is_correct": true,
"response_time": 28.103842735290527
},
{
"question": "Studying a few subjects in great depth to investigate a rare condition is known as",
"model_answer": "B",
"correct_answer": 1,
"is_correct": true,
"response_time": 28.103935956954956
},
{
"question": "Which theory of emotion are cognitive psychologists most likely to support?",
"model_answer": "B.",
"correct_answer": 1,
"is_correct": true,
"response_time": 28.104026794433594
},
{
"question": "Narcotics work because they are chemically very similar to",
"model_answer": "A.",
"correct_answer": 0,
"is_correct": true,
"response_time": 25.30434012413025
},
{
"question": "Which of the following contributes most directly to people's exaggerated perceptions of the likelihood of air travel disasters, nuclear power accidents, and terrorist violence?",
"model_answer": "D",
"correct_answer": 3,
"is_correct": true,
"response_time": 25.304500102996826
},
{
"question": "Cognitivists claim that classical conditioning results from",
"model_answer": "D",
"correct_answer": 3,
"is_correct": true,
"response_time": 25.304600954055786
},
{
"question": "A doctor suspects that her patient's language processing area is in the right hemisphere. This would most likely be corroborated by the use of",
"model_answer": "C",
"correct_answer": 2,
"is_correct": true,
"response_time": 25.304696083068848
},
{
"question": "Mechanical energy is transduced to electrochemical energy by",
"model_answer": "D",
"correct_answer": 2,
"is_correct": false,
"response_time": 25.304790019989014
},
{
"question": "David collected data on 15 research participants. Their scores were: 42, 38, 14, 13, 12, 12, 11, 11, 11, 10, 10, 10, 9, 9, 9. Which of the following statistics best reflects the central tendency of this data set?",
"model_answer": "C",
"correct_answer": 3,
"is_correct": false,
"response_time": 25.30488419532776
},
{
"question": "The smallest units of meaning in a language are",
"model_answer": "A.",
"correct_answer": 3,
"is_correct": false,
"response_time": 25.304975986480713
},
{
"question": "After a neuron has fired,",
"model_answer": "A.",
"correct_answer": 2,
"is_correct": false,
"response_time": 25.30507802963257
},
{
"question": "The rules that govern the placement of words and phrases in a sentence are called",
"model_answer": "C.",
"correct_answer": 2,
"is_correct": true,
"response_time": 25.305169105529785
},
{
"question": "Which schedule of reinforcement is followed by Soledad, who answers every e-mail message her friend sends?",
"model_answer": "D",
"correct_answer": 3,
"is_correct": true,
"response_time": 25.305258989334106
},
{
"question": "Learned helplessness is an example of the power of",
"model_answer": "D",
"correct_answer": 0,
"is_correct": false,
"response_time": 25.51574182510376
},
{
"question": "After Suzy decided to go to the prom with Dylan, Max was unconsciously furious. Max then channeled all his energies into his artwork. Which defense mechanism is Max using?",
"model_answer": "B.",
"correct_answer": 1,
"is_correct": true,
"response_time": 25.51614785194397
},
{
"question": "Kohler's studies with apes are seen as demonstrating",
"model_answer": "D",
"correct_answer": 3,
"is_correct": true,
"response_time": 25.518378019332886
},
{
"question": "An artist doing a pencil drawing could use which of the following techniques to add depth to her or his drawing?",
"model_answer": "D",
"correct_answer": 3,
"is_correct": true,
"response_time": 25.518499851226807
},
{
"question": "The role of the outer ear is to",
"model_answer": "D",
"correct_answer": 3,
"is_correct": true,
"response_time": 25.518595695495605
},
{
"question": "What would Piaget test in order to determine whether a child is in the pre-operational or concrete operational stage of cognitive development?",
"model_answer": "C.",
"correct_answer": 2,
"is_correct": true,
"response_time": 25.518690824508667
},
{
"question": "While driving to school, Elise hears about a concert ticket giveaway on the radio. She has to be the seventh caller to win. While pulling over so that she can call in, she repeats the number to herself several times. Elise was using which of the following to remember the phone number?",
"model_answer": "D",
"correct_answer": 3,
"is_correct": true,
"response_time": 25.51878571510315
},
{
"question": "Which of the following brain structures is most centrally involved in hunger motivation?",
"model_answer": "D",
"correct_answer": 3,
"is_correct": true,
"response_time": 25.518878936767578
},
{
"question": "You are given four lists of words to learn: 1, 2, 3, and 4. You must learn list 1, then list 2, etc. Which list(s) would cause proactive interference for remembering list 2?",
"model_answer": "A.",
"correct_answer": 0,
"is_correct": true,
"response_time": 25.518969774246216
},
{
"question": "The Whorfian hypothesis of linguistic relativity helps explain why",
"model_answer": "D",
"correct_answer": 0,
"is_correct": false,
"response_time": 25.519060850143433
},
{
"question": "The semicircular canals of the inner ear are important for helping a person to maintain",
"model_answer": "C",
"correct_answer": 2,
"is_correct": true,
"response_time": 29.275871992111206
},
{
"question": "Sherif's Robbers Cave study indicated that which of the following principles best helps reduce tensions between groups?",
"model_answer": "A.",
"correct_answer": 0,
"is_correct": true,
"response_time": 29.276499032974243
},
{
"question": "Grounding a child for two weeks after the child has misbehaved is an example of",
"model_answer": "B",
"correct_answer": 1,
"is_correct": true,
"response_time": 29.276752948760986
},
{
"question": "After watching cartoons in which characters hit, punch, and kick other characters, nursery school students engage in more aggressive behavior than after watching Barney. This observation best supports",
"model_answer": "C",
"correct_answer": 2,
"is_correct": true,
"response_time": 29.2768611907959
},
{
"question": "During cooperative learning, all of the students in Group A members initially were opposed to the death penalty, whereas two of the students in Group B members were opposed to the death penalty and two were in favor of the death penalty. According to research, after an intense discussion within each group about capital punishment, we would expect",
"model_answer": "C",
"correct_answer": 2,
"is_correct": true,
"response_time": 29.276960849761963
},
{
"question": "Withdrawal symptoms are most directly caused by which of the following processes?",
"model_answer": "A.",
"correct_answer": 0,
"is_correct": true,
"response_time": 29.27705693244934
},
{
"question": "Today Susan took a pill for her allergy that raised her blood pressure, caused her heart to beat faster, and raised her body temperature. Now caught in traffic, she feels angry. Yesterday, when she took the pill, she was with her husband. When her blood pressure rose, her heart speeded up, she got hotter, and she felt amorous. This description exemplifies",
"model_answer": "B.",
"correct_answer": 1,
"is_correct": true,
"response_time": 29.27715301513672
},
{
"question": "Children develop internal representational systems that allow them verbally to describe people, events, and feelings during which of Piaget's stages of cognitive development?",
"model_answer": "B.",
"correct_answer": 1,
"is_correct": true,
"response_time": 29.277246952056885
},
{
"question": "Chantal says that her mother is domineering and overbearing. All of Chantal's friends agree that she is the one that has these characteristics, not her mother. Freud would suggest that Chantal's behavior exemplifies which of the following defense mechanisms?",
"model_answer": "C",
"correct_answer": 2,
"is_correct": true,
"response_time": 29.27733588218689
},
{
"question": "Which of the following terms describes the behavioral component of negative attitudes toward particular groups?",
"model_answer": "D",
"correct_answer": 3,
"is_correct": true,
"response_time": 29.277427196502686
},
{
"question": "A neutral stimulus that signals an unconditioned stimulus begins to produce a response that anticipates and prepares for the unconditioned stimulus during",
"model_answer": "A",
"correct_answer": 0,
"is_correct": true,
"response_time": 24.922922134399414
},
{
"question": "Which of the following is the term used to describe a number of psychotic disorders that involve disturbances in nearly every dimension of human psychology including thought, perception, behavior, and communication?",
"model_answer": "A.",
"correct_answer": 0,
"is_correct": true,
"response_time": 24.923491954803467
},
{
"question": "A severely overweight rat would most likely result from lesioning of the",
"model_answer": "C",
"correct_answer": 2,
"is_correct": true,
"response_time": 24.92391300201416
},
{
"question": "Coach Perry is training Lana to be the kindergarten soccer team's goalie. Coach Perry starts by rolling the ball to Lana slowly so she can stop it; he gradually begins to roll the ball faster and to different parts of the goal, all the while praising her successful attempts. The technique Coach Perry is using is called",
"model_answer": "C.",
"correct_answer": 2,
"is_correct": true,
"response_time": 24.924911975860596
},
{
"question": "Turning up the volume on a music player changes which aspect of sound?",
"model_answer": "A.",
"correct_answer": 0,
"is_correct": true,
"response_time": 24.92502784729004
},
{
"question": "The gland sometimes referred to as the \"master gland,\" which regulates much of the action of the other endocrine glands is called the",
"model_answer": "C",
"correct_answer": 2,
"is_correct": true,
"response_time": 24.925129175186157
},
{
"question": "Which psychological perspective was most popular at the turn of the twentieth century in Western Europe?",
"model_answer": "D",
"correct_answer": 3,
"is_correct": true,
"response_time": 24.925221920013428
},
{
"question": "The most common form of Down syndrome results during sex cell formation and fertilization from",
"model_answer": "B",
"correct_answer": 1,
"is_correct": true,
"response_time": 24.925314903259277
},
{
"question": "Odette is nearing her 70th birthday. Over the last year, she has suffered a loss of appetite and began to experience difficulty sleeping. She has lost interest in her favorite pastimes, gardening and bridge. Odette is most likely to be diagnosed as having",
"model_answer": "D",
"correct_answer": 3,
"is_correct": true,
"response_time": 24.925409078598022
},
{
"question": "What is the principal tool used in all forms of psychotherapy?",
"model_answer": "A.",
"correct_answer": 0,
"is_correct": true,
"response_time": 24.925498962402344
},
{
"question": "In Pavlov's conditioning of dogs, the point at which the dogs salivated at the sound of the tone without the food being present is referred to as",
"model_answer": "B",
"correct_answer": 1,
"is_correct": true,
"response_time": 28.652122020721436
},
{
"question": "According to humanistic psychologists, psychological disorders are most likely caused by",
"model_answer": "D",
"correct_answer": 3,
"is_correct": true,
"response_time": 28.65227508544922
},
{
"question": "According to the Gestalt organizing principles of perception, when you look at, \"i n car n a t e,\" you tend to notice the word car rather than in, nate, at, or ate, because of",
"model_answer": "A",
"correct_answer": 3,
"is_correct": false,
"response_time": 28.652377128601074
},
{
"question": "Which social psychological principle best explains prejudice?",
"model_answer": "D",
"correct_answer": 3,
"is_correct": true,
"response_time": 28.652478218078613
},
{
"question": "One month before finals, Conrad makes a study schedule and begins to review his notes. Two weeks before finals, Conrad is studying for hours each day to prepare. Right after finals at the start of summer vacation, Conrad comes down with the flu. Which of the following theories best explains this chain of events?",
"model_answer": "A.",
"correct_answer": 0,
"is_correct": true,
"response_time": 28.652578115463257
},
{
"question": "Endorphins are chemicals that",
"model_answer": "A.",
"correct_answer": 0,
"is_correct": true,
"response_time": 28.6526780128479
},
{
"question": "A therapist used the Rorschach inkblot test to help him analyze his patient's problems. He was most likely a",
"model_answer": "A.",
"correct_answer": 0,
"is_correct": true,
"response_time": 28.652777910232544
},
{
"question": "People who have previously not gotten along are often able to put aside their differences in the face of a mutual crisis. Their need to work together is often referred to as a(n)",
"model_answer": "B.",
"correct_answer": 1,
"is_correct": true,
"response_time": 28.652875900268555
},
{
"question": "Abraham Maslow's hierarachy of needs theorizes that each person is motivated by what?",
"model_answer": "B",
"correct_answer": 1,
"is_correct": true,
"response_time": 28.65297508239746
},
{
"question": "Sanja hears a sound that she recognizes as the front door being shut. In order for her to detect the sound and process it so that she knows what it is, Sanja's ear funnels the sound waves to the inner ear in order to stimulate the cilia of the inner ear. This is a critical step in the process of",
"model_answer": "A.",
"correct_answer": 0,
"is_correct": true,
"response_time": 28.653072118759155
},
{
"question": "Which of the following is a secondary reinforcer?",
"model_answer": "C.",
"correct_answer": 2,
"is_correct": true,
"response_time": 24.292566061019897
},
{
"question": "Which of the following kinds of personality theorists is the most likely to use a projective test?",
"model_answer": "D",
"correct_answer": 3,
"is_correct": true,
"response_time": 24.293054819107056
},
{
"question": "Antonia has a cat. The first time she sees a rabbit, she calls it a cat. Her mistake is due to the process of",
"model_answer": "B.",
"correct_answer": 3,
"is_correct": false,
"response_time": 24.293445825576782
},
{
"question": "Which sentence most accurately describes how neurons communicate?",
"model_answer": "C.",
"correct_answer": 2,
"is_correct": true,
"response_time": 24.293785095214844
},
{
"question": "Aaron Beck's negative triad of beliefs, which explains the cycle of depression by examining negative thoughts about self and the world, exemplifies what type of therapy?",
"model_answer": "B.",
"correct_answer": 1,
"is_correct": true,
"response_time": 24.294123888015747
},
{
"question": "According to Sigmund Freud, what is the dominant factor determining our personality traits?",
"model_answer": "C",
"correct_answer": 2,
"is_correct": true,
"response_time": 24.294559955596924
},
{
"question": "A recent comparison of the intelligence scores of Asian Americans and African Americans on the Stanford-Binet showed that",
"model_answer": "A",
"correct_answer": 3,
"is_correct": false,
"response_time": 24.29497504234314
},
{
"question": "Emotional, cognitive, and behavioral tendencies that constitute underlying personality dimensions on which individuals vary are referred to as",
"model_answer": "A.",
"correct_answer": 0,
"is_correct": true,
"response_time": 24.29509997367859
},
{
"question": "Someone with brain damage who has difficulty making the muscle movements needed to produce accurate speech might have damage to which area of the brain?",
"model_answer": "C.",
"correct_answer": 2,
"is_correct": true,
"response_time": 24.295206785202026
},
{
"question": "Lynda is a confident, capable woman who takes responsibility for her own actions. Lynda has a(n)",
"model_answer": "C",
"correct_answer": 2,
"is_correct": true,
"response_time": 24.295376777648926
},
{
"question": "In a sleep study, a researcher observes that the participant's eyes are beginning to dart as if he were watching a sporting event. The researcher notes that the participant has entered",
"model_answer": "C",
"correct_answer": 2,
"is_correct": true,
"response_time": 29.065937995910645
},
{
"question": "Which of the following perspectives is most concerned with self-esteem and actualizing one's potential?",
"model_answer": "A.",
"correct_answer": 0,
"is_correct": true,
"response_time": 29.06604814529419
},
{
"question": "What kind of symptom is common among all the somatoform disorders?",
"model_answer": "D",
"correct_answer": 3,
"is_correct": true,
"response_time": 29.066144943237305
},
{
"question": "Which of the following was an important technique used by Abraham Maslow and the humanistic psychologists during therapy?",
"model_answer": "C",
"correct_answer": 2,
"is_correct": true,
"response_time": 29.066241025924683
},
{
"question": "The myelin sheath that covers the axons of most neurons serves to do which of the following?",
"model_answer": "B",
"correct_answer": 1,
"is_correct": true,
"response_time": 29.06633496284485
},
{
"question": "A study designed to investigate the friendship patterns of abused children was conducted by filming the interactions of the children and later having three raters view the footage and rate each child's pattern of behavior on a conflictual-behavior scale with values ranging from \"constant conflict\" to \"minimal conflict.\" Which of the following kinds of reliability is most critical to this study, given the methodology used to measure the variables?",
"model_answer": "C",
"correct_answer": 2,
"is_correct": true,
"response_time": 29.066429138183594
},
{
"question": "Students diagnosed with attention deficit hyperactivity disorder (ADHD) are four to nine times more likely to be",
"model_answer": "B",
"correct_answer": 1,
"is_correct": true,
"response_time": 29.066524982452393
},
{
"question": "According to Erikson, a young adult's developmental crisis centers around",
"model_answer": "A.",
"correct_answer": 0,
"is_correct": true,
"response_time": 29.066617012023926
},
{
"question": "Psychoactive substances are drugs that alter consciousness by",
"model_answer": "C",
"correct_answer": 2,
"is_correct": true,
"response_time": 29.066707134246826
},
{
"question": "Two \"cognitive shortcuts\" that can lead to errors in information processing are",
"model_answer": "A.",
"correct_answer": 0,
"is_correct": true,
"response_time": 29.066795825958252
},
{
"question": "Which of the following best states a conclusion of Stanley Milgram's study of obedience?",
"model_answer": "D",
"correct_answer": 3,
"is_correct": true,
"response_time": 31.97026515007019
},
{
"question": "Which of the following is an example of a result of operant conditioning?",
"model_answer": "A.",
"correct_answer": 3,
"is_correct": false,
"response_time": 31.970661163330078
},
{
"question": "Which of the following is a strategy that the National Association of School Psychologists (NASP) recommends as a best practice for improving school safety?",
"model_answer": "D",
"correct_answer": 3,
"is_correct": true,
"response_time": 31.97112226486206
},
{
"question": "According to Elisabeth Kubler-Ross, the first reaction of a person faced with a terminal illness is",
"model_answer": "D",
"correct_answer": 3,
"is_correct": true,
"response_time": 31.971744060516357
},
{
"question": "Which part of the brain was thought to play the most important role in the Cannon-Bard theory of emotion?",
"model_answer": "A",
"correct_answer": 0,
"is_correct": true,
"response_time": 31.971940994262695
},
{
"question": "Jacob cries uncontrollably every time his mother takes him down the candy isle in the supermarket and refuses to let him buy anything. Eventually, Jacob's mother gives in and lets him choose one candy item to buy if he stops crying. Jacob's crying behavior is __________________ by his mother.",
"model_answer": "C",
"correct_answer": 2,
"is_correct": true,
"response_time": 31.97203803062439
},
{
"question": "Research reveals that the most critical factor in Type A behavior associated with heart disease is",
"model_answer": "C.",
"correct_answer": 0,
"is_correct": false,
"response_time": 31.97213315963745
},
{
"question": "Which of the following represents the correct order of auditory transmission from the time the sound is first heard to when it is processed in the brain?",
"model_answer": "D",
"correct_answer": 3,
"is_correct": true,
"response_time": 31.972227096557617
},
{
"question": "Research has shown that people who read a job description written only with male pronouns (e.g., he, his) are more likely to think of an employee as male than people who read a description that uses gender-neutral language (e.g., he or she). This finding is most closely linked to",
"model_answer": "B.",
"correct_answer": 0,
"is_correct": false,
"response_time": 31.972320079803467
},
{
"question": "In daylight, objects that reflect all wavelengths of light appear",
"model_answer": "B",
"correct_answer": 1,
"is_correct": true,
"response_time": 31.972413063049316
},
{
"question": "Which of the following neurotransmitters is most explicitly associated with the experience of pleasure?",
"model_answer": "D",
"correct_answer": 3,
"is_correct": true,
"response_time": 27.566518783569336
},
{
"question": "The rooting reflex is characterized by neonates",
"model_answer": "A.",
"correct_answer": 0,
"is_correct": true,
"response_time": 27.566630840301514
},
{
"question": "Which classical conditioning term best describes the following scenario: Later in his classical conditioning experiments, Ivan Pavlov's dogs began to salivate whenever they heard any sound similar to a bell, such as a doorbell or someone accidentally clinking a water glass.",
"model_answer": "D",
"correct_answer": 3,
"is_correct": true,
"response_time": 27.56672477722168
},
{
"question": "In a code-based phonic approach to early reading instruction, first-grade students are taught the sounds of the letters b, a, s, and g. According to the theory underlying this approach, which of the following will be most effective as the first sentence for the students to read?",
"model_answer": "A",
"correct_answer": 2,
"is_correct": false,
"response_time": 27.566820859909058
},
{
"question": "According to Erikson, those who look back at the end of their lives with regrets and the feeling that their lives have lacked fulfillment evidence unsuccessful resolution of the challenge of",
"model_answer": "C",
"correct_answer": 2,
"is_correct": true,
"response_time": 27.566920042037964
},
{
"question": "When first born, humans' dominant sense is",
"model_answer": "C.",
"correct_answer": 3,
"is_correct": false,
"response_time": 27.567015886306763
},
{
"question": "Light enters the eye through an opening in the",
"model_answer": "C.",
"correct_answer": 2,
"is_correct": true,
"response_time": 27.56711483001709
},
{
"question": "Information from the optic nerve is initially processed in what part of the brain?",
"model_answer": "A.",
"correct_answer": 2,
"is_correct": false,
"response_time": 27.567205905914307
},
{
"question": "According to activation-synthesis theory,",
"model_answer": "B",
"correct_answer": 1,
"is_correct": true,
"response_time": 27.567296028137207
},
{
"question": "Which of the following best summarizes why people tend to stay in a slightly elevated state of arousal after a crisis has occurred?",
"model_answer": "D",
"correct_answer": 3,
"is_correct": true,
"response_time": 27.567383766174316
},
{
"question": "According to Kohlberg, in order to reason at the postconventional level, people must",
"model_answer": "D",
"correct_answer": 2,
"is_correct": false,
"response_time": 32.39953589439392
},
{
"question": "Which of the following is true regarding lifelong learning and ongoing professional development of school psychologists?",
"model_answer": "A.",
"correct_answer": 0,
"is_correct": true,
"response_time": 32.39964509010315
},
{
"question": "The adaptive response of a six-month-old child who shows distress when an attachment figure leaves is known as",
"model_answer": "D",
"correct_answer": 3,
"is_correct": true,
"response_time": 32.39973998069763
},
{
"question": "Shafi cited Tony's and David's 100% math test scores in providing evidence that boys do better in math than girls. His failure to recognize that seven girls in the class earned 100% while only two boys earned that score best exemplifies",
"model_answer": "B.",
"correct_answer": 1,
"is_correct": true,
"response_time": 32.39983320236206
},
{
"question": "Disorganized language like clang associations or neologisms is associated with",
"model_answer": "B.",
"correct_answer": 1,
"is_correct": true,
"response_time": 32.39992618560791
},
{
"question": "According to Dr. William Sears, noted authority on infants and child-rearing, infant brain development is, in part, influenced by longer and more frequent periods of active sleeping and dreaming or",
"model_answer": "A.",
"correct_answer": 0,
"is_correct": true,
"response_time": 32.400017976760864
},
{
"question": "Which of the following would be most useful in understanding a neighbor's interpretation of a certain family's recent crisis as being due to extreme financial distress?",
"model_answer": "C.",
"correct_answer": 2,
"is_correct": true,
"response_time": 32.40010905265808
},
{
"question": "Each of the following is a step taken by a therapist who is employing systematic desensitization EXCEPT",
"model_answer": "A.",
"correct_answer": 0,
"is_correct": true,
"response_time": 32.40020203590393
},
{
"question": "Which one of the following best states Ivan Pavlov's accidental discovery?",
"model_answer": "B.",
"correct_answer": 1,
"is_correct": true,
"response_time": 32.4002890586853
},
{
"question": "Individuals in which of the following occupations will be potentially LEAST likely to be susceptible to health problems as a result of disrupted circadian rhythms?",
"model_answer": "D",
"correct_answer": 3,
"is_correct": true,
"response_time": 32.400376081466675
},
{
"question": "Objects that absorb light appear",
"model_answer": "A.",
"correct_answer": 2,
"is_correct": false,
"response_time": 30.71293592453003
},
{
"question": "Of the following, most children will develop which skill first?",
"model_answer": "D",
"correct_answer": 3,
"is_correct": true,
"response_time": 30.713042974472046
},
{
"question": "The incidence of schizophrenia in the population is closest to",
"model_answer": "C.",
"correct_answer": 1,
"is_correct": false,
"response_time": 30.71313786506653
},
{
"question": "In general, the best presentation time between the conditioned stimulus and unconditioned stimulus to produce classical conditioning is",
"model_answer": "A",
"correct_answer": 0,
"is_correct": true,
"response_time": 30.71323013305664
},
{
"question": "Ryan suffers from nearly constant, low-level arousal of his autonomic nervous system. Ryan is most likely to be classified as suffering from",
"model_answer": "A.",
"correct_answer": 0,
"is_correct": true,
"response_time": 30.71332311630249
},
{
"question": "The pastry chef ordinarily makes 15 apple turnovers in 15 minutes, but when culinary arts students are watching him, he makes 20 apple turnovers in 15 minutes. This exemplifies",
"model_answer": "C",
"correct_answer": 2,
"is_correct": true,
"response_time": 30.713414907455444
},
{
"question": "Seeing someone in line at the grocery store and remembering her or his name is an example of which kind of retrieval?",
"model_answer": "A.",
"correct_answer": 1,
"is_correct": false,
"response_time": 30.713507890701294
},
{
"question": "Lizette and her family watch the sunset over the ocean. While walking home in the increasing darkness, Lizette notices that she can no longer distinguish the colors of objects. Which of the following best explains why Lizette cannot see color in dim light?",
"model_answer": "B.",
"correct_answer": 1,
"is_correct": true,
"response_time": 30.713636875152588
},
{
"question": "After sending a decal to display on a window and greeting cards with its logo, a charity sent the same people envelopes requesting contributions. Many people send contributions. The charity is using a technique known as",
"model_answer": "B",
"correct_answer": 1,
"is_correct": true,
"response_time": 30.71379780769348
},
{
"question": "A piano teacher is helping a student learn a new piece. At first, she praises the student for playing correct notes. After the student begins to show proficiency with the notes, the teacher only praises the student when he adds the proper dynamics and interpretation to the segments he plays. The teacher's method of instruction is an example of which of the following types of training techniques?",
"model_answer": "C",
"correct_answer": 2,
"is_correct": true,
"response_time": 30.71395516395569
},
{
"question": "According to the Gestalt theory of perception, being able to identify a three-sided object as being a triangle, even though it is partially blocked from view is an example of",
"model_answer": "C",
"correct_answer": 2,
"is_correct": true,
"response_time": 25.8663809299469
},
{
"question": "Which of the following would a researcher need to use to determine if the difference between the mean scores of experimental and control groups was significant?",
"model_answer": "B.",
"correct_answer": 1,
"is_correct": true,
"response_time": 25.86675715446472
},
{
"question": "What makes the psychoanalytic perspective different from the other psychological perspectives?",
"model_answer": "A.",
"correct_answer": 0,
"is_correct": true,
"response_time": 25.86709713935852
},
{
"question": "The driver of a car that has pulled up next to you at a red light turns up the volume on her radio. The increase in perceived sound that you experience is primarily due to",
"model_answer": "D",
"correct_answer": 3,
"is_correct": true,
"response_time": 25.867449045181274
},
{
"question": "A comprehensive final examination in AP Psychology that consists of questions dealing solely with motivation and emotion, social psychology, and the biological basis of behavior units lacks",
"model_answer": "A.",
"correct_answer": 0,
"is_correct": true,
"response_time": 25.867902040481567
},
{
"question": "Menarche occurs at about age",
"model_answer": "B",
"correct_answer": 1,
"is_correct": true,
"response_time": 25.868191957473755
},
{
"question": "Milgram's obedience study was criticized based on what ethical grounds?",
"model_answer": "D",
"correct_answer": 3,
"is_correct": true,
"response_time": 25.868289947509766
},
{
"question": "Which coefficient indicates the strongest correlation?",
"model_answer": "A.",
"correct_answer": 0,
"is_correct": true,
"response_time": 25.86838388442993
},
{
"question": "Which part of the brain is the newest in an evolutionary sense?",
"model_answer": "B.",
"correct_answer": 1,
"is_correct": true,
"response_time": 25.868479013442993
},
{
"question": "Why might a researcher use a variable ratio of reinforcement rather than a fixed ratio?",
"model_answer": "D",
"correct_answer": 3,
"is_correct": true,
"response_time": 25.868569135665894
},
{
"question": "A medication prescribed by a psychiatrist for major depressive disorder would most likely influence the balance of which of the following neurotransmitters?",
"model_answer": "A.",
"correct_answer": 0,
"is_correct": true,
"response_time": 28.883891820907593
},
{
"question": "Today, it is unlikely that a psychologist could condition a baby to fear a rat and other small animals in a research study at a university because",
"model_answer": "B",
"correct_answer": 1,
"is_correct": true,
"response_time": 28.884002923965454
},
{
"question": "Carl Jung's concept of a repository of ideas, feelings, and symbols shared by all humans and passed genetically from one generation to another is known as Jung's theory of the",
"model_answer": "D",
"correct_answer": 3,
"is_correct": true,
"response_time": 28.8840970993042
},
{
"question": "Which of the following is often true of memory recall?",
"model_answer": "A.",
"correct_answer": 0,
"is_correct": true,
"response_time": 28.884188890457153
},
{
"question": "Which of the following kinds of therapies would most likely be used by a somatic therapist?",
"model_answer": "D",
"correct_answer": 3,
"is_correct": true,
"response_time": 28.88427996635437
},
{
"question": "Which two competing theories explain the effects of hypnosis?",
"model_answer": "B.",
"correct_answer": 1,
"is_correct": true,
"response_time": 28.88436985015869
},
{
"question": "A major advantage of standardized normreferenced assessment, as compared with curriculum-based assessment, is that standardized norm-referenced tests",
"model_answer": "B.",
"correct_answer": 1,
"is_correct": true,
"response_time": 28.884459972381592
},
{
"question": "Hunger, thirst, and sex are most closely associated with stimulation of the",
"model_answer": "C",
"correct_answer": 2,
"is_correct": true,
"response_time": 28.88455080986023
},
{
"question": "In response to a column printed in newspapers throughout the United States, an advice columnist received over 28,000 responses. Over 75% of respondents said that if they had it to do over again, they would not have children. The columnist concludes that most parents are sorry that they had children. For which of the following reasons is her conclusion not valid?",
"model_answer": "D",
"correct_answer": 3,
"is_correct": true,
"response_time": 28.884642124176025
},
{
"question": "Hypnosis has been used effectively to diminish",
"model_answer": "B.",
"correct_answer": 1,
"is_correct": true,
"response_time": 28.884731769561768
},
{
"question": "Every time you buy ice cream from the Yellow Brick Road ice cream parlor, you get your over-the-rainbow card stamped. Once you purchase ten items, you get your next item free. The Yellow Brick Road ice cream parlor has you on which of the following reinforcement schedules?",
"model_answer": "C",
"correct_answer": 2,
"is_correct": true,
"response_time": 27.62444019317627
},
{
"question": "Donia was soaked by an unexpected cloudburst while walking to her car from the office. The fact that she failed to realize that the newspaper she was carrying would have made a great makeshift umbrella is an example of",
"model_answer": "C.",
"correct_answer": 2,
"is_correct": true,
"response_time": 27.624941110610962
},
{
"question": "Which of the following statistical procedures consists of systematically combining data from multiple studies focusing on the same question and using similar variables?",
"model_answer": "D",
"correct_answer": 3,
"is_correct": true,
"response_time": 27.625307321548462
},
{
"question": "Your little cousin watches you at the computer, and when you get up, he immediately tries to use the keyboard. His behavior in this situation can best be explained on the basis of",
"model_answer": "D",
"correct_answer": 3,
"is_correct": true,
"response_time": 27.62566328048706
},
{
"question": "Which of the following is LEAST likely to contribute to prejudice?",
"model_answer": "D",
"correct_answer": 3,
"is_correct": true,
"response_time": 27.626159191131592
},
{
"question": "Conflicting attitudes or behaviors that create tension within a person's mind are referred to in terms of",
"model_answer": "D",
"correct_answer": 3,
"is_correct": true,
"response_time": 27.626285076141357
},
{
"question": "A nonprofit environmental group includes a free gift of address labels in a letter asking for contributions. Which social psychological principle is the nonprofit group trying to use to increase contributions?",
"model_answer": "C.",
"correct_answer": 2,
"is_correct": true,
"response_time": 27.62638020515442
},
{
"question": "Stephen is going through his second divorce. He thinks that no woman will ever love him again. His therapist points out to Stephen that his thinking is irrational and faulty. Which of the following therapies is the therapist employing?",
"model_answer": "D",
"correct_answer": 3,
"is_correct": true,
"response_time": 27.626474380493164
},
{
"question": "A classically conditioned response can best be eliminated by presentation of",
"model_answer": "B",
"correct_answer": 1,
"is_correct": true,
"response_time": 27.626566171646118
},
{
"question": "The focus of structuralists most closely matches the current perspective of",
"model_answer": "C.",
"correct_answer": 2,
"is_correct": true,
"response_time": 27.626655340194702
},
{
"question": "Curtis stares at an image of a yellow star for a full minute. When he moves his gaze to a blank piece of white paper, he is likely to see an afterimage that is",
"model_answer": "A",
"correct_answer": 3,
"is_correct": false,
"response_time": 28.621742963790894
},
{
"question": "In a cartoon, an angel is perched on one shoulder and a devil is perched on the other shoulder of a character who needs to decide whether to give money to a homeless man or not. The devil says, \"Don't give him anything, you'll make better use of the money than he will.\" The angel says, \"Give him the money because he needs it more than you do.\" The character gives the homeless man half of his money. In a Freudian interpretation, the angel represents the character's",
"model_answer": "D",
"correct_answer": 3,
"is_correct": true,
"response_time": 28.62226104736328
},
{
"question": "In schools characterized by high student achievement and family involvement, schoolcommunity partnerships",
"model_answer": "A.",
"correct_answer": 0,
"is_correct": true,
"response_time": 28.62277317047119
},
{
"question": "Because Al doesn't care how well he does at school but does care about having enough money to pay for a car, Al's mother gives him money for every \"A\" and \"B\" he earns on school tests and projects. For which of the following theories is the mother's behavior an exemplary application?",
"model_answer": "D",
"correct_answer": 3,
"is_correct": true,
"response_time": 28.62415075302124
},
{
"question": "The method of loci is a memory aid that employs which of the following?",
"model_answer": "B",
"correct_answer": 1,
"is_correct": true,
"response_time": 28.62457776069641
},
{
"question": "Which of the following is the best example of an attribute that is culturally-based rather than primarily psychologically-based?",
"model_answer": "B.",
"correct_answer": 1,
"is_correct": true,
"response_time": 28.624931812286377
},
{
"question": "Complete the following example using deductive reasoning: All students who attend the Peddie School study Latin. Some students who study Latin also study calculus. Jerome is a student at the Peddie School. It can therefore be determined that",
"model_answer": "B",
"correct_answer": 1,
"is_correct": true,
"response_time": 28.625281810760498
},
{
"question": "Of the following, which is characteristic of formal operational thinking?",
"model_answer": "D",
"correct_answer": 3,
"is_correct": true,
"response_time": 28.625634908676147
},
{
"question": "Amy's therapist shakes her head affirmatively and says, \"Yes, uh huh,\" as Amy talks about her problems. Which of the following treatments did she experience?",
"model_answer": "C",
"correct_answer": 2,
"is_correct": true,
"response_time": 28.626112937927246
},
{
"question": "Emily scored at the 65th percentile on a standardized achievement test. This indicates which of the following? Her score was",
"model_answer": "C.",
"correct_answer": 0,
"is_correct": false,
"response_time": 28.6264967918396
},
{
"question": "In the \"cocktail party phenomenon,\" an individual can focus on one conversation and filter out all the surrounding stimuli. This is an example of",
"model_answer": "B",
"correct_answer": 1,
"is_correct": true,
"response_time": 31.340989351272583
},
{
"question": "Albert Bandura and the social-cognitive personality theorists believe that personality results from the interaction of which factors?",
"model_answer": "D",
"correct_answer": 3,
"is_correct": true,
"response_time": 31.341428995132446
},
{
"question": "What part of Phineas Gage's brain was damaged by his accident while laying the railroad track?",
"model_answer": "D.",
"correct_answer": 3,
"is_correct": true,
"response_time": 31.341843366622925
},
{
"question": "Janice often has feelings of hostility and contempt for her husband of forty years. However, instead of expressing these feelings, Janice goes overboard to dote on her husband. Janice is using which of the following defense mechanisms?",
"model_answer": "B",
"correct_answer": 1,
"is_correct": true,
"response_time": 31.34226417541504
},
{
"question": "\"Mommy gived me a cookie\" best illustrates a basic understanding of",
"model_answer": "B",
"correct_answer": 3,
"is_correct": false,
"response_time": 31.34511923789978
},
{
"question": "A child is frightened by the sudden barking of a neighbor's dog. Once her mother picks her up, the child begins to calm down as which of the following biological processes occurs?",
"model_answer": "A.",
"correct_answer": 0,
"is_correct": true,
"response_time": 31.345227003097534
},
{
"question": "Because Jake, the team's starting, star center, is late to basketball practice, Coach Peterson sits him out for the first quarter of the next game. Jake is on time for the rest of the season. Coach Peterson has used",
"model_answer": "A.",
"correct_answer": 3,
"is_correct": false,
"response_time": 31.345322132110596
},
{
"question": "When Jared saw shadows of people on the walls of his bedroom, his blood pressure increased and his breathing rate sped up. These physical reactions were most directly regulated by his",
"model_answer": "C",
"correct_answer": 2,
"is_correct": true,
"response_time": 31.345413208007812
},
{
"question": "Which sentence most accurately describes how neurons communicate?",
"model_answer": "C.",
"correct_answer": 2,
"is_correct": true,
"response_time": 31.345503330230713
},
{
"question": "Which of the following is an example of a person who suffers from anterograde amnesia?",
"model_answer": "C",
"correct_answer": 2,
"is_correct": true,
"response_time": 31.345590114593506
},
{
"question": "Stella remembered the order of the planets from the Sun by recalling the sentence, \"My very educated mother just served us noodles.\" For Stella, this sentence is a",
"model_answer": "B",
"correct_answer": 1,
"is_correct": true,
"response_time": 24.6331148147583
},
{
"question": "Tina is a very good student: Her grades are high, she is involved in extracurricular activities, and typically she excels at anything she tries. Therefore, when she caused an accident her second day of driver's ed., her instructor was shocked. The instructor's disbelief is most probably a result of",
"model_answer": "C",
"correct_answer": 2,
"is_correct": true,
"response_time": 24.633487939834595
},
{
"question": "An individual with brain lesions in the hippocampus will most likely experience impairment to her",
"model_answer": "D",
"correct_answer": 3,
"is_correct": true,
"response_time": 24.63406014442444
},
{
"question": "Mr. Maji gives a test to his class of 25 students. All but three students score between 82 and 94. The other three students score 47, 55, and 62. These scores are potential",
"model_answer": "C.",
"correct_answer": 2,
"is_correct": true,
"response_time": 24.634181022644043
},
{
"question": "A group of participants in a sleep study are to be deprived of sleep for four days. After their second sleepless night, participants may begin reporting which of the following?",
"model_answer": "D",
"correct_answer": 3,
"is_correct": true,
"response_time": 24.6342830657959
},
{
"question": "Which of the following models of personality is the least deterministic?",
"model_answer": "A.",
"correct_answer": 0,
"is_correct": true,
"response_time": 24.634377002716064
},
{
"question": "The study of cognitive, behavioral, and social changes across the life span are most directly studied by which of the following?",
"model_answer": "C",
"correct_answer": 2,
"is_correct": true,
"response_time": 24.634467840194702
},
{
"question": "For which of the following disorders might a psychiatrist prescribe a selective serotonin reuptake inhibitor such as Prozac or Paxil?",
"model_answer": "B.",
"correct_answer": 1,
"is_correct": true,
"response_time": 24.634560108184814
},
{
"question": "Approximately what percentage of participants in Milgram's obedience experiments thought they delivered the maximum amount of shock possible?",
"model_answer": "A",
"correct_answer": 3,
"is_correct": false,
"response_time": 24.63465189933777
},
{
"question": "A psychologist focusing on whether development occurs in stages is most interested in which of the following controversies?",
"model_answer": "B",
"correct_answer": 0,
"is_correct": false,
"response_time": 24.63474202156067
},
{
"question": "When a person experiences a discrepancy between an attitude and a behavior, the person experiences",
"model_answer": "A.",
"correct_answer": 0,
"is_correct": true,
"response_time": 27.145793914794922
},
{
"question": "Which of the following disorders responds best to cognitive behavioral therapy?",
"model_answer": "D.",
"correct_answer": 3,
"is_correct": true,
"response_time": 27.146209955215454
},
{
"question": "The president of a company brought in an outside consultant to disagree with him about an important decision to be discussed at a meeting of his top level executives in order to avoid",
"model_answer": "B.",
"correct_answer": 1,
"is_correct": true,
"response_time": 27.146639823913574
},
{
"question": "Mary Ainsworth placed babies into a strange situation and observed the babies' reactions when the parents left and then returned. What developmental concept was Ainsworth studying?",
"model_answer": "D",
"correct_answer": 3,
"is_correct": true,
"response_time": 27.146949768066406
},
{
"question": "According to the Law of Effect, behaviors followed by negative consequences",
"model_answer": "B.",
"correct_answer": 1,
"is_correct": true,
"response_time": 27.147073984146118
},
{
"question": "Most mnemonic devices (like learning the notes on the staff by memorizing the sentence \"Every Good Boy Does Fine\" and using the first letter of each word) are examples of which memory enhancement technique?",
"model_answer": "D",
"correct_answer": 3,
"is_correct": true,
"response_time": 27.147172927856445
},
{
"question": "Iconic memory refers to",
"model_answer": "A.",
"correct_answer": 0,
"is_correct": true,
"response_time": 27.14726686477661
},
{
"question": "According to Jean Piaget, egocentrism, animism, and trial-and-error learning are characteristic of the stage of development known as",
"model_answer": "A.",
"correct_answer": 0,
"is_correct": true,
"response_time": 27.147360801696777
},
{
"question": "Which of the following is most likely to lead to a constructed memory?",
"model_answer": "C.",
"correct_answer": 2,
"is_correct": true,
"response_time": 27.14745283126831
},
{
"question": "As an experiment, a group of newborn kittens was allowed to see through only one eye at a time. Each day one of the eyes would be covered, switching between the two eyes on subsequent days. Which of the following best describes the visual limitations experienced by these cats as adults?",
"model_answer": "D",
"correct_answer": 3,
"is_correct": true,
"response_time": 27.147543907165527
},
{
"question": "Blinking, sneezing, flinching, and coughing are examples of the type of behavior called",
"model_answer": "B",
"correct_answer": 1,
"is_correct": true,
"response_time": 23.360764265060425
},
{
"question": "Which of the following refers to the benefit of having an emotional release to reduce aggressive tendencies?",
"model_answer": "C",
"correct_answer": 2,
"is_correct": true,
"response_time": 23.36087393760681
},
{
"question": "A projective test with ambiguous pictures that are frequently used to assess achievement motivation is the",
"model_answer": "A",
"correct_answer": 0,
"is_correct": true,
"response_time": 23.360967874526978
},
{
"question": "Which of the following is an example of an implicit memory?",
"model_answer": "B",
"correct_answer": 1,
"is_correct": true,
"response_time": 23.3610622882843
},
{
"question": "Which of the following is not one of the stages in the development of language that children of virtually every culture go through?",
"model_answer": "D",
"correct_answer": 3,
"is_correct": true,
"response_time": 23.361156225204468
},
{
"question": "Madison is a fifth grader who tries to listen to the teacher, but has difficulty focusing. She looks around the classroom while the teacher is talking and then does not know what to do when others are starting their assignments. Her symptoms are characteristic of which of the following?",
"model_answer": "C.",
"correct_answer": 2,
"is_correct": true,
"response_time": 23.361250162124634
},
{
"question": "In the three-box information processing model, what is the first place memories are stored?",
"model_answer": "D.",
"correct_answer": 3,
"is_correct": true,
"response_time": 23.361345052719116
},
{
"question": "What kind of personality theorist would be most interested in the results of the MMPI?",
"model_answer": "D",
"correct_answer": 3,
"is_correct": true,
"response_time": 23.361436128616333
},
{
"question": "Which neurotransmitter is most closely associated with both Parkinson's disease and schizophrenia?",
"model_answer": "B",
"correct_answer": 1,
"is_correct": true,
"response_time": 23.361525058746338
},
{
"question": "What kinds of factors are ignored or de-emphasized when people commit the fundamental attribution error?",
"model_answer": "B.",
"correct_answer": 1,
"is_correct": true,
"response_time": 23.361614227294922
},
{
"question": "Anorexia nervosa is a life-threatening illness that can lead to permanent physiological changes (such as brittle bones) and even death. Which of the following individuals would be the most likely to develop this illness?",
"model_answer": "A.",
"correct_answer": 0,
"is_correct": true,
"response_time": 31.866116046905518
},
{
"question": "Ben thinks students will answer questions printed on yellow paper more quickly than those printed on blue paper. All study participants will take three tests with 35 multiple-choice questions each. The independent variable in Ben's experiment is",
"model_answer": "A",
"correct_answer": 0,
"is_correct": true,
"response_time": 31.866786003112793
},
{
"question": "Which of the following is generally considered a disadvantage of longitudinal developmental research?",
"model_answer": "D",
"correct_answer": 3,
"is_correct": true,
"response_time": 31.867115020751953
},
{
"question": "Dieters often have difficulty losing additional weight after reaching a specific plateau because their bodies function at a lowered metabolic rate according to",
"model_answer": "C.",
"correct_answer": 2,
"is_correct": true,
"response_time": 31.867216110229492
},
{
"question": "Delia was accepted to both Harvard University and Yale University and is having difficulty choosing which school to attend. With which of the following conflicts is she faced?",
"model_answer": "D",
"correct_answer": 3,
"is_correct": true,
"response_time": 31.86730694770813
},
{
"question": "All of the following are positive symptoms of schizophrenia EXCEPT",
"model_answer": "D.",
"correct_answer": 3,
"is_correct": true,
"response_time": 31.867396116256714
},
{
"question": "The decision in Tarasoff v. Regents of the University of California (1974, 1976) established which of the following principles regarding confidentiality in counseling relationships?",
"model_answer": "A.",
"correct_answer": 0,
"is_correct": true,
"response_time": 31.867483854293823
},
{
"question": "A person suffering from a skin rash finds her pain is temporarily relieved by vigorous scratching. She does not perceive the pain from the rash while she is scratching, but the pain returns soon after she stops scratching. Which concept best explains this temporary pain relief?",
"model_answer": "D",
"correct_answer": 3,
"is_correct": true,
"response_time": 31.86757206916809
},
{
"question": "Which of the following accurately summarizes a depressed person's view according to Aaron Beck's negative triad theory?",
"model_answer": "C",
"correct_answer": 2,
"is_correct": true,
"response_time": 31.867657899856567
},
{
"question": "Use of brainstorming to solve a problem best encourages which of the following?",
"model_answer": "A.",
"correct_answer": 0,
"is_correct": true,
"response_time": 31.86774206161499
},
{
"question": "Shannon forgot her pillow when she went camping, so she complained about having to sleep with her head flat on the ground the whole night. Her failure to fold up her jeans and sweater to use as a pillow-substitute best illustrates the effects of",
"model_answer": "B",
"correct_answer": 1,
"is_correct": true,
"response_time": 27.533888816833496
},
{
"question": "Which of the following is NOT an anxiety disorder?",
"model_answer": "B",
"correct_answer": 1,
"is_correct": true,
"response_time": 27.53433084487915
},
{
"question": "Which of the following statements is true about the relationship between reliability and validity?",
"model_answer": "D",
"correct_answer": 3,
"is_correct": true,
"response_time": 27.534675121307373
},
{
"question": "Which of the following structures in the eye is most specifically responsible for color vision?",
"model_answer": "D",
"correct_answer": 3,
"is_correct": true,
"response_time": 27.535017013549805
},
{
"question": "Neural transmission is often described as an electrochemical process. Which of the following is most directly involved in the electrical aspect?",
"model_answer": "D",
"correct_answer": 3,
"is_correct": true,
"response_time": 27.535367965698242
},
{
"question": "Which of the following LEAST influences sexual behavior?",
"model_answer": "D.",
"correct_answer": 3,
"is_correct": true,
"response_time": 27.535722017288208
},
{
"question": "Which of the following is not considered a primary facial expression?",
"model_answer": "D",
"correct_answer": 0,
"is_correct": false,
"response_time": 27.536301851272583
},
{
"question": "When a child is enrolled in elementary school, the parents are frequently involved in the child's education as partners, collaborators, and problem solvers. During middle and high school, the parents are more typically described as",
"model_answer": "C.",
"correct_answer": 3,
"is_correct": false,
"response_time": 27.536433935165405
},
{
"question": "Carlotta is a well-adjusted, socially competent adolescent. Which of the following most likely represents her family's parenting style?",
"model_answer": "D",
"correct_answer": 3,
"is_correct": true,
"response_time": 27.536531925201416
},
{
"question": "Max was typically out of control whenever he attended preschool. Teachers tried time-outs and other punishments to no avail. His parents and the school decided to work with Max by giving him a sticker each time he behaved for a full hour. Once he accumulated ten stickers, he could present them to his parents who would give him a reward. The method the school and parents chose to employ is referred to as",
"model_answer": "B",
"correct_answer": 1,
"is_correct": true,
"response_time": 27.536625862121582
},
{
"question": "Which technique controls for both experimenter and subject bias?",
"model_answer": "B.",
"correct_answer": 1,
"is_correct": true,
"response_time": 28.75721287727356
},
{
"question": "The staggering and slurred speech of a person who has consumed too much alcohol is most likely the result of altered functioning in the",
"model_answer": "D",
"correct_answer": 3,
"is_correct": true,
"response_time": 28.757341861724854
},
{
"question": "The field of psychology arose out of which of the following?",
"model_answer": "C.",
"correct_answer": 2,
"is_correct": true,
"response_time": 28.757449865341187
},
{
"question": "Which of the following is an example of imprinting?",
"model_answer": "B",
"correct_answer": 1,
"is_correct": true,
"response_time": 28.757549047470093
},
{
"question": "For which of the following would drive-reduction theories not provide a reasonable explanation?",
"model_answer": "D",
"correct_answer": 3,
"is_correct": true,
"response_time": 28.757649898529053
},
{
"question": "Dr. Scarlett conducted experiments in which she electrically stimulated parts of a cat's brain. A cat that became terrified in the presence of a mouse was most likely stimulated in the",
"model_answer": "A.",
"correct_answer": 0,
"is_correct": true,
"response_time": 28.757751941680908
},
{
"question": "Which of the following illustrates why most people can detect the difference between Coke and Pepsi most of the time?",
"model_answer": "D",
"correct_answer": 3,
"is_correct": true,
"response_time": 28.757853984832764
},
{
"question": "A clinical psychologist who is working with an aggressive child seeks to understand the child's behavior in light of the dynamics of the entire family. Which of the following best identifies the approach the psychologist has chosen?",
"model_answer": "D",
"correct_answer": 3,
"is_correct": true,
"response_time": 28.757946729660034
},
{
"question": "Why can experiments determine causal relationships when no other research method can?",
"model_answer": "B",
"correct_answer": 1,
"is_correct": true,
"response_time": 28.758041858673096
},
{
"question": "What type of psychologist would assert that a key motivation for people is the desire to spread their genetic material?",
"model_answer": "B",
"correct_answer": 1,
"is_correct": true,
"response_time": 28.75813603401184
},
{
"question": "In a team tug of war, Ty did not pull as hard as he would have if he were pulling alone against one competitor. His behavior exemplifies",
"model_answer": "C.",
"correct_answer": 2,
"is_correct": true,
"response_time": 32.780620098114014
},
{
"question": "What is the major difference between classical and operant conditioning?",
"model_answer": "B.",
"correct_answer": 1,
"is_correct": true,
"response_time": 32.78074598312378
},
{
"question": "A listener-sponsored radio station wants to estimate the amount of money the typical supporter contributes during a fund-drive. In a sample of 30 supporters, it was discovered that 22 of them gave $60, six of them gave $1,000, and two of them gave $10,000. Based on this sample, which of the following measures of central tendency would provide the most useful information to the radio station?",
"model_answer": "A",
"correct_answer": 1,
"is_correct": false,
"response_time": 32.780839920043945
},
{
"question": "Young Tina had never seen the space shuttle until her parents pointed out a picture of it ready to launch. When she next saw a picture of it flying, she had difficulty recognizing it. Which concept best explains this problem?",
"model_answer": "D",
"correct_answer": 3,
"is_correct": true,
"response_time": 32.78093385696411
},
{
"question": "Dr. Ramchandran found that his patients who brushed their teeth after lunch had 1/20 the number of cavities in their teeth as those who didn't. After interviewing the dentist, a local newswriter reports that brushing teeth after lunch prevents cavities. Based on the dentist's research, which of the following statements is true?",
"model_answer": "D",
"correct_answer": 3,
"is_correct": true,
"response_time": 32.78103494644165
},
{
"question": "Which of the following terms refers to the body's tendency to maintain a relatively constant state that permits cells to live and function?",
"model_answer": "C.",
"correct_answer": 2,
"is_correct": true,
"response_time": 32.78113102912903
},
{
"question": "Joey, a 25-year-old convict, has a history of conduct disorder in elementary school and bullying in junior high. By high school, he was mugging peers and taking whatever he wanted from elderly shoppers without caring if he hurt anyone. Joey would most likely be diagnosed with",
"model_answer": "A.",
"correct_answer": 0,
"is_correct": true,
"response_time": 32.78122901916504
},
{
"question": "An \"A+\" course grade is which kind of reinforcer?",
"model_answer": "B.",
"correct_answer": 1,
"is_correct": true,
"response_time": 32.78132605552673
},
{
"question": "Which of the following explanations of why a 17-year-old drives his car at or below the speed limit best illustrates Kohlberg's conventional level of morality?",
"model_answer": "B",
"correct_answer": 1,
"is_correct": true,
"response_time": 32.781421184539795
},
{
"question": "The obsessive fear of being in places or situations from which escape might be difficult is known as",
"model_answer": "D",
"correct_answer": 3,
"is_correct": true,
"response_time": 32.78151512145996
},
{
"question": "Which of the following psychologists would most likely agree with the following statement: Behavior is a result of the combination of reinforcers and punishers?",
"model_answer": "C",
"correct_answer": 2,
"is_correct": true,
"response_time": 25.781367778778076
},
{
"question": "Free association and dream interpretation frequently characterize which of the following treatments?",
"model_answer": "A.",
"correct_answer": 0,
"is_correct": true,
"response_time": 25.781479835510254
},
{
"question": "Which is likely to increase as a normal, healthy individual ages from 25 to 75 years of age?",
"model_answer": "B",
"correct_answer": 1,
"is_correct": true,
"response_time": 25.78157901763916
},
{
"question": "A doctor who smokes cigarettes knows that it is unhealthy, but thinks that he can keep smoking, since he eats healthily. Which concept best explains this thought process?",
"model_answer": "C.",
"correct_answer": 2,
"is_correct": true,
"response_time": 25.781672954559326
},
{
"question": "According to trait theorists, such as Hans Eysenck, the basis for personality is",
"model_answer": "D",
"correct_answer": 3,
"is_correct": true,
"response_time": 25.78176999092102
},
{
"question": "Tony got accepted to the college he wants to attend, is going to the prom with a girl he really admires, and was hired for the summer job he sought. He has high",
"model_answer": "A.",
"correct_answer": 0,
"is_correct": true,
"response_time": 25.781864881515503
},
{
"question": "At the outset of a study on eating habits, a researcher asks participants a variety of questions, including whether they typically eat breakfast. Whether or not a person eats breakfast is a(n)",
"model_answer": "A",
"correct_answer": 0,
"is_correct": true,
"response_time": 25.781956672668457
},
{
"question": "Cyan has come up with a test to identify people with the potential to be great civil rights lawyers. Such a test would be classified as a(n)",
"model_answer": "D.",
"correct_answer": 3,
"is_correct": true,
"response_time": 25.782050609588623
},
{
"question": "An American teenager's prototype of a chair is most likely to include",
"model_answer": "B",
"correct_answer": 1,
"is_correct": true,
"response_time": 25.78214454650879
},
{
"question": "Loss of the ability to understand language results from loss of tissue in which of the following lobes?",
"model_answer": "D",
"correct_answer": 3,
"is_correct": true,
"response_time": 25.78223466873169
},
{
"question": "Knowledge of different categories of trees and where they grow best is an example of what kind of long-term memory?",
"model_answer": "B.",
"correct_answer": 1,
"is_correct": true,
"response_time": 29.80973792076111
},
{
"question": "Which of the following most accurately describes the firing of a neuron?",
"model_answer": "B.",
"correct_answer": 1,
"is_correct": true,
"response_time": 29.809862852096558
},
{
"question": "A participant in a single-trial free-recall task is presented with a list of words, one at a time, in the following order: house, flower, dog, table, license, water, computer, salad. In accord with the serial position curve, which of the following words is the participant most likely to forget?",
"model_answer": "B",
"correct_answer": 3,
"is_correct": false,
"response_time": 29.80995774269104
},
{
"question": "Jyoti notes the behavior of people as they wait in line for tickets to rock concerts. Which of the following research methods is she using?",
"model_answer": "A.",
"correct_answer": 0,
"is_correct": true,
"response_time": 29.810053825378418
},
{
"question": "The superintendent of a large school district asks the school psychologist to predict students' grade point averages (GPAs) for the first year of high school. The school psychologist has included achievement and aptitude scores as predictor variables for firstyear high school GPA in a regression analysis and is considering whether to also administer a school interest inventory and include those scores. The major concern of the school psychologist when making this decision should be which of the following?",
"model_answer": "B",
"correct_answer": 1,
"is_correct": true,
"response_time": 29.81014609336853
},
{
"question": "Collective unconscious, archetypes, and individuation are personality concepts most closely associated with",
"model_answer": "B",
"correct_answer": 1,
"is_correct": true,
"response_time": 29.810237884521484
},
{
"question": "According to Whorf's linguistic relativity hypothesis,",
"model_answer": "D",
"correct_answer": 3,
"is_correct": true,
"response_time": 29.810329914093018
},
{
"question": "When a 17-year-old student is failing at school, which society would most likely hold the parents accountable?",
"model_answer": "C",
"correct_answer": 2,
"is_correct": true,
"response_time": 29.810420036315918
},
{
"question": "In most people, the left hemisphere of the brain is dominant for",
"model_answer": "A.",
"correct_answer": 0,
"is_correct": true,
"response_time": 29.810510873794556
},
{
"question": "Jeanette locked the front door and then checked it by turning the knob. She checked it a second time. After walking halfway down the path to the street, Jeanette went back to the door and checked to make sure that it was locked. Her behavior appears to be",
"model_answer": "D",
"correct_answer": 3,
"is_correct": true,
"response_time": 29.810601949691772
},
{
"question": "Aisha is a beautiful, black teenager. If she is typical, she most likely believes that",
"model_answer": "D",
"correct_answer": 3,
"is_correct": true,
"response_time": 28.57381582260132
},
{
"question": "Functionalists such as William James were mainly interested in",
"model_answer": "A.",
"correct_answer": 0,
"is_correct": true,
"response_time": 28.57418704032898
},
{
"question": "What kind of therapy involves both behavioral and cognitive interventions?",
"model_answer": "D",
"correct_answer": 3,
"is_correct": true,
"response_time": 28.574583768844604
},
{
"question": "Georgia works in the local hospital because she wishes to help others, while Kathy works in the hospital strictly to make money. Their individual motivations demonstrate the difference between",
"model_answer": "D",
"correct_answer": 3,
"is_correct": true,
"response_time": 28.574949741363525
},
{
"question": "Which of the following reinforcement schedules results in maintenance of behavior that is LEAST resistant to extinction?",
"model_answer": "A.",
"correct_answer": 0,
"is_correct": true,
"response_time": 28.57530689239502
},
{
"question": "According to gate-control theory, which condition tends to close the gate?",
"model_answer": "C",
"correct_answer": 3,
"is_correct": false,
"response_time": 28.57565689086914
},
{
"question": "Knowledge of different categories of trees and where they grow best is an example of what kind of long-term memory?",
"model_answer": "B.",
"correct_answer": 1,
"is_correct": true,
"response_time": 28.576660871505737
},
{
"question": "Which of the following is the most reliable indicator of emotions across all cultures?",
"model_answer": "B.",
"correct_answer": 1,
"is_correct": true,
"response_time": 28.57706880569458
},
{
"question": "After taking AP Psychology and doing well in the class and on the exam, Donald goes to college. If Donald is interested in psychology and has high achievement motivation, as a first-year student, he is most likely to",
"model_answer": "D",
"correct_answer": 3,
"is_correct": true,
"response_time": 28.57718586921692
},
{
"question": "As part of her campaign for school president, Edy personally gives out cookies that say \"Vote for Edy\" on them. Which of the following is one reason that this approach might improve Edy's chances in the election?",
"model_answer": "B.",
"correct_answer": 1,
"is_correct": true,
"response_time": 28.57728099822998
},
{
"question": "A pencil and paper personality test that places a person in one of several personality categories (such as extrovert/introvert, etc.) is based on which personality theory?",
"model_answer": "B.",
"correct_answer": 1,
"is_correct": true,
"response_time": 23.016189098358154
},
{
"question": "Some contemporary intelligence researchers like Howard Gardner and Robert Sternberg complain that schools focus too much on",
"model_answer": "D",
"correct_answer": 3,
"is_correct": true,
"response_time": 23.01631999015808
},
{
"question": "The part of the neuron that directs synthesis of neurotransmitters and proteins is the",
"model_answer": "A.",
"correct_answer": 0,
"is_correct": true,
"response_time": 23.016423225402832
},
{
"question": "Research has shown a possible connection between the neurotransmitter acetylcholine and which of the following mental disorders?",
"model_answer": "B",
"correct_answer": 1,
"is_correct": true,
"response_time": 23.016515970230103
},
{
"question": "Which of the following kinds of brain scans would be most useful in disproving the statement: \"Most people only use 10 percent of their brains\"?",
"model_answer": "D",
"correct_answer": 3,
"is_correct": true,
"response_time": 23.016607999801636
},
{
"question": "Jonathan's IQ score is in the 97th percentile. Of the following, which score is most likely his?",
"model_answer": "B.",
"correct_answer": 2,
"is_correct": false,
"response_time": 23.01670002937317
},
{
"question": "A doctor examining a car crash victim in order to determine whether the crash caused structural damage to the brain would use what kind of brain scan?",
"model_answer": "A.",
"correct_answer": 0,
"is_correct": true,
"response_time": 23.01678991317749
},
{
"question": "A famous character in a Shakespearean play keeps washing her hands to get them clean of blood that is no longer on them. The repeated washing of her hands is",
"model_answer": "B",
"correct_answer": 1,
"is_correct": true,
"response_time": 23.01688003540039
},
{
"question": "The tendency of young children learning language to overuse the rules of syntax is referred to as",
"model_answer": "C",
"correct_answer": 2,
"is_correct": true,
"response_time": 23.01697087287903
},
{
"question": "The relaying of sensory information to the cerebral cortex is the primary function of the",
"model_answer": "D",
"correct_answer": 3,
"is_correct": true,
"response_time": 23.017059087753296
},
{
"question": "Tired after a long, hard day at school, Cyrus decides to take a nap. An hour later, his Dad wakes him to let him know it's time for dinner. Cyrus feels worse than when he went to bed and can hardly drag himself to the table. An EEG of Cyrus right before he was awoken would most likely have shown a preponderance of",
"model_answer": "C.",
"correct_answer": 2,
"is_correct": true,
"response_time": 28.91662096977234
},
{
"question": "According to Adler, firstborn children are more likely than subsequent children in a family to be",
"model_answer": "C",
"correct_answer": 2,
"is_correct": true,
"response_time": 28.91700506210327
},
{
"question": "Which term describes the phenomenon of like-minded groups taking more extreme positions than the individuals that comprise the group?",
"model_answer": "D",
"correct_answer": 3,
"is_correct": true,
"response_time": 28.917958736419678
},
{
"question": "Which kinds of motivations best encourage positive behaviors to persist over long periods of time?",
"model_answer": "D",
"correct_answer": 3,
"is_correct": true,
"response_time": 28.918417930603027
},
{
"question": "One's ability to make inferences about the behavior of a population from the behavior of a sample of that population is referred to as",
"model_answer": "B",
"correct_answer": 1,
"is_correct": true,
"response_time": 28.918776988983154
},
{
"question": "Of the following theories, the presence of Hilgard's \"hidden observer\" best supports",
"model_answer": "A",
"correct_answer": 0,
"is_correct": true,
"response_time": 28.918908834457397
},
{
"question": "The smallest unit of language that carries meaning is a",
"model_answer": "D",
"correct_answer": 3,
"is_correct": true,
"response_time": 28.919002771377563
},
{
"question": "Which of the following are included in the peripheral nervous system?",
"model_answer": "B",
"correct_answer": 1,
"is_correct": true,
"response_time": 28.919097661972046
},
{
"question": "Receptors that respond to gravity and keep you informed of your body's location in space are located primarily in the",
"model_answer": "D",
"correct_answer": 3,
"is_correct": true,
"response_time": 28.919189929962158
},
{
"question": "In a study of brain development, two groups of rats were reared in a laboratory setting. In Group I, each rat was raised in isolation with no toys, while in Group II, rats were divided into small groups and given toys to play with. Which of the following statements most accurately reflects the probable findings of this study?",
"model_answer": "B.",
"correct_answer": 1,
"is_correct": true,
"response_time": 28.919282913208008
},
{
"question": "Counterconditioning lies at the heart of which therapeutic approach?",
"model_answer": "B",
"correct_answer": 1,
"is_correct": true,
"response_time": 29.88267493247986
},
{
"question": "According to Abraham Maslow, esteem needs must at least be partially met before one is prompted to satisfy",
"model_answer": "C",
"correct_answer": 2,
"is_correct": true,
"response_time": 29.88334012031555
},
{
"question": "Which of the following most accurately explains why a pool with water temperature of 82 degrees may feel cool to a person who has been sunbathing, yet warm to a person who has been inside in the air conditioning?",
"model_answer": "D",
"correct_answer": 3,
"is_correct": true,
"response_time": 29.88368582725525
},
{
"question": "Research indicates that which of the following factors most influence a person's sexual orientation?",
"model_answer": "C",
"correct_answer": 2,
"is_correct": true,
"response_time": 29.883968114852905
},
{
"question": "Although Andy wanted to cut class to get to the Yankee opener, he came to class to take a quiz and review for an exam. According to Freud, this behavior evidences a strong",
"model_answer": "D",
"correct_answer": 3,
"is_correct": true,
"response_time": 29.884232997894287
},
{
"question": "The case study of Phineas Gage's brain injury was significant for which of the following reasons?",
"model_answer": "B",
"correct_answer": 1,
"is_correct": true,
"response_time": 29.88449478149414
},
{
"question": "Physiological reactions to surprise or shocks are most controlled by which of the following parts of the nervous system?",
"model_answer": "B",
"correct_answer": 1,
"is_correct": true,
"response_time": 29.88475799560547
},
{
"question": "The most common somatic nervous system neurotransmitter to cause muscle contractions is",
"model_answer": "A.",
"correct_answer": 0,
"is_correct": true,
"response_time": 29.885020971298218
},
{
"question": "Although Jen is a very bright four-year-old, she doesn't think her mother's sister has any sisters. This lack of understanding reflects",
"model_answer": "D",
"correct_answer": 3,
"is_correct": true,
"response_time": 29.88528299331665
},
{
"question": "A 10-year-old student who was born in a non- English-speaking country has been referred as a possible candidate for special education services on the basis of low scores achieved on the school district's group achievement test. The student achieved high scores on the district's English fluency test. Of the following approaches to diagnostic assessment, the most appropriate is one that",
"model_answer": "C.",
"correct_answer": 2,
"is_correct": true,
"response_time": 29.88548994064331
},
{
"question": "An action potential involves the movement of",
"model_answer": "D",
"correct_answer": 3,
"is_correct": true,
"response_time": 25.07998490333557
},
{
"question": "After dealing kindly with several customers who acted very rudely toward her, the clerk was impatient with her next customer. The tendency of that customer to think that the clerk is a very impatient person rather than just having a bad day exemplifies",
"model_answer": "B",
"correct_answer": 1,
"is_correct": true,
"response_time": 25.080427885055542
},
{
"question": "Which of the following has been linked to a deficit of dopamine?",
"model_answer": "C.",
"correct_answer": 2,
"is_correct": true,
"response_time": 25.080981731414795
},
{
"question": "Albert Bandura's work evidenced that children who witnessed aggressive behavior on the part of adults would be likely to imitate the aggressive behavior later on. This phenomenon is known as",
"model_answer": "B.",
"correct_answer": 1,
"is_correct": true,
"response_time": 25.081427097320557
},
{
"question": "If a distribution of scores includes one or more outliers, which of the following measures of central tendency should be used?",
"model_answer": "C",
"correct_answer": 2,
"is_correct": true,
"response_time": 25.0818829536438
},
{
"question": "Probabilistic reasoning from specific observations to general propositions is known as",
"model_answer": "B",
"correct_answer": 1,
"is_correct": true,
"response_time": 25.082828760147095
},
{
"question": "Which of the following is a common way to categorize personality traits?",
"model_answer": "A.",
"correct_answer": 0,
"is_correct": true,
"response_time": 25.083121061325073
},
{
"question": "The more difference shown by the behavior of identical twins raised apart, the more the differences in their behavior can be attributed to their",
"model_answer": "D",
"correct_answer": 3,
"is_correct": true,
"response_time": 25.083220958709717
},
{
"question": "Piaget proposed that children develop knowledge by",
"model_answer": "A.",
"correct_answer": 0,
"is_correct": true,
"response_time": 25.083317041397095
},
{
"question": "Which of the following accomplishments accurately reflects why Wilhelm Wundt is sometimes referred to as the \"father of psychology?\"",
"model_answer": "A.",
"correct_answer": 0,
"is_correct": true,
"response_time": 25.083409070968628
},
{
"question": "The fact that people's ears are located on opposite sides of their heads is most adaptive because it helps us",
"model_answer": "C",
"correct_answer": 2,
"is_correct": true,
"response_time": 23.223198175430298
},
{
"question": "According to researchers Darley and Latanne, bystander intervention decreases when a large number of people witness a crime. What social psychology concept could best explain this phenomenon?",
"model_answer": "D",
"correct_answer": 3,
"is_correct": true,
"response_time": 23.22330617904663
},
{
"question": "Which of the following terms is most closely associated with creativity?",
"model_answer": "C.",
"correct_answer": 2,
"is_correct": true,
"response_time": 23.223401069641113
},
{
"question": "Lucille suffered a stroke last week and cannot recognize her children or grandchildren by looking at them. Of the following structures, her brain lesion is most likely in the",
"model_answer": "D",
"correct_answer": 0,
"is_correct": false,
"response_time": 23.22349500656128
},
{
"question": "Carlos could consistently differentiate the note middle C on the violin from middle C on the piano because of the difference in",
"model_answer": "D",
"correct_answer": 3,
"is_correct": true,
"response_time": 23.223588228225708
},
{
"question": "Which of the following is the best example of a categorical variable?",
"model_answer": "D",
"correct_answer": 3,
"is_correct": true,
"response_time": 23.223680019378662
},
{
"question": "In time-out, a disruptive child who wants to stay with his or her class is removed from the classroom. This exemplifies",
"model_answer": "B",
"correct_answer": 3,
"is_correct": false,
"response_time": 23.223770141601562
},
{
"question": "In classical conditioning the learner learns to associate the unconditioned stimulus with",
"model_answer": "A",
"correct_answer": 1,
"is_correct": false,
"response_time": 23.223865270614624
},
{
"question": "Julie is more alert in the morning and her brother Jack is more alert in the afternoon. This difference stems from a difference in the siblings'",
"model_answer": "B.",
"correct_answer": 1,
"is_correct": true,
"response_time": 23.223958015441895
},
{
"question": "The Intelligence Quotient is defined as the",
"model_answer": "C",
"correct_answer": 2,
"is_correct": true,
"response_time": 23.224053144454956
},
{
"question": "The primary research method used by developmental psychologists is",
"model_answer": "B.",
"correct_answer": 1,
"is_correct": true,
"response_time": 26.018834114074707
},
{
"question": "Choosing 20 people at random from a large lecture class of 400 people is an example of which of the following?",
"model_answer": "B.",
"correct_answer": 1,
"is_correct": true,
"response_time": 26.018956899642944
},
{
"question": "An animal is not likely to associate a conditioned stimulus (CS) with an unconditioned stimulus (UCS) if the",
"model_answer": "A.",
"correct_answer": 0,
"is_correct": true,
"response_time": 26.01912808418274
},
{
"question": "What type of test is the Advanced Placement Examination in Psychology?",
"model_answer": "C.",
"correct_answer": 2,
"is_correct": true,
"response_time": 26.019227981567383
},
{
"question": "All people have essentially the same set of traits, differing only in terms of the extent to which they show each trait, according to which of the following personality theories?",
"model_answer": "A.",
"correct_answer": 0,
"is_correct": true,
"response_time": 26.019325017929077
},
{
"question": "The examination of the connection between mental states and physical states is referred to as",
"model_answer": "B",
"correct_answer": 1,
"is_correct": true,
"response_time": 26.019449949264526
},
{
"question": "Which of the following best exemplifies sensory adaptation?",
"model_answer": "C",
"correct_answer": 2,
"is_correct": true,
"response_time": 26.019548177719116
},
{
"question": "Which of the following interventions is most effective at facilitating the education of gifted students?",
"model_answer": "D",
"correct_answer": 3,
"is_correct": true,
"response_time": 26.019779920578003
},
{
"question": "Damage to the occipital lobes of the brain would most likely affect which of the senses?",
"model_answer": "D",
"correct_answer": 3,
"is_correct": true,
"response_time": 26.019899129867554
},
{
"question": "The position on the basilar membrane at which waves reach their peak depends on the frequency of a tone, according to which theory?",
"model_answer": "C",
"correct_answer": 2,
"is_correct": true,
"response_time": 26.019990921020508
},
{
"question": "After she used address stickers sent by a charity in the mail, Brittany felt obligated to mail a donation to the organization that sent the stickers. Brittany's behavior illustrates",
"model_answer": "D",
"correct_answer": 3,
"is_correct": true,
"response_time": 30.243669033050537
},
{
"question": "After Tamika complained to her mother about how little she has, Tamika and her mother went to a soup kitchen to volunteer to serve dinner to the homeless. After serving 120 dinners, Tamika told her mother how happy she is that they can afford to buy delicious foods she loves. Tamika's increased perception that she is happy is best explained by applying which of the following theories?",
"model_answer": "B.",
"correct_answer": 0,
"is_correct": false,
"response_time": 30.243788957595825
},
{
"question": "Brenda gets enraged when people criticize her, talks about becoming the first woman president, exaggerates her abilities and talents, takes advantage of classmates, and constantly demands attention in class. When she received a certificate for participating in an essay contest, she told everyone she'd won a prestigious writing award. She most likely would be diagnosed as evidencing",
"model_answer": "D",
"correct_answer": 3,
"is_correct": true,
"response_time": 30.243883848190308
},
{
"question": "A research study establishes that most people can taste one gram of salt in one quart of water. Which of the following concepts is most closely related to the goal of this study?",
"model_answer": "B.",
"correct_answer": 1,
"is_correct": true,
"response_time": 30.24397873878479
},
{
"question": "Mayella believes that getting a good grade on an AP exam is a matter of luck. She most likely has",
"model_answer": "C",
"correct_answer": 2,
"is_correct": true,
"response_time": 30.24407410621643
},
{
"question": "Which of the following transduces visual images?",
"model_answer": "D",
"correct_answer": 3,
"is_correct": true,
"response_time": 30.24416995048523
},
{
"question": "Someone with brain damage who has difficulty making the muscle movements needed to produce accurate speech might have damage to which area of the brain?",
"model_answer": "C.",
"correct_answer": 2,
"is_correct": true,
"response_time": 30.244266033172607
},
{
"question": "After discovering that she was in the early stages of an eating disorder, Maria's parents insisted Maria see a therapist. Although Maria attended the therapy sessions, she was late, uncooperative, and even hostile. After some time, her counselor began to explore Maria's feelings of hostility and found that they actually were feelings she held for her parents. Maria's uncooperativeness and hostility toward her counselor is an example of",
"model_answer": "C.",
"correct_answer": 2,
"is_correct": true,
"response_time": 30.244362831115723
},
{
"question": "Although they disagreed with his personal infidelities, many Americans supported President Bill Clinton's position and policy decisions during his term in office. This dichotomy of opinion demonstrates a split in",
"model_answer": "D",
"correct_answer": 3,
"is_correct": true,
"response_time": 30.244457960128784
},
{
"question": "Which of the following kinds of therapists is most likely to prescribe lithium for a patient diagnosed with bipolar disorder?",
"model_answer": "B",
"correct_answer": 1,
"is_correct": true,
"response_time": 30.244550943374634
},
{
"question": "A behavior that is elicited automatically by an environmental stimulus is called a(n)",
"model_answer": "D",
"correct_answer": 3,
"is_correct": true,
"response_time": 27.98047113418579
},
{
"question": "A lesson from Janis's research on groupthink is that",
"model_answer": "D",
"correct_answer": 3,
"is_correct": true,
"response_time": 27.98085904121399
},
{
"question": "Which best represents the path of an impulse over a reflex arc?",
"model_answer": "A.",
"correct_answer": 0,
"is_correct": true,
"response_time": 27.981260061264038
},
{
"question": "Jim and Tim are identical (monozygotic) twins that were reared together. Scott and Michael are fraternal (dizygotic) twins that were reared together. Given the results of heritability studies of intelligence, which of the following outcomes are most likely to emerge?",
"model_answer": "A.",
"correct_answer": 0,
"is_correct": true,
"response_time": 27.982228994369507
},
{
"question": "In developmental research, studying the same subjects over time is known as",
"model_answer": "D",
"correct_answer": 3,
"is_correct": true,
"response_time": 27.982590198516846
},
{
"question": "The manual of clinical syndromes published by the American Psychiatric Association that is used for descriptive diagnosis is commonly called the",
"model_answer": "B",
"correct_answer": 1,
"is_correct": true,
"response_time": 27.983327865600586
},
{
"question": "Standardized tests are",
"model_answer": "D",
"correct_answer": 3,
"is_correct": true,
"response_time": 27.983694076538086
},
{
"question": "While visiting a museum, you study a statue by walking around it and examining it from many different places in the room. The retinal images of the statue change, but you do not perceive these changes because of",
"model_answer": "C",
"correct_answer": 2,
"is_correct": true,
"response_time": 27.984066009521484
},
{
"question": "Perception refers to the process by which",
"model_answer": "C",
"correct_answer": 2,
"is_correct": true,
"response_time": 27.984188079833984
},
{
"question": "Which research method would most likely be used to test the following hypothesis: People who conserve energy by buying hybrid cars are more likely to spend more money on organic foods.",
"model_answer": "D",
"correct_answer": 3,
"is_correct": true,
"response_time": 27.984281063079834
},
{
"question": "The primary reason why we cannot taste sand or smell platinum is that",
"model_answer": "B",
"correct_answer": 1,
"is_correct": true,
"response_time": 31.480710744857788
},
{
"question": "The goal of projective personality tests, such as the Rorschach and Thematic Apperception Test (TAT), is to",
"model_answer": "B",
"correct_answer": 1,
"is_correct": true,
"response_time": 31.481136798858643
},
{
"question": "The ability to solve a new computer game based on logical puzzles probably depends on which kind of intelligence?",
"model_answer": "A.",
"correct_answer": 0,
"is_correct": true,
"response_time": 31.48484992980957
},
{
"question": "Most New Yorkers remember where they were and what they were doing when they heard that the World Trade Center was destroyed. Which of the following best identifies this type of memory?",
"model_answer": "C.",
"correct_answer": 2,
"is_correct": true,
"response_time": 31.484968900680542
},
{
"question": "The contingency model explains classical conditioning from which of the following perspectives?",
"model_answer": "A.",
"correct_answer": 2,
"is_correct": false,
"response_time": 31.48506999015808
},
{
"question": "An educational psychologist is administering a basic skills exam to second-graders of two different schools in order to compare the students' performance. The researcher administers the exam to the students of the Antrim School on a Wednesday morning and then administers the same exam in exactly the same fashion on that same Wednesday afternoon to the second-graders of the Barton School. Which of the following best identifies a confounding variable in the psychologist's research?",
"model_answer": "C",
"correct_answer": 2,
"is_correct": true,
"response_time": 31.485164880752563
},
{
"question": "Which of the following is the best summary of Stanley Schacter's two-factor theory of emotion?",
"model_answer": "B",
"correct_answer": 3,
"is_correct": false,
"response_time": 31.485257863998413
},
{
"question": "Which of the following best summarizes Carl Rogers' view of personality?",
"model_answer": "B.",
"correct_answer": 1,
"is_correct": true,
"response_time": 31.48534870147705
},
{
"question": "Which of the following is the most accurate definition of learning?",
"model_answer": "B",
"correct_answer": 1,
"is_correct": true,
"response_time": 31.485435724258423
},
{
"question": "Which of the following is a key difference between the experimental method and naturalistic observation?",
"model_answer": "D",
"correct_answer": 3,
"is_correct": true,
"response_time": 31.485525846481323
},
{
"question": "Harlow's monkey experiment illustrated",
"model_answer": "A.",
"correct_answer": 0,
"is_correct": true,
"response_time": 24.71593427658081
},
{
"question": "Which of the following types of scientists were the first to contend that an individual's ways of thinking are shaped primarily by cultural values and ideas?",
"model_answer": "D",
"correct_answer": 3,
"is_correct": true,
"response_time": 24.71640110015869
},
{
"question": "Which of the following best illustrates hostile aggression?",
"model_answer": "A.",
"correct_answer": 0,
"is_correct": true,
"response_time": 24.71678113937378
},
{
"question": "Which of the following disorders is the result of an abnormality of the twenty-first chromosomal pair?",
"model_answer": "C",
"correct_answer": 2,
"is_correct": true,
"response_time": 24.71728205680847
},
{
"question": "REM sleep is considered to be paradoxical sleep because",
"model_answer": "D",
"correct_answer": 3,
"is_correct": true,
"response_time": 24.717398166656494
},
{
"question": "Jay suffers from periods of amnesia and frequent loss of a sense of personal identity. It is likely Jay has a(n)",
"model_answer": "D",
"correct_answer": 3,
"is_correct": true,
"response_time": 24.717494010925293
},
{
"question": "Approximately what percent of the population scores between 70 and 130 on the WISC?",
"model_answer": "D",
"correct_answer": 3,
"is_correct": true,
"response_time": 24.71758508682251
},
{
"question": "The perceived volume of a tone is mainly determined by its",
"model_answer": "C",
"correct_answer": 2,
"is_correct": true,
"response_time": 24.717676162719727
},
{
"question": "Eli is just beginning to sit up. Assuming he is developing at a typical pace, how old is Eli?",
"model_answer": "C.",
"correct_answer": 2,
"is_correct": true,
"response_time": 24.71776819229126
},
{
"question": "A game show like Jeopardy! asks players to demonstrate which of the following types of intelligence?",
"model_answer": "B",
"correct_answer": 1,
"is_correct": true,
"response_time": 24.717857122421265
},
{
"question": "Research using the visual cliff suggests that human infants",
"model_answer": "B",
"correct_answer": 1,
"is_correct": true,
"response_time": 31.884950160980225
},
{
"question": "En route to the brain, information from the two eyes' retinas crosses at the",
"model_answer": "B.",
"correct_answer": 1,
"is_correct": true,
"response_time": 31.885141134262085
},
{
"question": "Detection of a just-noticeable difference (JND) depends on the",
"model_answer": "D",
"correct_answer": 3,
"is_correct": true,
"response_time": 31.885245084762573
},
{
"question": "Which of the following correctly categorizes the components of Ivan Pavlov's research on conditioning?",
"model_answer": "C",
"correct_answer": 2,
"is_correct": true,
"response_time": 31.88533902168274
},
{
"question": "People who are able to be hypnotized easily are likely to score high on which of the following dimensions of the big five personality traits?",
"model_answer": "B.",
"correct_answer": 1,
"is_correct": true,
"response_time": 31.885432243347168
},
{
"question": "Which of the following would a researcher need to use to determine if the difference between the mean scores of experimental and control groups was significant?",
"model_answer": "B.",
"correct_answer": 1,
"is_correct": true,
"response_time": 31.885528087615967
},
{
"question": "All of the following are conditions sanctioned by the APA regarding the use of deception in a study EXCEPT",
"model_answer": "D",
"correct_answer": 3,
"is_correct": true,
"response_time": 31.885622024536133
},
{
"question": "An obese individual with a breathing-related sleep disorder most likely suffers from which of the following?",
"model_answer": "D",
"correct_answer": 3,
"is_correct": true,
"response_time": 31.88571310043335
},
{
"question": "Who would most likely have said, \"People are basically good\"?",
"model_answer": "D",
"correct_answer": 3,
"is_correct": true,
"response_time": 31.8858060836792
},
{
"question": "When the class listened to a list of words, half the group was directed to listen for sounds while the other half was asked to gauge the emotional impact of the words. The group that gauged the emotional impact remembered many more words. This is evidence that better retention results with attention to",
"model_answer": "A.",
"correct_answer": 0,
"is_correct": true,
"response_time": 31.885897159576416
},
{
"question": "Which of the following are found in Jung's collective unconscious?",
"model_answer": "C",
"correct_answer": 2,
"is_correct": true,
"response_time": 29.921317100524902
},
{
"question": "Which of the following lobes of the brain is central to visual sensation and perception?",
"model_answer": "A.",
"correct_answer": 0,
"is_correct": true,
"response_time": 29.92168116569519
},
{
"question": "The Diagnostic and Statistical Manual of Mental Disorders (DSM-IV) published by the American Psychiatric Association provides information about all of the following EXCEPT",
"model_answer": "D",
"correct_answer": 3,
"is_correct": true,
"response_time": 29.92212414741516
},
{
"question": "What is the major difference between negative reinforcement and punishment?",
"model_answer": "D",
"correct_answer": 3,
"is_correct": true,
"response_time": 29.922458171844482
},
{
"question": "Lupe has been dating Craig for a few months. She's attracted to him and has fun with him, but she can't stand his friends or his family. Lupe's conflict would best be classified as",
"model_answer": "B.",
"correct_answer": 1,
"is_correct": true,
"response_time": 29.922805070877075
},
{
"question": "A longitudinal study would be useful in assessing which of the following?",
"model_answer": "D",
"correct_answer": 3,
"is_correct": true,
"response_time": 29.92292618751526
},
{
"question": "Implications of Harlow's study (of baby monkeys reared by artificial mothers) for humans include which of the following?",
"model_answer": "D",
"correct_answer": 1,
"is_correct": false,
"response_time": 29.923022031784058
},
{
"question": "A school psychologist is asked to help Ms. Smith address problem behaviors that are disrupting the learning of her students. The school psychologist is given data that indicate discipline referrals have been written on 26 of the 30 students in Ms. Smith's class. Which of the following is best for the school psychologist to recommend?",
"model_answer": "D",
"correct_answer": 3,
"is_correct": true,
"response_time": 29.923115968704224
},
{
"question": "Dr. Bonneau helped a company redesign its offices to raise morale and the productivity of the employees. With which of the following subfields of psychology is Dr. Bonneau most likely affiliated?",
"model_answer": "C",
"correct_answer": 2,
"is_correct": true,
"response_time": 29.923211097717285
},
{
"question": "Barry reported that in his study, the relationship between religiosity and academic grades was not statistically significant. By \"not statistically significant,\" he meant that the results",
"model_answer": "C",
"correct_answer": 2,
"is_correct": true,
"response_time": 29.923306941986084
},
{
"question": "The Rosenhan study of mental institutions showed that",
"model_answer": "D",
"correct_answer": 3,
"is_correct": true,
"response_time": 28.44315218925476
},
{
"question": "Functionally, receptors in the retina of the eye differ most from receptors in the cochlea of the ear in the",
"model_answer": "C",
"correct_answer": 2,
"is_correct": true,
"response_time": 28.44358205795288
},
{
"question": "Wilder Penfield's studies suggest that some long-lost memories can be elicited through electrical stimulation of the brain. This suggests that forgetting may be a matter of",
"model_answer": "C",
"correct_answer": 2,
"is_correct": true,
"response_time": 28.444478034973145
},
{
"question": "Children are most likely to grow up more competent and responsible when they are raised by parents who behave in a manner considered",
"model_answer": "B",
"correct_answer": 1,
"is_correct": true,
"response_time": 28.444794178009033
},
{
"question": "Erikson's initiative versus guilt stage is most closely related to Freud's",
"model_answer": "B.",
"correct_answer": 2,
"is_correct": false,
"response_time": 28.445069074630737
},
{
"question": "EEGs that consist primarily of alpha and beta waves are characteristic of",
"model_answer": "A.",
"correct_answer": 0,
"is_correct": true,
"response_time": 28.44533109664917
},
{
"question": "Jared thinks that going to psychology lecture classes is a waste of time and that you can do just as well in the course if you just read the review book, watch \"Discovering Psychology,\" and take the tests. He decides to test his hypothesis with an experiment. The independent variable in his experiment is",
"model_answer": "C",
"correct_answer": 2,
"is_correct": true,
"response_time": 28.445589065551758
},
{
"question": "Some groups of gang members wear head coverings and sunglasses when they assault people. The use of such disguises contributes to",
"model_answer": "D",
"correct_answer": 3,
"is_correct": true,
"response_time": 28.445850133895874
},
{
"question": "Which of the following is the most important detail of Wundt's early research that established the psychology as a science?",
"model_answer": "C",
"correct_answer": 2,
"is_correct": true,
"response_time": 28.4461030960083
},
{
"question": "Which of the following is not a basic somatosensation?",
"model_answer": "D.",
"correct_answer": 3,
"is_correct": true,
"response_time": 28.44635319709778
},
{
"question": "Lev Vygotsky's approach to the study of cognitive development was",
"model_answer": "D",
"correct_answer": 3,
"is_correct": true,
"response_time": 28.293776035308838
},
{
"question": "Behavioral therapy typically alters the patterns of responding of clients by",
"model_answer": "C",
"correct_answer": 2,
"is_correct": true,
"response_time": 28.29389214515686
},
{
"question": "In people, rods, unlike cones,",
"model_answer": "D",
"correct_answer": 3,
"is_correct": true,
"response_time": 28.293987274169922
},
{
"question": "Before Justin could take an airplane flight, he needed to overcome his fear of flying. His therapist taught him relaxation exercises, which he practiced while first looking at pictures of airplanes, then seeing them take off at the airport, then going into an empty plane that would not take off, then finally taking a short flight. Which of the following treatments did he undergo?",
"model_answer": "B.",
"correct_answer": 3,
"is_correct": false,
"response_time": 28.294082164764404
},
{
"question": "Sigmund Freud was the founder of which of the following perspectives in psychology?",
"model_answer": "D",
"correct_answer": 3,
"is_correct": true,
"response_time": 28.29417610168457
},
{
"question": "Arnold Gesell is significant to the history of school psychology because he",
"model_answer": "D",
"correct_answer": 3,
"is_correct": true,
"response_time": 28.294267892837524
},
{
"question": "Maria, a bright high school student, fears success. To which of the following colleges would she most likely apply?",
"model_answer": "C.",
"correct_answer": 2,
"is_correct": true,
"response_time": 28.294358015060425
},
{
"question": "During World War II, millions of Jews and other minorities were slaughtered because they were blamed for the financial and social problems of Germany. Such scapegoating illustrates",
"model_answer": "B",
"correct_answer": 1,
"is_correct": true,
"response_time": 28.294450044631958
},
{
"question": "Which of the following best explains why babies have poor vision for the first few weeks of life?",
"model_answer": "B.",
"correct_answer": 1,
"is_correct": true,
"response_time": 28.294541120529175
},
{
"question": "Which of the following structures is located at the most central and protected part of the brain?",
"model_answer": "D",
"correct_answer": 3,
"is_correct": true,
"response_time": 28.294631004333496
},
{
"question": "A common criticism of labeling students as disabled is that individuals tend to perform in accordance with characteristics associated with a label. This performing phenomenon is known by which of the following names?",
"model_answer": "A.",
"correct_answer": 0,
"is_correct": true,
"response_time": 19.046542167663574
},
{
"question": "Scott tried to unscramble the letters NEBOTYA for 20 minutes to spell a word, but was not successful. While walking to class, the answer suddenly came to him that the word was BAYONET. This exemplifies",
"model_answer": "D",
"correct_answer": 3,
"is_correct": true,
"response_time": 19.04667091369629
},
{
"question": "What would a psychometrician conclude about a personality test that tells a person she is an extreme extrovert the first time she takes the test and an extreme introvert the next time she takes it?",
"model_answer": "D",
"correct_answer": 3,
"is_correct": true,
"response_time": 19.04676604270935
},
{
"question": "In the Harlow study of emotional attachment, infant monkeys were placed in a cage and given both a \"wire\" mother and a \"cloth\" mother. Researchers then moved a bottle of milk from one mother to the other while introducing various stimuli to see if the monkeys would form an attachment to either of the \"mothers.\" In this experiment, the independent variable is",
"model_answer": "B",
"correct_answer": 0,
"is_correct": false,
"response_time": 19.046860933303833
},
{
"question": "To treat Zoe's anorexia nervosa, her doctors put her on intravenous feeding tubes, tried to change her irrational belief that she was too fat, and discussed how her early family relationships may have contributed to her current problems. This approach would best be classified as",
"model_answer": "C.",
"correct_answer": 3,
"is_correct": false,
"response_time": 19.046955108642578
}
]
} |