File size: 103,226 Bytes
0a57e80 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 | [
{
"video": "1034419625.mp4",
"question": "What is the man doing in the video?",
"candidates": [
"dunking a basketball",
"dribbling a basketball",
"passing a basketball"
],
"answer": "dunking a basketball"
},
{
"video": "1034419625.mp4",
"question": "Which activity is the man engaged in?",
"candidates": [
"passing a basketball",
"dribbling a basketball",
"dunking a basketball"
],
"answer": "dunking a basketball"
},
{
"video": "1034419625.mp4",
"question": "What action is the man performing?",
"candidates": [
"dribbling a basketball",
"dunking a basketball",
"passing a basketball"
],
"answer": "dunking a basketball"
},
{
"video": "1034419625.mp4",
"question": "Which of the following actions describes the man?",
"candidates": [
"dribbling a basketball",
"passing a basketball",
"dunking a basketball"
],
"answer": "dunking a basketball"
},
{
"video": "1094590221.mp4",
"question": "What is the man doing in the video?",
"candidates": [
"dribbling basketball",
"passing basketball",
"shooting basketball",
"dunking basketball"
],
"answer": "shooting basketball"
},
{
"video": "1094590221.mp4",
"question": "What activity is depicted in the video?",
"candidates": [
"shooting basketball",
"dribbling basketball",
"dunking basketball",
"passing basketball"
],
"answer": "shooting basketball"
},
{
"video": "1094590221.mp4",
"question": "Which action is being performed by the man?",
"candidates": [
"dunking basketball",
"dribbling basketball",
"painting",
"shooting basketball"
],
"answer": "shooting basketball"
},
{
"video": "1094590221.mp4",
"question": "What is the main action of the man in the video?",
"candidates": [
"dribbling basketball",
"shooting basketball",
"dunking basketball",
"passing basketball"
],
"answer": "shooting basketball"
},
{
"video": "1094590221.mp4",
"question": "In the video, what is the man engaged in?",
"candidates": [
"passing basketball",
"shooting basketball",
"dunking basketball",
"dribbling basketball"
],
"answer": "shooting basketball"
},
{
"video": "1098982673.mp4",
"question": "What is the woman doing?",
"candidates": [
"Eating and singing",
"Dancing and singing",
"Sleeping and singing",
"Running and singing"
],
"answer": "Dancing and singing"
},
{
"video": "1098982673.mp4",
"question": "What can be observed about the woman?",
"candidates": [
"She is cooking meal",
"She is dancing and singing",
"She is washing dishes",
"She is walking"
],
"answer": "She is dancing and singing"
},
{
"video": "1098982673.mp4",
"question": "In the video, what actions is the woman involved in?",
"candidates": [
"Cooking",
"Jumping",
"Dancing and singing",
"Doing laundry"
],
"answer": "Dancing and singing"
},
{
"video": "1111657885.mp4",
"question": "What are the people doing?",
"candidates": [
"skiing",
"ice skating",
"swimming"
],
"answer": "ice skating"
},
{
"video": "1111657885.mp4",
"question": "What sport are the people engaged in?",
"candidates": [
"tennis",
"soccer",
"ice skating"
],
"answer": "ice skating"
},
{
"video": "1111657885.mp4",
"question": "What activity can be observed in the video?",
"candidates": [
"dancing",
"painting",
"ice skating"
],
"answer": "ice skating"
},
{
"video": "1111657885.mp4",
"question": "Which action are the people performing?",
"candidates": [
"ice skating",
"playing guitar",
"playing basketball"
],
"answer": "ice skating"
},
{
"video": "1111657885.mp4",
"question": "What is the action being performed by the individuals?",
"candidates": [
"ice skating",
"yoga",
"running"
],
"answer": "ice skating"
},
{
"video": "1073873933.mp4",
"question": "What is happening in the video?",
"candidates": [
"eating",
"fighting",
"sleeping",
"dancing"
],
"answer": "fighting"
},
{
"video": "1073873933.mp4",
"question": "What activity is the monkey engaged in?",
"candidates": [
"swimming",
"running",
"climbing",
"fighting"
],
"answer": "fighting"
},
{
"video": "1073873933.mp4",
"question": "What is the main action of the monkey?",
"candidates": [
"reading",
"hiding",
"painting",
"fighting"
],
"answer": "fighting"
},
{
"video": "1073873933.mp4",
"question": "Which action is depicted by the monkey?",
"candidates": [
"singing",
"fighting",
"knitting",
"playing chess"
],
"answer": "fighting"
},
{
"video": "1073873933.mp4",
"question": "What activity is the monkey participating in?",
"candidates": [
"fishing",
"skiing",
"shopping",
"fighting"
],
"answer": "fighting"
},
{
"video": "1089810425.mp4",
"question": "What are the people doing?",
"candidates": [
"cooking",
"sleeping",
"dancing"
],
"answer": "dancing"
},
{
"video": "1089810425.mp4",
"question": "What activity are the people engaged in?",
"candidates": [
"swimming",
"dancing",
"painting"
],
"answer": "dancing"
},
{
"video": "1089810425.mp4",
"question": "Which action are the people performing?",
"candidates": [
"singing",
"dancing",
"reading"
],
"answer": "dancing"
},
{
"video": "1089810425.mp4",
"question": "What is the activity of the people?",
"candidates": [
"dancing",
"running",
"studying"
],
"answer": "dancing"
},
{
"video": "1089810425.mp4",
"question": "What are the people participating in?",
"candidates": [
"dancing",
"knitting",
"playing football"
],
"answer": "dancing"
},
{
"video": "1077507593.mp4",
"question": "What are the people doing in the video?",
"candidates": [
"sleeping",
"eating",
"dancing",
"cooking"
],
"answer": "cooking"
},
{
"video": "1077507593.mp4",
"question": "Which activity can be seen in the video?",
"candidates": [
"painting",
"reading",
"cooking",
"swimming"
],
"answer": "cooking"
},
{
"video": "1077507593.mp4",
"question": "What is the action being performed by the individuals?",
"candidates": [
"writing",
"singing",
"running",
"cooking"
],
"answer": "cooking"
},
{
"video": "1077507593.mp4",
"question": "What can you observe the people doing in the footage?",
"candidates": [
"playing sports",
"studying",
"cooking",
"shopping"
],
"answer": "cooking"
},
{
"video": "1077507593.mp4",
"question": "Which verb best describes the action of the people?",
"candidates": [
"sleeping",
"cooking",
"talking",
"driving"
],
"answer": "cooking"
},
{
"video": "1107116885.mp4",
"question": "What activity is the man engaged in?",
"candidates": [
"swimming",
"shooting an arrow",
"running"
],
"answer": "shooting an arrow"
},
{
"video": "1107116885.mp4",
"question": "Which sport is the man participating in?",
"candidates": [
"soccer",
"archery",
"basketball"
],
"answer": "archery"
},
{
"video": "1107116885.mp4",
"question": "What action is being performed by the man?",
"candidates": [
"dancing",
"shooting an arrow",
"singing"
],
"answer": "shooting an arrow"
},
{
"video": "1107116885.mp4",
"question": "What is the man doing with the bow?",
"candidates": [
"throwing it away",
"playing it like a guitar",
"shooting an arrow"
],
"answer": "shooting an arrow"
},
{
"video": "1107116885.mp4",
"question": "In the given footage, what is the man involved in?",
"candidates": [
"cooking",
"painting",
"shooting an arrow"
],
"answer": "shooting an arrow"
},
{
"video": "1100329207.mp4",
"question": "What is the sheep doing?",
"candidates": [
"running",
"sleeping",
"eating grass"
],
"answer": "running"
},
{
"video": "1100329207.mp4",
"question": "Which of the following actions is the sheep engaged in?",
"candidates": [
"swimming",
"flying",
"running"
],
"answer": "running"
},
{
"video": "1100329207.mp4",
"question": "In the video, what action can be seen performed by the sheep?",
"candidates": [
"running",
"knitting",
"typing on a keyboard"
],
"answer": "running"
},
{
"video": "1100329207.mp4",
"question": "From the given information, which action is being exhibited by the sheep?",
"candidates": [
"dancing",
"running",
"reading a book"
],
"answer": "running"
},
{
"video": "1100329207.mp4",
"question": "What is the activity showcased in the video involving the sheep?",
"candidates": [
"painting",
"running",
"playing a musical instrument"
],
"answer": "running"
},
{
"video": "1089201973.mp4",
"question": "What are the people doing in the video?",
"candidates": [
"stopping football",
"kicking football",
"throwing football",
"spinning football"
],
"answer": "kicking football"
},
{
"video": "1089201973.mp4",
"question": "What activity are the people engaged in?",
"candidates": [
"stopping football",
"kicking football",
"spinning football",
"throwing football"
],
"answer": "kicking football"
},
{
"video": "1089201973.mp4",
"question": "Which action are the people performing?",
"candidates": [
"kicking football",
"throwing football",
"spinning football",
"stopping football"
],
"answer": "kicking football"
},
{
"video": "1089201973.mp4",
"question": "What is the movement of the people?",
"candidates": [
"stopping football",
"kicking football",
"throwing football",
"spinning football"
],
"answer": "kicking football"
},
{
"video": "1089201973.mp4",
"question": "Which sport are the people participating in?",
"candidates": [
"kicking football",
"stopping football",
"throwing football",
"spinning football"
],
"answer": "kicking football"
},
{
"video": "1034736653.mp4",
"question": "What are the woman athletes doing?",
"candidates": [
"cycling",
"swimming",
"running",
"dancing"
],
"answer": "running"
},
{
"video": "1034736653.mp4",
"question": "What is the primary action of the woman athletes?",
"candidates": [
"running",
"reading",
"singing",
"cooking"
],
"answer": "running"
},
{
"video": "1034736653.mp4",
"question": "What activity are the woman athletes engaged in?",
"candidates": [
"skiing",
"running",
"painting",
"playing basketball"
],
"answer": "running"
},
{
"video": "1034736653.mp4",
"question": "What sport are the woman athletes participating in?",
"candidates": [
"running",
"gardening",
"knitting",
"soccer"
],
"answer": "running"
},
{
"video": "1034736653.mp4",
"question": "Which action are the woman athletes performing?",
"candidates": [
"writing",
"running",
"driving",
"shopping"
],
"answer": "running"
},
{
"video": "1084153195.mp4",
"question": "What are the dolphins doing in the water?",
"candidates": [
"Diving",
"Swimming",
"Sleeping",
"Jumping"
],
"answer": "Swimming"
},
{
"video": "1084153195.mp4",
"question": "Which activity can be observed in the dolphins?",
"candidates": [
"Dancing",
"Swimming",
"Climbing",
"Diving"
],
"answer": "Swimming"
},
{
"video": "1084153195.mp4",
"question": "What is the action of the dolphins in the video?",
"candidates": [
"Swimming",
"Jumping",
"Flying",
"Reading"
],
"answer": "Swimming"
},
{
"video": "1054717541.mp4",
"question": "What is the person doing?",
"candidates": [
"cutting dough",
"kneading dough",
"grilling dough"
],
"answer": "kneading dough"
},
{
"video": "1054717541.mp4",
"question": "Which action is the person performing?",
"candidates": [
"kneading dough",
"cutting dough",
"grilling dough"
],
"answer": "kneading dough"
},
{
"video": "1054717541.mp4",
"question": "In the video, what is the person engaged in?",
"candidates": [
"grilling dough",
"kneading dough",
"cutting dough"
],
"answer": "kneading dough"
},
{
"video": "1054717541.mp4",
"question": "What activity is the person involved in?",
"candidates": [
"kneading dough",
"grilling dough",
"cutting dough"
],
"answer": "kneading dough"
},
{
"video": "1054717541.mp4",
"question": "What action is demonstrated by the person?",
"candidates": [
"grilling dough",
"kneading dough",
"cutting dough"
],
"answer": "kneading dough"
},
{
"video": "1059462749.mp4",
"question": "Which action is being performed by the person?",
"candidates": [
"reading a book",
"cooking",
"climbing down a ladder",
"riding a bike"
],
"answer": "climbing down a ladder"
},
{
"video": "1059462749.mp4",
"question": "What activity is taking place with the person?",
"candidates": [
"playing soccer",
"painting a picture",
"dancing",
"climbing down a ladder"
],
"answer": "climbing down a ladder"
},
{
"video": "1059462749.mp4",
"question": "What is the main action of the person in the video?",
"candidates": [
"playing basketball",
"climbing down a ladder",
"singing",
"running"
],
"answer": "climbing down a ladder"
},
{
"video": "1059462749.mp4",
"question": "Which of the following actions is being demonstrated by the person?",
"candidates": [
"climbing down a ladder",
"playing guitar",
"writing a letter",
"sleeping"
],
"answer": "climbing down a ladder"
},
{
"video": "1077590324.mp4",
"question": "What is the woman doing in the video?",
"candidates": [
"doing laundry",
"cooking",
"singing"
],
"answer": "doing laundry"
},
{
"video": "1077590324.mp4",
"question": "What activity is the woman engaged in?",
"candidates": [
"dancing",
"doing laundry",
"painting"
],
"answer": "doing laundry"
},
{
"video": "1077590324.mp4",
"question": "Which action is the woman performing?",
"candidates": [
"swimming",
"doing laundry",
"hiking"
],
"answer": "doing laundry"
},
{
"video": "1077590324.mp4",
"question": "What task is the woman involved in?",
"candidates": [
"knitting",
"doing laundry",
"gardening"
],
"answer": "doing laundry"
},
{
"video": "1077590324.mp4",
"question": "Which action is depicted in the video?",
"candidates": [
"reading",
"sleeping",
"doing laundry"
],
"answer": "doing laundry"
},
{
"video": "1040541401.mp4",
"question": "What are the children doing?",
"candidates": [
"painting pictures",
"reading books",
"doing chemical experiments",
"playing soccer"
],
"answer": "doing chemical experiments"
},
{
"video": "1040541401.mp4",
"question": "What activities are the children engaged in?",
"candidates": [
"playing chess",
"doing chemical experiments",
"swimming in the pool",
"dancing ballet"
],
"answer": "doing chemical experiments"
},
{
"video": "1040541401.mp4",
"question": "Which action are the children involved in?",
"candidates": [
"building sandcastles",
"baking cookies",
"doing chemical experiments",
"playing hide and seek"
],
"answer": "doing chemical experiments"
},
{
"video": "1040541401.mp4",
"question": "What is the main action performed by the children?",
"candidates": [
"doing chemical experiments",
"flying kites",
"jumping on the trampoline",
"riding bicycles"
],
"answer": "doing chemical experiments"
},
{
"video": "1040541401.mp4",
"question": "In which activity are the children participating?",
"candidates": [
"singing in a choir",
"acting in a play",
"doing chemical experiments",
"playing video games"
],
"answer": "doing chemical experiments"
},
{
"video": "1064645467.mp4",
"question": "What is the man doing?",
"candidates": [
"cooking",
"reading a book",
"exercising",
"watching TV"
],
"answer": "exercising"
},
{
"video": "1064645467.mp4",
"question": "Which activity is the man engaged in?",
"candidates": [
"dancing",
"doing exercise",
"swimming",
"painting"
],
"answer": "doing exercise"
},
{
"video": "1064645467.mp4",
"question": "In the video, what is the man involved in?",
"candidates": [
"knitting",
"doing yoga",
"horseback riding",
"exercising intensively"
],
"answer": "exercising intensively"
},
{
"video": "1064645467.mp4",
"question": "What activity is the man participating in?",
"candidates": [
"exercising",
"playing chess",
"gardening",
"business activity"
],
"answer": "exercising"
},
{
"video": "1105233293.mp4",
"question": "What are the people doing in the video?",
"candidates": [
"swimming",
"dancing",
"playing basketball"
],
"answer": "playing basketball"
},
{
"video": "1105233293.mp4",
"question": "What activity are the people engaged in?",
"candidates": [
"playing basketball",
"sleeping",
"eating"
],
"answer": "playing basketball"
},
{
"video": "1105233293.mp4",
"question": "Which sport are the people participating in?",
"candidates": [
"playing basketball",
"soccer",
"tennis"
],
"answer": "playing basketball"
},
{
"video": "1105233293.mp4",
"question": "What is the action of the people in the footage?",
"candidates": [
"playing basketball",
"reading",
"writing"
],
"answer": "playing basketball"
},
{
"video": "1105233293.mp4",
"question": "In the video, what are the people actively involved in?",
"candidates": [
"painting",
"shopping",
"playing basketball"
],
"answer": "playing basketball"
},
{
"video": "1077146132.mp4",
"question": "What is the woman doing in the video?",
"candidates": [
"waking up",
"tossing and turning in the bed",
"falling asleep"
],
"answer": "waking up"
},
{
"video": "1077146132.mp4",
"question": "What action is the woman performing?",
"candidates": [
"waking up",
"tossing and turning in the bed",
"falling asleep"
],
"answer": "waking up"
},
{
"video": "1077146132.mp4",
"question": "Which of the following actions is the woman engaged in?",
"candidates": [
"tossing and turning in the bed",
"waking up",
"falling asleep"
],
"answer": "waking up"
},
{
"video": "1077146132.mp4",
"question": "In the video, what is the woman's activity?",
"candidates": [
"waking up",
"tossing and turning in the bed",
"falling asleep"
],
"answer": "waking up"
},
{
"video": "1077146132.mp4",
"question": "What action is depicted in the video?",
"candidates": [
"falling asleep",
"waking up",
"tossing and turning in the bed"
],
"answer": "waking up"
},
{
"video": "1096612823.mp4",
"question": "In the video, what can be observed about the car's movement?",
"candidates": [
"sliding on ice",
"dancing on the rooftop",
"buried in the sand",
"driving on the road"
],
"answer": "driving on the road"
},
{
"video": "1096612823.mp4",
"question": "What is happening to the car?",
"candidates": [
"driving on the road",
"being fixed",
"sleeping"
],
"answer": "driving on the road"
},
{
"video": "1096612823.mp4",
"question": "What is the car doing in the scene?",
"candidates": [
"flying in the sky",
"swimming in the ocean",
"parked on the sidewalk",
"driving on the road"
],
"answer": "driving on the road"
},
{
"video": "1090578917.mp4",
"question": "What is the man doing?",
"candidates": [
"playing soccer",
"painting a picture",
"reading a book",
"cooking dinner"
],
"answer": "playing soccer"
},
{
"video": "1090578917.mp4",
"question": "What activity is the man engaged in?",
"candidates": [
"playing soccer",
"dancing",
"singing",
"swimming"
],
"answer": "playing soccer"
},
{
"video": "1090578917.mp4",
"question": "What sport is the man participating in?",
"candidates": [
"volleyball",
"basketball",
"soccer",
"tennis"
],
"answer": "soccer"
},
{
"video": "1090578917.mp4",
"question": "What recreational activity is the man involved in?",
"candidates": [
"playing chess",
"gardening",
"hiking",
"playing soccer"
],
"answer": "playing soccer"
},
{
"video": "1090578917.mp4",
"question": "In what physical activity is the man actively involved?",
"candidates": [
"playing soccer",
"weightlifting",
"biking",
"jogging"
],
"answer": "playing soccer"
},
{
"video": "23391142.mp4",
"question": "What are the people doing in the video?",
"candidates": [
"dancing",
"playing badminton",
"reading books"
],
"answer": "playing badminton"
},
{
"video": "23391142.mp4",
"question": "What activity are the people engaged in?",
"candidates": [
"swimming",
"playing badminton",
"playing soccer"
],
"answer": "playing badminton"
},
{
"video": "23391142.mp4",
"question": "Which of the following activities are the people participating in?",
"candidates": [
"playing badminton",
"hiking",
"baking cookies"
],
"answer": "playing badminton"
},
{
"video": "23391142.mp4",
"question": "What action can be seen in the video?",
"candidates": [
"knitting",
"playing badminton",
"painting"
],
"answer": "playing badminton"
},
{
"video": "23391142.mp4",
"question": "What is happening in the video?",
"candidates": [
"sleeping",
"singing",
"playing badminton"
],
"answer": "playing badminton"
},
{
"video": "1078368947.mp4",
"question": "What is the woman doing in the bathroom?",
"candidates": [
"reading a book while taking a shower",
"writing letter while taking a bath",
"reading a book while taking a bath"
],
"answer": "reading a book while taking a bath"
},
{
"video": "1078368947.mp4",
"question": "What activity is the woman engaged in?",
"candidates": [
"reading a book while taking a bath",
"listening to music while taking a bath",
"drinking wine while taking a bath"
],
"answer": "reading a book while taking a bath"
},
{
"video": "1078368947.mp4",
"question": "Which of the following actions is the woman involved in?",
"candidates": [
"washing her hair while taking a bath",
"reading a book while taking a bath",
"washing her face while taking a bath"
],
"answer": "reading a book while taking a bath"
},
{
"video": "1085910917.mp4",
"question": "What is the woman doing in the video?",
"candidates": [
"drinking",
"sleeping",
"dancing"
],
"answer": "drinking"
},
{
"video": "1085910917.mp4",
"question": "What activity is the woman engaged in?",
"candidates": [
"running",
"drinking",
"cooking"
],
"answer": "drinking"
},
{
"video": "1085910917.mp4",
"question": "In the video, what is the action performed by the woman?",
"candidates": [
"reading",
"swimming",
"drinking"
],
"answer": "drinking"
},
{
"video": "1085910917.mp4",
"question": "What behavior is exhibited by the woman?",
"candidates": [
"drinking",
"eating",
"talking"
],
"answer": "drinking"
},
{
"video": "1085910917.mp4",
"question": "Which of the following actions is being carried out by the woman?",
"candidates": [
"drawing",
"drinking",
"walking"
],
"answer": "drinking"
},
{
"video": "1058907236.mp4",
"question": "What is the squirrel doing in the park?",
"candidates": [
"Sleeping",
"Swimming",
"Foraging",
"Dancing"
],
"answer": "Foraging"
},
{
"video": "1058907236.mp4",
"question": "What action is the squirrel performing?",
"candidates": [
"Running around",
"Taking a rest",
"Foraging for mushroom",
"Foraging for nuts"
],
"answer": "Foraging for nuts"
},
{
"video": "1058907236.mp4",
"question": "What is the main activity of the squirrel?",
"candidates": [
"Building a nest",
"Foraging for nuts",
"Hibernating",
"Jumping"
],
"answer": "Foraging for nuts"
},
{
"video": "1081513610.mp4",
"question": "What is the man doing in the video?",
"candidates": [
"swimming",
"discussing",
"sleeping",
"running"
],
"answer": "discussing"
},
{
"video": "1081513610.mp4",
"question": "What action is the man performing?",
"candidates": [
"discussing",
"reading",
"cooking",
"dancing"
],
"answer": "discussing"
},
{
"video": "1081513610.mp4",
"question": "Which activity is the man engaged in?",
"candidates": [
"singing",
"playing basketball",
"discussing",
"painting"
],
"answer": "discussing"
},
{
"video": "1081513610.mp4",
"question": "What is the man occupied with?",
"candidates": [
"discussing",
"shopping",
"working out",
"gardening"
],
"answer": "discussing"
},
{
"video": "1081513610.mp4",
"question": "What does the man participate in?",
"candidates": [
"biking",
"hiking",
"fishing",
"discussing"
],
"answer": "discussing"
},
{
"video": "1073831006.mp4",
"question": "What are the zebras doing in the video?",
"candidates": [
"swimming",
"sleeping",
"running"
],
"answer": "running"
},
{
"video": "1073831006.mp4",
"question": "Which of the following actions are the zebras performing?",
"candidates": [
"running",
"jumping",
"eating"
],
"answer": "running"
},
{
"video": "1073831006.mp4",
"question": "In the video, what can we see the zebras doing?",
"candidates": [
"running",
"standing still",
"drinking water"
],
"answer": "running"
},
{
"video": "1069338034.mp4",
"question": "What are the elephants doing in the video?",
"candidates": [
"eating and drinking",
"sleeping and resting",
"eating and playing"
],
"answer": "eating and drinking"
},
{
"video": "1069338034.mp4",
"question": "Which action is observed in the video?",
"candidates": [
"swimming and taking bath",
"swimming and drinking",
"eating and drinking"
],
"answer": "eating and drinking"
},
{
"video": "1069338034.mp4",
"question": "What activity are the elephants engaged in?",
"candidates": [
"swimming and cleaning themselves",
"eating and drinking",
"swimming and resting"
],
"answer": "eating and drinking"
},
{
"video": "1076880707.mp4",
"question": "What is the bear doing near the tree?",
"candidates": [
"eating honey",
"climbing a tree",
"scratching against a tree"
],
"answer": "scratching against a tree"
},
{
"video": "1076880707.mp4",
"question": "What activity is the bear engaged in?",
"candidates": [
"climbing a tree",
"taking a nap under the tree",
"scratching against a tree"
],
"answer": "scratching against a tree"
},
{
"video": "1076880707.mp4",
"question": "Which action can be seen in the video?",
"candidates": [
"scratching against a tree",
"sleeping against the tree",
"eating under the tree"
],
"answer": "scratching against a tree"
},
{
"video": "1024867412.mp4",
"question": "What is the dog doing in the video?",
"candidates": [
"eating",
"driving a car",
"sleeping",
"barking"
],
"answer": "driving a car"
},
{
"video": "1024867412.mp4",
"question": "Which activity is the dog engaged in?",
"candidates": [
"reading a book",
"swimming",
"cooking",
"driving a car"
],
"answer": "driving a car"
},
{
"video": "1024867412.mp4",
"question": "What action is the dog performing?",
"candidates": [
"painting",
"dancing",
"driving a car",
"singing"
],
"answer": "driving a car"
},
{
"video": "1024867412.mp4",
"question": "What can be seen in the video involving the dog?",
"candidates": [
"driving a car",
"flying a kite",
"running",
"playing soccer"
],
"answer": "driving a car"
},
{
"video": "1024867412.mp4",
"question": "Which of the following actions is being carried out by the dog?",
"candidates": [
"building a sandcastle",
"driving a car",
"riding a bike",
"knitting"
],
"answer": "driving a car"
},
{
"video": "1076877854.mp4",
"question": "What are the robots doing in the field?",
"candidates": [
"caring for seedlings",
"watering plants",
"harvesting crops",
"plowing the soil"
],
"answer": "caring for seedlings"
},
{
"video": "1076877854.mp4",
"question": "Which task are the robots performing?",
"candidates": [
"cooking dinner",
"building houses",
"caring for seedlings",
"repairing cars"
],
"answer": "caring for seedlings"
},
{
"video": "1076877854.mp4",
"question": "What action are the robots engaged in?",
"candidates": [
"cleaning tables",
"caring for seedlings",
"playing chess",
"cooking meals"
],
"answer": "caring for seedlings"
},
{
"video": "1104673225.mp4",
"question": "What is the woman doing in the video?",
"candidates": [
"wrapping up salad",
"throwing away salad",
"eating salad",
"making salad"
],
"answer": "eating salad"
},
{
"video": "1104673225.mp4",
"question": "What activity is the woman engaged in?",
"candidates": [
"wrapping up salad",
"eating salad",
"making salad",
"drinking vegetable juice"
],
"answer": "eating salad"
},
{
"video": "1104673225.mp4",
"question": "Which action is the woman involved in?",
"candidates": [
"drinking vegetable juice",
"making salad",
"wrapping up salad",
"eating salad"
],
"answer": "eating salad"
},
{
"video": "3411806181.mp4",
"question": "What is the person doing in the video?",
"candidates": [
"recharging an electric vehicle",
"cleaning an electric vehicle",
"repairing an electric vehicle"
],
"answer": "recharging an electric vehicle"
},
{
"video": "3411806181.mp4",
"question": "What activity is the person engaged in?",
"candidates": [
"repairing an EV",
"cleaning an EV",
"recharging an EV"
],
"answer": "recharging an EV"
},
{
"video": "3411806181.mp4",
"question": "Which of the following actions is the person involved in?",
"candidates": [
"driving an electric vehicle",
"fueling a car",
"recharging an electric vehicle",
"cleaning an electric vehicle"
],
"answer": "recharging an electric vehicle"
},
{
"video": "1096238125.mp4",
"question": "What are the man and woman doing in the video?",
"candidates": [
"doing sit-ups",
"jumping rope",
"lifting weights",
"doing push-ups"
],
"answer": "lifting weights"
},
{
"video": "1096238125.mp4",
"question": "How would you describe the action performed by the man and woman?",
"candidates": [
"doing push-ups",
"lifting kettlebell",
"running",
"jumping rope"
],
"answer": "lifting kettlebell"
},
{
"video": "1096238125.mp4",
"question": "Which activity are the man and woman engaged in?",
"candidates": [
"playing tennis",
"doing bench press",
"lifting kettlebell",
"doing push-ups"
],
"answer": "lifting kettlebell"
},
{
"video": "1103088481.mp4",
"question": "What is the person doing in the market?",
"candidates": [
"selling vegetables",
"packaging vegetables",
"cooking vegetables",
"buying vegetables"
],
"answer": "buying vegetables"
},
{
"video": "1103088481.mp4",
"question": "What activity is the person engaged in at the grocery store?",
"candidates": [
"packaging vegetables",
"cooking vegetables",
"selling vegetables",
"buying vegetables"
],
"answer": "buying vegetables"
},
{
"video": "1103088481.mp4",
"question": "What is the individual doing in the video?",
"candidates": [
"buying vegetables",
"eating vegetables",
"packaging vegetables",
"selling vegetables"
],
"answer": "buying vegetables"
},
{
"video": "1098970151.mp4",
"question": "What is the cat doing in the video?",
"candidates": [
"licking its paw",
"washing its face",
"waving its paw",
"licking its belly"
],
"answer": "licking its paw"
},
{
"video": "1098970151.mp4",
"question": "Which body part of the cat is it licking?",
"candidates": [
"nose",
"ears",
"paws",
"tail"
],
"answer": "paws"
},
{
"video": "1098970151.mp4",
"question": "What is the cat doing with its paw?",
"candidates": [
"licking its paw",
"waving its paw",
"watching its paw",
"biting its paw"
],
"answer": "licking its paw"
},
{
"video": "1098710341.mp4",
"question": "What is the person doing in the video?",
"candidates": [
"drinking water from a glass",
"pouring water into a glass",
"washing hands with water",
"spilling water on the floor"
],
"answer": "pouring water into a glass"
},
{
"video": "1098710341.mp4",
"question": "Which action is the person performing?",
"candidates": [
"drinking water from a glass",
"stirring water in a bowl",
"pouring water into a glass",
"adding water into a pot"
],
"answer": "pouring water into a glass"
},
{
"video": "1098710341.mp4",
"question": "What action is being performed by the person?",
"candidates": [
"washing hands with water",
"spilling water on the floor",
"drinking water from a glass",
"pouring water into a glass"
],
"answer": "pouring water into a glass"
},
{
"video": "1062736174.mp4",
"question": "What is the chef doing in the video?",
"candidates": [
"chopping steak",
"sprinkling vegetables on steak",
"sprinkling salt on steak",
"grilling steak"
],
"answer": "sprinkling salt on steak"
},
{
"video": "1062736174.mp4",
"question": "Which action is the chef performing on the steak?",
"candidates": [
"flipping the steak",
"pouring water",
"sprinkling salt",
"seasoning with pepper"
],
"answer": "sprinkling salt"
},
{
"video": "1062736174.mp4",
"question": "What is the chef's activity related to the steak?",
"candidates": [
"marinating with spices",
"sprinkling salt on it",
"cutting into slices",
"serving with salad"
],
"answer": "sprinkling salt on it"
},
{
"video": "1108398787.mp4",
"question": "What type of action is the person performing?",
"candidates": [
"Chatting on a smartphone device",
"Operating system settings on a smartphone device",
"Watching videos on a smartphone device",
"Playing games on a smartphone device"
],
"answer": "Operating system settings on a smartphone device"
},
{
"video": "1108398787.mp4",
"question": "What activity is the person engaged in?",
"candidates": [
"Watching videos on a smartphone device",
"Making a phone call using a smartphone device",
"Operating system settings on a smartphone device",
"Chatting on a smartphone device"
],
"answer": "Operating system settings on a smartphone device"
},
{
"video": "1108398787.mp4",
"question": "What is the person doing with the smartphone?",
"candidates": [
"Listening to music",
"Watching a movie",
"Texting a friend",
"Operating system settings"
],
"answer": "Operating system settings"
},
{
"video": "1107034223.mp4",
"question": "What is the bear doing in the river?",
"candidates": [
"swimming",
"climbing trees",
"sleeping",
"catching fishes"
],
"answer": "catching fishes"
},
{
"video": "1107034223.mp4",
"question": "Which activity is the bear engaged in?",
"candidates": [
"hibernating",
"eating",
"fishing",
"running"
],
"answer": "fishing"
},
{
"video": "1107034223.mp4",
"question": "What is the main action of the bear?",
"candidates": [
"climbing rocks",
"drinking water",
"catching fishes",
"roaring"
],
"answer": "catching fishes"
},
{
"video": "1094782389.mp4",
"question": "What action is the dog performing in the video?",
"candidates": [
"Running towards a woman",
"Jumping towards a woman",
"Barking to a woman",
"Giving a high five to a woman"
],
"answer": "Giving a high five to a woman"
},
{
"video": "1094782389.mp4",
"question": "What activity is the dog engaged in?",
"candidates": [
"Catching food from a woman",
"Giving a high five to a woman",
"Wagging its tail at a woman",
"Licking a woman"
],
"answer": "Giving a high five to a woman"
},
{
"video": "1094782389.mp4",
"question": "Which action did the dog execute?",
"candidates": [
"Licking the woman",
"Fetching a ball thrown by the woman",
"Digging a hole",
"Giving a high five to the woman"
],
"answer": "Giving a high five to the woman"
},
{
"video": "1043487715.mp4",
"question": "What are the children doing in the video?",
"candidates": [
"diving into water",
"eating",
"sleeping"
],
"answer": "diving into water"
},
{
"video": "1043487715.mp4",
"question": "Which activity can be seen in the video involving the children?",
"candidates": [
"hiking",
"dancing",
"diving into water"
],
"answer": "diving into water"
},
{
"video": "1043487715.mp4",
"question": "What is the primary action performed by the children?",
"candidates": [
"rowing a boat",
"diving into water",
"cooking"
],
"answer": "diving into water"
},
{
"video": "1106280325.mp4",
"question": "What is the woman doing?",
"candidates": [
"hiking",
"playing guitar",
"reading book",
"dancing"
],
"answer": "reading book"
},
{
"video": "1106280325.mp4",
"question": "What activity is the woman engaged in?",
"candidates": [
"painting a picture",
"playing guitar",
"sleeping",
"reading book"
],
"answer": "reading book"
},
{
"video": "1106280325.mp4",
"question": "What can be seen in the video?",
"candidates": [
"woman reading book on the grass",
"woman sleeping on the grass",
"woman hiking in the wild",
"woman drinking water "
],
"answer": "woman reading book on the grass"
},
{
"video": "15695290.mp4",
"question": "What is the person doing?",
"candidates": [
"playing soccer",
"reading a book",
"drawing a picture"
],
"answer": "drawing a picture"
},
{
"video": "15695290.mp4",
"question": "What activity is the person engaged in?",
"candidates": [
"drawing a picture",
"dancing",
"cooking"
],
"answer": "drawing a picture"
},
{
"video": "15695290.mp4",
"question": "What is the main task of the person?",
"candidates": [
"typing on the computer",
"painting a wall",
"drawing a picture"
],
"answer": "drawing a picture"
},
{
"video": "1106899445.mp4",
"question": "What action is the person performing with the toothbrush?",
"candidates": [
"brushing teeth",
"removing toothpaste from the toothbrush",
"squeezing out toothpaste on the toothbrush"
],
"answer": "squeezing out toothpaste on the toothbrush"
},
{
"video": "1106899445.mp4",
"question": "What is the main action of the person in the video?",
"candidates": [
"removing toothpaste from the toothbrush",
"brushing teeth",
"squeezing out toothpaste on a toothbrush"
],
"answer": "squeezing out toothpaste on a toothbrush"
},
{
"video": "1106899445.mp4",
"question": "What happens in the video?",
"candidates": [
"a person is brushing teeth using the toothbrush",
"toothpaste being washed from a toothbrush",
"toothpaste being squeezed on a toothbrush"
],
"answer": "toothpaste being squeezed on a toothbrush"
},
{
"video": "1100397435.mp4",
"question": "What is the person doing in the video?",
"candidates": [
"turning off the robot vacuum cleaner",
"starts the robot vacuum cleaner",
"fixing the robot vacuum cleaner"
],
"answer": "starts the robot vacuum cleaner"
},
{
"video": "1100397435.mp4",
"question": "What action does the person perform?",
"candidates": [
"sweeping the floor",
"starts the robot vacuum cleaner",
"turning off the robot vacuum cleaner"
],
"answer": "starts the robot vacuum cleaner"
},
{
"video": "1100397435.mp4",
"question": "What activity does the person engage in?",
"candidates": [
"taking apart the robot vacuum cleaner",
"recharging the robot vacuum cleaner",
"starts the robot vacuum cleaner"
],
"answer": "starts the robot vacuum cleaner"
},
{
"video": "1034049020.mp4",
"question": "What is the woman doing in the video?",
"candidates": [
"cleaning a wall while walking",
"standing still and painting a wall",
"painting a wall while walking"
],
"answer": "painting a wall while walking"
},
{
"video": "1034049020.mp4",
"question": "What activity is taking place in the video?",
"candidates": [
"a girl standing and cleaning a wall",
"a girl is walking and cleaning a wall",
"a girl painting a wall while walking"
],
"answer": "a girl painting a wall while walking"
},
{
"video": "1034049020.mp4",
"question": "Which of the following actions is the woman performing?",
"candidates": [
"standing still and painting a wall",
"standing and cleaning a wall",
"painting a wall while walking"
],
"answer": "painting a wall while walking"
},
{
"video": "1086286649.mp4",
"question": "What are the armored vehicles doing in the video?",
"candidates": [
"Loading People",
"Parked",
"Driving",
"Firing"
],
"answer": "Driving"
},
{
"video": "1086286649.mp4",
"question": "How are the armored vehicles moving?",
"candidates": [
"Driving",
"Bouncing",
"Standing still",
"Hovering"
],
"answer": "Driving"
},
{
"video": "1086286649.mp4",
"question": "What is the main action performed by the armored vehicles?",
"candidates": [
"Firing",
"Loading People",
"Driving",
"Under Repair"
],
"answer": "Driving"
},
{
"video": "1093041749.mp4",
"question": "What is the dragon doing in the video?",
"candidates": [
"flying",
"swimming",
"breathing fire"
],
"answer": "breathing fire"
},
{
"video": "1093041749.mp4",
"question": "Which action can the dragon perform?",
"candidates": [
"breathing fire",
"eating food",
"laying eggs"
],
"answer": "breathing fire"
},
{
"video": "1093041749.mp4",
"question": "What activity does the dragon engage in?",
"candidates": [
"eating food",
"breathing fire",
"laying eggs"
],
"answer": "breathing fire"
},
{
"video": "1076180768.mp4",
"question": "What is the knight doing in the video?",
"candidates": [
"riding a horse",
"wielding a spear",
"drawing sword from sheath",
"shooting an arrow"
],
"answer": "drawing sword from sheath"
},
{
"video": "1076180768.mp4",
"question": "What action is the knight performing?",
"candidates": [
"drawing sword from sheath",
"shooting an arrow",
"raising a shield",
"putting on armor"
],
"answer": "drawing sword from sheath"
},
{
"video": "1076180768.mp4",
"question": "Which of the following actions is the knight demonstrating?",
"candidates": [
"putting on armor",
"casting a spell",
"drawing sword from sheath",
"shooting a bow and arrow"
],
"answer": "drawing sword from sheath"
},
{
"video": "3406661033.mp4",
"question": "What is the man doing in the video?",
"candidates": [
"propelling himself forward in wheelchair",
"swimming",
"walking"
],
"answer": "propelling himself forward in wheelchair"
},
{
"video": "3406661033.mp4",
"question": "Which action is the man performing?",
"candidates": [
"running",
"propelling himself forward in wheelchair",
"jumping"
],
"answer": "propelling himself forward in wheelchair"
},
{
"video": "3406661033.mp4",
"question": "How is the man moving?",
"candidates": [
"running",
"propelling himself forward in wheelchair",
"crawling"
],
"answer": "propelling himself forward in wheelchair"
},
{
"video": "3406618583.mp4",
"question": "What type of dance is the woman performing?",
"candidates": [
"hip-hop",
"salsa",
"ballet",
"freestyle dance"
],
"answer": "freestyle dance"
},
{
"video": "3406618583.mp4",
"question": "Which activity is the woman engaged in?",
"candidates": [
"ballet",
"freestyle dance",
"hip-hop",
"jazz dance"
],
"answer": "freestyle dance"
},
{
"video": "3406618583.mp4",
"question": "What is the woman demonstrating?",
"candidates": [
"freestyle dance",
"hip-hop",
"jazz dance",
"ballet"
],
"answer": "freestyle dance"
},
{
"video": "3405120819.mp4",
"question": "What is the chef doing?",
"candidates": [
"cutting dough",
"shaping dough",
"placing dough in a dish"
],
"answer": "shaping dough"
},
{
"video": "3405120819.mp4",
"question": "What action is the chef performing?",
"candidates": [
"shaping dough",
"mixing dough with water",
"cutting dough"
],
"answer": "shaping dough"
},
{
"video": "3405120819.mp4",
"question": "Which activity is the chef engaging in?",
"candidates": [
"shaping dough",
"baking dough",
"cutting dough"
],
"answer": "shaping dough"
},
{
"video": "3405088753.mp4",
"question": "What is the woman doing in the video?",
"candidates": [
"cooking soup",
"eating apple",
"buying bread",
"sleeping"
],
"answer": "buying bread"
},
{
"video": "3405088753.mp4",
"question": "What action is the woman performing in the video?",
"candidates": [
"reading a book",
"dancing",
"buying bread",
"working out"
],
"answer": "buying bread"
},
{
"video": "3405088753.mp4",
"question": "What activity is the woman engaged in?",
"candidates": [
"buying bread",
"swimming",
"painting",
"gardening"
],
"answer": "buying bread"
},
{
"video": "3401191309.mp4",
"question": "What is the athletic man doing in the video?",
"candidates": [
"putting on prosthetic running blade",
"taking off prosthetic running blade",
"repairing a prosthetic running blade"
],
"answer": "taking off prosthetic running blade"
},
{
"video": "3401191309.mp4",
"question": "Which activity is the athletic man engaged in?",
"candidates": [
"taking off prosthetic running blade",
"putting on prosthetic running blade",
"repairing a prosthetic running blade"
],
"answer": "taking off prosthetic running blade"
},
{
"video": "3401191309.mp4",
"question": "What action is the athletic man performing?",
"candidates": [
"taking off prosthetic running blade",
"repairing a prosthetic running blade",
"putting on prosthetic running blade"
],
"answer": "taking off prosthetic running blade"
},
{
"video": "21218935.mp4",
"question": "What is the woman doing?",
"candidates": [
"exercising",
"cooking",
"sleeping"
],
"answer": "exercising"
},
{
"video": "21218935.mp4",
"question": "Which activity is the woman engaged in?",
"candidates": [
"reading",
"dancing",
"exercising"
],
"answer": "exercising"
},
{
"video": "21218935.mp4",
"question": "In the video, what action is the woman performing?",
"candidates": [
"exercising",
"walking",
"painting"
],
"answer": "exercising"
},
{
"video": "5395244.mp4",
"question": "What is the woman doing near the creek?",
"candidates": [
"canoeing across the pebble creek",
"swimming across the pebble creek",
"running across the pebble creek",
"walking across the pebble creek"
],
"answer": "walking across the pebble creek"
},
{
"video": "5395244.mp4",
"question": "How is the woman interacting with the creek?",
"candidates": [
"swimming across it",
"canoeing across it",
"walking across it",
"jumping over it"
],
"answer": "walking across it"
},
{
"video": "5395244.mp4",
"question": "What activity is the woman engaged in at the moment?",
"candidates": [
"walking across the pebble creek",
"canoeing across the pebble creek",
"running across the pebble creek",
"swimming across the pebble creek"
],
"answer": "walking across the pebble creek"
},
{
"video": "1037628617.mp4",
"question": "What is the person doing?",
"candidates": [
"Pressing a keyboard key and rotating a jog dial",
"clicking button and rolling wheel on a mouse",
"Tapping a touchpad and scrolling with two fingers"
],
"answer": "clicking button and rolling wheel on a mouse"
},
{
"video": "1037628617.mp4",
"question": "What is the person's action in the video?",
"candidates": [
"Tapping a touchpad and scrolling with two fingers",
"Pressing a keyboard key and rotating a jog dial",
"clicking button and rolling wheel on a mouse"
],
"answer": "clicking button and rolling wheel on a mouse"
},
{
"video": "1037628617.mp4",
"question": "In the video, what is the person engaged in?",
"candidates": [
"Pressing a keyboard key and rotating a jog dial",
"clicking button and rolling wheel on a mouse",
"Tapping a touchpad and scrolling with two fingers"
],
"answer": "clicking button and rolling wheel on a mouse"
},
{
"video": "1066801717.mp4",
"question": "What is the woman doing in the video?",
"candidates": [
"watering bouquet of daffodils",
"arranging bouquet of daffodils",
"cutting bouquet of daffodils"
],
"answer": "arranging bouquet of daffodils"
},
{
"video": "1066801717.mp4",
"question": "Which action is being performed by the woman?",
"candidates": [
"cutting bouquet of daffodils",
"arranging bouquet of daffodils",
"watering bouquet of daffodils"
],
"answer": "arranging bouquet of daffodils"
},
{
"video": "1066801717.mp4",
"question": "What activity can be seen in the video involving the woman?",
"candidates": [
"arranging bouquet of daffodils",
"watering bouquet of daffodils",
"cutting bouquet of daffodils"
],
"answer": "arranging bouquet of daffodils"
},
{
"video": "1088428381.mp4",
"question": "What is the woman doing in the video?",
"candidates": [
"storing items in a gift box",
"opening a gift box",
"wrapping a gift box",
"delivering a gift box"
],
"answer": "opening a gift box"
},
{
"video": "1088428381.mp4",
"question": "What action is the woman performing?",
"candidates": [
"wrapping a gift box",
"delivering a gift box",
"opening a gift box",
"storing items in a gift box"
],
"answer": "opening a gift box"
},
{
"video": "1088428381.mp4",
"question": "In the video, what action can be observed from the woman?",
"candidates": [
"storing items in a gift box",
"delivering a gift box",
"wrapping a gift box",
"opening a gift box"
],
"answer": "opening a gift box"
},
{
"video": "1069593640.mp4",
"question": "What is the woman doing in the video?",
"candidates": [
"drying hair with a towel",
"washing face with a towel",
"putting a towel on her neck"
],
"answer": "putting a towel on her neck"
},
{
"video": "1069593640.mp4",
"question": "What action is being performed by the woman?",
"candidates": [
"putting a towel on her neck",
"drying hair with a towel",
"washing face with a towel"
],
"answer": "putting a towel on her neck"
},
{
"video": "1069593640.mp4",
"question": "Which of the following actions is shown in the video?",
"candidates": [
"putting a towel on her neck",
"drying hair with a towel",
"washing face with a towel"
],
"answer": "putting a towel on her neck"
},
{
"video": "15439453.mp4",
"question": "What activities are being performed simultaneously in the video?",
"candidates": [
"Tango dancing and playing piano",
"Ballet dancing and playing saxophone",
"Tango dancing and playing violin",
"Tango dancing and playing saxophone"
],
"answer": "Tango dancing and playing saxophone"
},
{
"video": "15439453.mp4",
"question": "Which two actions are depicted in the video?",
"candidates": [
"Tango dancing and playing piano",
"Tango dancing and playing saxophone",
"Ballet dancing and playing saxophone",
"Tango dancing and playing violin"
],
"answer": "Tango dancing and playing saxophone"
},
{
"video": "15439453.mp4",
"question": "Who is playing saxophone in the video?",
"candidates": [
"A boy",
"A couple",
"A girl"
],
"answer": "A girl"
},
{
"video": "1107947873.mp4",
"question": "What is the doctor doing in the scenario?",
"candidates": [
"writing a prescription",
"giving medicine to a patient",
"performing a surgery"
],
"answer": "giving medicine to a patient"
},
{
"video": "1107947873.mp4",
"question": "What is the primary role of the doctor in the scene?",
"candidates": [
"giving medicine to a patient",
"checking vitals",
"greeting patients"
],
"answer": "giving medicine to a patient"
},
{
"video": "1107947873.mp4",
"question": "Which activity can be seen in the video involving the doctor?",
"candidates": [
"writing a prescription",
"giving medicine to a patient",
"performing a surgery"
],
"answer": "giving medicine to a patient"
},
{
"video": "1081194848.mp4",
"question": "What is the researcher doing in the video?",
"candidates": [
"teaching children how to cook a frog",
"teaching children how to feed a frog",
"teaching children how to dissect a frog",
"teaching children how to catch a frog"
],
"answer": "teaching children how to dissect a frog"
},
{
"video": "1081194848.mp4",
"question": "What activity are the people engaged in?",
"candidates": [
"dissect a frog",
"feed a frog",
"cook a frog",
"catch a frog"
],
"answer": "dissect a frog"
},
{
"video": "1081194848.mp4",
"question": "What task is the researcher performing with the children?",
"candidates": [
"cook a frog",
"dissect a frog",
"feed a frog",
"catch a frog"
],
"answer": "dissect a frog"
},
{
"video": "1091526823.mp4",
"question": "What is happening to the hand in the video?",
"candidates": [
"opening a book",
"writing on a book",
"turning over pages of a book",
"closing a book"
],
"answer": "turning over pages of a book"
},
{
"video": "1091526823.mp4",
"question": "What action is the hand performing?",
"candidates": [
"opening a book",
"writing on a book",
"closing a book",
"turning over pages of a book"
],
"answer": "turning over pages of a book"
},
{
"video": "1091526823.mp4",
"question": "What is the hand doing?",
"candidates": [
"opening a book",
"writing on a book",
"closing a book",
"turning over pages of a book"
],
"answer": "turning over pages of a book"
},
{
"video": "1104663381.mp4",
"question": "What is the man doing in the video?",
"candidates": [
"cutting a pizza dough",
"stretching a pizza dough",
"folding a pizza dough"
],
"answer": "stretching a pizza dough"
},
{
"video": "1104663381.mp4",
"question": "What activity is the man engaged in while being filmed?",
"candidates": [
"cutting a pizza dough",
"stretching a pizza dough",
"folding a pizza dough"
],
"answer": "stretching a pizza dough"
},
{
"video": "1104663381.mp4",
"question": "What is the man's action depicted in the video?",
"candidates": [
"cutting a pizza dough",
"stretching a pizza dough",
"folding a pizza dough"
],
"answer": "stretching a pizza dough"
},
{
"video": "22100041.mp4",
"question": "What is the woman doing in the video?",
"candidates": [
"waving goodbye",
"clapping her hands",
"doing an invitation gesture",
"pointing towards something"
],
"answer": "doing an invitation gesture"
},
{
"video": "22100041.mp4",
"question": "Which action is the woman performing?",
"candidates": [
"waving goodbye",
"pointing towards something",
"clapping her hands",
"doing an invitation gesture"
],
"answer": "doing an invitation gesture"
},
{
"video": "22100041.mp4",
"question": "When captured on video, what action is the woman engaged in?",
"candidates": [
"waving goodbye",
"doing an invitation gesture",
"pointing towards something",
"clapping her hands"
],
"answer": "doing an invitation gesture"
},
{
"video": "1103623921.mp4",
"question": "What is the man doing in the video?",
"candidates": [
"playing pool",
"playing football",
"cooking"
],
"answer": "playing pool"
},
{
"video": "1103623921.mp4",
"question": "What activity is the man engaged in?",
"candidates": [
"sleeping",
"dancing",
"playing pool"
],
"answer": "playing pool"
},
{
"video": "1103623921.mp4",
"question": "Which action is the man performing?",
"candidates": [
"swimming",
"playing pool",
"reading books"
],
"answer": "playing pool"
},
{
"video": "1093338031.mp4",
"question": "What is the man attempting to do?",
"candidates": [
"click a computer screen",
"fix a computer screen",
"clean a computer screen",
"punch a computer screen"
],
"answer": "punch a computer screen"
},
{
"video": "1093338031.mp4",
"question": "Which action is the man trying to perform?",
"candidates": [
"fix a computer screen",
"clean a computer screen",
"click a computer screen",
"punch a computer screen"
],
"answer": "punch a computer screen"
},
{
"video": "1093338031.mp4",
"question": "What is the man's activity in the video?",
"candidates": [
"Attempting to punch a computer screen",
"Attempting to fix a computer screen",
"Attempting to clean a computer screen",
"Attempting to click a computer screen"
],
"answer": "Attempting to punch a computer screen"
},
{
"video": "1064310466.mp4",
"question": "What is the man doing?",
"candidates": [
"watering cocoa seeds",
"planting cocoa seeds",
"baking cocoa seeds",
"peeling cocoa seeds"
],
"answer": "peeling cocoa seeds"
},
{
"video": "1064310466.mp4",
"question": "Which activity is the man involved in?",
"candidates": [
"baking cocoa seeds",
"watering cocoa seeds",
"peeling cocoa seeds",
"planting cocoa seeds"
],
"answer": "peeling cocoa seeds"
},
{
"video": "1064310466.mp4",
"question": "What action is the man performing?",
"candidates": [
"planting cocoa seeds",
"watering cocoa seeds",
"baking cocoa seeds",
"peeling cocoa seeds"
],
"answer": "peeling cocoa seeds"
},
{
"video": "1106087175.mp4",
"question": "What is the man doing in the video?",
"candidates": [
"wearing a white sneaker",
"drawing on a white sneaker",
"taking off a white sneaker",
"tying shoelaces on a white sneaker"
],
"answer": "drawing on a white sneaker"
},
{
"video": "1106087175.mp4",
"question": "What activity is the man engaged in?",
"candidates": [
"drawing on a white sneaker",
"taking off a white sneaker",
"tying shoelaces on a white sneaker",
"wearing a white sneaker"
],
"answer": "drawing on a white sneaker"
},
{
"video": "1106087175.mp4",
"question": "Which action can be observed in the video?",
"candidates": [
"drawing on a white sneaker",
"taking off a white sneaker",
"wearing a white sneaker",
"tying shoelaces on a white sneaker"
],
"answer": "drawing on a white sneaker"
},
{
"video": "1083624811.mp4",
"question": "What is the woman doing in the exercise?",
"candidates": [
"performing push-ups",
"performing alternating leg lift plank",
"performing a traditional plank hold",
"performing side plank variations"
],
"answer": "performing alternating leg lift plank"
},
{
"video": "1083624811.mp4",
"question": "Which action is the woman carrying out?",
"candidates": [
"performing side plank variations",
"performing a traditional plank hold",
"performing alternating leg lift plank",
"performing push-ups"
],
"answer": "performing alternating leg lift plank"
},
{
"video": "1083624811.mp4",
"question": "What activity is the woman engaged in?",
"candidates": [
"performing alternating leg lift plank",
"performing push-ups",
"performing a traditional plank hold",
"performing side plank variations"
],
"answer": "performing alternating leg lift plank"
},
{
"video": "1066238617.mp4",
"question": "What is the woman doing?",
"candidates": [
"dancing",
"practising her punches",
"cooking"
],
"answer": "practising her punches"
},
{
"video": "1066238617.mp4",
"question": "What activity is the woman engaged in?",
"candidates": [
"singing",
"practising her punches",
"swimming"
],
"answer": "practising her punches"
},
{
"video": "1066238617.mp4",
"question": "Which action is the woman performing?",
"candidates": [
"playing chess",
"practising her punches",
"writing"
],
"answer": "practising her punches"
},
{
"video": "1072000366.mp4",
"question": "What are the girls doing to each other?",
"candidates": [
"elbowing each other",
"giving high five to each other",
"waving at each other",
"shaking hands"
],
"answer": "elbowing each other"
},
{
"video": "1072000366.mp4",
"question": "Which action are the girls engaged in?",
"candidates": [
"waving at each other",
"shaking hands",
"giving high five to each other",
"elbowing each other"
],
"answer": "elbowing each other"
},
{
"video": "1072000366.mp4",
"question": "What activity are the girls involved in?",
"candidates": [
"waving at each other",
"shaking hands",
"giving high five to each other",
"elbowing each other"
],
"answer": "elbowing each other"
},
{
"video": "1065272113.mp4",
"question": "What is the doctor doing to the woman?",
"candidates": [
"taking her blood pressure",
"checking her temperature",
"giving her an injection"
],
"answer": "giving her an injection"
},
{
"video": "1065272113.mp4",
"question": "What action is the doctor performing on the woman?",
"candidates": [
"applying bandage",
"writing a prescription",
"giving an injection"
],
"answer": "giving an injection"
},
{
"video": "1065272113.mp4",
"question": "Which of the following actions is the doctor engaged in?",
"candidates": [
"writing a prescription",
"giving an injection",
"applying bandage"
],
"answer": "giving an injection"
},
{
"video": "1072971926.mp4",
"question": "What is the man doing with the pizza box?",
"candidates": [
"opening the pizza box",
"wrapping the pizza box",
"eating the pizza",
"closing the pizza box"
],
"answer": "opening the pizza box"
},
{
"video": "1072971926.mp4",
"question": "What action is being performed by the man?",
"candidates": [
"closing the pizza box",
"eating the pizza",
"wrapping the pizza box",
"opening the pizza box"
],
"answer": "opening the pizza box"
},
{
"video": "1072971926.mp4",
"question": "Which of the following actions is the man engaged in?",
"candidates": [
"opening the pizza box",
"eating the pizza",
"wrapping the pizza box",
"closing the pizza box"
],
"answer": "opening the pizza box"
},
{
"video": "3399348431.mp4",
"question": "What is the person doing with the sauce?",
"candidates": [
"mixing it with the vegetables",
"squeezing it into a bowl of vegetables",
"dipping vegetables in it"
],
"answer": "squeezing it into a bowl of vegetables"
},
{
"video": "3399348431.mp4",
"question": "What is the video showing?",
"candidates": [
"dipping vegetables on the sauce",
"squeezing the sauce into a bowl of vegetables",
"mixing sauce with the vegetables"
],
"answer": "squeezing the sauce into a bowl of vegetables"
},
{
"video": "3399348431.mp4",
"question": "What action is being performed with the sauce?",
"candidates": [
"squeezing it into a bowl of vegetables",
"dipping vegetables in it",
"mixing it with the vegetables"
],
"answer": "squeezing it into a bowl of vegetables"
},
{
"video": "1025137214.mp4",
"question": "What is the man doing?",
"candidates": [
"walking",
"smoking cigarette",
"talking on the phone"
],
"answer": "smoking cigarette"
},
{
"video": "1025137214.mp4",
"question": "What action is the man engaged in?",
"candidates": [
"reading a book",
"smoking cigarette",
"writing a letter"
],
"answer": "smoking cigarette"
},
{
"video": "1025137214.mp4",
"question": "Which activity is the man involved in?",
"candidates": [
"playing soccer",
"smoking cigarette",
"cooking a meal"
],
"answer": "smoking cigarette"
},
{
"video": "1033101626.mp4",
"question": "What is the man doing?",
"candidates": [
"cooking",
"singing",
"playing instrument"
],
"answer": "playing instrument"
},
{
"video": "1033101626.mp4",
"question": "What activity is the man engaged in?",
"candidates": [
"dancing",
"reading",
"playing instrument"
],
"answer": "playing instrument"
},
{
"video": "1033101626.mp4",
"question": "Which action is the man performing?",
"candidates": [
"walking",
"sleeping",
"playing instrument"
],
"answer": "playing instrument"
},
{
"video": "9537677.mp4",
"question": "What activity is the woman engaged in?",
"candidates": [
"reading a book",
"watching TV",
"playing tablet",
"cooking"
],
"answer": "playing tablet"
},
{
"video": "9537677.mp4",
"question": "What is the woman's action in the video?",
"candidates": [
"playing tablet",
"dancing",
"painting",
"driving"
],
"answer": "playing tablet"
},
{
"video": "9537677.mp4",
"question": "What is the main focus of the woman's attention?",
"candidates": [
"listening to music",
"playing tablet",
"talking on the phone",
"cooking"
],
"answer": "playing tablet"
},
{
"video": "1077388994.mp4",
"question": "What action is the woman performing?",
"candidates": [
"singing",
"dancing",
"patting the baby"
],
"answer": "patting the baby"
},
{
"video": "1077388994.mp4",
"question": "What activity is the woman engaged in?",
"candidates": [
"cooking dinner",
"gardening",
"patting the baby"
],
"answer": "patting the baby"
},
{
"video": "1077388994.mp4",
"question": "Which of the following is the woman doing?",
"candidates": [
"writing a letter",
"reading a book",
"patting the baby"
],
"answer": "patting the baby"
},
{
"video": "1037531786.mp4",
"question": "What are the two men doing in the video?",
"candidates": [
"dancing",
"cooking",
"boxing",
"painting"
],
"answer": "boxing"
},
{
"video": "1037531786.mp4",
"question": "Which physical activity are the two men engaged in?",
"candidates": [
"swimming",
"running",
"boxing",
"cycling"
],
"answer": "boxing"
},
{
"video": "1037531786.mp4",
"question": "What sport are the two men participating in?",
"candidates": [
"basketball",
"football",
"boxing",
"tennis"
],
"answer": "boxing"
},
{
"video": "1077275024.mp4",
"question": "What is the girl doing in the video?",
"candidates": [
"Jumping with a man playing ukulele",
"Dancing with a man playing ukulele",
"Clapping hands for a man playing ukulele"
],
"answer": "Clapping hands for a man playing ukulele"
},
{
"video": "1077275024.mp4",
"question": "What activity is the girl engaged in?",
"candidates": [
"Sitting and watching a man play the ukulele",
"Playing the ukulele alongside the man",
"Clapping hands for a man playing ukulele"
],
"answer": "Clapping hands for a man playing ukulele"
},
{
"video": "1077275024.mp4",
"question": "What action is the girl performing?",
"candidates": [
"Recording the man playing the ukulele",
"Dancing with a man playing ukulele",
"Clapping hands for a man playing ukulele"
],
"answer": "Clapping hands for a man playing ukulele"
},
{
"video": "1107180099.mp4",
"question": "What are the women doing?",
"candidates": [
"singing",
"painting",
"dancing",
"cooking"
],
"answer": "dancing"
},
{
"video": "1107180099.mp4",
"question": "Which activity are the women engaged in?",
"candidates": [
"swimming",
"playing basketball",
"dancing",
"gardening"
],
"answer": "dancing"
},
{
"video": "1107180099.mp4",
"question": "What is the primary action of the group of women?",
"candidates": [
"playing football",
"dancing",
"reading",
"skiing"
],
"answer": "dancing"
},
{
"video": "1049434159.mp4",
"question": "What are the parents and daughter doing together?",
"candidates": [
"cooking dinner",
"playing video games",
"reading a book"
],
"answer": "playing video games"
},
{
"video": "1049434159.mp4",
"question": "What activity are the parents and daughter engaged in?",
"candidates": [
"hiking",
"playing video games",
"dancing"
],
"answer": "playing video games"
},
{
"video": "1049434159.mp4",
"question": "Which of the following actions are the parents and daughter involved in?",
"candidates": [
"painting",
"playing video games",
"gardening"
],
"answer": "playing video games"
},
{
"video": "3402234027.mp4",
"question": "What is the cat doing in the video?",
"candidates": [
"sleeping",
"playing with a toy",
"eating food"
],
"answer": "eating food"
},
{
"video": "3402234027.mp4",
"question": "Which activity is the cat engaged in?",
"candidates": [
"swimming",
"climbing a tree",
"eating food"
],
"answer": "eating food"
},
{
"video": "3402234027.mp4",
"question": "What action is the cat performing?",
"candidates": [
"running on the ground",
"sitting on a chair",
"eating food on the ground"
],
"answer": "eating food on the ground"
},
{
"video": "1056491306.mp4",
"question": "What are the passengers doing on the subway?",
"candidates": [
"sleeping on the bed",
"standing in a room",
"taking a seat on subway",
"dancing on the stage"
],
"answer": "taking a seat on subway"
},
{
"video": "1056491306.mp4",
"question": "What activity are the passengers engaged in while on the subway train?",
"candidates": [
"talking",
"reading",
"taking a seat",
"eating"
],
"answer": "taking a seat"
},
{
"video": "1056491306.mp4",
"question": "Which action are the passengers performing inside the subway?",
"candidates": [
"running on a treadmill",
"walking on the street",
"taking a seat on subway",
"jumping on the floor"
],
"answer": "taking a seat on subway"
},
{
"video": "1012085909.mp4",
"question": "What are the people doing in the video?",
"candidates": [
"rolling boats on the lake",
"walking on the street",
"pushing bikes up a hill"
],
"answer": "pushing bikes up a hill"
},
{
"video": "1012085909.mp4",
"question": "How are the people moving?",
"candidates": [
"running",
"swimming",
"pushing bikes"
],
"answer": "pushing bikes"
},
{
"video": "1012085909.mp4",
"question": "What is the main activity of the people?",
"candidates": [
"rollerblading",
"playing basketball",
"pushing bikes"
],
"answer": "pushing bikes"
},
{
"video": "1079406734.mp4",
"question": "What is the man doing to the car in the video?",
"candidates": [
"riding bikes",
"taking a shower",
"washing the car",
"driving the car"
],
"answer": "washing the car"
},
{
"video": "1079406734.mp4",
"question": "Which of the following actions is being performed by the man?",
"candidates": [
"feeding a dog",
"reading a book",
"washing the car",
"playing the guitar"
],
"answer": "washing the car"
},
{
"video": "1079406734.mp4",
"question": "In the video, what activity is the man engaged in?",
"candidates": [
"dancing",
"sleeping",
"washing the car",
"cooking"
],
"answer": "washing the car"
},
{
"video": "1071214909.mp4",
"question": "What is the person doing on the wood surface?",
"candidates": [
"carving a design",
"measuring the length",
"drawing a cutting line",
"sanding the surface"
],
"answer": "drawing a cutting line"
},
{
"video": "1071214909.mp4",
"question": "What is the action performed by the person?",
"candidates": [
"drawing a cuttting line on a wood surface",
"erasing a line on a wood surface",
"carving a pattern on a wood surface",
"measuring length on a wood surface"
],
"answer": "drawing a cuttting line on a wood surface"
},
{
"video": "1071214909.mp4",
"question": "What is the video about?",
"candidates": [
"drawing a cuttting line on a wood surface",
"erasing a line on a wood surface",
"carving a pattern on a wood surface",
"measuring length on a wood surface"
],
"answer": "drawing a cuttting line on a wood surface"
},
{
"video": "1092065543.mp4",
"question": "What is the man doing?",
"candidates": [
"eating",
"shopping",
"sleeping",
"running"
],
"answer": "shopping"
},
{
"video": "1092065543.mp4",
"question": "Which activity is the man engaged in?",
"candidates": [
"cooking",
"gardening",
"shopping",
"painting"
],
"answer": "shopping"
},
{
"video": "1092065543.mp4",
"question": "In the video, what can we see the man doing?",
"candidates": [
"singing",
"dancing",
"shopping",
"playing guitar"
],
"answer": "shopping"
},
{
"video": "1017063703.mp4",
"question": "What is the person doing in the video?",
"candidates": [
"baking cakes",
"decorating cakes",
"cutting cakes",
"presenting cakes to guests"
],
"answer": "decorating cakes"
},
{
"video": "1017063703.mp4",
"question": "What action is demonstrated in the video?",
"candidates": [
"baking cakes",
"decorating cakes",
"cutting cakes",
"presenting cakes to guests"
],
"answer": "decorating cakes"
},
{
"video": "1017063703.mp4",
"question": "What task is being performed in the footage?",
"candidates": [
"baking cakes",
"decorating cakes",
"cutting cakes",
"presenting cakes to guests"
],
"answer": "decorating cakes"
},
{
"video": "1055022287.mp4",
"question": "What is the man doing in the video?",
"candidates": [
"cooking",
"singing",
"cleaning a swimming pool"
],
"answer": "cleaning a swimming pool"
},
{
"video": "1055022287.mp4",
"question": "Which activity is being performed by the man in the video?",
"candidates": [
"dancing",
"playing basketball",
"cleaning a swimming pool"
],
"answer": "cleaning a swimming pool"
},
{
"video": "1055022287.mp4",
"question": "What action is the man undertaking?",
"candidates": [
"reading",
"sleeping",
"cleaning a swimming pool"
],
"answer": "cleaning a swimming pool"
},
{
"video": "1094259081.mp4",
"question": "What is the woman doing in the video?",
"candidates": [
"watching VR movie",
"listening to music using VR",
"playing VR shooting game",
"working out using VR"
],
"answer": "playing VR shooting game"
},
{
"video": "1094259081.mp4",
"question": "What action is the woman engaged in?",
"candidates": [
"watching VR movie",
"listening to music using VR",
"playing VR shooting game",
"working out using VR"
],
"answer": "playing VR shooting game"
},
{
"video": "1094259081.mp4",
"question": "Which activity is the woman participating in?",
"candidates": [
"watching VR movie",
"listening to music using VR",
"playing VR shooting game",
"working out using VR"
],
"answer": "playing VR shooting game"
},
{
"video": "1022260408.mp4",
"question": "What is the squirrel doing in the video?",
"candidates": [
"sleeping",
"running",
"eating food"
],
"answer": "eating food"
},
{
"video": "1022260408.mp4",
"question": "What activity is the squirrel engaged in?",
"candidates": [
"chasing its tail",
"cleaning itself",
"eating food"
],
"answer": "eating food"
},
{
"video": "1022260408.mp4",
"question": "Which of the following actions is the squirrel performing?",
"candidates": [
"climbing a tree",
"swimming in a pond",
"eating food"
],
"answer": "eating food"
},
{
"video": "1089810969.mp4",
"question": "How does the little girl interact with the woman?",
"candidates": [
"she runs towards her and hugs her",
"she walks towards her and hug her",
"she runs towards her and jumps on her back",
"she runs towards her and talks to her"
],
"answer": "she runs towards her and hugs her"
},
{
"video": "1089810969.mp4",
"question": "What action does the little girl perform?",
"candidates": [
"she runs towards a woman and hugs her",
"she walks towards a woman and hugs her",
"she runs towards a woman and jumps on her back",
"she runs towards a woman and talks to her"
],
"answer": "she runs towards a woman and hugs her"
},
{
"video": "1089810969.mp4",
"question": "Which of the following actions is the little girl performing?",
"candidates": [
"she runs towards a woman and hugs her",
"she walks towards a woman and hugs her",
"she runs towards a woman and jumps on her back",
"she runs towards a woman and talks to her"
],
"answer": "she runs towards a woman and hugs her"
},
{
"video": "6165731.mp4",
"question": "What is the scientist doing in the experiment?",
"candidates": [
"observing quietly on the experiment",
"leisurely conducting experiments",
"looking confused and frustrated about the experiment"
],
"answer": "looking confused and frustrated about the experiment"
},
{
"video": "6165731.mp4",
"question": "How does the scientist feel about the experiment?",
"candidates": [
"excited and motivated",
"bored and disinterested",
"confused and frustrated"
],
"answer": "confused and frustrated"
},
{
"video": "6165731.mp4",
"question": "What is the emotional state of the scientist during the experiment?",
"candidates": [
"calm and content",
"happy and satisfied",
"confused and frustrated"
],
"answer": "confused and frustrated"
},
{
"video": "1111469465.mp4",
"question": "What is the man doing in the video?",
"candidates": [
"raising his arm to look at the watch looking happy",
"raising his arm to look at the watch looking calm",
"raising his arm to look at the watch looking anxious",
"putting his hands in his pockets looking anxious"
],
"answer": "raising his arm to look at the watch looking anxious"
},
{
"video": "1111469465.mp4",
"question": "What action is being performed by the man?",
"candidates": [
"raising his arm to look at the watch looking happy",
"raising his arm to look at the watch looking calm",
"raising his arm to look at the watch looking anxious",
"putting his hands in his pockets looking anxious"
],
"answer": "raising his arm to look at the watch looking anxious"
},
{
"video": "1111469465.mp4",
"question": "In the video, what is the man's action?",
"candidates": [
"raising his arm to look at the watch looking happy",
"raising his arm to look at the watch looking calm",
"raising his arm to look at the watch looking anxious",
"putting his hands in his pockets looking anxious"
],
"answer": "raising his arm to look at the watch looking anxious"
},
{
"video": "1050000214.mp4",
"question": "What action is the little child performing?",
"candidates": [
"Running",
"Swimming",
"Water jumping",
"Dancing"
],
"answer": "Water jumping"
},
{
"video": "1050000214.mp4",
"question": "What is the little child doing in the video?",
"candidates": [
"Eating",
"Sleeping",
"Crying",
"Water jumping"
],
"answer": "Water jumping"
},
{
"video": "1050000214.mp4",
"question": "Which action is the little child engaged in?",
"candidates": [
"Reading",
"Writing",
"Singing",
"Water jumping"
],
"answer": "Water jumping"
}
] |