File size: 134,310 Bytes
76f9427 | 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 | {
"1": {
"video": "j5SX_9JKtfs_clip_1_3",
"Question": "Below are two actions in the video:\nAction A. cleaning the sinks\nAction B. placing a bottle with blue liquid\n",
"Correct Answer": "BA"
},
"2": {
"video": "n1dboqahvZU_clip_2_4",
"Question": "Below are two actions in the video:\nAction A. powdering hands\nAction B. holding the barbell\n",
"Correct Answer": "AB"
},
"3": {
"video": "656VWQU5dgE_clip_4_5",
"Question": "Below are two actions in the video:\nAction A. fencing\nAction B. playing table tennis\n",
"Correct Answer": "AB"
},
"4": {
"video": "6UPfqdssD6g_clip_4_5",
"Question": "Below are two actions in the video:\nAction A. placing clean dishes on the dish rack\nAction B. washing dishes\n",
"Correct Answer": "BA"
},
"5": {
"video": "hiYPv3MrrUw_clip_1_2",
"Question": "Below are two actions in the video:\nAction A. skateboarding on the road\nAction B. windsurfing\n",
"Correct Answer": "AB"
},
"6": {
"video": "wklpuFysPq8_clip_5_6",
"Question": "Below are two actions in the video:\nAction A. frying the bread\nAction B. cutting the pita bread into small slices\n",
"Correct Answer": "BA"
},
"7": {
"video": "HtuDZLsOK6M_clip_2_3",
"Question": "Below are two actions in the video:\nAction A. drawing on a map\nAction B. sailing on a yacht\n",
"Correct Answer": "BA"
},
"8": {
"video": "n5xfkpQ8PWM_clip_2_7",
"Question": "Below are two actions in the video:\nAction A. cutting a paper\nAction B. presenting a gold bowl\n",
"Correct Answer": "AB"
},
"9": {
"video": "n5xfkpQ8PWM_clip_5_9",
"Question": "Below are two actions in the video:\nAction A. blowing sequins\nAction B. holding a gift\n",
"Correct Answer": "BA"
},
"10": {
"video": "UYUvjnlU9Ho_clip_11_7",
"Question": "Below are two actions in the video:\nAction A. playing croquet\nAction B. playing with a cat\n",
"Correct Answer": "AB"
},
"11": {
"video": "UYUvjnlU9Ho_clip_3_7",
"Question": "Below are two actions in the video:\nAction A. playing croquet\nAction B. playing with a cat\n",
"Correct Answer": "AB"
},
"12": {
"video": "cjFHlsWZY4c_clip_2_4",
"Question": "Below are two actions in the video:\nAction A. applying paint to a sponge\nAction B. applying glitter nail polish\n",
"Correct Answer": "AB"
},
"13": {
"video": "cjFHlsWZY4c_clip_1_3",
"Question": "Below are two actions in the video:\nAction A. drawing on tape and cutting it out\nAction B. applying a top coat\n",
"Correct Answer": "AB"
},
"14": {
"video": "4E89GQ2UnoQ_clip_4_8",
"Question": "Below are two actions in the video:\nAction A. rafting into a tunnel\nAction B. flying a helicopter over a river\n",
"Correct Answer": "BA"
},
"15": {
"video": "-2dxp-mv2zo_clip_3_6",
"Question": "Below are two actions in the video:\nAction A. cooking meat\nAction B. cutting dough into rounds\n",
"Correct Answer": "BA"
},
"16": {
"video": "D5iU1Qfy-wk_clip_2_7",
"Question": "Below are two actions in the video:\nAction A. eating together\nAction B. practicing martial arts\n",
"Correct Answer": "AB"
},
"17": {
"video": "cUdIbmXb2yI_clip_2_3",
"Question": "Below are two actions in the video:\nAction A. playing music\nAction B. dancing\n",
"Correct Answer": "BA"
},
"18": {
"video": "e2t_1Atddaw_clip_5_6",
"Question": "Below are two actions in the video:\nAction A. stirring cabbage with oil\nAction B. boiling the broccoli\n",
"Correct Answer": "AB"
},
"19": {
"video": "D0EAxdmzjzE_clip_4_5",
"Question": "Below are two actions in the video:\nAction A. mixing various spices and olive oil\nAction B. cooking sausages on a grill pan\n",
"Correct Answer": "AB"
},
"20": {
"video": "biyf6Q-xF0M_clip_1_2",
"Question": "Below are two actions in the video:\nAction A. carving pumpkins\nAction B. walking down the road\n",
"Correct Answer": "BA"
},
"21": {
"video": "Ggw7rtn3J-8_clip_2_4",
"Question": "Below are two actions in the video:\nAction A. displaying welding equipment\nAction B. cleaning a welded area\n",
"Correct Answer": "AB"
},
"22": {
"video": "Mw_AIqw6rfM_clip_1_3",
"Question": "Below are two actions in the video:\nAction A. an award ceremony\nAction B. playing polo\n",
"Correct Answer": "BA"
},
"23": {
"video": "WbZpWiPCHVU_clip_3_6",
"Question": "Below are two actions in the video:\nAction A. carpet cleaning\nAction B. cleaning the seats of a car\n",
"Correct Answer": "BA"
},
"24": {
"video": "JTGS1YulUQw_clip_1_3",
"Question": "Below are two actions in the video:\nAction A. putting on labels\nAction B. ironing a label on a fabric\n",
"Correct Answer": "AB"
},
"25": {
"video": "NkJA_0tErGY_clip_2_4",
"Question": "Below are two actions in the video:\nAction A. making a sandwich\nAction B. mixing ingredients in a bowl\n",
"Correct Answer": "BA"
},
"26": {
"video": "QKEFacWrn_8_clip_1_2",
"Question": "Below are two actions in the video:\nAction A. talking to the camera\nAction B. throwing a bowling ball\n",
"Correct Answer": "AB"
},
"27": {
"video": "JRr3BruqS2Y_clip_1_7",
"Question": "Below are two actions in the video:\nAction A. talking\nAction B. rollerskating across a crosswalk\n",
"Correct Answer": "BA"
},
"28": {
"video": "L35c6QI1l_0_clip_2_3",
"Question": "Below are two actions in the video:\nAction A. displaying a sand dunes\nAction B. leading and riding camels\n",
"Correct Answer": "AB"
},
"29": {
"video": "36JC5C6I4sg_clip_3_4",
"Question": "Below are two actions in the video:\nAction A. washing a car\nAction B. showing the inside of a car\n",
"Correct Answer": "AB"
},
"30": {
"video": "elgmPvU19K8_clip_3_4",
"Question": "Below are two actions in the video:\nAction A. flying a drone\nAction B. jumping into the water\n",
"Correct Answer": "BA"
},
"31": {
"video": "keFBEoBy0zY_clip_1_2",
"Question": "Below are two actions in the video:\nAction A. exiting a building with a snowboard\nAction B. snowboarding on a street\n",
"Correct Answer": "AB"
},
"32": {
"video": "QZi1yBFRZzc_clip_14_3",
"Question": "Below are two actions in the video:\nAction A. trimming hedges\nAction B. walking up stairs\n",
"Correct Answer": "BA"
},
"33": {
"video": "s9r-CxnCXkg_clip_4_5",
"Question": "Below are two actions in the video:\nAction A. whisking eggs and steaming them\nAction B. serving scrambled eggs on toast\n",
"Correct Answer": "BA"
},
"34": {
"video": "9qFwSM8QLIE_clip_1_2",
"Question": "Below are two actions in the video:\nAction A. Matadors walking in the ring\nAction B. attending a bullfight\n",
"Correct Answer": "BA"
},
"35": {
"video": "STaS53CNlZI_clip_3_8",
"Question": "Below are two actions in the video:\nAction A. preparing to jump\nAction B. zip lining\n",
"Correct Answer": "AB"
},
"36": {
"video": "HWkGANOfqQE_clip_1_2",
"Question": "Below are two actions in the video:\nAction A. playing the flute\nAction B. playing the guitar\n",
"Correct Answer": "BA"
},
"37": {
"video": "4avZ79LB5n4_clip_2_4",
"Question": "Below are two actions in the video:\nAction A. jumping into a pool\nAction B. preparing for a dive on a diving board\n",
"Correct Answer": "BA"
},
"38": {
"video": "JlgDwIT9KLI_clip_2_3",
"Question": "Below are two actions in the video:\nAction A. mixing ingredients in a bowl\nAction B. making a sandwich\n",
"Correct Answer": "AB"
},
"39": {
"video": "zukEQgbWdsY_clip_4_5",
"Question": "Below are two actions in the video:\nAction A. submerging basil leaves in salt water and removing excess water\nAction B. turning the swordfish over\n",
"Correct Answer": "BA"
},
"40": {
"video": "UpmzSgLLj-s_clip_2_4",
"Question": "Below are two actions in the video:\nAction A. assembling a bike\nAction B. putting tools in the box\n",
"Correct Answer": "AB"
},
"41": {
"video": "KVaTsulE5Z0_clip_2_3",
"Question": "Below are two actions in the video:\nAction A. walking on a slackline\nAction B. putting something in the trunk of a car\n",
"Correct Answer": "BA"
},
"42": {
"video": "WhYyvKiwLc8_clip_1_4",
"Question": "Below are two actions in the video:\nAction A. pedaling a bike\nAction B. arm-wrestling\n",
"Correct Answer": "AB"
},
"43": {
"video": "roTIeCtx94Q_clip_1_2",
"Question": "Below are two actions in the video:\nAction A. baking cookies\nAction B. mixing ingredients\n",
"Correct Answer": "BA"
},
"44": {
"video": "QGZN8aXpXHU_clip_2_4",
"Question": "Below are two actions in the video:\nAction A. opening a door\nAction B. cutting hair\n",
"Correct Answer": "AB"
},
"45": {
"video": "Ni7Lqloy5Qc_clip_2_4",
"Question": "Below are two actions in the video:\nAction A. getting tattoos done\nAction B. women talking\n",
"Correct Answer": "BA"
},
"46": {
"video": "6SFW4g4UVKI_clip_1_2",
"Question": "Below are two actions in the video:\nAction A. a man's face moving\nAction B. shining a shoe\n",
"Correct Answer": "AB"
},
"47": {
"video": "22qauL6BO8E_clip_3_4",
"Question": "Below are two actions in the video:\nAction A. coating the squid rings with flour\nAction B. frying the squid rings\n",
"Correct Answer": "AB"
},
"48": {
"video": "gEYutYXODs4_clip_1_2",
"Question": "Below are two actions in the video:\nAction A. lighting a candle\nAction B. washing hands\n",
"Correct Answer": "BA"
},
"49": {
"video": "eMB9L-LDK1E_clip_1_3",
"Question": "Below are two actions in the video:\nAction A. cleaning a toilet\nAction B. cleaning a bathtub\n",
"Correct Answer": "BA"
},
"50": {
"video": "kH50-giCeDM_clip_2_4",
"Question": "Below are two actions in the video:\nAction A. playing rock paper scissors\nAction B. giving a high five\n",
"Correct Answer": "AB"
},
"51": {
"video": "kH50-giCeDM_clip_1_4",
"Question": "Below are two actions in the video:\nAction A. reaching for the last beer\nAction B. giving a high five\n",
"Correct Answer": "AB"
},
"52": {
"video": "UadYaZOC6B8_clip_2_3",
"Question": "Below are two actions in the video:\nAction A. running water from a faucet\nAction B. scrolling text\n",
"Correct Answer": "BA"
},
"53": {
"video": "Lv6ypQZWIEg_clip_4_8",
"Question": "Below are two actions in the video:\nAction A. throwing a pebble\nAction B. throwing a javelin\n",
"Correct Answer": "AB"
},
"54": {
"video": "sx_npA4wRrw_clip_1_8",
"Question": "Below are two actions in the video:\nAction A. flipping pasta\nAction B. mixing water and vinegar in a bowl\n",
"Correct Answer": "BA"
},
"55": {
"video": "sx_npA4wRrw_clip_2_7",
"Question": "Below are two actions in the video:\nAction A. crushing the ingredients\nAction B. cooking pasta\n",
"Correct Answer": "AB"
},
"56": {
"video": "sx_npA4wRrw_clip_1_7",
"Question": "Below are two actions in the video:\nAction A. cooking pasta\nAction B. mixing water and vinegar in a bowl\n",
"Correct Answer": "BA"
},
"57": {
"video": "mTlReluteEQ_clip_2_4",
"Question": "Below are two actions in the video:\nAction A. throwing a hammer\nAction B. celebrating a medal\n",
"Correct Answer": "AB"
},
"58": {
"video": "bOULU-0Nloc_clip_1_5",
"Question": "Below are two actions in the video:\nAction A. entering a workshop\nAction B. walking toward the door of a house\n",
"Correct Answer": "BA"
},
"59": {
"video": "bOULU-0Nloc_clip_2_5",
"Question": "Below are two actions in the video:\nAction A. entering a workshop\nAction B. shoveling snow\n",
"Correct Answer": "BA"
},
"60": {
"video": "tZF_WIdSQHM_clip_6_7",
"Question": "Below are two actions in the video:\nAction A. blending ingredients in a food processor\nAction B. mixing various ingredients in a bowl\n",
"Correct Answer": "AB"
},
"61": {
"video": "Ez7s36AwgLk_clip_3_4",
"Question": "Below are two actions in the video:\nAction A. registering for the event\nAction B. skateboarding\n",
"Correct Answer": "AB"
},
"62": {
"video": "U697zTxxDHM_clip_1_2",
"Question": "Below are two actions in the video:\nAction A. rollerblading tricks\nAction B. chilling against a fence\n",
"Correct Answer": "BA"
},
"63": {
"video": "U697zTxxDHM_clip_1_5",
"Question": "Below are two actions in the video:\nAction A. roller skating on ramps\nAction B. chilling against a fence\n",
"Correct Answer": "BA"
},
"64": {
"video": "vGcH8N8sJlM_clip_3_4",
"Question": "Below are two actions in the video:\nAction A. play fighting with croquet mallets\nAction B. hitting a ball\n",
"Correct Answer": "AB"
},
"65": {
"video": "BVzW_OoUmnU_clip_1_4",
"Question": "Below are two actions in the video:\nAction A. holding a piece of bark and talking to the camera\nAction B. adding wood to the fire\n",
"Correct Answer": "AB"
},
"66": {
"video": "cMndipw7_As_clip_3_7",
"Question": "Below are two actions in the video:\nAction A. using a flat equipment to move the dumbbell shaped steels\nAction B. using a hammer to remove debris\n",
"Correct Answer": "BA"
},
"67": {
"video": "jrXoqceGS-k_clip_2_5",
"Question": "Below are two actions in the video:\nAction A. driving a car\nAction B. skating on the railing\n",
"Correct Answer": "AB"
},
"68": {
"video": "llcbN-s26vs_clip_1_4",
"Question": "Below are two actions in the video:\nAction A. smoothing wallpaper\nAction B. walking around a ladder\n",
"Correct Answer": "BA"
},
"69": {
"video": "llcbN-s26vs_clip_1_5",
"Question": "Below are two actions in the video:\nAction A. walking around a ladder\nAction B. measuring wallpaper\n",
"Correct Answer": "AB"
},
"70": {
"video": "WFL8DhccHr0_clip_2_3",
"Question": "Below are two actions in the video:\nAction A. frosting a cake\nAction B. mixing cake ingredients\n",
"Correct Answer": "BA"
},
"71": {
"video": "rVRNX-fClE4_clip_5_6",
"Question": "Below are two actions in the video:\nAction A. opening a can\nAction B. wiping the boot with a towel\n",
"Correct Answer": "BA"
},
"72": {
"video": "7h70U1m5hFg_clip_4_5",
"Question": "Below are two actions in the video:\nAction A. mashing the mixture in a bowl\nAction B. topping the tortillas with various ingredients\n",
"Correct Answer": "AB"
},
"73": {
"video": "jl10JmELMqY_clip_2_3",
"Question": "Below are two actions in the video:\nAction A. Slapping the pillow\nAction B. knitting\n",
"Correct Answer": "BA"
},
"74": {
"video": "zmEyQT7ifS8_clip_3_4",
"Question": "Below are two actions in the video:\nAction A. placing it in the oven\nAction B. slicing a loaf of bread\n",
"Correct Answer": "AB"
},
"75": {
"video": "mZ6iJfRokTw_clip_3_4",
"Question": "Below are two actions in the video:\nAction A. bungee jumping from a bridge\nAction B. swimming\n",
"Correct Answer": "AB"
},
"76": {
"video": "DLlooZTLPdI_clip_1_5",
"Question": "Below are two actions in the video:\nAction A. giving a hug\nAction B. riding bikes\n",
"Correct Answer": "BA"
},
"77": {
"video": "uyr2mXqn3Yo_clip_1_2",
"Question": "Below are two actions in the video:\nAction A. roasting a pepper on a stove\nAction B. juicing a lemon\n",
"Correct Answer": "BA"
},
"78": {
"video": "2fPWPaNrUEM_clip_4_5",
"Question": "Below are two actions in the video:\nAction A. adding oil to the dough in the mixer\nAction B. rolling a piece of dough into a ball\n",
"Correct Answer": "AB"
},
"79": {
"video": "06ofnvq2Hjs_clip_5_9",
"Question": "Below are two actions in the video:\nAction A. doing skateboard tricks down stairs\nAction B. skateboarding\n",
"Correct Answer": "BA"
},
"80": {
"video": "zrnxRV3yLR8_clip_3_4",
"Question": "Below are two actions in the video:\nAction A. applying wallpaper\nAction B. smoothing wallpaper with a spatula\n",
"Correct Answer": "AB"
},
"81": {
"video": "t1MXansbY5s_clip_1_4",
"Question": "Below are two actions in the video:\nAction A. tying shoes and getting up from the couch\nAction B. a person walking to the door\n",
"Correct Answer": "BA"
},
"82": {
"video": "8B4M8AsGZmQ_clip_1_3",
"Question": "Below are two actions in the video:\nAction A. walking on a dock\nAction B. wakeboarding tricks\n",
"Correct Answer": "AB"
},
"83": {
"video": "i_Fs0Qrtu90_clip_2_8",
"Question": "Below are two actions in the video:\nAction A. washing hands\nAction B. working in an office\n",
"Correct Answer": "BA"
},
"84": {
"video": "i_Fs0Qrtu90_clip_2_9",
"Question": "Below are two actions in the video:\nAction A. working in an office\nAction B. washing hands\n",
"Correct Answer": "AB"
},
"85": {
"video": "1BgVCXxPjIc_clip_3_4",
"Question": "Below are two actions in the video:\nAction A. heating a pan\nAction B. adding mashed potatoes and chutney, then mixing\n",
"Correct Answer": "BA"
},
"86": {
"video": "L9dtiopWGe4_clip_2_3",
"Question": "Below are two actions in the video:\nAction A. cutting and squeezing lemons\nAction B. making lemonade\n",
"Correct Answer": "AB"
},
"87": {
"video": "0Mz4NTozNXw_clip_4_5",
"Question": "Below are two actions in the video:\nAction A. slicing the onion\nAction B. coating the onion rings in batter\n",
"Correct Answer": "AB"
},
"88": {
"video": "Xgp4BTstS20_clip_1_2",
"Question": "Below are two actions in the video:\nAction A. mixing ingredients in a bowl\nAction B. mixing milk with vinegar\n",
"Correct Answer": "BA"
},
"89": {
"video": "KRGiJIHSd9E_clip_3_4",
"Question": "Below are two actions in the video:\nAction A. sticking things on paper\nAction B. peeling transfer paper off the client's back\n",
"Correct Answer": "AB"
},
"90": {
"video": "Fe4tO5vW9_E_clip_2_3",
"Question": "Below are two actions in the video:\nAction A. melting butter and adding garlic\nAction B. adding potatoes to boiling water and cooking them\n",
"Correct Answer": "BA"
},
"91": {
"video": "srXhWAGzd-s_clip_2_4",
"Question": "Below are two actions in the video:\nAction A. cleaning the interior of a car\nAction B. washing a car\n",
"Correct Answer": "BA"
},
"92": {
"video": "w4CiGbHLTBg_clip_1_4",
"Question": "Below are two actions in the video:\nAction A. examining paint brushes\nAction B. mixing paint with a paint brush\n",
"Correct Answer": "AB"
},
"93": {
"video": "QElXIVBV-gk_clip_1_2",
"Question": "Below are two actions in the video:\nAction A. preparing ingredients\nAction B. talking to the camera\n",
"Correct Answer": "BA"
},
"94": {
"video": "PT18KK_6jmU_clip_3_4",
"Question": "Below are two actions in the video:\nAction A. scuba diving\nAction B. taking photos on a boat\n",
"Correct Answer": "AB"
},
"95": {
"video": "GtYf9VsPHO0_clip_2_3",
"Question": "Below are two actions in the video:\nAction A. mixing ingredients together in a bowl\nAction B. making a sandwich\n",
"Correct Answer": "AB"
},
"96": {
"video": "L4tdvpago7s_clip_3_4",
"Question": "Below are two actions in the video:\nAction A. crushing the ingredients in a food processor\nAction B. cutting vegetables\n",
"Correct Answer": "BA"
},
"97": {
"video": "KfP205pf7PU_clip_1_5",
"Question": "Below are two actions in the video:\nAction A. cars driving by the road\nAction B. a bus parked outside the building\n",
"Correct Answer": "AB"
},
"98": {
"video": "KE2tDW9x9d8_clip_1_2",
"Question": "Below are two actions in the video:\nAction A. making a sandwich\nAction B. presenting ingredients\n",
"Correct Answer": "BA"
},
"99": {
"video": "WdC6dVbfTvs_clip_2_5",
"Question": "Below are two actions in the video:\nAction A. performing a belly button piercing\nAction B. looking in the mirror\n",
"Correct Answer": "AB"
},
"100": {
"video": "zSWuVb-aYAA_clip_4_9",
"Question": "Below are two actions in the video:\nAction A. swinging a dog on a red plate\nAction B. performing a frisbee routine with dogs\n",
"Correct Answer": "BA"
},
"101": {
"video": "TvQjlIaAssw_clip_4_5",
"Question": "Below are two actions in the video:\nAction A. adding herbs to the soup\nAction B. adding ingredients to the soup\n",
"Correct Answer": "AB"
},
"102": {
"video": "z-iuSgXKUcw_clip_3_4",
"Question": "Below are two actions in the video:\nAction A. playing clarinets\nAction B. leading the band\n",
"Correct Answer": "BA"
},
"103": {
"video": "E7rhlhVA0SY_clip_10_5",
"Question": "Below are two actions in the video:\nAction A. putting a cake in a display case\nAction B. mixing chocolate and rice crispies\n",
"Correct Answer": "AB"
},
"104": {
"video": "fmdG9uPnWHQ_clip_4_6",
"Question": "Below are two actions in the video:\nAction A. grooming a dog\nAction B. trimming dog nails\n",
"Correct Answer": "AB"
},
"105": {
"video": "fmdG9uPnWHQ_clip_3_6",
"Question": "Below are two actions in the video:\nAction A. trimming dog nails\nAction B. grooming a dog\n",
"Correct Answer": "BA"
},
"106": {
"video": "bM5VpCdPOrw_clip_1_3",
"Question": "Below are two actions in the video:\nAction A. guiding a tour in a desert\nAction B. riding camels\n",
"Correct Answer": "AB"
},
"107": {
"video": "AyYpsQ4xOo8_clip_1_5",
"Question": "Below are two actions in the video:\nAction A. getting a tattoo\nAction B. talking to the camera\n",
"Correct Answer": "BA"
},
"108": {
"video": "MWdPh6J-YXM_clip_6_8",
"Question": "Below are two actions in the video:\nAction A. exercising in a gym\nAction B. driving\n",
"Correct Answer": "AB"
},
"109": {
"video": "MWdPh6J-YXM_clip_1_6",
"Question": "Below are two actions in the video:\nAction A. walking around a kayak\nAction B. exercising in a gym\n",
"Correct Answer": "AB"
},
"110": {
"video": "MubE2kOK6z0_clip_5_6",
"Question": "Below are two actions in the video:\nAction A. dancing on pointe\nAction B. speaking to the camera\n",
"Correct Answer": "BA"
},
"111": {
"video": "1mJeGeb-iew_clip_4_5",
"Question": "Below are two actions in the video:\nAction A. tearing apart the chicken\nAction B. seasoning the chicken\n",
"Correct Answer": "BA"
},
"112": {
"video": "wHDZkh-21G0_clip_1_2",
"Question": "Below are two actions in the video:\nAction A. preparing steamed rice using a rice cooker\nAction B. preparing spinach and seasoning it\n",
"Correct Answer": "AB"
},
"113": {
"video": "4IRb308UjTA_clip_2_4",
"Question": "Below are two actions in the video:\nAction A. getting a spare tire out\nAction B. lowering a car\n",
"Correct Answer": "AB"
},
"114": {
"video": "4IRb308UjTA_clip_2_3",
"Question": "Below are two actions in the video:\nAction A. removing a tire\nAction B. getting a spare tire out\n",
"Correct Answer": "BA"
},
"115": {
"video": "fevlUD03yCM_clip_2_4",
"Question": "Below are two actions in the video:\nAction A. wearing sunblock\nAction B. riding a motor boat\n",
"Correct Answer": "BA"
},
"116": {
"video": "UYcpD3r6Ol0_clip_3_6",
"Question": "Below are two actions in the video:\nAction A. applying fake nails\nAction B. applying lipstick\n",
"Correct Answer": "AB"
},
"117": {
"video": "NkCbbwxEdXU_clip_1_2",
"Question": "Below are two actions in the video:\nAction A. blending ingredients into a paste\nAction B. adding oil to the pan and frying the seeds with onion paste\n",
"Correct Answer": "AB"
},
"118": {
"video": "8xYzQMbI5fM_clip_2_4",
"Question": "Below are two actions in the video:\nAction A. running a sharp object along the paper\nAction B. screwing the tools in place of the holes\n",
"Correct Answer": "BA"
},
"119": {
"video": "mi6wetIKq2w_clip_3_4",
"Question": "Below are two actions in the video:\nAction A. mixing ingredients\nAction B. rolling out dough and adding sugar on it\n",
"Correct Answer": "AB"
},
"120": {
"video": "mi6wetIKq2w_clip_5_6",
"Question": "Below are two actions in the video:\nAction A. slicing a cake and placing slices on a cooking sheet\nAction B. rolling a flatten dough\n",
"Correct Answer": "BA"
},
"121": {
"video": "mi6wetIKq2w_clip_3_6",
"Question": "Below are two actions in the video:\nAction A. slicing a cake and placing slices on a cooking sheet\nAction B. mixing ingredients\n",
"Correct Answer": "BA"
},
"122": {
"video": "mi6wetIKq2w_clip_4_6",
"Question": "Below are two actions in the video:\nAction A. rolling out dough and adding sugar on it\nAction B. slicing a cake and placing slices on a cooking sheet\n",
"Correct Answer": "AB"
},
"123": {
"video": "mi6wetIKq2w_clip_3_5",
"Question": "Below are two actions in the video:\nAction A. mixing ingredients\nAction B. rolling a flatten dough\n",
"Correct Answer": "AB"
},
"124": {
"video": "7hvq4VqEGCE_clip_4_5",
"Question": "Below are two actions in the video:\nAction A. trying to get something in the eye\nAction B. a child crying\n",
"Correct Answer": "BA"
},
"125": {
"video": "FV2TzKt9MdI_clip_2_4",
"Question": "Below are two actions in the video:\nAction A. working out on spin bikes\nAction B. talking to the camera\n",
"Correct Answer": "AB"
},
"126": {
"video": "7lwrP2ma2TU_clip_1_4",
"Question": "Below are two actions in the video:\nAction A. receiving a white box\nAction B. observing a temple\n",
"Correct Answer": "BA"
},
"127": {
"video": "7lwrP2ma2TU_clip_1_3",
"Question": "Below are two actions in the video:\nAction A. an arrow hitting a board\nAction B. observing a temple\n",
"Correct Answer": "BA"
},
"128": {
"video": "MIAhrxkYadk_clip_1_2",
"Question": "Below are two actions in the video:\nAction A. cutting hair\nAction B. walking down a street\n",
"Correct Answer": "AB"
},
"129": {
"video": "CKjHXMoXye4_clip_1_2",
"Question": "Below are two actions in the video:\nAction A. talking to the camera\nAction B. opening the door\n",
"Correct Answer": "AB"
},
"130": {
"video": "Ycf5NG0xedg_clip_2_4",
"Question": "Below are two actions in the video:\nAction A. rafting down a river\nAction B. walking across a suspension bridge\n",
"Correct Answer": "BA"
},
"131": {
"video": "fzHg9PhhlAg_clip_2_4",
"Question": "Below are two actions in the video:\nAction A. playing baseball\nAction B. holding up a large silver award\n",
"Correct Answer": "AB"
},
"132": {
"video": "3dR4MEUDHa0_clip_3_6",
"Question": "Below are two actions in the video:\nAction A. a person walking towards someone\nAction B. playing ping pong\n",
"Correct Answer": "BA"
},
"133": {
"video": "k3oPZS_Id3M_clip_3_4",
"Question": "Below are two actions in the video:\nAction A. washing clothes\nAction B. rolling the garment in a towel\n",
"Correct Answer": "BA"
},
"134": {
"video": "1UIhgxQXcfI_clip_2_4",
"Question": "Below are two actions in the video:\nAction A. making dough\nAction B. baking cookies\n",
"Correct Answer": "AB"
},
"135": {
"video": "kj5y_71bsJM_clip_3_4",
"Question": "Below are two actions in the video:\nAction A. cutting and taking out small patties of potato\nAction B. frying the patties\n",
"Correct Answer": "AB"
},
"136": {
"video": "OhydQlKoSUw_clip_1_2",
"Question": "Below are two actions in the video:\nAction A. surfing\nAction B. grabbing a surfboard\n",
"Correct Answer": "BA"
},
"137": {
"video": "OhydQlKoSUw_clip_1_3",
"Question": "Below are two actions in the video:\nAction A. surfing\nAction B. grabbing a surfboard\n",
"Correct Answer": "BA"
},
"138": {
"video": "I2AbLUtNSMI_clip_5_6",
"Question": "Below are two actions in the video:\nAction A. adding the mixture to the kale pot and mixing it\nAction B. serving it with fried sausage and egg\n",
"Correct Answer": "AB"
},
"139": {
"video": "hru57dsi0N0_clip_1_3",
"Question": "Below are two actions in the video:\nAction A. tying shoelaces\nAction B. putting on a sock\n",
"Correct Answer": "BA"
},
"140": {
"video": "mBZAFJ-Q6Mw_clip_2_7",
"Question": "Below are two actions in the video:\nAction A. jumping on hopscotch squares\nAction B. unfolding a note\n",
"Correct Answer": "AB"
},
"141": {
"video": "q53Ajkll_kw_clip_3_4",
"Question": "Below are two actions in the video:\nAction A. playing a piano\nAction B. playing a bagpipe\n",
"Correct Answer": "BA"
},
"142": {
"video": "q53Ajkll_kw_clip_4_6",
"Question": "Below are two actions in the video:\nAction A. playing a piano\nAction B. playing a bagpipe\n",
"Correct Answer": "AB"
},
"143": {
"video": "-OH1BDqao9w_clip_4_5",
"Question": "Below are two actions in the video:\nAction A. vacuuming the car interior\nAction B. washing a car\n",
"Correct Answer": "AB"
},
"144": {
"video": "LrwBGQ9B0Vg_clip_2_4",
"Question": "Below are two actions in the video:\nAction A. scuba diving in the sea\nAction B. preparing scuba diving\n",
"Correct Answer": "BA"
},
"145": {
"video": "KA6YYIl2z4E_clip_2_5",
"Question": "Below are two actions in the video:\nAction A. placing contact lenses into a case\nAction B. removing contact lenses\n",
"Correct Answer": "AB"
},
"146": {
"video": "sjpWwjzCbrw_clip_2_4",
"Question": "Below are two actions in the video:\nAction A. throwing a paper towel in the waste bin\nAction B. washing hands\n",
"Correct Answer": "BA"
},
"147": {
"video": "Q2PC60uwjdY_clip_2_5",
"Question": "Below are two actions in the video:\nAction A. puring water to a pan\nAction B. grating carrots\n",
"Correct Answer": "AB"
},
"148": {
"video": "Q2PC60uwjdY_clip_2_3",
"Question": "Below are two actions in the video:\nAction A. chopping kale up on a cutting block\nAction B. puring water to a pan\n",
"Correct Answer": "BA"
},
"149": {
"video": "GnbyHdd-BjQ_clip_2_3",
"Question": "Below are two actions in the video:\nAction A. chilling on a lakeside\nAction B. drinking coffee\n",
"Correct Answer": "BA"
},
"150": {
"video": "AyWXuUCDSjw_clip_5_7",
"Question": "Below are two actions in the video:\nAction A. two men turning and looking at each other\nAction B. drinking beer\n",
"Correct Answer": "AB"
},
"151": {
"video": "AyWXuUCDSjw_clip_2_7",
"Question": "Below are two actions in the video:\nAction A. five men walking on the street\nAction B. drinking beer\n",
"Correct Answer": "AB"
},
"152": {
"video": "uek-TzOhu9I_clip_1_2",
"Question": "Below are two actions in the video:\nAction A. mixing various ingredients\nAction B. making cuts into the shrimp\n",
"Correct Answer": "BA"
},
"153": {
"video": "H6g8SsxL8RU_clip_1_2",
"Question": "Below are two actions in the video:\nAction A. extracting oil from a car engine\nAction B. lighting a woodfire\n",
"Correct Answer": "AB"
},
"154": {
"video": "o0O-CwwSaGw_clip_1_4",
"Question": "Below are two actions in the video:\nAction A. drying a dog\nAction B. talking to the camera\n",
"Correct Answer": "BA"
},
"155": {
"video": "3PiN6rDgg_E_clip_3_5",
"Question": "Below are two actions in the video:\nAction A. applying makeup to hair\nAction B. talking to the camera\n",
"Correct Answer": "BA"
},
"156": {
"video": "3PiN6rDgg_E_clip_2_5",
"Question": "Below are two actions in the video:\nAction A. talking to the camera\nAction B. applying makeup to hair\n",
"Correct Answer": "AB"
},
"157": {
"video": "k7EVFW1nCNI_clip_2_3",
"Question": "Below are two actions in the video:\nAction A. pouring dressing on the lettuce\nAction B. blending all the ingredients together\n",
"Correct Answer": "BA"
},
"158": {
"video": "l-YtPYZ_534_clip_2_4",
"Question": "Below are two actions in the video:\nAction A. two men sitting and talking\nAction B. arguing with croquet balls\n",
"Correct Answer": "AB"
},
"159": {
"video": "u2uoYvo8J5s_clip_1_11",
"Question": "Below are two actions in the video:\nAction A. swinging on a swing\nAction B. opening a door\n",
"Correct Answer": "BA"
},
"160": {
"video": "u2uoYvo8J5s_clip_1_8",
"Question": "Below are two actions in the video:\nAction A. opening a door\nAction B. a child going down the slide\n",
"Correct Answer": "AB"
},
"161": {
"video": "u2uoYvo8J5s_clip_11_3",
"Question": "Below are two actions in the video:\nAction A. walking\nAction B. swinging on a swing\n",
"Correct Answer": "BA"
},
"162": {
"video": "u2uoYvo8J5s_clip_3_8",
"Question": "Below are two actions in the video:\nAction A. a child going down the slide\nAction B. walking\n",
"Correct Answer": "BA"
},
"163": {
"video": "cCAct_Q8QTw_clip_1_2",
"Question": "Below are two actions in the video:\nAction A. bringing a pot of salted water to a boil\nAction B. cooking pasta\n",
"Correct Answer": "AB"
},
"164": {
"video": "KsKUIIHiMg0_clip_1_4",
"Question": "Below are two actions in the video:\nAction A. hanging laundry on a clothesline\nAction B. washing clothes\n",
"Correct Answer": "BA"
},
"165": {
"video": "lcVkXTsnR7A_clip_2_5",
"Question": "Below are two actions in the video:\nAction A. walking through a door\nAction B. displaying an amplifier\n",
"Correct Answer": "AB"
},
"166": {
"video": "4XGQR2VmWpw_clip_10_8",
"Question": "Below are two actions in the video:\nAction A. opening the coconut using a knife\nAction B. bikers flying through the sky\n",
"Correct Answer": "BA"
},
"167": {
"video": "ZwDfAhQVKLQ_clip_1_3",
"Question": "Below are two actions in the video:\nAction A. working out with a rowing machine\nAction B. walking down stairs\n",
"Correct Answer": "BA"
},
"168": {
"video": "QvBG_Da97h8_clip_2_3",
"Question": "Below are two actions in the video:\nAction A. cleaning car tires\nAction B. washing the surface of a car\n",
"Correct Answer": "BA"
},
"169": {
"video": "QvBG_Da97h8_clip_3_4",
"Question": "Below are two actions in the video:\nAction A. cleaning car tires\nAction B. steam cleaning the car's engine\n",
"Correct Answer": "AB"
},
"170": {
"video": "bHxWHW2PGy4_clip_6_9",
"Question": "Below are two actions in the video:\nAction A. celebrating on the podium\nAction B. playing water polo\n",
"Correct Answer": "BA"
},
"171": {
"video": "CSk99DHanfg_clip_2_4",
"Question": "Below are two actions in the video:\nAction A. scuba diving through a cave\nAction B. grazing\n",
"Correct Answer": "AB"
},
"172": {
"video": "Acqpfz6lQc4_clip_4_5",
"Question": "Below are two actions in the video:\nAction A. plating the spring rolls with sauce\nAction B. adding the spring rolls to hot oil\n",
"Correct Answer": "BA"
},
"173": {
"video": "ukfCQQpZ0k4_clip_3_4",
"Question": "Below are two actions in the video:\nAction A. putting noodles in boiling water and separating them\nAction B. adding ingredients and mixing them\n",
"Correct Answer": "BA"
},
"174": {
"video": "4OCbTYrThtc_clip_2_3",
"Question": "Below are two actions in the video:\nAction A. bullfighting\nAction B. fighting in armor\n",
"Correct Answer": "AB"
},
"175": {
"video": "Hev5Vj0Jjuk_clip_2_3",
"Question": "Below are two actions in the video:\nAction A. climbing up the stairs\nAction B. putting on safety harnesses\n",
"Correct Answer": "BA"
},
"176": {
"video": "M6FdaEstXbI_clip_4_5",
"Question": "Below are two actions in the video:\nAction A. jumping and walking on the stilts\nAction B. jumping over a bench\n",
"Correct Answer": "AB"
},
"177": {
"video": "UUjXw1xjprU_clip_6_9",
"Question": "Below are two actions in the video:\nAction A. celebrating awards\nAction B. performing skateboard tricks\n",
"Correct Answer": "BA"
},
"178": {
"video": "UUjXw1xjprU_clip_7_9",
"Question": "Below are two actions in the video:\nAction A. performing skateboarding tricks\nAction B. celebrating awards\n",
"Correct Answer": "AB"
},
"179": {
"video": "T9JSNxOyUQA_clip_3_4",
"Question": "Below are two actions in the video:\nAction A. floating on inner tubes in the water\nAction B. traveling on bus\n",
"Correct Answer": "BA"
},
"180": {
"video": "zQCqzIgIpHI_clip_1_3",
"Question": "Below are two actions in the video:\nAction A. flying in a plane\nAction B. skiing down a snowy slope\n",
"Correct Answer": "AB"
},
"181": {
"video": "juiMCvZUYwk_clip_1_2",
"Question": "Below are two actions in the video:\nAction A. filling a basket\nAction B. drawing on a sweet potato\n",
"Correct Answer": "BA"
},
"182": {
"video": "29aDIi7qxXY_clip_3_4",
"Question": "Below are two actions in the video:\nAction A. making cuts into the chicken leg\nAction B. adding various spices to the pan\n",
"Correct Answer": "AB"
},
"183": {
"video": "ykdPTjsmfgY_clip_1_3",
"Question": "Below are two actions in the video:\nAction A. holding a kayak paddle\nAction B. flowing water\n",
"Correct Answer": "BA"
},
"184": {
"video": "BJM1rUjXvkQ_clip_1_2",
"Question": "Below are two actions in the video:\nAction A. mixing candied fruits with liquor\nAction B. mixing ingredients\n",
"Correct Answer": "AB"
},
"185": {
"video": "BJM1rUjXvkQ_clip_1_4",
"Question": "Below are two actions in the video:\nAction A. mixing candied fruits with liquor\nAction B. smoothing the batter\n",
"Correct Answer": "AB"
},
"186": {
"video": "sicaCRRCkiY_clip_1_2",
"Question": "Below are two actions in the video:\nAction A. baking cookies\nAction B. mixing ingredients together\n",
"Correct Answer": "BA"
},
"187": {
"video": "2NITA0d4vqo_clip_7_8",
"Question": "Below are two actions in the video:\nAction A. playing table tennis with unusual objects\nAction B. collecting ping pong balls\n",
"Correct Answer": "AB"
},
"188": {
"video": "2NITA0d4vqo_clip_5_8",
"Question": "Below are two actions in the video:\nAction A. collecting ping pong balls\nAction B. playing table tennis with unusual objects\n",
"Correct Answer": "BA"
},
"189": {
"video": "k4WHaby5jd8_clip_1_3",
"Question": "Below are two actions in the video:\nAction A. taking a bike out of a case\nAction B. assembling a bicycle\n",
"Correct Answer": "AB"
},
"190": {
"video": "b0LY869JBrE_clip_5_7",
"Question": "Below are two actions in the video:\nAction A. brushing nails\nAction B. holding a makeup brush\n",
"Correct Answer": "BA"
},
"191": {
"video": "b0LY869JBrE_clip_5_9",
"Question": "Below are two actions in the video:\nAction A. painting nails\nAction B. holding a makeup brush\n",
"Correct Answer": "BA"
},
"192": {
"video": "oqX-n2KHWAM_clip_4_5",
"Question": "Below are two actions in the video:\nAction A. cooking rhubarb on the stove\nAction B. eating ice cream\n",
"Correct Answer": "AB"
},
"193": {
"video": "oqX-n2KHWAM_clip_2_5",
"Question": "Below are two actions in the video:\nAction A. eating ice cream\nAction B. mixing ingredients\n",
"Correct Answer": "BA"
},
"194": {
"video": "xHlBWc-7Kwo_clip_4_5",
"Question": "Below are two actions in the video:\nAction A. pouring the eggs and stirring them\nAction B. plating the eggs and seasoning them\n",
"Correct Answer": "AB"
},
"195": {
"video": "SfYJTxMRKDE_clip_1_4",
"Question": "Below are two actions in the video:\nAction A. running in the field\nAction B. rafting in the river\n",
"Correct Answer": "AB"
},
"196": {
"video": "p8_hwwgyoZE_clip_1_3",
"Question": "Below are two actions in the video:\nAction A. walking in a crowd\nAction B. a drumming performance\n",
"Correct Answer": "BA"
},
"197": {
"video": "peoMXSP3VgY_clip_3_4",
"Question": "Below are two actions in the video:\nAction A. setting the board upright\nAction B. skateboarding down a hill\n",
"Correct Answer": "BA"
},
"198": {
"video": "uICwWvS_AOo_clip_1_2",
"Question": "Below are two actions in the video:\nAction A. driving a convertible\nAction B. riding down an escalator\n",
"Correct Answer": "AB"
},
"199": {
"video": "uICwWvS_AOo_clip_2_9",
"Question": "Below are two actions in the video:\nAction A. playing cards\nAction B. riding down an escalator\n",
"Correct Answer": "BA"
},
"200": {
"video": "djKnQP_LvSk_clip_5_6",
"Question": "Below are two actions in the video:\nAction A. seasoning the goose liver\nAction B. removing an ingredient and adding another\n",
"Correct Answer": "AB"
},
"201": {
"video": "C5KcdwGSvbw_clip_4_7",
"Question": "Below are two actions in the video:\nAction A. baking cookies\nAction B. mixing ingredients\n",
"Correct Answer": "BA"
},
"202": {
"video": "C5KcdwGSvbw_clip_4_8",
"Question": "Below are two actions in the video:\nAction A. mixing ingredients\nAction B. taking cookies out of the oven\n",
"Correct Answer": "AB"
},
"203": {
"video": "8NfYYT8d3EQ_clip_5_6",
"Question": "Below are two actions in the video:\nAction A. preparing a salad\nAction B. adding ingredients to a salad\n",
"Correct Answer": "BA"
},
"204": {
"video": "8NfYYT8d3EQ_clip_3_5",
"Question": "Below are two actions in the video:\nAction A. preparing ingredients\nAction B. adding ingredients to a salad\n",
"Correct Answer": "AB"
},
"205": {
"video": "9qJbSz-eCq0_clip_1_3",
"Question": "Below are two actions in the video:\nAction A. ice cream production\nAction B. eating ice cream\n",
"Correct Answer": "BA"
},
"206": {
"video": "MjHlAvy2qVY_clip_1_3",
"Question": "Below are two actions in the video:\nAction A. applying sunscreen\nAction B. about packing up stuff in box\n",
"Correct Answer": "AB"
},
"207": {
"video": "vBCnsp-NEAg_clip_2_4",
"Question": "Below are two actions in the video:\nAction A. cooking chicken and pasta\nAction B. adding garlic to hot oil in a pan\n",
"Correct Answer": "BA"
},
"208": {
"video": "NA8fCmbHwU8_clip_1_4",
"Question": "Below are two actions in the video:\nAction A. traveling on a bus\nAction B. celebrating with a trophy\n",
"Correct Answer": "AB"
},
"209": {
"video": "UU8a7vp6tgY_clip_2_5",
"Question": "Below are two actions in the video:\nAction A. decorating a Christmas tree\nAction B. putting a skirt over a rod\n",
"Correct Answer": "BA"
},
"210": {
"video": "UU8a7vp6tgY_clip_1_5",
"Question": "Below are two actions in the video:\nAction A. assembling a stand\nAction B. decorating a Christmas tree\n",
"Correct Answer": "AB"
},
"211": {
"video": "SIeV0DPSpHQ_clip_1_7",
"Question": "Below are two actions in the video:\nAction A. the end credits\nAction B. gardening activities\n",
"Correct Answer": "BA"
},
"212": {
"video": "SIeV0DPSpHQ_clip_1_5",
"Question": "Below are two actions in the video:\nAction A. gardening activities\nAction B. talking\n",
"Correct Answer": "AB"
},
"213": {
"video": "Pqi3yupFFJo_clip_7_8",
"Question": "Below are two actions in the video:\nAction A. mixing mayonnaise, hot sauce, and milk\nAction B. frying the onion rings\n",
"Correct Answer": "BA"
},
"214": {
"video": "1LdbczjQPII_clip_1_9",
"Question": "Below are two actions in the video:\nAction A. globe is turning\nAction B. throwing a bowling ball down a slide\n",
"Correct Answer": "AB"
},
"215": {
"video": "hpU50i4WBK8_clip_1_3",
"Question": "Below are two actions in the video:\nAction A. exploring a submerged cockpit\nAction B. diving into the ocean\n",
"Correct Answer": "BA"
},
"216": {
"video": "8QCW0qWbNeI_clip_3_4",
"Question": "Below are two actions in the video:\nAction A. heating oil in a pan and cooking the pork\nAction B. breaking eggs into a bowl and adding an extra yolk\n",
"Correct Answer": "AB"
},
"217": {
"video": "afrMWrFkgDg_clip_4_5",
"Question": "Below are two actions in the video:\nAction A. eating ice cream\nAction B. children playing\n",
"Correct Answer": "AB"
},
"218": {
"video": "Mcutz37Bowg_clip_1_3",
"Question": "Below are two actions in the video:\nAction A. tying a double knot\nAction B. making a drawstring bag\n",
"Correct Answer": "BA"
},
"219": {
"video": "TxLBvNWVk-4_clip_3_4",
"Question": "Below are two actions in the video:\nAction A. a person falling on a bowling lane\nAction B. shooting a bowling ball from a cannon\n",
"Correct Answer": "AB"
},
"220": {
"video": "kTVcpmqpXJ8_clip_1_2",
"Question": "Below are two actions in the video:\nAction A. boiling chicken broth\nAction B. boiling and draining udon noodles\n",
"Correct Answer": "BA"
},
"221": {
"video": "C8IEqXTBod0_clip_2_8",
"Question": "Below are two actions in the video:\nAction A. shoveling snow\nAction B. putting on clothes\n",
"Correct Answer": "BA"
},
"222": {
"video": "C8IEqXTBod0_clip_4_5",
"Question": "Below are two actions in the video:\nAction A. reading on a sofa\nAction B. shoveling snow\n",
"Correct Answer": "AB"
},
"223": {
"video": "ofrX4WyAM-0_clip_3_4",
"Question": "Below are two actions in the video:\nAction A. preparing ingredients for cooking\nAction B. boiling water\n",
"Correct Answer": "AB"
},
"224": {
"video": "JNFUZz1bqmg_clip_10_7",
"Question": "Below are two actions in the video:\nAction A. climbing stairs on a bridge\nAction B. skydiving\n",
"Correct Answer": "BA"
},
"225": {
"video": "vZzl0RbIQPM_clip_3_7",
"Question": "Below are two actions in the video:\nAction A. decorating straws\nAction B. making syrup\n",
"Correct Answer": "BA"
},
"226": {
"video": "QRcwvzq7QUM_clip_6_7",
"Question": "Below are two actions in the video:\nAction A. playing polo\nAction B. talking to the camera\n",
"Correct Answer": "BA"
},
"227": {
"video": "QRcwvzq7QUM_clip_3_6",
"Question": "Below are two actions in the video:\nAction A. playing polo\nAction B. talking to the camera\n",
"Correct Answer": "AB"
},
"228": {
"video": "6ffxjwTIZHk_clip_1_2",
"Question": "Below are two actions in the video:\nAction A. moving dirt next to a tree\nAction B. talking outside\n",
"Correct Answer": "BA"
},
"229": {
"video": "5oz8ys_Y1_0_clip_8_9",
"Question": "Below are two actions in the video:\nAction A. mashing the potatoes\nAction B. placing the lamb and potatoes in a bowl\n",
"Correct Answer": "AB"
},
"230": {
"video": "LvRP3c5n3P8_clip_1_4",
"Question": "Below are two actions in the video:\nAction A. washing hand and using hand sanitizes\nAction B. a doctor reviewing the injured leg\n",
"Correct Answer": "BA"
},
"231": {
"video": "LvRP3c5n3P8_clip_2_4",
"Question": "Below are two actions in the video:\nAction A. washing hand and using hand sanitizes\nAction B. making a call\n",
"Correct Answer": "BA"
},
"232": {
"video": "LvRP3c5n3P8_clip_1_2",
"Question": "Below are two actions in the video:\nAction A. a doctor reviewing the injured leg\nAction B. making a call\n",
"Correct Answer": "AB"
},
"233": {
"video": "JBTiD2-FcR0_clip_1_5",
"Question": "Below are two actions in the video:\nAction A. applying mixture to a wall\nAction B. Is the prominent action showing sand cement plaster\n",
"Correct Answer": "BA"
},
"234": {
"video": "FyxltEKCfZ0_clip_2_3",
"Question": "Below are two actions in the video:\nAction A. preparing a vaccine\nAction B. performing an MRI scan\n",
"Correct Answer": "AB"
},
"235": {
"video": "FyxltEKCfZ0_clip_2_4",
"Question": "Below are two actions in the video:\nAction A. pouring coffee into a mug\nAction B. preparing a vaccine\n",
"Correct Answer": "BA"
},
"236": {
"video": "A1SuSeqDTEI_clip_4_6",
"Question": "Below are two actions in the video:\nAction A. kayaking in rapids\nAction B. standing on the shore\n",
"Correct Answer": "AB"
},
"237": {
"video": "LSvjzZHbetU_clip_4_5",
"Question": "Below are two actions in the video:\nAction A. pouring paint into a sprayer\nAction B. spraying the fence\n",
"Correct Answer": "AB"
},
"238": {
"video": "LSvjzZHbetU_clip_3_5",
"Question": "Below are two actions in the video:\nAction A. spraying the fence\nAction B. hanging newspaper on a fence\n",
"Correct Answer": "BA"
},
"239": {
"video": "HxJnPUqF9i8_clip_5_6",
"Question": "Below are two actions in the video:\nAction A. throwing motions on weighted cable machines\nAction B. throwing a weighted ball\n",
"Correct Answer": "BA"
},
"240": {
"video": "x3z3dVUxmJ0_clip_3_7",
"Question": "Below are two actions in the video:\nAction A. running scissor through a braid\nAction B. walking\n",
"Correct Answer": "AB"
},
"241": {
"video": "D-XCWhvStd4_clip_4_6",
"Question": "Below are two actions in the video:\nAction A. waxing skis\nAction B. adjusting ski bindings\n",
"Correct Answer": "BA"
},
"242": {
"video": "D-XCWhvStd4_clip_2_7",
"Question": "Below are two actions in the video:\nAction A. skiing\nAction B. ironing wax on the ski\n",
"Correct Answer": "AB"
},
"243": {
"video": "zu960Glpzo4_clip_2_6",
"Question": "Below are two actions in the video:\nAction A. arm wrestling\nAction B. shaking hands\n",
"Correct Answer": "BA"
},
"244": {
"video": "KGIDKn3t2Qk_clip_1_8",
"Question": "Below are two actions in the video:\nAction A. pouring a drink into a glass\nAction B. could be about mixing drinks\n",
"Correct Answer": "AB"
},
"245": {
"video": "kWPvAxLzGw8_clip_4_5",
"Question": "Below are two actions in the video:\nAction A. getting a foot tattooed\nAction B. showing a foot tattoo\n",
"Correct Answer": "AB"
},
"246": {
"video": "7c5vvEn3uLk_clip_1_6",
"Question": "Below are two actions in the video:\nAction A. a running cow\nAction B. riding a horse\n",
"Correct Answer": "BA"
},
"247": {
"video": "7PgQgF5KLTs_clip_2_3",
"Question": "Below are two actions in the video:\nAction A. mixing various ingredients\nAction B. adding various ingredients to the chicken stock\n",
"Correct Answer": "AB"
},
"248": {
"video": "G16xScfD5WM_clip_4_7",
"Question": "Below are two actions in the video:\nAction A. playing instruments\nAction B. performing capoeira\n",
"Correct Answer": "BA"
},
"249": {
"video": "WoB4lSNBDww_clip_2_3",
"Question": "Below are two actions in the video:\nAction A. rolling up paper and dipping it in water\nAction B. sticking paper to the wall\n",
"Correct Answer": "AB"
},
"250": {
"video": "JLipYEVwKTg_clip_1_3",
"Question": "Below are two actions in the video:\nAction A. inhaling the hookah and puffing out some smoke\nAction B. kissing\n",
"Correct Answer": "BA"
},
"251": {
"video": "qemvXlRMQgM_clip_3_5",
"Question": "Below are two actions in the video:\nAction A. smoking a hookah\nAction B. assembling a hookah\n",
"Correct Answer": "BA"
},
"252": {
"video": "2VYZeOa6804_clip_4_6",
"Question": "Below are two actions in the video:\nAction A. updating scores on a board\nAction B. playing water polo in a pool\n",
"Correct Answer": "AB"
},
"253": {
"video": "qdg_pmS934Q_clip_1_2",
"Question": "Below are two actions in the video:\nAction A. adding various ingredients to a bowl and mixing them well\nAction B. mixing and blending ingredients to make a smooth sauce\n",
"Correct Answer": "BA"
},
"254": {
"video": "VswrGW9b3ck_clip_2_3",
"Question": "Below are two actions in the video:\nAction A. dusting with flour and shaking off the excess\nAction B. frying the calamari\n",
"Correct Answer": "AB"
},
"255": {
"video": "sz1772O9AUM_clip_1_4",
"Question": "Below are two actions in the video:\nAction A. driving into a car wash bay\nAction B. viewing vending machines\n",
"Correct Answer": "AB"
},
"256": {
"video": "w9M6GUCtoQQ_clip_2_4",
"Question": "Below are two actions in the video:\nAction A. tattooing a design on a leg\nAction B. wrapping thread around a pencil\n",
"Correct Answer": "BA"
},
"257": {
"video": "eGl_I8h832w_clip_1_3",
"Question": "Below are two actions in the video:\nAction A. cutting hair\nAction B. speaking to the camera\n",
"Correct Answer": "BA"
},
"258": {
"video": "oYhVH1vIXFM_clip_3_4",
"Question": "Below are two actions in the video:\nAction A. blending tomatoes\nAction B. pouring crushed red peppers and garlic into the skillet\n",
"Correct Answer": "AB"
},
"259": {
"video": "oYhVH1vIXFM_clip_3_5",
"Question": "Below are two actions in the video:\nAction A. cooking sauce\nAction B. blending tomatoes\n",
"Correct Answer": "BA"
},
"260": {
"video": "EWt03pUigc0_clip_3_4",
"Question": "Below are two actions in the video:\nAction A. a swimming competition\nAction B. a Judo match\n",
"Correct Answer": "AB"
},
"261": {
"video": "EWt03pUigc0_clip_2_3",
"Question": "Below are two actions in the video:\nAction A. a triple jump\nAction B. a swimming competition\n",
"Correct Answer": "AB"
},
"262": {
"video": "LmWcpkqUurg_clip_1_4",
"Question": "Below are two actions in the video:\nAction A. inserting and twisting a rod\nAction B. showing a minivan\n",
"Correct Answer": "BA"
},
"263": {
"video": "LmWcpkqUurg_clip_4_7",
"Question": "Below are two actions in the video:\nAction A. inserting and twisting a rod\nAction B. installing the new tire\n",
"Correct Answer": "AB"
},
"264": {
"video": "ZcsshMf0NTI_clip_3_4",
"Question": "Below are two actions in the video:\nAction A. adding grated cauliflower to a bowl and mixing it with lemon juice\nAction B. chopping tomatoes, parsley, and cilantro\n",
"Correct Answer": "BA"
},
"265": {
"video": "a7QrIgqkyao_clip_2_3",
"Question": "Below are two actions in the video:\nAction A. carving a pumpkin\nAction B. flipping through pages\n",
"Correct Answer": "BA"
},
"266": {
"video": "OKTxSQMS560_clip_2_3",
"Question": "Below are two actions in the video:\nAction A. a lady talking\nAction B. grooming a dog\n",
"Correct Answer": "AB"
},
"267": {
"video": "lx5Yfoj7Gk8_clip_1_3",
"Question": "Below are two actions in the video:\nAction A. printing paper\nAction B. installing wallpaper\n",
"Correct Answer": "AB"
},
"268": {
"video": "x2xC5lm0cZw_clip_2_3",
"Question": "Below are two actions in the video:\nAction A. playing in the dirt\nAction B. mowing the lawn\n",
"Correct Answer": "BA"
},
"269": {
"video": "W3a7BIqWov4_clip_1_3",
"Question": "Below are two actions in the video:\nAction A. people celebrating\nAction B. performing a headstand with a bowling ball\n",
"Correct Answer": "BA"
},
"270": {
"video": "outMi06JZss_clip_3_4",
"Question": "Below are two actions in the video:\nAction A. running\nAction B. walking around a memorial\n",
"Correct Answer": "AB"
},
"271": {
"video": "fr_02xrchH0_clip_1_2",
"Question": "Below are two actions in the video:\nAction A. toasting bread on one side\nAction B. adding butter and salt to a heating pot\n",
"Correct Answer": "AB"
},
"272": {
"video": "baSx0q9LKg0_clip_1_2",
"Question": "Below are two actions in the video:\nAction A. mixing eggs and sugar\nAction B. eating a chocolate cake\n",
"Correct Answer": "BA"
},
"273": {
"video": "0AjYz-s4Rek_clip_1_3",
"Question": "Below are two actions in the video:\nAction A. cooking fish on a wood fire\nAction B. walking on the snow\n",
"Correct Answer": "BA"
},
"274": {
"video": "MM5mreexkI8_clip_3_5",
"Question": "Below are two actions in the video:\nAction A. inserting a tool into the vacuum\nAction B. vacuuming around windows\n",
"Correct Answer": "AB"
},
"275": {
"video": "EHVkkRI7mBQ_clip_3_4",
"Question": "Below are two actions in the video:\nAction A. jumping a ramp\nAction B. standing and discussing in the parking lot\n",
"Correct Answer": "AB"
},
"276": {
"video": "Irmh66trRY4_clip_3_7",
"Question": "Below are two actions in the video:\nAction A. rolling the baking sheet up\nAction B. stirring cookie dough\n",
"Correct Answer": "BA"
},
"277": {
"video": "Irmh66trRY4_clip_4_6",
"Question": "Below are two actions in the video:\nAction A. washing the baking sheet\nAction B. baking cookies\n",
"Correct Answer": "BA"
},
"278": {
"video": "Irmh66trRY4_clip_5_6",
"Question": "Below are two actions in the video:\nAction A. putting cookies on a cooling rack\nAction B. washing the baking sheet\n",
"Correct Answer": "AB"
},
"279": {
"video": "Ne8UzAInivM_clip_3_4",
"Question": "Below are two actions in the video:\nAction A. swimming to a boat\nAction B. diving underwater\n",
"Correct Answer": "AB"
},
"280": {
"video": "Ne8UzAInivM_clip_2_3",
"Question": "Below are two actions in the video:\nAction A. swimming to a boat\nAction B. swimming underwater\n",
"Correct Answer": "BA"
},
"281": {
"video": "zZysbuDEtWY_clip_7_8",
"Question": "Below are two actions in the video:\nAction A. toasting English muffins and seasoning them with butter, salt, and pepper\nAction B. heating ham in the microwave\n",
"Correct Answer": "AB"
},
"282": {
"video": "9i7ABIB99Ow_clip_2_4",
"Question": "Below are two actions in the video:\nAction A. mixing pasta with cheese and parsley\nAction B. cooking sausage and onions\n",
"Correct Answer": "BA"
},
"283": {
"video": "ZsqjU0X3mxY_clip_3_6",
"Question": "Below are two actions in the video:\nAction A. cutting hair to a short length\nAction B. walking up the stairs\n",
"Correct Answer": "BA"
},
"284": {
"video": "nEcOF04KK0g_clip_1_4",
"Question": "Below are two actions in the video:\nAction A. stirring shoe shine materials\nAction B. shining shoes\n",
"Correct Answer": "AB"
},
"285": {
"video": "uLeJBFypCHE_clip_1_2",
"Question": "Below are two actions in the video:\nAction A. driving a car\nAction B. wakeboarding\n",
"Correct Answer": "AB"
},
"286": {
"video": "vu65aIIJHtU_clip_1_3",
"Question": "Below are two actions in the video:\nAction A. loading a snowboard onto a car\nAction B. driving on a road\n",
"Correct Answer": "BA"
},
"287": {
"video": "dB4SW9-y13U_clip_5_6",
"Question": "Below are two actions in the video:\nAction A. placing the chicken pieces into hot oil\nAction B. adding oil to the chicken\n",
"Correct Answer": "BA"
},
"288": {
"video": "Bm6HrokioXU_clip_2_3",
"Question": "Below are two actions in the video:\nAction A. playing dodgeball\nAction B. interviewing the kids\n",
"Correct Answer": "AB"
},
"289": {
"video": "Bm6HrokioXU_clip_1_3",
"Question": "Below are two actions in the video:\nAction A. playing dodgeball\nAction B. interviewing the kids\n",
"Correct Answer": "AB"
},
"290": {
"video": "O-6zE9_S2KM_clip_1_3",
"Question": "Below are two actions in the video:\nAction A. promoting a casino\nAction B. playing blackjack\n",
"Correct Answer": "BA"
},
"291": {
"video": "BgndHaHcHE0_clip_3_4",
"Question": "Below are two actions in the video:\nAction A. adding flour and stirring the dough\nAction B. adding toppings to the dish\n",
"Correct Answer": "AB"
},
"292": {
"video": "fYuJdh9gqr0_clip_3_5",
"Question": "Below are two actions in the video:\nAction A. inspecting the wall\nAction B. discussing the building\n",
"Correct Answer": "BA"
},
"293": {
"video": "jIsGq431gBs_clip_4_6",
"Question": "Below are two actions in the video:\nAction A. rafting\nAction B. having lunch under an outdoor pavilion\n",
"Correct Answer": "AB"
},
"294": {
"video": "jIsGq431gBs_clip_2_6",
"Question": "Below are two actions in the video:\nAction A. having lunch under an outdoor pavilion\nAction B. putting on helmets and equipment\n",
"Correct Answer": "BA"
},
"295": {
"video": "bNR0MmJ9d8I_clip_2_7",
"Question": "Below are two actions in the video:\nAction A. opening a box\nAction B. attaching both pedals onto the bicycle\n",
"Correct Answer": "AB"
},
"296": {
"video": "hlwSgE7Epwo_clip_1_4",
"Question": "Below are two actions in the video:\nAction A. jumping rope\nAction B. speaking to the camera\n",
"Correct Answer": "BA"
},
"297": {
"video": "V3ZDyR7mVpc_clip_10_6",
"Question": "Below are two actions in the video:\nAction A. jumping a ramp\nAction B. paddling on a kayak\n",
"Correct Answer": "AB"
},
"298": {
"video": "qpeovDXc1cg_clip_2_4",
"Question": "Below are two actions in the video:\nAction A. grinding coffee beans\nAction B. pouring coffee into a cup\n",
"Correct Answer": "AB"
},
"299": {
"video": "rulzKikXMHo_clip_6_7",
"Question": "Below are two actions in the video:\nAction A. covering the ears with the hands\nAction B. applying a towel to a wound\n",
"Correct Answer": "AB"
},
"300": {
"video": "IHpBwsyMT9Q_clip_2_3",
"Question": "Below are two actions in the video:\nAction A. throwing darts\nAction B. grabbing the darts\n",
"Correct Answer": "BA"
},
"301": {
"video": "MYzG-TsW8w8_clip_2_4",
"Question": "Below are two actions in the video:\nAction A. playing on swings\nAction B. throwing a ball\n",
"Correct Answer": "BA"
},
"302": {
"video": "6koP53YFNjg_clip_2_3",
"Question": "Below are two actions in the video:\nAction A. knocking over a cup\nAction B. reaching for a ball\n",
"Correct Answer": "AB"
},
"303": {
"video": "0Yb2EQlAEYM_clip_1_3",
"Question": "Below are two actions in the video:\nAction A. river tubing\nAction B. emerging from water\n",
"Correct Answer": "BA"
},
"304": {
"video": "T8P52q1gCNA_clip_1_3",
"Question": "Below are two actions in the video:\nAction A. to crush the bananas\nAction B. breaking food in half\n",
"Correct Answer": "AB"
},
"305": {
"video": "UAFIstY4a8Q_clip_3_7",
"Question": "Below are two actions in the video:\nAction A. the dealer turning over the cards\nAction B. displaying a jackpot\n",
"Correct Answer": "BA"
},
"306": {
"video": "UAFIstY4a8Q_clip_3_6",
"Question": "Below are two actions in the video:\nAction A. displaying a jackpot\nAction B. checking cards at a casino table\n",
"Correct Answer": "AB"
},
"307": {
"video": "WesunejhXFI_clip_4_5",
"Question": "Below are two actions in the video:\nAction A. adding mussels to the mixture\nAction B. seasoning the mixture\n",
"Correct Answer": "BA"
},
"308": {
"video": "TDWbRqIEcts_clip_4_9",
"Question": "Below are two actions in the video:\nAction A. adding ingredients to a bowl\nAction B. baking cookies\n",
"Correct Answer": "AB"
},
"309": {
"video": "ghFOHoBiyD8_clip_1_4",
"Question": "Below are two actions in the video:\nAction A. talking to the camera\nAction B. bowling\n",
"Correct Answer": "AB"
},
"310": {
"video": "j4EFi_NoEbQ_clip_1_2",
"Question": "Below are two actions in the video:\nAction A. running across the road\nAction B. skateboarding in a skate park\n",
"Correct Answer": "BA"
},
"311": {
"video": "cGNkR-JvaJs_clip_14_18",
"Question": "Below are two actions in the video:\nAction A. talking into the microphone\nAction B. teaching pool techniques\n",
"Correct Answer": "BA"
},
"312": {
"video": "NzL_uQyQjIw_clip_1_6",
"Question": "Below are two actions in the video:\nAction A. walking with surfboards to a boat\nAction B. surfing on waves\n",
"Correct Answer": "AB"
},
"313": {
"video": "NzL_uQyQjIw_clip_1_5",
"Question": "Below are two actions in the video:\nAction A. walking with surfboards to a boat\nAction B. showing wakeboarding tricks\n",
"Correct Answer": "AB"
},
"314": {
"video": "UVHIuuQ0-nA_clip_2_3",
"Question": "Below are two actions in the video:\nAction A. adding sliced carrots\nAction B. cutting scallions into pieces\n",
"Correct Answer": "BA"
},
"315": {
"video": "2WKy0FvMtCM_clip_2_4",
"Question": "Below are two actions in the video:\nAction A. flattening dough onto a sheet\nAction B. mixing ingredients\n",
"Correct Answer": "BA"
},
"316": {
"video": "2WKy0FvMtCM_clip_2_8",
"Question": "Below are two actions in the video:\nAction A. mixing ingredients\nAction B. cutting the cookie\n",
"Correct Answer": "AB"
},
"317": {
"video": "MFfJ4V9Dqvg_clip_2_5",
"Question": "Below are two actions in the video:\nAction A. walking to the water\nAction B. shoveling sand\n",
"Correct Answer": "BA"
},
"318": {
"video": "liuwUS5H1qY_clip_1_2",
"Question": "Below are two actions in the video:\nAction A. soaking the skewers\nAction B. skewering marinated shrimp, pineapple, and bacon\n",
"Correct Answer": "AB"
},
"319": {
"video": "EwYgRPVDQWQ_clip_2_3",
"Question": "Below are two actions in the video:\nAction A. washing vegetables\nAction B. cutting wrapping paper\n",
"Correct Answer": "BA"
},
"320": {
"video": "tJbScqVWPsU_clip_3_4",
"Question": "Below are two actions in the video:\nAction A. skateboarding tricks in a bowl\nAction B. posing for photos\n",
"Correct Answer": "AB"
},
"321": {
"video": "wBwBm7Ju9a8_clip_2_7",
"Question": "Below are two actions in the video:\nAction A. jumping on a trampoline\nAction B. standing and talking\n",
"Correct Answer": "AB"
},
"322": {
"video": "wBwBm7Ju9a8_clip_3_5",
"Question": "Below are two actions in the video:\nAction A. holding up a speedo\nAction B. jumping on the trampoline\n",
"Correct Answer": "BA"
},
"323": {
"video": "fzp5ooc727c_clip_4_8",
"Question": "Below are two actions in the video:\nAction A. hitting a ball with a bat\nAction B. lying down\n",
"Correct Answer": "AB"
},
"324": {
"video": "EkwX8Swnut8_clip_2_4",
"Question": "Below are two actions in the video:\nAction A. skiing\nAction B. driving a car\n",
"Correct Answer": "BA"
},
"325": {
"video": "539ByIcbUPs_clip_12_5",
"Question": "Below are two actions in the video:\nAction A. stirring the bowl with a spoon\nAction B. rubbing lemons onto the counter\n",
"Correct Answer": "AB"
},
"326": {
"video": "539ByIcbUPs_clip_12_9",
"Question": "Below are two actions in the video:\nAction A. stirring the bowl with a spoon\nAction B. pouring boiling water into a bowl\n",
"Correct Answer": "AB"
},
"327": {
"video": "-fMxoShIXiM_clip_6_7",
"Question": "Below are two actions in the video:\nAction A. nailing shingles down\nAction B. showing the house\n",
"Correct Answer": "AB"
},
"328": {
"video": "-fMxoShIXiM_clip_4_5",
"Question": "Below are two actions in the video:\nAction A. unloading shingles onto the roof\nAction B. removing old shingles\n",
"Correct Answer": "AB"
},
"329": {
"video": "mpyN1mrMl3U_clip_1_3",
"Question": "Below are two actions in the video:\nAction A. pouring ingredients into a mixer\nAction B. placing items in the oven\n",
"Correct Answer": "AB"
},
"330": {
"video": "mpyN1mrMl3U_clip_1_2",
"Question": "Below are two actions in the video:\nAction A. making dough balls\nAction B. pouring ingredients into a mixer\n",
"Correct Answer": "BA"
},
"331": {
"video": "81w6SClSFMU_clip_2_4",
"Question": "Below are two actions in the video:\nAction A. mounting a camera to a tube\nAction B. dancing with a hula hoop\n",
"Correct Answer": "AB"
},
"332": {
"video": "81w6SClSFMU_clip_3_4",
"Question": "Below are two actions in the video:\nAction A. dancing with a hula hoop\nAction B. mounting a camera to a tube\n",
"Correct Answer": "BA"
},
"333": {
"video": "98MoyGZKHXc_clip_3_4",
"Question": "Below are two actions in the video:\nAction A. stopping the car and inflating tire\nAction B. driving a car\n",
"Correct Answer": "AB"
},
"334": {
"video": "AFc6KPGfVs8_clip_5_6",
"Question": "Below are two actions in the video:\nAction A. pouring sauce on the meatballs\nAction B. adding condiments\n",
"Correct Answer": "BA"
},
"335": {
"video": "xaicDAewb6o_clip_2_3",
"Question": "Below are two actions in the video:\nAction A. washing dishes\nAction B. flipping a plate\n",
"Correct Answer": "BA"
},
"336": {
"video": "tyjUDi3uLd0_clip_3_4",
"Question": "Below are two actions in the video:\nAction A. measuring the tiles\nAction B. drawing on the floor\n",
"Correct Answer": "AB"
},
"337": {
"video": "FGAlwzRvAHg_clip_11_9",
"Question": "Below are two actions in the video:\nAction A. dragging the melted wax through the board\nAction B. scraping wax off a snowboard\n",
"Correct Answer": "BA"
},
"338": {
"video": "dL9mlqbG5CU_clip_1_5",
"Question": "Below are two actions in the video:\nAction A. curling\nAction B. playing guitar\n",
"Correct Answer": "BA"
},
"339": {
"video": "ngE2y5ExVqw_clip_2_3",
"Question": "Below are two actions in the video:\nAction A. hitting a toy\nAction B. rubbing face with hand\n",
"Correct Answer": "AB"
},
"340": {
"video": "ngE2y5ExVqw_clip_1_3",
"Question": "Below are two actions in the video:\nAction A. rubbing face with hand\nAction B. hitting a toy\n",
"Correct Answer": "BA"
},
"341": {
"video": "udpVICVTQrQ_clip_3_4",
"Question": "Below are two actions in the video:\nAction A. hugging\nAction B. cheering\n",
"Correct Answer": "BA"
},
"342": {
"video": "Gs3OGfQbPjc_clip_4_5",
"Question": "Below are two actions in the video:\nAction A. coating the onion rings in a mixture and then in breadcrumbs\nAction B. frying the onion rings\n",
"Correct Answer": "AB"
},
"343": {
"video": "dTZZq23pYFY_clip_3_4",
"Question": "Below are two actions in the video:\nAction A. discussing in front of the camera\nAction B. filling a coffee cup\n",
"Correct Answer": "BA"
},
"344": {
"video": "NnMMEFglHBQ_clip_2_3",
"Question": "Below are two actions in the video:\nAction A. vacuuming\nAction B. filling a container\n",
"Correct Answer": "AB"
},
"345": {
"video": "COx5Bf0PsQs_clip_4_7",
"Question": "Below are two actions in the video:\nAction A. pouring liquid into a cup\nAction B. stirring with a wooden spoon\n",
"Correct Answer": "BA"
},
"346": {
"video": "COx5Bf0PsQs_clip_6_7",
"Question": "Below are two actions in the video:\nAction A. adding sugar to the pitcher\nAction B. pouring liquid into a cup\n",
"Correct Answer": "AB"
},
"347": {
"video": "COx5Bf0PsQs_clip_2_5",
"Question": "Below are two actions in the video:\nAction A. squeezing a lemon\nAction B. adding water to the pitcher\n",
"Correct Answer": "AB"
},
"348": {
"video": "COx5Bf0PsQs_clip_2_4",
"Question": "Below are two actions in the video:\nAction A. stirring with a wooden spoon\nAction B. squeezing a lemon\n",
"Correct Answer": "BA"
},
"349": {
"video": "-fjUWhSM6Hc_clip_17_2",
"Question": "Below are two actions in the video:\nAction A. awarding a gold medal\nAction B. throwing a javelin\n",
"Correct Answer": "AB"
},
"350": {
"video": "1P8x2Cy-MUM_clip_5_6",
"Question": "Below are two actions in the video:\nAction A. toasting the muffins\nAction B. heating water and then adding it to a pot\n",
"Correct Answer": "AB"
},
"351": {
"video": "QYU2srH753Q_clip_2_8",
"Question": "Below are two actions in the video:\nAction A. mobilizing the hands\nAction B. lifting a dirt bike\n",
"Correct Answer": "AB"
},
"352": {
"video": "ZvVnXvKlKbQ_clip_1_2",
"Question": "Below are two actions in the video:\nAction A. celebrating victory\nAction B. bowling\n",
"Correct Answer": "BA"
},
"353": {
"video": "vOJkQwF2eno_clip_6_7",
"Question": "Below are two actions in the video:\nAction A. folding the pot stickers\nAction B. mixing the ingredients in the bowl\n",
"Correct Answer": "BA"
},
"354": {
"video": "WWwcQ6kiKtA_clip_5_6",
"Question": "Below are two actions in the video:\nAction A. slicing the meat\nAction B. adding the meat to the tortilla\n",
"Correct Answer": "AB"
},
"355": {
"video": "cFcLgFsiZUE_clip_1_2",
"Question": "Below are two actions in the video:\nAction A. coating chicken wings with sauce\nAction B. adding ingredients to a saucepan and stirring\n",
"Correct Answer": "BA"
},
"356": {
"video": "zFKhct4g8as_clip_1_2",
"Question": "Below are two actions in the video:\nAction A. frying bacon in a pan\nAction B. transferring the cooked mixture into the saucepan and adding corn starch\n",
"Correct Answer": "AB"
},
"357": {
"video": "2Jr1K1wBKfQ_clip_1_2",
"Question": "Below are two actions in the video:\nAction A. practicing archery\nAction B. talking to the camera\n",
"Correct Answer": "BA"
},
"358": {
"video": "APQ_KEVYbBw_clip_2_3",
"Question": "Below are two actions in the video:\nAction A. cooking the sausages and steaming the bread\nAction B. placing the sausage and toppings in the bun\n",
"Correct Answer": "AB"
},
"359": {
"video": "LQAFcEvifrU_clip_1_3",
"Question": "Below are two actions in the video:\nAction A. riding camels\nAction B. driving in the desert\n",
"Correct Answer": "BA"
},
"360": {
"video": "Z_F01eV0Iqw_clip_2_5",
"Question": "Below are two actions in the video:\nAction A. handing skis to a child\nAction B. skiing on a ramp\n",
"Correct Answer": "AB"
},
"361": {
"video": "Z_F01eV0Iqw_clip_2_6",
"Question": "Below are two actions in the video:\nAction A. skiing with assistance\nAction B. handing skis to a child\n",
"Correct Answer": "BA"
},
"362": {
"video": "gee7iCW34_E_clip_4_7",
"Question": "Below are two actions in the video:\nAction A. moving rocks\nAction B. building a fire\n",
"Correct Answer": "AB"
},
"363": {
"video": "_uTNqQhQA9w_clip_2_4",
"Question": "Below are two actions in the video:\nAction A. baking colorful layers for a cake\nAction B. going outside to a rabbit cage\n",
"Correct Answer": "AB"
},
"364": {
"video": "WuO75Sb0Kgg_clip_4_5",
"Question": "Below are two actions in the video:\nAction A. putting contact lenses in a cleaning solution\nAction B. wiping hands\n",
"Correct Answer": "BA"
},
"365": {
"video": "Ieb7EkMxpJk_clip_1_2",
"Question": "Below are two actions in the video:\nAction A. grooming dogs\nAction B. a dog playing by a lakeside\n",
"Correct Answer": "BA"
},
"366": {
"video": "UsqhZb0co6o_clip_1_2",
"Question": "Below are two actions in the video:\nAction A. checking the phone\nAction B. getting dressed\n",
"Correct Answer": "AB"
},
"367": {
"video": "fw_3Bg17UFU_clip_2_3",
"Question": "Below are two actions in the video:\nAction A. adding ingredients to a blender\nAction B. breaking eggs and adding the yolks into a bowl\n",
"Correct Answer": "BA"
},
"368": {
"video": "ecVUPpBNpdA_clip_2_3",
"Question": "Below are two actions in the video:\nAction A. weightlifting\nAction B. arm wrestling\n",
"Correct Answer": "AB"
},
"369": {
"video": "ecVUPpBNpdA_clip_1_2",
"Question": "Below are two actions in the video:\nAction A. weightlifting\nAction B. arm wrestling\n",
"Correct Answer": "BA"
},
"370": {
"video": "wQHMoyzJx_w_clip_4_6",
"Question": "Below are two actions in the video:\nAction A. putting potatoes in cold water\nAction B. cooking\n",
"Correct Answer": "AB"
},
"371": {
"video": "UCOn2HkJJt8_clip_1_3",
"Question": "Below are two actions in the video:\nAction A. demonstrating features on a bow\nAction B. riding a four-wheeler\n",
"Correct Answer": "BA"
},
"372": {
"video": "UbunZxDifYU_clip_2_3",
"Question": "Below are two actions in the video:\nAction A. adding spices to flour and mixing\nAction B. adding an egg to the chicken and mixing\n",
"Correct Answer": "AB"
},
"373": {
"video": "JgDfOMDfNZs_clip_3_4",
"Question": "Below are two actions in the video:\nAction A. speaking\nAction B. washing the car\n",
"Correct Answer": "BA"
},
"374": {
"video": "ZOeQh2-ci3M_clip_1_7",
"Question": "Below are two actions in the video:\nAction A. using the toilet in a stall\nAction B. washing hands\n",
"Correct Answer": "AB"
},
"375": {
"video": "GhVERbQMZWQ_clip_1_3",
"Question": "Below are two actions in the video:\nAction A. backing a boat down a ramp\nAction B. wakeboarding\n",
"Correct Answer": "AB"
},
"376": {
"video": "GA8XzZTETPE_clip_3_4",
"Question": "Below are two actions in the video:\nAction A. laying down\nAction B. performing a dance\n",
"Correct Answer": "BA"
},
"377": {
"video": "WOQ0JhA3cOA_clip_2_3",
"Question": "Below are two actions in the video:\nAction A. placing the tuna on shredded vegetables\nAction B. placing wasabi on the plate\n",
"Correct Answer": "AB"
},
"378": {
"video": "lC12SCZ_-1o_clip_1_3",
"Question": "Below are two actions in the video:\nAction A. shoveling snow\nAction B. removing snow from a car\n",
"Correct Answer": "BA"
},
"379": {
"video": "1P_BTFhNZFo_clip_7_8",
"Question": "Below are two actions in the video:\nAction A. waving to the camera\nAction B. dancing with sticks\n",
"Correct Answer": "BA"
},
"380": {
"video": "ymwMEUuXygs_clip_1_3",
"Question": "Below are two actions in the video:\nAction A. walking up a staircase\nAction B. assembling bicycles\n",
"Correct Answer": "AB"
},
"381": {
"video": "kuyuhXuMPX4_clip_4_5",
"Question": "Below are two actions in the video:\nAction A. putting on winter clothes\nAction B. shoveling snow\n",
"Correct Answer": "AB"
},
"382": {
"video": "kuyuhXuMPX4_clip_4_7",
"Question": "Below are two actions in the video:\nAction A. putting down sand on the floor\nAction B. putting on winter clothes\n",
"Correct Answer": "BA"
},
"383": {
"video": "q8c_0JTe5r8_clip_3_4",
"Question": "Below are two actions in the video:\nAction A. creating a marbling effect in batter\nAction B. slicing a cake\n",
"Correct Answer": "AB"
},
"384": {
"video": "ZTHsS5lQyvQ_clip_1_2",
"Question": "Below are two actions in the video:\nAction A. stirring the chocolate\nAction B. talking to the camera\n",
"Correct Answer": "BA"
},
"385": {
"video": "uiG7A8lEdEg_clip_2_4",
"Question": "Below are two actions in the video:\nAction A. laying on the field\nAction B. celebrating a goal\n",
"Correct Answer": "AB"
},
"386": {
"video": "mio5dnRbo4w_clip_6_7",
"Question": "Below are two actions in the video:\nAction A. rinsing the car\nAction B. brushing rims\n",
"Correct Answer": "BA"
},
"387": {
"video": "3PC5_h68qkc_clip_2_5",
"Question": "Below are two actions in the video:\nAction A. rafting down a river\nAction B. zip lining\n",
"Correct Answer": "AB"
},
"388": {
"video": "Rvsc5eymWIg_clip_1_3",
"Question": "Below are two actions in the video:\nAction A. driving on a road\nAction B. removing a car wheel\n",
"Correct Answer": "BA"
},
"389": {
"video": "xaCOYdzox0g_clip_1_2",
"Question": "Below are two actions in the video:\nAction A. putting meat and cheese on the pasta\nAction B. cooking ingredients in a pot\n",
"Correct Answer": "AB"
},
"390": {
"video": "iEDDZvKZLMk_clip_4_5",
"Question": "Below are two actions in the video:\nAction A. adding sauce to the pan\nAction B. combining various ingredients\n",
"Correct Answer": "BA"
},
"391": {
"video": "w50et2-vEOQ_clip_2_5",
"Question": "Below are two actions in the video:\nAction A. getting geared up for wakeboarding\nAction B. wakeboarding\n",
"Correct Answer": "AB"
},
"392": {
"video": "w50et2-vEOQ_clip_2_7",
"Question": "Below are two actions in the video:\nAction A. wakeboarding\nAction B. getting geared up for wakeboarding\n",
"Correct Answer": "BA"
},
"393": {
"video": "o8n1YnT8ZZ8_clip_1_2",
"Question": "Below are two actions in the video:\nAction A. making sparkling lemonade\nAction B. juicing lemons\n",
"Correct Answer": "BA"
},
"394": {
"video": "uWJUoJyvFF0_clip_1_2",
"Question": "Below are two actions in the video:\nAction A. talking to the camera\nAction B. knitting\n",
"Correct Answer": "AB"
},
"395": {
"video": "pQQb2FP1ewE_clip_1_4",
"Question": "Below are two actions in the video:\nAction A. scuba diving\nAction B. pushing a helicopter out of a shed\n",
"Correct Answer": "BA"
},
"396": {
"video": "1cCRZztswFA_clip_1_2",
"Question": "Below are two actions in the video:\nAction A. standing in a gymnasium\nAction B. performing a baton routine\n",
"Correct Answer": "AB"
},
"397": {
"video": "r0P0egQt-jU_clip_3_4",
"Question": "Below are two actions in the video:\nAction A. surfing\nAction B. receiving awards\n",
"Correct Answer": "AB"
},
"398": {
"video": "r0P0egQt-jU_clip_2_4",
"Question": "Below are two actions in the video:\nAction A. receiving awards\nAction B. surfing\n",
"Correct Answer": "BA"
},
"399": {
"video": "9AOVI0OCZqg_clip_3_4",
"Question": "Below are two actions in the video:\nAction A. fixing a bun\nAction B. holding a child\n",
"Correct Answer": "AB"
},
"400": {
"video": "ean7ZR6XmG4_clip_2_7",
"Question": "Below are two actions in the video:\nAction A. a man hits another man\nAction B. eating and talking\n",
"Correct Answer": "BA"
},
"401": {
"video": "_wl0vFvb8Bc_clip_4_7",
"Question": "Below are two actions in the video:\nAction A. taking off sunglasses\nAction B. washing the car\n",
"Correct Answer": "BA"
},
"402": {
"video": "oKjZW0WTbNI_clip_2_3",
"Question": "Below are two actions in the video:\nAction A. adding mayonnaise and lemon juice to a bowl and mixing it well\nAction B. cutting apples, chopping celery, and taking some walnuts\n",
"Correct Answer": "AB"
},
"403": {
"video": "ux_qqONPSrc_clip_3_4",
"Question": "Below are two actions in the video:\nAction A. putting stuff on a salad\nAction B. chopping vegetables\n",
"Correct Answer": "BA"
},
"404": {
"video": "eyfUkLbsixg_clip_3_5",
"Question": "Below are two actions in the video:\nAction A. running\nAction B. talking to the camera\n",
"Correct Answer": "AB"
},
"405": {
"video": "eyfUkLbsixg_clip_2_4",
"Question": "Below are two actions in the video:\nAction A. stretching\nAction B. talking to the camera\n",
"Correct Answer": "AB"
},
"406": {
"video": "fN2DiOswmOA_clip_5_8",
"Question": "Below are two actions in the video:\nAction A. cutting the hulte into pieces\nAction B. explaining food\n",
"Correct Answer": "BA"
},
"407": {
"video": "rSGgal9LtDk_clip_2_5",
"Question": "Below are two actions in the video:\nAction A. toasting bread\nAction B. making a sandwich\n",
"Correct Answer": "AB"
},
"408": {
"video": "qisMX7KNi7s_clip_2_3",
"Question": "Below are two actions in the video:\nAction A. demonstrating the functions of a washing machine\nAction B. pouring water and soap into a bin\n",
"Correct Answer": "BA"
},
"409": {
"video": "woRQ2JxcVHA_clip_2_3",
"Question": "Below are two actions in the video:\nAction A. playing saxophone\nAction B. playing piano\n",
"Correct Answer": "AB"
},
"410": {
"video": "T6KP0pg7qxM_clip_1_3",
"Question": "Below are two actions in the video:\nAction A. throwing darts at a dartboard\nAction B. trying to feed someone\n",
"Correct Answer": "BA"
},
"411": {
"video": "ihMn28mft2s_clip_1_3",
"Question": "Below are two actions in the video:\nAction A. stretching exercises\nAction B. playing volleyball\n",
"Correct Answer": "AB"
},
"412": {
"video": "MCsGSMze_6Q_clip_3_6",
"Question": "Below are two actions in the video:\nAction A. clapping\nAction B. walking to a piano\n",
"Correct Answer": "BA"
},
"413": {
"video": "JGRpVcxltKE_clip_4_5",
"Question": "Below are two actions in the video:\nAction A. making lemonade\nAction B. preparing syrup\n",
"Correct Answer": "BA"
},
"414": {
"video": "PLWeVDUH_Cw_clip_1_2",
"Question": "Below are two actions in the video:\nAction A. walking through a crowd\nAction B. playing table tennis\n",
"Correct Answer": "AB"
},
"415": {
"video": "uDmEOkAXTfo_clip_5_6",
"Question": "Below are two actions in the video:\nAction A. talking to the camera\nAction B. getting a haircut\n",
"Correct Answer": "BA"
},
"416": {
"video": "4q7LmVSgIPk_clip_1_3",
"Question": "Below are two actions in the video:\nAction A. using a tool to adjust a car\nAction B. driving the car over an object\n",
"Correct Answer": "AB"
},
"417": {
"video": "4q7LmVSgIPk_clip_1_5",
"Question": "Below are two actions in the video:\nAction A. inspecting the bike\nAction B. using a tool to adjust a car\n",
"Correct Answer": "BA"
},
"418": {
"video": "8UJ5PGzu1PE_clip_2_3",
"Question": "Below are two actions in the video:\nAction A. shooting an arrow from a bow\nAction B. the arrow uncaps the bottle\n",
"Correct Answer": "AB"
},
"419": {
"video": "OCdmlTxq1Co_clip_4_5",
"Question": "Below are two actions in the video:\nAction A. welding\nAction B. torching a gray substance\n",
"Correct Answer": "BA"
},
"420": {
"video": "OCdmlTxq1Co_clip_3_4",
"Question": "Below are two actions in the video:\nAction A. turning a knob on a machine\nAction B. torching a gray substance\n",
"Correct Answer": "AB"
},
"421": {
"video": "PzNpPDd-VWE_clip_1_6",
"Question": "Below are two actions in the video:\nAction A. drinking from a coconut\nAction B. jump to a tightrope\n",
"Correct Answer": "BA"
},
"422": {
"video": "ZgVmS-AhYgA_clip_3_4",
"Question": "Below are two actions in the video:\nAction A. walking through the forest\nAction B. jumping into water\n",
"Correct Answer": "AB"
},
"423": {
"video": "ZgVmS-AhYgA_clip_1_4",
"Question": "Below are two actions in the video:\nAction A. carrying a raft\nAction B. jumping into water\n",
"Correct Answer": "AB"
},
"424": {
"video": "yohSEYq9tSo_clip_2_3",
"Question": "Below are two actions in the video:\nAction A. adding ingredients to a bowl and mixing them\nAction B. adding peas to boiling water and then transferring them to a pan\n",
"Correct Answer": "BA"
},
"425": {
"video": "sra0ywgWITo_clip_4_7",
"Question": "Below are two actions in the video:\nAction A. arm wrestling\nAction B. using duct tape\n",
"Correct Answer": "AB"
},
"426": {
"video": "2-xMWBQA7iM_clip_5_6",
"Question": "Below are two actions in the video:\nAction A. showing the screen on the rowing machine\nAction B. rowing on a machine\n",
"Correct Answer": "BA"
},
"427": {
"video": "2-xMWBQA7iM_clip_1_6",
"Question": "Below are two actions in the video:\nAction A. showing the screen on the rowing machine\nAction B. sitting on a rowing machine\n",
"Correct Answer": "BA"
},
"428": {
"video": "jTMdMnbW9OI_clip_14_17",
"Question": "Below are two actions in the video:\nAction A. throwing face wash\nAction B. putting on a mask\n",
"Correct Answer": "AB"
},
"429": {
"video": "MvKhjWRNTvI_clip_1_4",
"Question": "Below are two actions in the video:\nAction A. shooting targets\nAction B. opening a bottle\n",
"Correct Answer": "BA"
},
"430": {
"video": "MvKhjWRNTvI_clip_1_3",
"Question": "Below are two actions in the video:\nAction A. opening a bottle\nAction B. shooting at targets\n",
"Correct Answer": "AB"
},
"431": {
"video": "xH8l5rCWrMU_clip_2_3",
"Question": "Below are two actions in the video:\nAction A. showing the images of ingredients\nAction B. chopping vegetables\n",
"Correct Answer": "AB"
},
"432": {
"video": "bpsKpmyexUs_clip_1_2",
"Question": "Below are two actions in the video:\nAction A. chopping some vegetables and herbs\nAction B. preparing healthy mussels\n",
"Correct Answer": "BA"
},
"433": {
"video": "MeHEDK_Y8sE_clip_3_5",
"Question": "Below are two actions in the video:\nAction A. applying heat to hair wrapped in foil\nAction B. spinning in front of the camera\n",
"Correct Answer": "AB"
},
"434": {
"video": "uM6ErLnAGW4_clip_2_3",
"Question": "Below are two actions in the video:\nAction A. adding ingredients to a bowl\nAction B. carving bell peppers\n",
"Correct Answer": "BA"
},
"435": {
"video": "IWHN3TD8mMQ_clip_4_6",
"Question": "Below are two actions in the video:\nAction A. adding the pasta in the pot\nAction B. adding olive oil to pasta\n",
"Correct Answer": "AB"
},
"436": {
"video": "ClW3USojCoE_clip_2_3",
"Question": "Below are two actions in the video:\nAction A. rock climbing\nAction B. doing exercise in a gym\n",
"Correct Answer": "BA"
},
"437": {
"video": "diBZlwUO8rc_clip_4_6",
"Question": "Below are two actions in the video:\nAction A. pouring water on a sharpening stone\nAction B. sharpening a knife\n",
"Correct Answer": "AB"
},
"438": {
"video": "8DIfyvX7H8Y_clip_1_4",
"Question": "Below are two actions in the video:\nAction A. flying kites\nAction B. making a kite\n",
"Correct Answer": "BA"
},
"439": {
"video": "pDjyQ1lKMT8_clip_3_4",
"Question": "Below are two actions in the video:\nAction A. cutting the chicken\nAction B. placing the mixed salad leaves into a bowl and adding the chicken and croutons\n",
"Correct Answer": "AB"
},
"440": {
"video": "ITGlho0dw-k_clip_2_3",
"Question": "Below are two actions in the video:\nAction A. buying sunscreen\nAction B. applying sunscreen\n",
"Correct Answer": "BA"
},
"441": {
"video": "ITGlho0dw-k_clip_3_5",
"Question": "Below are two actions in the video:\nAction A. applying sunscreen\nAction B. buying sunscreen\n",
"Correct Answer": "BA"
},
"442": {
"video": "iFA1XhZ6VM8_clip_2_3",
"Question": "Below are two actions in the video:\nAction A. mixing ingredients\nAction B. baking a cake in a rice cooker\n",
"Correct Answer": "AB"
},
"443": {
"video": "O8JVA-scYlM_clip_1_11",
"Question": "Below are two actions in the video:\nAction A. inserting a toothpick into a sandwich\nAction B. talking to the camera\n",
"Correct Answer": "BA"
},
"444": {
"video": "O8JVA-scYlM_clip_1_9",
"Question": "Below are two actions in the video:\nAction A. talking to the camera\nAction B. making a sandwich\n",
"Correct Answer": "AB"
},
"445": {
"video": "vl7OBBTv7KY_clip_1_2",
"Question": "Below are two actions in the video:\nAction A. displaying a picture of a oreo cheesecake\nAction B. crushing cookies\n",
"Correct Answer": "AB"
},
"446": {
"video": "LoBjzA2z2Ls_clip_3_4",
"Question": "Below are two actions in the video:\nAction A. stir-frying croutons\nAction B. mixing ingredients in a bowl\n",
"Correct Answer": "BA"
},
"447": {
"video": "3X6eP273RoI_clip_2_3",
"Question": "Below are two actions in the video:\nAction A. cutting onion and eggs\nAction B. putting egg salad on bread\n",
"Correct Answer": "BA"
},
"448": {
"video": "WUYSGCwm6OM_clip_4_6",
"Question": "Below are two actions in the video:\nAction A. putting on a contact lens\nAction B. washing hands\n",
"Correct Answer": "AB"
},
"449": {
"video": "fjoaurNKg60_clip_3_6",
"Question": "Below are two actions in the video:\nAction A. cleaning and disinfecting hands\nAction B. applying contact lenses\n",
"Correct Answer": "BA"
},
"450": {
"video": "ez9uLqGV7AA_clip_2_3",
"Question": "Below are two actions in the video:\nAction A. showing skateboarding tricks\nAction B. falling off a skateboard\n",
"Correct Answer": "AB"
},
"451": {
"video": "Sb2SPX38lyQ_clip_2_5",
"Question": "Below are two actions in the video:\nAction A. walking off\nAction B. dirt biking\n",
"Correct Answer": "BA"
},
"452": {
"video": "91ozOcjKl5M_clip_3_7",
"Question": "Below are two actions in the video:\nAction A. adding pasta to a pan\nAction B. pouring the sauce on top of the pasta\n",
"Correct Answer": "AB"
},
"453": {
"video": "sPEed6XrTZA_clip_2_3",
"Question": "Below are two actions in the video:\nAction A. pouring liquid into a bucket and sprayer tank\nAction B. washing the car\n",
"Correct Answer": "AB"
},
"454": {
"video": "41NQ9UXkPWE_clip_2_3",
"Question": "Below are two actions in the video:\nAction A. cooking pancetta in a pot without adding oil\nAction B. adding ingredients and mixing them well\n",
"Correct Answer": "BA"
},
"455": {
"video": "POgIE_9QuYA_clip_2_3",
"Question": "Below are two actions in the video:\nAction A. placing the meat onto a wonton sheet and closing it\nAction B. cooking the noodles in boiling water\n",
"Correct Answer": "AB"
},
"456": {
"video": "MZQmJZ_31O0_clip_1_3",
"Question": "Below are two actions in the video:\nAction A. hula hooping with multiple hoops\nAction B. opening eyes\n",
"Correct Answer": "BA"
},
"457": {
"video": "cdcn6XP1N6A_clip_2_3",
"Question": "Below are two actions in the video:\nAction A. playing the flute\nAction B. walking\n",
"Correct Answer": "AB"
},
"458": {
"video": "9FAPy8NVDgY_clip_4_9",
"Question": "Below are two actions in the video:\nAction A. mixing ingredients in a pan\nAction B. pouring oil and vegetables into a pan\n",
"Correct Answer": "BA"
},
"459": {
"video": "9FAPy8NVDgY_clip_4_8",
"Question": "Below are two actions in the video:\nAction A. pouring oil and vegetables into a pan\nAction B. blending ingredients\n",
"Correct Answer": "AB"
},
"460": {
"video": "oEd7WT4mVSE_clip_1_5",
"Question": "Below are two actions in the video:\nAction A. putting on a jacket\nAction B. using a hookah\n",
"Correct Answer": "BA"
},
"461": {
"video": "2Sev8z4P7pE_clip_2_3",
"Question": "Below are two actions in the video:\nAction A. raking leaves into a bag\nAction B. mowing the lawn\n",
"Correct Answer": "AB"
},
"462": {
"video": "E-M2Cq0RNTs_clip_1_2",
"Question": "Below are two actions in the video:\nAction A. washing a car\nAction B. pouring water into a white bucket\n",
"Correct Answer": "BA"
},
"463": {
"video": "OOcsprnRCQQ_clip_2_4",
"Question": "Below are two actions in the video:\nAction A. putting on scuba gear\nAction B. handing an underwater animal\n",
"Correct Answer": "AB"
},
"464": {
"video": "o2mqzjWJJNw_clip_1_3",
"Question": "Below are two actions in the video:\nAction A. welding\nAction B. walking to a tool\n",
"Correct Answer": "BA"
},
"465": {
"video": "QWFedtlPRYM_clip_2_5",
"Question": "Below are two actions in the video:\nAction A. holding a cloth\nAction B. rolling a wet cloth into a dry towel\n",
"Correct Answer": "AB"
},
"466": {
"video": "QWFedtlPRYM_clip_3_6",
"Question": "Below are two actions in the video:\nAction A. ironing a cloth\nAction B. running water in a bathtub\n",
"Correct Answer": "BA"
},
"467": {
"video": "QWFedtlPRYM_clip_2_3",
"Question": "Below are two actions in the video:\nAction A. running water in a bathtub\nAction B. holding a cloth\n",
"Correct Answer": "BA"
},
"468": {
"video": "5Y4YkCkgShc_clip_5_8",
"Question": "Below are two actions in the video:\nAction A. mixing ingredients in a bowl\nAction B. flipping the cakes\n",
"Correct Answer": "AB"
},
"469": {
"video": "ouqYXdtEuCI_clip_3_4",
"Question": "Below are two actions in the video:\nAction A. jumping on a trampoline\nAction B. jumping into a pool\n",
"Correct Answer": "AB"
},
"470": {
"video": "C0F-xroK_Eg_clip_3_7",
"Question": "Below are two actions in the video:\nAction A. mixing pasta and sauce\nAction B. adding parsley to a pot\n",
"Correct Answer": "BA"
},
"471": {
"video": "aSPPD0fDI3g_clip_5_6",
"Question": "Below are two actions in the video:\nAction A. walking out the door\nAction B. applying lipstick\n",
"Correct Answer": "BA"
},
"472": {
"video": "9y2BKvWMN9Y_clip_6_7",
"Question": "Below are two actions in the video:\nAction A. frying tofu in a pan\nAction B. placing the tofu and vegetables in the buns\n",
"Correct Answer": "AB"
},
"473": {
"video": "_pwC3oNzQT8_clip_2_3",
"Question": "Below are two actions in the video:\nAction A. mixing the chicken with the eggs\nAction B. mixing spices with the flour\n",
"Correct Answer": "AB"
},
"474": {
"video": "8EfkFxoXI_4_clip_2_3",
"Question": "Below are two actions in the video:\nAction A. shifting the seat of a bike\nAction B. picking up and holding the object\n",
"Correct Answer": "BA"
},
"475": {
"video": "J4FBxa5FWSo_clip_1_3",
"Question": "Below are two actions in the video:\nAction A. jumping with stilts\nAction B. a man running to a bike\n",
"Correct Answer": "BA"
},
"476": {
"video": "_032TQam_mY_clip_2_5",
"Question": "Below are two actions in the video:\nAction A. brushing a horse\nAction B. talking to the camera\n",
"Correct Answer": "AB"
},
"477": {
"video": "7XGimCWcafc_clip_4_7",
"Question": "Below are two actions in the video:\nAction A. inspecting a tire\nAction B. changing a tire\n",
"Correct Answer": "BA"
},
"478": {
"video": "7XGimCWcafc_clip_5_7",
"Question": "Below are two actions in the video:\nAction A. changing a tire\nAction B. inspecting a tire\n",
"Correct Answer": "AB"
},
"479": {
"video": "xYuqZ_RrCC0_clip_4_6",
"Question": "Below are two actions in the video:\nAction A. assembling a razor\nAction B. applying lotion to the neck\n",
"Correct Answer": "AB"
},
"480": {
"video": "O_StqLLpAVI_clip_2_4",
"Question": "Below are two actions in the video:\nAction A. replacing the tube of the tire\nAction B. inspecting the bike\n",
"Correct Answer": "BA"
},
"481": {
"video": "EyAdFQJv2LY_clip_4_5",
"Question": "Below are two actions in the video:\nAction A. flipping the fish and pressing the rice into it\nAction B. garnishing the sushi\n",
"Correct Answer": "AB"
},
"482": {
"video": "u7xQLvrmRUg_clip_4_5",
"Question": "Below are two actions in the video:\nAction A. combining the ingredients and serving the soup\nAction B. boiling wonton and baby bok choy\n",
"Correct Answer": "BA"
},
"483": {
"video": "iRp-pWnPoYw_clip_1_2",
"Question": "Below are two actions in the video:\nAction A. skateboarding between cars\nAction B. walking out the door of the store\n",
"Correct Answer": "BA"
},
"484": {
"video": "G21LXiasKf4_clip_2_3",
"Question": "Below are two actions in the video:\nAction A. mixing the ingredients by hand\nAction B. frying the meat patty in a pan\n",
"Correct Answer": "AB"
},
"485": {
"video": "WrJ_Xj9FArM_clip_3_4",
"Question": "Below are two actions in the video:\nAction A. baking the potatoes\nAction B. mixing ingredients together\n",
"Correct Answer": "AB"
},
"486": {
"video": "7C8t-Mihd18_clip_2_3",
"Question": "Below are two actions in the video:\nAction A. adding ingredients to the pan\nAction B. removing the leaves from the stems and chopping them\n",
"Correct Answer": "BA"
},
"487": {
"video": "OUY4TkdjnyA_clip_3_7",
"Question": "Below are two actions in the video:\nAction A. falling down on the sofa\nAction B. playing foosball\n",
"Correct Answer": "BA"
},
"488": {
"video": "Kmk0IVi2Xu4_clip_3_6",
"Question": "Below are two actions in the video:\nAction A. playing the drums\nAction B. clapping hands\n",
"Correct Answer": "AB"
},
"489": {
"video": "yVsOoFr61x4_clip_1_3",
"Question": "Below are two actions in the video:\nAction A. walking to the end of a diving board\nAction B. swimming to the edge\n",
"Correct Answer": "AB"
},
"490": {
"video": "zQ4HbFGX7t0_clip_1_4",
"Question": "Below are two actions in the video:\nAction A. turning off the lights\nAction B. closing a door and opening a car door\n",
"Correct Answer": "BA"
},
"491": {
"video": "hmT9H0IjiGs_clip_3_5",
"Question": "Below are two actions in the video:\nAction A. juicing fruits\nAction B. mixing ingredients in a bowl\n",
"Correct Answer": "AB"
},
"492": {
"video": "ulTKMWIQR30_clip_1_2",
"Question": "Below are two actions in the video:\nAction A. filling the wonton wrappers\nAction B. combining ingredients and stirring them together\n",
"Correct Answer": "BA"
},
"493": {
"video": "_0sDAdyMtnk_clip_3_5",
"Question": "Below are two actions in the video:\nAction A. playing the violin\nAction B. playing bassoons\n",
"Correct Answer": "AB"
},
"494": {
"video": "gpmrwsV9skQ_clip_1_3",
"Question": "Below are two actions in the video:\nAction A. crossing the zebra crossing\nAction B. reading a newspaper\n",
"Correct Answer": "BA"
},
"495": {
"video": "eaR8oEBlYWk_clip_3_4",
"Question": "Below are two actions in the video:\nAction A. pouring water into a bowl\nAction B. showing a washing machine\n",
"Correct Answer": "AB"
},
"496": {
"video": "eaR8oEBlYWk_clip_2_4",
"Question": "Below are two actions in the video:\nAction A. showing a washing machine\nAction B. pouring water into a bowl\n",
"Correct Answer": "BA"
},
"497": {
"video": "nShRXseBM4Y_clip_2_3",
"Question": "Below are two actions in the video:\nAction A. cooking bread on a grill\nAction B. whisking ingredients in a bowl\n",
"Correct Answer": "BA"
},
"498": {
"video": "98SSjNuSxvM_clip_1_4",
"Question": "Below are two actions in the video:\nAction A. rowing on a machine\nAction B. showing blisters on hand\n",
"Correct Answer": "AB"
},
"499": {
"video": "Bnw54GNBKlU_clip_1_2",
"Question": "Below are two actions in the video:\nAction A. jumping on the sidewalk\nAction B. sitting in a sidewalk and talking to the camera\n",
"Correct Answer": "BA"
},
"500": {
"video": "QWhn9Ncvvso_clip_1_2",
"Question": "Below are two actions in the video:\nAction A. placing baked bacon slices on a plate\nAction B. toasting the bread\n",
"Correct Answer": "AB"
},
"501": {
"video": "0-CYG7bH54A_clip_2_4",
"Question": "Below are two actions in the video:\nAction A. preparing ingredients\nAction B. cooking pasta with shrimp\n",
"Correct Answer": "AB"
},
"502": {
"video": "xijxN7XB4d8_clip_3_4",
"Question": "Below are two actions in the video:\nAction A. talking to the camera\nAction B. playing the violin\n",
"Correct Answer": "BA"
},
"503": {
"video": "wXA-1ZmvuEA_clip_1_2",
"Question": "Below are two actions in the video:\nAction A. cutting tofu into strips\nAction B. adding various ingredients to a pot\n",
"Correct Answer": "AB"
},
"504": {
"video": "CIJp-SG3sWE_clip_2_4",
"Question": "Below are two actions in the video:\nAction A. swimming\nAction B. the opening of the arms\n",
"Correct Answer": "BA"
},
"505": {
"video": "CIJp-SG3sWE_clip_1_4",
"Question": "Below are two actions in the video:\nAction A. swimming\nAction B. walking to the edge of the diving board\n",
"Correct Answer": "BA"
},
"506": {
"video": "SdbxPbXeQJ0_clip_3_7",
"Question": "Below are two actions in the video:\nAction A. picking up a cell phone on a bed\nAction B. drinking a beer\n",
"Correct Answer": "AB"
},
"507": {
"video": "SdbxPbXeQJ0_clip_1_3",
"Question": "Below are two actions in the video:\nAction A. drinking a beer\nAction B. picking up a cell phone on a bed\n",
"Correct Answer": "AB"
},
"508": {
"video": "Q_Rufuciohg_clip_1_2",
"Question": "Below are two actions in the video:\nAction A. displaying a knife on the table\nAction B. peeling a potato\n",
"Correct Answer": "BA"
},
"509": {
"video": "0kfJ7Lu4tvo_clip_3_5",
"Question": "Below are two actions in the video:\nAction A. putting a tire into the trunk\nAction B. raising the car with a jack\n",
"Correct Answer": "BA"
},
"510": {
"video": "-C1nnsyw7R0_clip_3_4",
"Question": "Below are two actions in the video:\nAction A. running and jumping\nAction B. playing American football\n",
"Correct Answer": "AB"
},
"511": {
"video": "-C1nnsyw7R0_clip_4_5",
"Question": "Below are two actions in the video:\nAction A. playing American football\nAction B. running and jumping\n",
"Correct Answer": "AB"
},
"512": {
"video": "AY2usHrPYL0_clip_1_5",
"Question": "Below are two actions in the video:\nAction A. paddling a raft\nAction B. driving a bus\n",
"Correct Answer": "BA"
},
"513": {
"video": "f98FHTGx64Q_clip_1_3",
"Question": "Below are two actions in the video:\nAction A. monitoring a storm\nAction B. flying kites\n",
"Correct Answer": "AB"
},
"514": {
"video": "5Fq-ln3yC38_clip_2_5",
"Question": "Below are two actions in the video:\nAction A. Use a tack rag to remove dust\nAction B. applying liquid with a paintbrush\n",
"Correct Answer": "BA"
},
"515": {
"video": "QepadF9vOdA_clip_1_2",
"Question": "Below are two actions in the video:\nAction A. boiling water, adding salt, and cooking the spaghetti\nAction B. cutting pancetta\n",
"Correct Answer": "BA"
},
"516": {
"video": "N0DA6RpIf5Y_clip_2_3",
"Question": "Below are two actions in the video:\nAction A. raking leaves\nAction B. drinking from a can\n",
"Correct Answer": "AB"
},
"517": {
"video": "N0DA6RpIf5Y_clip_1_3",
"Question": "Below are two actions in the video:\nAction A. raking leaves\nAction B. drinking from a can\n",
"Correct Answer": "AB"
},
"518": {
"video": "FQRC8urWpew_clip_7_8",
"Question": "Below are two actions in the video:\nAction A. adding ingredients to the pan\nAction B. adding meatballs to the pan\n",
"Correct Answer": "BA"
},
"519": {
"video": "WO4EXX5DJHQ_clip_3_4",
"Question": "Below are two actions in the video:\nAction A. adding wine to the pan\nAction B. adding various seasonings to a bowl\n",
"Correct Answer": "AB"
},
"520": {
"video": "DEEgoxzTvdk_clip_1_2",
"Question": "Below are two actions in the video:\nAction A. wakeboarding\nAction B. boating on a lake\n",
"Correct Answer": "BA"
},
"521": {
"video": "DEEgoxzTvdk_clip_1_3",
"Question": "Below are two actions in the video:\nAction A. boating on a lake\nAction B. wakeboarding\n",
"Correct Answer": "AB"
},
"522": {
"video": "9-hB_1taG0o_clip_4_5",
"Question": "Below are two actions in the video:\nAction A. placing the pasta in a bowl\nAction B. adding herbs to the soup\n",
"Correct Answer": "BA"
},
"523": {
"video": "JZDTcGPKw2w_clip_3_6",
"Question": "Below are two actions in the video:\nAction A. riding horses\nAction B. playing together\n",
"Correct Answer": "AB"
},
"524": {
"video": "JZDTcGPKw2w_clip_1_6",
"Question": "Below are two actions in the video:\nAction A. playing together\nAction B. riding horses\n",
"Correct Answer": "BA"
},
"525": {
"video": "IJ2m8Bi3LVE_clip_2_4",
"Question": "Below are two actions in the video:\nAction A. removing contact lenses\nAction B. pouring liquid into a contact case\n",
"Correct Answer": "BA"
},
"526": {
"video": "CazGUhhclEY_clip_3_4",
"Question": "Below are two actions in the video:\nAction A. adding various ingredients to the bowl and mixing well\nAction B. shaping the beef into patties\n",
"Correct Answer": "AB"
},
"527": {
"video": "arhhcCWkAoM_clip_3_4",
"Question": "Below are two actions in the video:\nAction A. lifting weights above the head\nAction B. running\n",
"Correct Answer": "AB"
},
"528": {
"video": "LMxfRVcBrD8_clip_3_7",
"Question": "Below are two actions in the video:\nAction A. chopping basil and adding it with cheese\nAction B. sauteing chopped onions and garlic\n",
"Correct Answer": "BA"
},
"529": {
"video": "LMxfRVcBrD8_clip_2_7",
"Question": "Below are two actions in the video:\nAction A. adding spaghetti to a pot of boiling water\nAction B. chopping basil and adding it with cheese\n",
"Correct Answer": "AB"
},
"530": {
"video": "iUe1t0sN4Jo_clip_1_2",
"Question": "Below are two actions in the video:\nAction A. displaying a bowling score\nAction B. bowling\n",
"Correct Answer": "BA"
},
"531": {
"video": "8KxL1itwI3Q_clip_1_5",
"Question": "Below are two actions in the video:\nAction A. showing a boy bear\nAction B. rolling wrapping paper\n",
"Correct Answer": "AB"
},
"532": {
"video": "8KxL1itwI3Q_clip_1_4",
"Question": "Below are two actions in the video:\nAction A. wrapping a box\nAction B. showing a boy bear\n",
"Correct Answer": "BA"
},
"533": {
"video": "ULH_AqrP3to_clip_1_2",
"Question": "Below are two actions in the video:\nAction A. mopping the floor\nAction B. squeezing the handle\n",
"Correct Answer": "AB"
},
"534": {
"video": "VbhCWRXsEHQ_clip_2_8",
"Question": "Below are two actions in the video:\nAction A. to remove cookies from the baking sheet\nAction B. placing butter in a mixing bowl\n",
"Correct Answer": "BA"
},
"535": {
"video": "VbhCWRXsEHQ_clip_1_8",
"Question": "Below are two actions in the video:\nAction A. placing a parchment paper on a baking sheet\nAction B. to remove cookies from the baking sheet\n",
"Correct Answer": "AB"
},
"536": {
"video": "xHuaYMXGTnc_clip_2_3",
"Question": "Below are two actions in the video:\nAction A. heating a pan and toasting bread in it\nAction B. slicing the cheese thinly\n",
"Correct Answer": "BA"
},
"537": {
"video": "yA3AD9jU7QU_clip_5_6",
"Question": "Below are two actions in the video:\nAction A. walking\nAction B. drying hands\n",
"Correct Answer": "AB"
},
"538": {
"video": "3rtzSsuJ4Ng_clip_3_4",
"Question": "Below are two actions in the video:\nAction A. laying ingredients on the bread\nAction B. frying bacon\n",
"Correct Answer": "BA"
},
"539": {
"video": "uaIu2yDmhNU_clip_2_4",
"Question": "Below are two actions in the video:\nAction A. triple jump\nAction B. posing in front of a scoreboard\n",
"Correct Answer": "AB"
},
"540": {
"video": "T2lxCGJ9ekg_clip_6_7",
"Question": "Below are two actions in the video:\nAction A. adding vinegar\nAction B. putting the lid on and slow cooking\n",
"Correct Answer": "BA"
},
"541": {
"video": "vcCwvRYqU2I_clip_4_6",
"Question": "Below are two actions in the video:\nAction A. throwing grass in the garbage\nAction B. throwing a rake\n",
"Correct Answer": "AB"
},
"542": {
"video": "vcCwvRYqU2I_clip_4_5",
"Question": "Below are two actions in the video:\nAction A. picking up and smelling a twig\nAction B. throwing grass in the garbage\n",
"Correct Answer": "BA"
},
"543": {
"video": "xK8bGXuXO_Y_clip_1_2",
"Question": "Below are two actions in the video:\nAction A. cutting the onions into rings\nAction B. adding ingredients to a bowl and whisking them well\n",
"Correct Answer": "AB"
},
"544": {
"video": "17ODXa4CEmI_clip_3_5",
"Question": "Below are two actions in the video:\nAction A. pouring lemonade to cups\nAction B. squeezing lemons\n",
"Correct Answer": "BA"
},
"545": {
"video": "j4YrzUjxAp8_clip_5_6",
"Question": "Below are two actions in the video:\nAction A. vacuuming the liquid in a sink\nAction B. scrubbing and drying a tiled floor\n",
"Correct Answer": "BA"
},
"546": {
"video": "j4YrzUjxAp8_clip_3_6",
"Question": "Below are two actions in the video:\nAction A. vacuuming a carpet\nAction B. vacuuming the liquid in a sink\n",
"Correct Answer": "AB"
},
"547": {
"video": "Ghn26BIbbvE_clip_2_3",
"Question": "Below are two actions in the video:\nAction A. adding radish to a pan of hot oil and seasoning it\nAction B. adding various seasonings to a bowl of spinach\n",
"Correct Answer": "BA"
},
"548": {
"video": "D9A_9FH7e-A_clip_4_6",
"Question": "Below are two actions in the video:\nAction A. creating a nail polish design in water\nAction B. applying a clear coat over fingernails\n",
"Correct Answer": "AB"
},
"549": {
"video": "RE3QHbz2SH4_clip_3_4",
"Question": "Below are two actions in the video:\nAction A. shaping the mixture into small patties\nAction B. mashing the potatoes\n",
"Correct Answer": "BA"
},
"550": {
"video": "B09O9Nfwm_s_clip_3_4",
"Question": "Below are two actions in the video:\nAction A. adding eggs and milk and mixing them\nAction B. cutting hotdogs and inserting skewers\n",
"Correct Answer": "AB"
},
"551": {
"video": "JWFJGkUKVfk_clip_2_4",
"Question": "Below are two actions in the video:\nAction A. welding\nAction B. chiseling and beating rust off\n",
"Correct Answer": "AB"
},
"552": {
"video": "rsJUOsr1u3o_clip_2_6",
"Question": "Below are two actions in the video:\nAction A. cooking in a pan\nAction B. checking the flame\n",
"Correct Answer": "BA"
},
"553": {
"video": "rsJUOsr1u3o_clip_4_5",
"Question": "Below are two actions in the video:\nAction A. adding seasonings to the pan\nAction B. pouring liquid into a pan\n",
"Correct Answer": "AB"
},
"554": {
"video": "S5kuckj4Ud4_clip_2_6",
"Question": "Below are two actions in the video:\nAction A. changing a tire\nAction B. driving down the street\n",
"Correct Answer": "BA"
},
"555": {
"video": "p-l6as8o1f4_clip_2_3",
"Question": "Below are two actions in the video:\nAction A. riding horse\nAction B. walking with horses\n",
"Correct Answer": "BA"
},
"556": {
"video": "liI1E_ZZV5w_clip_3_4",
"Question": "Below are two actions in the video:\nAction A. tightening shoes\nAction B. standing up from the car\n",
"Correct Answer": "AB"
},
"557": {
"video": "tMheZSxPl3Q_clip_2_3",
"Question": "Below are two actions in the video:\nAction A. sanding wood by hand\nAction B. sanding a surface with an electric sander\n",
"Correct Answer": "BA"
},
"558": {
"video": "_j-0ElzS88Q_clip_13_14",
"Question": "Below are two actions in the video:\nAction A. frying the pieces in a pan\nAction B. squeezing lemon on the fried pieces\n",
"Correct Answer": "AB"
},
"559": {
"video": "RINsqxGLQdQ_clip_2_3",
"Question": "Below are two actions in the video:\nAction A. receiving certificates and awards\nAction B. windsurfing\n",
"Correct Answer": "BA"
},
"560": {
"video": "RINsqxGLQdQ_clip_1_3",
"Question": "Below are two actions in the video:\nAction A. windsurfing\nAction B. receiving certificates and awards\n",
"Correct Answer": "AB"
},
"561": {
"video": "JXCmp1jMi0w_clip_3_4",
"Question": "Below are two actions in the video:\nAction A. mixing the remaining spice with flour\nAction B. seasoning the chicken\n",
"Correct Answer": "BA"
},
"562": {
"video": "cxxiokwoVgg_clip_4_6",
"Question": "Below are two actions in the video:\nAction A. entering the car\nAction B. snowboarding\n",
"Correct Answer": "AB"
},
"563": {
"video": "fnZIksNLUXA_clip_2_6",
"Question": "Below are two actions in the video:\nAction A. scuba diving\nAction B. climbing onto the boat\n",
"Correct Answer": "AB"
},
"564": {
"video": "l7nsRRyzD4k_clip_3_5",
"Question": "Below are two actions in the video:\nAction A. a girl taking a cloth from a bag\nAction B. playing on the beach\n",
"Correct Answer": "BA"
},
"565": {
"video": "TCcopbAANQ0_clip_2_3",
"Question": "Below are two actions in the video:\nAction A. putting on a blue apron\nAction B. attaching handlebars\n",
"Correct Answer": "AB"
},
"566": {
"video": "9hR1MHvXGv8_clip_1_2",
"Question": "Below are two actions in the video:\nAction A. driving\nAction B. putting an item in the trunk of a car\n",
"Correct Answer": "BA"
},
"567": {
"video": "RZpbFG3j-Bo_clip_10_7",
"Question": "Below are two actions in the video:\nAction A. inserting a contact lens\nAction B. picking up a contact lens\n",
"Correct Answer": "AB"
},
"568": {
"video": "RZpbFG3j-Bo_clip_10_3",
"Question": "Below are two actions in the video:\nAction A. inserting a contact lens\nAction B. undergoing an eye exam\n",
"Correct Answer": "AB"
},
"569": {
"video": "0qTzoVjsMpQ_clip_3_4",
"Question": "Below are two actions in the video:\nAction A. poking holes in tin foil\nAction B. assembling a hookah\n",
"Correct Answer": "AB"
},
"570": {
"video": "OOKHi7EBNKk_clip_3_6",
"Question": "Below are two actions in the video:\nAction A. sitting on a snow tube\nAction B. pulling a snow tube\n",
"Correct Answer": "AB"
},
"571": {
"video": "ORL5yMppl8E_clip_2_7",
"Question": "Below are two actions in the video:\nAction A. stirring pasta\nAction B. boiling water\n",
"Correct Answer": "BA"
},
"572": {
"video": "H_Spgfds1iY_clip_1_3",
"Question": "Below are two actions in the video:\nAction A. interviewing a man\nAction B. playing pool\n",
"Correct Answer": "AB"
},
"573": {
"video": "H_Spgfds1iY_clip_1_4",
"Question": "Below are two actions in the video:\nAction A. playing pool\nAction B. interviewing a man\n",
"Correct Answer": "BA"
},
"574": {
"video": "SnBTp7iV2kE_clip_2_5",
"Question": "Below are two actions in the video:\nAction A. wiping face with a towel\nAction B. playing billiards\n",
"Correct Answer": "AB"
},
"575": {
"video": "UGUF_9Rt9ZE_clip_2_3",
"Question": "Below are two actions in the video:\nAction A. frying the beef and sprinkling sesame seeds over it\nAction B. slicing the beef and marinating it\n",
"Correct Answer": "BA"
},
"576": {
"video": "F-WmsfI8HG0_clip_2_7",
"Question": "Below are two actions in the video:\nAction A. operating a manual vacuum cleaner\nAction B. assembly line work\n",
"Correct Answer": "AB"
},
"577": {
"video": "DLfOiuxMstg_clip_3_5",
"Question": "Below are two actions in the video:\nAction A. talking\nAction B. wrapping a book\n",
"Correct Answer": "AB"
},
"578": {
"video": "CIPSw35iF3k_clip_1_8",
"Question": "Below are two actions in the video:\nAction A. garnishing the food with some ingredients\nAction B. slicing a potato\n",
"Correct Answer": "BA"
},
"579": {
"video": "NNEpaEq7OpI_clip_3_4",
"Question": "Below are two actions in the video:\nAction A. adding flour and mixing it\nAction B. adding flour to the dough and kneading it\n",
"Correct Answer": "AB"
},
"580": {
"video": "QQBmydn6--I_clip_3_4",
"Question": "Below are two actions in the video:\nAction A. gutting a fish\nAction B. starting a fire\n",
"Correct Answer": "BA"
},
"581": {
"video": "8gKV8f3qSOg_clip_2_3",
"Question": "Below are two actions in the video:\nAction A. washing face with face wash\nAction B. speaking to the camera\n",
"Correct Answer": "AB"
},
"582": {
"video": "8gKV8f3qSOg_clip_1_2",
"Question": "Below are two actions in the video:\nAction A. washing face with face wash\nAction B. speaking to the camera\n",
"Correct Answer": "BA"
},
"583": {
"video": "xwu60huH3ds_clip_4_6",
"Question": "Below are two actions in the video:\nAction A. blow drying a dog\nAction B. grooming a dog\n",
"Correct Answer": "AB"
},
"584": {
"video": "RnN4BXyOtxU_clip_1_2",
"Question": "Below are two actions in the video:\nAction A. pouring juice into a pot\nAction B. cutting lemons\n",
"Correct Answer": "BA"
},
"585": {
"video": "RnN4BXyOtxU_clip_2_3",
"Question": "Below are two actions in the video:\nAction A. drinking\nAction B. pouring juice into a pot\n",
"Correct Answer": "BA"
},
"586": {
"video": "c8HFew22GnI_clip_3_4",
"Question": "Below are two actions in the video:\nAction A. wakeboarding\nAction B. an award ceremony\n",
"Correct Answer": "AB"
},
"587": {
"video": "c8HFew22GnI_clip_2_4",
"Question": "Below are two actions in the video:\nAction A. wakeboarding\nAction B. an award ceremony\n",
"Correct Answer": "AB"
},
"588": {
"video": "Gpocjp7hSzU_clip_3_5",
"Question": "Below are two actions in the video:\nAction A. putting cheese and green leaves on top the pasta\nAction B. adding and mixing ingredients\n",
"Correct Answer": "BA"
},
"589": {
"video": "rlWN8PZMbfY_clip_3_6",
"Question": "Below are two actions in the video:\nAction A. dropping liquid into a contact lens\nAction B. putting a contact lens on\n",
"Correct Answer": "AB"
},
"590": {
"video": "16g-sBraeKE_clip_4_5",
"Question": "Below are two actions in the video:\nAction A. cutting nails\nAction B. applying fake nails\n",
"Correct Answer": "BA"
},
"591": {
"video": "ynpvos7UFZo_clip_3_5",
"Question": "Below are two actions in the video:\nAction A. knitting\nAction B. displaying a sweater\n",
"Correct Answer": "BA"
},
"592": {
"video": "unI7FhokvbM_clip_7_8",
"Question": "Below are two actions in the video:\nAction A. pressing the carpet down onto the ground\nAction B. sitting in front of a fireplace\n",
"Correct Answer": "AB"
},
"593": {
"video": "yGPzIGJ_2B8_clip_2_4",
"Question": "Below are two actions in the video:\nAction A. celebrating\nAction B. sharpening a blade\n",
"Correct Answer": "BA"
},
"594": {
"video": "-lMphXmWvbk_clip_1_2",
"Question": "Below are two actions in the video:\nAction A. preparing and tying a herb sachet\nAction B. placing various ingredients in a big bowl\n",
"Correct Answer": "AB"
},
"595": {
"video": "G4fSvtn1HAw_clip_2_5",
"Question": "Below are two actions in the video:\nAction A. baking cookies\nAction B. cutting chocolate bars\n",
"Correct Answer": "BA"
},
"596": {
"video": "G4fSvtn1HAw_clip_3_5",
"Question": "Below are two actions in the video:\nAction A. melting butter in the microwave\nAction B. baking cookies\n",
"Correct Answer": "AB"
},
"597": {
"video": "Y97KgwAmdrU_clip_2_3",
"Question": "Below are two actions in the video:\nAction A. making cookie dough\nAction B. baking cookies\n",
"Correct Answer": "AB"
},
"598": {
"video": "dLOwmXV_yTw_clip_1_3",
"Question": "Below are two actions in the video:\nAction A. wrapping a gift\nAction B. shopping in a store\n",
"Correct Answer": "BA"
},
"599": {
"video": "XQ4owd3yQ_4_clip_1_3",
"Question": "Below are two actions in the video:\nAction A. pushing a table into the sand\nAction B. surfing on a table\n",
"Correct Answer": "AB"
},
"600": {
"video": "mDqiAEB4Ads_clip_3_6",
"Question": "Below are two actions in the video:\nAction A. cutting a tile and sanding it\nAction B. wiping down wooden floorboards\n",
"Correct Answer": "BA"
}
} |