File size: 98,058 Bytes
8ff2d42 |
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 |
{"question": "A square has sides of 4 cm. What is its perimeter?", "answer": "16", "topic": "geometry", "difficulty": 1}
{"question": "Find the next number: 1, 4, 7, 10, ?", "answer": "13", "topic": "pattern", "difficulty": 1}
{"question": "Casey has 7 grapes and buys 5 more. How many grapes now?", "answer": "12", "topic": "word", "difficulty": 1}
{"question": "Find the next number: 3, 6, 9, 12, ?", "answer": "15", "topic": "pattern", "difficulty": 1}
{"question": "Jamie has 7 bananas and buys 2 more. How many bananas now?", "answer": "9", "topic": "word", "difficulty": 1}
{"question": "Find the next number: 3, 5, 7, 9, ?", "answer": "11", "topic": "pattern", "difficulty": 1}
{"question": "8 × 8 = ?", "answer": "64", "topic": "multiplication", "difficulty": 1}
{"question": "A square has sides of 9 cm. What is its perimeter?", "answer": "36", "topic": "geometry", "difficulty": 1}
{"question": "Taylor had 7 apples but ate 4. How many left?", "answer": "3", "topic": "word", "difficulty": 1}
{"question": "Alex has 7 apples and buys 2 more. How many apples now?", "answer": "9", "topic": "word", "difficulty": 1}
{"question": "30 ÷ 10 = ?", "answer": "3", "topic": "division", "difficulty": 1}
{"question": "10 + 2 = ?", "answer": "12", "topic": "addition", "difficulty": 1}
{"question": "Casey has 5 apples and buys 5 more. How many apples now?", "answer": "10", "topic": "word", "difficulty": 1}
{"question": "5 ÷ 7 = ?", "answer": "0", "topic": "division", "difficulty": 1}
{"question": "7 × 1 = ?", "answer": "7", "topic": "multiplication", "difficulty": 1}
{"question": "4 ÷ 10 = ?", "answer": "0", "topic": "division", "difficulty": 1}
{"question": "9 + 7 = ?", "answer": "16", "topic": "addition", "difficulty": 1}
{"question": "1 × 2 = ?", "answer": "2", "topic": "multiplication", "difficulty": 1}
{"question": "Find the next number: 4, 7, 10, 13, ?", "answer": "16", "topic": "pattern", "difficulty": 1}
{"question": "Taylor has 4 pears and buys 3 more. How many pears now?", "answer": "7", "topic": "word", "difficulty": 1}
{"question": "A triangle has base 8 cm and height 4 cm. Find its area.", "answer": "16.0", "topic": "geometry", "difficulty": 1}
{"question": "9 - 1 = ?", "answer": "8", "topic": "subtraction", "difficulty": 1}
{"question": "7 + 4 = ?", "answer": "11", "topic": "addition", "difficulty": 1}
{"question": "4 ÷ 4 = ?", "answer": "1", "topic": "division", "difficulty": 1}
{"question": "Jordan had 7 grapes but ate 5. How many left?", "answer": "2", "topic": "word", "difficulty": 1}
{"question": "Find the next number: 2, 3, 4, 5, ?", "answer": "6", "topic": "pattern", "difficulty": 1}
{"question": "10 + 2 = ?", "answer": "12", "topic": "addition", "difficulty": 1}
{"question": "8 - 3 = ?", "answer": "5", "topic": "subtraction", "difficulty": 1}
{"question": "7 - 7 = ?", "answer": "0", "topic": "subtraction", "difficulty": 1}
{"question": "32 ÷ 8 = ?", "answer": "4", "topic": "division", "difficulty": 1}
{"question": "Find the next number: 4, 7, 10, 13, ?", "answer": "16", "topic": "pattern", "difficulty": 1}
{"question": "Jamie has 2 apples and buys 3 more. How many apples now?", "answer": "5", "topic": "word", "difficulty": 1}
{"question": "Find the next number: 3, 6, 9, 12, ?", "answer": "15", "topic": "pattern", "difficulty": 1}
{"question": "A square has sides of 5 cm. What is its perimeter?", "answer": "20", "topic": "geometry", "difficulty": 1}
{"question": "A rectangle is 3 cm long and 10 cm wide. What is its area?", "answer": "30", "topic": "geometry", "difficulty": 1}
{"question": "Find the next number: 4, 5, 6, 7, ?", "answer": "8", "topic": "pattern", "difficulty": 1}
{"question": "10 + 9 = ?", "answer": "19", "topic": "addition", "difficulty": 1}
{"question": "Find the next number: 1, 2, 3, 4, ?", "answer": "5", "topic": "pattern", "difficulty": 1}
{"question": "8 ÷ 8 = ?", "answer": "1", "topic": "division", "difficulty": 1}
{"question": "Jordan has 6 grapes and buys 2 more. How many grapes now?", "answer": "8", "topic": "word", "difficulty": 1}
{"question": "5 - 4 = ?", "answer": "1", "topic": "subtraction", "difficulty": 1}
{"question": "Casey has 10 pears and buys 2 more. How many pears now?", "answer": "12", "topic": "word", "difficulty": 1}
{"question": "6 + 2 = ?", "answer": "8", "topic": "addition", "difficulty": 1}
{"question": "Find the next number: 4, 7, 10, 13, ?", "answer": "16", "topic": "pattern", "difficulty": 1}
{"question": "6 ÷ 8 = ?", "answer": "0", "topic": "division", "difficulty": 1}
{"question": "21 ÷ 7 = ?", "answer": "3", "topic": "division", "difficulty": 1}
{"question": "50 ÷ 10 = ?", "answer": "5", "topic": "division", "difficulty": 1}
{"question": "Taylor had 8 oranges but ate 5. How many left?", "answer": "3", "topic": "word", "difficulty": 1}
{"question": "Taylor has 6 pears and buys 4 more. How many pears now?", "answer": "10", "topic": "word", "difficulty": 1}
{"question": "A square has sides of 8 cm. What is its perimeter?", "answer": "32", "topic": "geometry", "difficulty": 1}
{"question": "A triangle has base 10 cm and height 7 cm. Find its area.", "answer": "35.0", "topic": "geometry", "difficulty": 1}
{"question": "Find the next number: 4, 6, 8, 10, ?", "answer": "12", "topic": "pattern", "difficulty": 1}
{"question": "4 ÷ 6 = ?", "answer": "0", "topic": "division", "difficulty": 1}
{"question": "5 + 3 = ?", "answer": "8", "topic": "addition", "difficulty": 1}
{"question": "Casey has 5 oranges and buys 5 more. How many oranges now?", "answer": "10", "topic": "word", "difficulty": 1}
{"question": "10 - 7 = ?", "answer": "3", "topic": "subtraction", "difficulty": 1}
{"question": "A rectangle is 2 cm long and 6 cm wide. What is its area?", "answer": "12", "topic": "geometry", "difficulty": 1}
{"question": "Find the next number: 5, 7, 9, 11, ?", "answer": "13", "topic": "pattern", "difficulty": 1}
{"question": "3 + 1 = ?", "answer": "4", "topic": "addition", "difficulty": 1}
{"question": "9 ÷ 6 = ?", "answer": "1", "topic": "division", "difficulty": 1}
{"question": "36 ÷ 6 = ?", "answer": "6", "topic": "division", "difficulty": 1}
{"question": "Jamie had 4 apples but ate 4. How many left?", "answer": "0", "topic": "word", "difficulty": 1}
{"question": "6 ÷ 3 = ?", "answer": "2", "topic": "division", "difficulty": 1}
{"question": "7 - 3 = ?", "answer": "4", "topic": "subtraction", "difficulty": 1}
{"question": "A square has sides of 10 cm. What is its perimeter?", "answer": "40", "topic": "geometry", "difficulty": 1}
{"question": "Alex had 4 bananas but ate 3. How many left?", "answer": "1", "topic": "word", "difficulty": 1}
{"question": "6 × 6 = ?", "answer": "36", "topic": "multiplication", "difficulty": 1}
{"question": "9 ÷ 1 = ?", "answer": "9", "topic": "division", "difficulty": 1}
{"question": "20 ÷ 4 = ?", "answer": "5", "topic": "division", "difficulty": 1}
{"question": "6 + 4 = ?", "answer": "10", "topic": "addition", "difficulty": 1}
{"question": "A triangle has base 6 cm and height 4 cm. Find its area.", "answer": "12.0", "topic": "geometry", "difficulty": 1}
{"question": "1 - 1 = ?", "answer": "0", "topic": "subtraction", "difficulty": 1}
{"question": "Casey had 5 apples but ate 4. How many left?", "answer": "1", "topic": "word", "difficulty": 1}
{"question": "A triangle has base 8 cm and height 5 cm. Find its area.", "answer": "20.0", "topic": "geometry", "difficulty": 1}
{"question": "2 ÷ 2 = ?", "answer": "1", "topic": "division", "difficulty": 1}
{"question": "Find the next number: 1, 4, 7, 10, ?", "answer": "13", "topic": "pattern", "difficulty": 1}
{"question": "2 ÷ 7 = ?", "answer": "0", "topic": "division", "difficulty": 1}
{"question": "Jordan had 4 bananas but ate 2. How many left?", "answer": "2", "topic": "word", "difficulty": 1}
{"question": "A triangle has base 4 cm and height 10 cm. Find its area.", "answer": "20.0", "topic": "geometry", "difficulty": 1}
{"question": "Casey has 10 oranges and buys 2 more. How many oranges now?", "answer": "12", "topic": "word", "difficulty": 1}
{"question": "9 - 4 = ?", "answer": "5", "topic": "subtraction", "difficulty": 1}
{"question": "2 × 7 = ?", "answer": "14", "topic": "multiplication", "difficulty": 1}
{"question": "A square has sides of 4 cm. What is its perimeter?", "answer": "16", "topic": "geometry", "difficulty": 1}
{"question": "8 - 5 = ?", "answer": "3", "topic": "subtraction", "difficulty": 1}
{"question": "2 × 9 = ?", "answer": "18", "topic": "multiplication", "difficulty": 1}
{"question": "Find the next number: 1, 3, 5, 7, ?", "answer": "9", "topic": "pattern", "difficulty": 1}
{"question": "Jordan had 9 oranges but ate 2. How many left?", "answer": "7", "topic": "word", "difficulty": 1}
{"question": "6 - 1 = ?", "answer": "5", "topic": "subtraction", "difficulty": 1}
{"question": "Find the next number: 4, 5, 6, 7, ?", "answer": "8", "topic": "pattern", "difficulty": 1}
{"question": "10 × 9 = ?", "answer": "90", "topic": "multiplication", "difficulty": 1}
{"question": "Jordan had 4 oranges but ate 2. How many left?", "answer": "2", "topic": "word", "difficulty": 1}
{"question": "4 × 2 = ?", "answer": "8", "topic": "multiplication", "difficulty": 1}
{"question": "8 × 6 = ?", "answer": "48", "topic": "multiplication", "difficulty": 1}
{"question": "5 + 7 = ?", "answer": "12", "topic": "addition", "difficulty": 1}
{"question": "10 × 2 = ?", "answer": "20", "topic": "multiplication", "difficulty": 1}
{"question": "20 ÷ 10 = ?", "answer": "2", "topic": "division", "difficulty": 1}
{"question": "10 ÷ 3 = ?", "answer": "3", "topic": "division", "difficulty": 1}
{"question": "15 ÷ 3 = ?", "answer": "5", "topic": "division", "difficulty": 1}
{"question": "5 + 5 = ?", "answer": "10", "topic": "addition", "difficulty": 1}
{"question": "12 ÷ 6 = ?", "answer": "2", "topic": "division", "difficulty": 1}
{"question": "Find the next number: 2, 4, 6, 8, ?", "answer": "10", "topic": "pattern", "difficulty": 1}
{"question": "20 ÷ 2 = ?", "answer": "10", "topic": "division", "difficulty": 1}
{"question": "6 × 2 = ?", "answer": "12", "topic": "multiplication", "difficulty": 1}
{"question": "9 - 7 = ?", "answer": "2", "topic": "subtraction", "difficulty": 1}
{"question": "3 × 1 = ?", "answer": "3", "topic": "multiplication", "difficulty": 1}
{"question": "10 - 9 = ?", "answer": "1", "topic": "subtraction", "difficulty": 1}
{"question": "Taylor had 6 pears but ate 3. How many left?", "answer": "3", "topic": "word", "difficulty": 1}
{"question": "8 - 2 = ?", "answer": "6", "topic": "subtraction", "difficulty": 1}
{"question": "Jordan has 4 grapes and buys 2 more. How many grapes now?", "answer": "6", "topic": "word", "difficulty": 1}
{"question": "2 + 1 = ?", "answer": "3", "topic": "addition", "difficulty": 1}
{"question": "8 × 3 = ?", "answer": "24", "topic": "multiplication", "difficulty": 1}
{"question": "8 + 7 = ?", "answer": "15", "topic": "addition", "difficulty": 1}
{"question": "A square has sides of 6 cm. What is its perimeter?", "answer": "24", "topic": "geometry", "difficulty": 1}
{"question": "Find the next number: 2, 5, 8, 11, ?", "answer": "14", "topic": "pattern", "difficulty": 1}
{"question": "8 - 4 = ?", "answer": "4", "topic": "subtraction", "difficulty": 1}
{"question": "4 - 2 = ?", "answer": "2", "topic": "subtraction", "difficulty": 1}
{"question": "Find the next number: 2, 5, 8, 11, ?", "answer": "14", "topic": "pattern", "difficulty": 1}
{"question": "A rectangle is 8 cm long and 4 cm wide. What is its area?", "answer": "32", "topic": "geometry", "difficulty": 1}
{"question": "A triangle has base 10 cm and height 3 cm. Find its area.", "answer": "15.0", "topic": "geometry", "difficulty": 1}
{"question": "Jordan had 6 pears but ate 2. How many left?", "answer": "4", "topic": "word", "difficulty": 1}
{"question": "7 - 2 = ?", "answer": "5", "topic": "subtraction", "difficulty": 1}
{"question": "2 × 9 = ?", "answer": "18", "topic": "multiplication", "difficulty": 1}
{"question": "1 ÷ 5 = ?", "answer": "0", "topic": "division", "difficulty": 1}
{"question": "A triangle has base 9 cm and height 3 cm. Find its area.", "answer": "13.5", "topic": "geometry", "difficulty": 1}
{"question": "4 - 4 = ?", "answer": "0", "topic": "subtraction", "difficulty": 1}
{"question": "Find the next number: 3, 4, 5, 6, ?", "answer": "7", "topic": "pattern", "difficulty": 1}
{"question": "A triangle has base 7 cm and height 5 cm. Find its area.", "answer": "17.5", "topic": "geometry", "difficulty": 1}
{"question": "7 ÷ 3 = ?", "answer": "2", "topic": "division", "difficulty": 1}
{"question": "A triangle has base 5 cm and height 7 cm. Find its area.", "answer": "17.5", "topic": "geometry", "difficulty": 1}
{"question": "7 ÷ 6 = ?", "answer": "1", "topic": "division", "difficulty": 1}
{"question": "10 ÷ 5 = ?", "answer": "2", "topic": "division", "difficulty": 1}
{"question": "6 × 5 = ?", "answer": "30", "topic": "multiplication", "difficulty": 1}
{"question": "Jamie has 8 oranges and buys 2 more. How many oranges now?", "answer": "10", "topic": "word", "difficulty": 1}
{"question": "3 × 2 = ?", "answer": "6", "topic": "multiplication", "difficulty": 1}
{"question": "Jordan had 6 apples but ate 5. How many left?", "answer": "1", "topic": "word", "difficulty": 1}
{"question": "Find the next number: 2, 5, 8, 11, ?", "answer": "14", "topic": "pattern", "difficulty": 1}
{"question": "4 × 8 = ?", "answer": "32", "topic": "multiplication", "difficulty": 1}
{"question": "7 - 6 = ?", "answer": "1", "topic": "subtraction", "difficulty": 1}
{"question": "Find the next number: 1, 3, 5, 7, ?", "answer": "9", "topic": "pattern", "difficulty": 1}
{"question": "Casey had 10 oranges but ate 2. How many left?", "answer": "8", "topic": "word", "difficulty": 1}
{"question": "9 + 9 = ?", "answer": "18", "topic": "addition", "difficulty": 1}
{"question": "3 + 3 = ?", "answer": "6", "topic": "addition", "difficulty": 1}
{"question": "Find the next number: 3, 5, 7, 9, ?", "answer": "11", "topic": "pattern", "difficulty": 1}
{"question": "Jordan has 8 bananas and buys 3 more. How many bananas now?", "answer": "11", "topic": "word", "difficulty": 1}
{"question": "A triangle has base 6 cm and height 4 cm. Find its area.", "answer": "12.0", "topic": "geometry", "difficulty": 1}
{"question": "A rectangle is 2 cm long and 4 cm wide. What is its area?", "answer": "8", "topic": "geometry", "difficulty": 1}
{"question": "36 ÷ 9 = ?", "answer": "4", "topic": "division", "difficulty": 1}
{"question": "6 - 2 = ?", "answer": "4", "topic": "subtraction", "difficulty": 1}
{"question": "16 ÷ 8 = ?", "answer": "2", "topic": "division", "difficulty": 1}
{"question": "Alex has 7 grapes and buys 4 more. How many grapes now?", "answer": "11", "topic": "word", "difficulty": 1}
{"question": "Jordan had 8 oranges but ate 5. How many left?", "answer": "3", "topic": "word", "difficulty": 1}
{"question": "Jamie had 5 grapes but ate 4. How many left?", "answer": "1", "topic": "word", "difficulty": 1}
{"question": "Find the next number: 5, 7, 9, 11, ?", "answer": "13", "topic": "pattern", "difficulty": 1}
{"question": "9 - 8 = ?", "answer": "1", "topic": "subtraction", "difficulty": 1}
{"question": "9 ÷ 2 = ?", "answer": "4", "topic": "division", "difficulty": 1}
{"question": "6 × 7 = ?", "answer": "42", "topic": "multiplication", "difficulty": 1}
{"question": "4 × 10 = ?", "answer": "40", "topic": "multiplication", "difficulty": 1}
{"question": "6 × 4 = ?", "answer": "24", "topic": "multiplication", "difficulty": 1}
{"question": "4 × 1 = ?", "answer": "4", "topic": "multiplication", "difficulty": 1}
{"question": "6 + 4 = ?", "answer": "10", "topic": "addition", "difficulty": 1}
{"question": "Find the next number: 4, 5, 6, 7, ?", "answer": "8", "topic": "pattern", "difficulty": 1}
{"question": "7 ÷ 2 = ?", "answer": "3", "topic": "division", "difficulty": 1}
{"question": "A rectangle is 7 cm long and 10 cm wide. What is its area?", "answer": "70", "topic": "geometry", "difficulty": 1}
{"question": "A square has sides of 7 cm. What is its perimeter?", "answer": "28", "topic": "geometry", "difficulty": 1}
{"question": "28 ÷ 7 = ?", "answer": "4", "topic": "division", "difficulty": 1}
{"question": "8 × 8 = ?", "answer": "64", "topic": "multiplication", "difficulty": 1}
{"question": "Taylor has 6 bananas and buys 4 more. How many bananas now?", "answer": "10", "topic": "word", "difficulty": 1}
{"question": "8 ÷ 8 = ?", "answer": "1", "topic": "division", "difficulty": 1}
{"question": "30 ÷ 3 = ?", "answer": "10", "topic": "division", "difficulty": 1}
{"question": "9 + 4 = ?", "answer": "13", "topic": "addition", "difficulty": 1}
{"question": "Find the next number: 1, 4, 7, 10, ?", "answer": "13", "topic": "pattern", "difficulty": 1}
{"question": "4 + 3 = ?", "answer": "7", "topic": "addition", "difficulty": 1}
{"question": "Taylor has 2 apples and buys 5 more. How many apples now?", "answer": "7", "topic": "word", "difficulty": 1}
{"question": "6 - 1 = ?", "answer": "5", "topic": "subtraction", "difficulty": 1}
{"question": "A square has sides of 6 cm. What is its perimeter?", "answer": "24", "topic": "geometry", "difficulty": 1}
{"question": "9 + 6 = ?", "answer": "15", "topic": "addition", "difficulty": 1}
{"question": "63 ÷ 9 = ?", "answer": "7", "topic": "division", "difficulty": 1}
{"question": "A square has sides of 8 cm. What is its perimeter?", "answer": "32", "topic": "geometry", "difficulty": 1}
{"question": "7 - 5 = ?", "answer": "2", "topic": "subtraction", "difficulty": 1}
{"question": "Find the next number: 2, 4, 6, 8, ?", "answer": "10", "topic": "pattern", "difficulty": 1}
{"question": "8 - 1 = ?", "answer": "7", "topic": "subtraction", "difficulty": 1}
{"question": "90 ÷ 10 = ?", "answer": "9", "topic": "division", "difficulty": 1}
{"question": "5 × 5 = ?", "answer": "25", "topic": "multiplication", "difficulty": 1}
{"question": "3 + 4 = ?", "answer": "7", "topic": "addition", "difficulty": 1}
{"question": "Jamie had 7 apples but ate 3. How many left?", "answer": "4", "topic": "word", "difficulty": 1}
{"question": "A triangle has base 10 cm and height 7 cm. Find its area.", "answer": "35.0", "topic": "geometry", "difficulty": 1}
{"question": "72 ÷ 9 = ?", "answer": "8", "topic": "division", "difficulty": 1}
{"question": "A rectangle is 8 cm long and 8 cm wide. What is its area?", "answer": "64", "topic": "geometry", "difficulty": 1}
{"question": "10 - 1 = ?", "answer": "9", "topic": "subtraction", "difficulty": 1}
{"question": "28 ÷ 7 = ?", "answer": "4", "topic": "division", "difficulty": 1}
{"question": "Find the next number: 3, 5, 7, 9, ?", "answer": "11", "topic": "pattern", "difficulty": 1}
{"question": "A triangle has base 5 cm and height 6 cm. Find its area.", "answer": "15.0", "topic": "geometry", "difficulty": 1}
{"question": "10 × 9 = ?", "answer": "90", "topic": "multiplication", "difficulty": 1}
{"question": "1 + 1 = ?", "answer": "2", "topic": "addition", "difficulty": 1}
{"question": "100 ÷ 10 = ?", "answer": "10", "topic": "division", "difficulty": 1}
{"question": "7 - 4 = ?", "answer": "3", "topic": "subtraction", "difficulty": 1}
{"question": "Find the next number: 2, 4, 6, 8, ?", "answer": "10", "topic": "pattern", "difficulty": 1}
{"question": "Find the next number: 1, 2, 3, 4, ?", "answer": "5", "topic": "pattern", "difficulty": 1}
{"question": "Taylor has 7 grapes and buys 5 more. How many grapes now?", "answer": "12", "topic": "word", "difficulty": 1}
{"question": "1 × 4 = ?", "answer": "4", "topic": "multiplication", "difficulty": 1}
{"question": "13 + 3 = ?", "answer": "16", "topic": "addition", "difficulty": 2}
{"question": "19 - 1 = ?", "answer": "18", "topic": "subtraction", "difficulty": 2}
{"question": "Find the next number: 3, 6, 9, 12, ?", "answer": "15", "topic": "pattern", "difficulty": 2}
{"question": "Taylor has 14 apples and buys 10 more. How many apples now?", "answer": "24", "topic": "word", "difficulty": 2}
{"question": "19 × 15 = ?", "answer": "285", "topic": "multiplication", "difficulty": 2}
{"question": "Find the next number: 5, 10, 15, 20, ?", "answer": "25", "topic": "pattern", "difficulty": 2}
{"question": "19 - 10 = ?", "answer": "9", "topic": "subtraction", "difficulty": 2}
{"question": "19 - 14 = ?", "answer": "5", "topic": "subtraction", "difficulty": 2}
{"question": "14 - 9 = ?", "answer": "5", "topic": "subtraction", "difficulty": 2}
{"question": "Find the next number: 3, 9, 15, 21, ?", "answer": "27", "topic": "pattern", "difficulty": 2}
{"question": "9 - 4 = ?", "answer": "5", "topic": "subtraction", "difficulty": 2}
{"question": "A square has sides of 5 cm. What is its perimeter?", "answer": "20", "topic": "geometry", "difficulty": 2}
{"question": "Find the next number: 3, 8, 13, 18, ?", "answer": "23", "topic": "pattern", "difficulty": 2}
{"question": "19 + 5 = ?", "answer": "24", "topic": "addition", "difficulty": 2}
{"question": "7 × 10 = ?", "answer": "70", "topic": "multiplication", "difficulty": 2}
{"question": "Taylor has 16 grapes and buys 4 more. How many grapes now?", "answer": "20", "topic": "word", "difficulty": 2}
{"question": "12 × 1 = ?", "answer": "12", "topic": "multiplication", "difficulty": 2}
{"question": "Casey has 11 bananas and buys 10 more. How many bananas now?", "answer": "21", "topic": "word", "difficulty": 2}
{"question": "Find the next number: 2, 5, 8, 11, ?", "answer": "14", "topic": "pattern", "difficulty": 2}
{"question": "6 + 11 = ?", "answer": "17", "topic": "addition", "difficulty": 2}
{"question": "13 ÷ 18 = ?", "answer": "0", "topic": "division", "difficulty": 2}
{"question": "19 ÷ 1 = ?", "answer": "19", "topic": "division", "difficulty": 2}
{"question": "15 + 3 = ?", "answer": "18", "topic": "addition", "difficulty": 2}
{"question": "9 × 3 = ?", "answer": "27", "topic": "multiplication", "difficulty": 2}
{"question": "A triangle has base 10 cm and height 15 cm. Find its area.", "answer": "75.0", "topic": "geometry", "difficulty": 2}
{"question": "9 × 17 = ?", "answer": "153", "topic": "multiplication", "difficulty": 2}
{"question": "6 - 5 = ?", "answer": "1", "topic": "subtraction", "difficulty": 2}
{"question": "Jamie has 19 oranges and buys 7 more. How many oranges now?", "answer": "26", "topic": "word", "difficulty": 2}
{"question": "16 × 14 = ?", "answer": "224", "topic": "multiplication", "difficulty": 2}
{"question": "8 - 3 = ?", "answer": "5", "topic": "subtraction", "difficulty": 2}
{"question": "2 - 1 = ?", "answer": "1", "topic": "subtraction", "difficulty": 2}
{"question": "13 + 7 = ?", "answer": "20", "topic": "addition", "difficulty": 2}
{"question": "A rectangle is 15 cm long and 15 cm wide. What is its area?", "answer": "225", "topic": "geometry", "difficulty": 2}
{"question": "12 × 1 = ?", "answer": "12", "topic": "multiplication", "difficulty": 2}
{"question": "Alex had 19 bananas but ate 6. How many left?", "answer": "13", "topic": "word", "difficulty": 2}
{"question": "A triangle has base 16 cm and height 15 cm. Find its area.", "answer": "120.0", "topic": "geometry", "difficulty": 2}
{"question": "Find the next number: 3, 9, 15, 21, ?", "answer": "27", "topic": "pattern", "difficulty": 2}
{"question": "Find the next number: 3, 9, 15, 21, ?", "answer": "27", "topic": "pattern", "difficulty": 2}
{"question": "Jordan had 20 grapes but ate 4. How many left?", "answer": "16", "topic": "word", "difficulty": 2}
{"question": "20 - 7 = ?", "answer": "13", "topic": "subtraction", "difficulty": 2}
{"question": "10 - 1 = ?", "answer": "9", "topic": "subtraction", "difficulty": 2}
{"question": "19 - 11 = ?", "answer": "8", "topic": "subtraction", "difficulty": 2}
{"question": "A rectangle is 15 cm long and 6 cm wide. What is its area?", "answer": "90", "topic": "geometry", "difficulty": 2}
{"question": "18 - 17 = ?", "answer": "1", "topic": "subtraction", "difficulty": 2}
{"question": "Find the next number: 5, 8, 11, 14, ?", "answer": "17", "topic": "pattern", "difficulty": 2}
{"question": "A square has sides of 12 cm. What is its perimeter?", "answer": "48", "topic": "geometry", "difficulty": 2}
{"question": "Find the next number: 4, 6, 8, 10, ?", "answer": "12", "topic": "pattern", "difficulty": 2}
{"question": "15 ÷ 1 = ?", "answer": "15", "topic": "division", "difficulty": 2}
{"question": "2 × 1 = ?", "answer": "2", "topic": "multiplication", "difficulty": 2}
{"question": "6 + 19 = ?", "answer": "25", "topic": "addition", "difficulty": 2}
{"question": "14 × 6 = ?", "answer": "84", "topic": "multiplication", "difficulty": 2}
{"question": "8 × 10 = ?", "answer": "80", "topic": "multiplication", "difficulty": 2}
{"question": "Find the next number: 2, 4, 6, 8, ?", "answer": "10", "topic": "pattern", "difficulty": 2}
{"question": "Alex has 14 grapes and buys 3 more. How many grapes now?", "answer": "17", "topic": "word", "difficulty": 2}
{"question": "Find the next number: 4, 7, 10, 13, ?", "answer": "16", "topic": "pattern", "difficulty": 2}
{"question": "Find the next number: 3, 8, 13, 18, ?", "answer": "23", "topic": "pattern", "difficulty": 2}
{"question": "Find the next number: 2, 6, 10, 14, ?", "answer": "18", "topic": "pattern", "difficulty": 2}
{"question": "Find the next number: 1, 6, 11, 16, ?", "answer": "21", "topic": "pattern", "difficulty": 2}
{"question": "10 × 19 = ?", "answer": "190", "topic": "multiplication", "difficulty": 2}
{"question": "Jamie has 6 oranges and buys 6 more. How many oranges now?", "answer": "12", "topic": "word", "difficulty": 2}
{"question": "Find the next number: 5, 9, 13, 17, ?", "answer": "21", "topic": "pattern", "difficulty": 2}
{"question": "7 + 14 = ?", "answer": "21", "topic": "addition", "difficulty": 2}
{"question": "17 × 5 = ?", "answer": "85", "topic": "multiplication", "difficulty": 2}
{"question": "Find the next number: 5, 10, 15, 20, ?", "answer": "25", "topic": "pattern", "difficulty": 2}
{"question": "1 + 12 = ?", "answer": "13", "topic": "addition", "difficulty": 2}
{"question": "18 × 10 = ?", "answer": "180", "topic": "multiplication", "difficulty": 2}
{"question": "Casey has 8 bananas and buys 5 more. How many bananas now?", "answer": "13", "topic": "word", "difficulty": 2}
{"question": "8 - 4 = ?", "answer": "4", "topic": "subtraction", "difficulty": 2}
{"question": "91 ÷ 7 = ?", "answer": "13", "topic": "division", "difficulty": 2}
{"question": "7 × 3 = ?", "answer": "21", "topic": "multiplication", "difficulty": 2}
{"question": "11 × 3 = ?", "answer": "33", "topic": "multiplication", "difficulty": 2}
{"question": "11 ÷ 18 = ?", "answer": "0", "topic": "division", "difficulty": 2}
{"question": "11 - 9 = ?", "answer": "2", "topic": "subtraction", "difficulty": 2}
{"question": "Casey had 7 grapes but ate 6. How many left?", "answer": "1", "topic": "word", "difficulty": 2}
{"question": "13 ÷ 1 = ?", "answer": "13", "topic": "division", "difficulty": 2}
{"question": "Casey had 8 apples but ate 5. How many left?", "answer": "3", "topic": "word", "difficulty": 2}
{"question": "19 - 6 = ?", "answer": "13", "topic": "subtraction", "difficulty": 2}
{"question": "15 + 18 = ?", "answer": "33", "topic": "addition", "difficulty": 2}
{"question": "240 ÷ 16 = ?", "answer": "15", "topic": "division", "difficulty": 2}
{"question": "Jordan has 14 oranges and buys 7 more. How many oranges now?", "answer": "21", "topic": "word", "difficulty": 2}
{"question": "4 ÷ 15 = ?", "answer": "0", "topic": "division", "difficulty": 2}
{"question": "Taylor has 16 grapes and buys 10 more. How many grapes now?", "answer": "26", "topic": "word", "difficulty": 2}
{"question": "16 ÷ 4 = ?", "answer": "4", "topic": "division", "difficulty": 2}
{"question": "Find the next number: 3, 9, 15, 21, ?", "answer": "27", "topic": "pattern", "difficulty": 2}
{"question": "6 + 17 = ?", "answer": "23", "topic": "addition", "difficulty": 2}
{"question": "11 ÷ 9 = ?", "answer": "1", "topic": "division", "difficulty": 2}
{"question": "13 + 3 = ?", "answer": "16", "topic": "addition", "difficulty": 2}
{"question": "4 × 5 = ?", "answer": "20", "topic": "multiplication", "difficulty": 2}
{"question": "6 × 11 = ?", "answer": "66", "topic": "multiplication", "difficulty": 2}
{"question": "380 ÷ 19 = ?", "answer": "20", "topic": "division", "difficulty": 2}
{"question": "A square has sides of 4 cm. What is its perimeter?", "answer": "16", "topic": "geometry", "difficulty": 2}
{"question": "16 + 14 = ?", "answer": "30", "topic": "addition", "difficulty": 2}
{"question": "19 - 9 = ?", "answer": "10", "topic": "subtraction", "difficulty": 2}
{"question": "1 + 8 = ?", "answer": "9", "topic": "addition", "difficulty": 2}
{"question": "2 ÷ 2 = ?", "answer": "1", "topic": "division", "difficulty": 2}
{"question": "170 ÷ 10 = ?", "answer": "17", "topic": "division", "difficulty": 2}
{"question": "Alex has 2 grapes and buys 5 more. How many grapes now?", "answer": "7", "topic": "word", "difficulty": 2}
{"question": "18 × 8 = ?", "answer": "144", "topic": "multiplication", "difficulty": 2}
{"question": "2 - 2 = ?", "answer": "0", "topic": "subtraction", "difficulty": 2}
{"question": "Taylor had 16 oranges but ate 9. How many left?", "answer": "7", "topic": "word", "difficulty": 2}
{"question": "2 + 7 = ?", "answer": "9", "topic": "addition", "difficulty": 2}
{"question": "A rectangle is 5 cm long and 2 cm wide. What is its area?", "answer": "10", "topic": "geometry", "difficulty": 2}
{"question": "8 × 15 = ?", "answer": "120", "topic": "multiplication", "difficulty": 2}
{"question": "9 + 15 = ?", "answer": "24", "topic": "addition", "difficulty": 2}
{"question": "12 + 11 = ?", "answer": "23", "topic": "addition", "difficulty": 2}
{"question": "18 × 7 = ?", "answer": "126", "topic": "multiplication", "difficulty": 2}
{"question": "Jamie had 11 apples but ate 10. How many left?", "answer": "1", "topic": "word", "difficulty": 2}
{"question": "6 + 10 = ?", "answer": "16", "topic": "addition", "difficulty": 2}
{"question": "Jamie had 13 oranges but ate 10. How many left?", "answer": "3", "topic": "word", "difficulty": 2}
{"question": "Jordan had 11 apples but ate 5. How many left?", "answer": "6", "topic": "word", "difficulty": 2}
{"question": "A square has sides of 12 cm. What is its perimeter?", "answer": "48", "topic": "geometry", "difficulty": 2}
{"question": "18 × 20 = ?", "answer": "360", "topic": "multiplication", "difficulty": 2}
{"question": "Find the next number: 1, 2, 3, 4, ?", "answer": "5", "topic": "pattern", "difficulty": 2}
{"question": "20 - 10 = ?", "answer": "10", "topic": "subtraction", "difficulty": 2}
{"question": "A triangle has base 15 cm and height 19 cm. Find its area.", "answer": "142.5", "topic": "geometry", "difficulty": 2}
{"question": "4 + 8 = ?", "answer": "12", "topic": "addition", "difficulty": 2}
{"question": "Find the next number: 2, 7, 12, 17, ?", "answer": "22", "topic": "pattern", "difficulty": 2}
{"question": "11 + 7 = ?", "answer": "18", "topic": "addition", "difficulty": 2}
{"question": "3 + 15 = ?", "answer": "18", "topic": "addition", "difficulty": 2}
{"question": "9 - 9 = ?", "answer": "0", "topic": "subtraction", "difficulty": 2}
{"question": "5 + 13 = ?", "answer": "18", "topic": "addition", "difficulty": 2}
{"question": "3 - 2 = ?", "answer": "1", "topic": "subtraction", "difficulty": 2}
{"question": "Casey had 9 bananas but ate 7. How many left?", "answer": "2", "topic": "word", "difficulty": 2}
{"question": "Casey has 10 pears and buys 10 more. How many pears now?", "answer": "20", "topic": "word", "difficulty": 2}
{"question": "136 ÷ 8 = ?", "answer": "17", "topic": "division", "difficulty": 2}
{"question": "A triangle has base 10 cm and height 5 cm. Find its area.", "answer": "25.0", "topic": "geometry", "difficulty": 2}
{"question": "12 + 15 = ?", "answer": "27", "topic": "addition", "difficulty": 2}
{"question": "A rectangle is 12 cm long and 5 cm wide. What is its area?", "answer": "60", "topic": "geometry", "difficulty": 2}
{"question": "140 ÷ 7 = ?", "answer": "20", "topic": "division", "difficulty": 2}
{"question": "2 ÷ 2 = ?", "answer": "1", "topic": "division", "difficulty": 2}
{"question": "5 - 4 = ?", "answer": "1", "topic": "subtraction", "difficulty": 2}
{"question": "15 + 8 = ?", "answer": "23", "topic": "addition", "difficulty": 2}
{"question": "Find the next number: 4, 6, 8, 10, ?", "answer": "12", "topic": "pattern", "difficulty": 2}
{"question": "36 ÷ 6 = ?", "answer": "6", "topic": "division", "difficulty": 2}
{"question": "18 × 6 = ?", "answer": "108", "topic": "multiplication", "difficulty": 2}
{"question": "Jordan has 11 grapes and buys 3 more. How many grapes now?", "answer": "14", "topic": "word", "difficulty": 2}
{"question": "Find the next number: 4, 9, 14, 19, ?", "answer": "24", "topic": "pattern", "difficulty": 2}
{"question": "Find the next number: 4, 5, 6, 7, ?", "answer": "8", "topic": "pattern", "difficulty": 2}
{"question": "14 × 6 = ?", "answer": "84", "topic": "multiplication", "difficulty": 2}
{"question": "19 × 10 = ?", "answer": "190", "topic": "multiplication", "difficulty": 2}
{"question": "10 - 8 = ?", "answer": "2", "topic": "subtraction", "difficulty": 2}
{"question": "14 + 11 = ?", "answer": "25", "topic": "addition", "difficulty": 2}
{"question": "10 × 15 = ?", "answer": "150", "topic": "multiplication", "difficulty": 2}
{"question": "2 × 16 = ?", "answer": "32", "topic": "multiplication", "difficulty": 2}
{"question": "A triangle has base 15 cm and height 5 cm. Find its area.", "answer": "37.5", "topic": "geometry", "difficulty": 2}
{"question": "10 - 9 = ?", "answer": "1", "topic": "subtraction", "difficulty": 2}
{"question": "6 - 3 = ?", "answer": "3", "topic": "subtraction", "difficulty": 2}
{"question": "3 + 6 = ?", "answer": "9", "topic": "addition", "difficulty": 2}
{"question": "Alex has 4 apples and buys 7 more. How many apples now?", "answer": "11", "topic": "word", "difficulty": 2}
{"question": "Find the next number: 2, 8, 14, 20, ?", "answer": "26", "topic": "pattern", "difficulty": 2}
{"question": "12 + 20 = ?", "answer": "32", "topic": "addition", "difficulty": 2}
{"question": "14 × 12 = ?", "answer": "168", "topic": "multiplication", "difficulty": 2}
{"question": "17 - 1 = ?", "answer": "16", "topic": "subtraction", "difficulty": 2}
{"question": "A square has sides of 19 cm. What is its perimeter?", "answer": "76", "topic": "geometry", "difficulty": 2}
{"question": "A square has sides of 13 cm. What is its perimeter?", "answer": "52", "topic": "geometry", "difficulty": 2}
{"question": "A square has sides of 13 cm. What is its perimeter?", "answer": "52", "topic": "geometry", "difficulty": 2}
{"question": "Taylor has 4 oranges and buys 2 more. How many oranges now?", "answer": "6", "topic": "word", "difficulty": 2}
{"question": "4 + 5 = ?", "answer": "9", "topic": "addition", "difficulty": 2}
{"question": "20 + 14 = ?", "answer": "34", "topic": "addition", "difficulty": 2}
{"question": "11 - 6 = ?", "answer": "5", "topic": "subtraction", "difficulty": 2}
{"question": "8 × 5 = ?", "answer": "40", "topic": "multiplication", "difficulty": 2}
{"question": "Jamie had 15 pears but ate 8. How many left?", "answer": "7", "topic": "word", "difficulty": 2}
{"question": "A triangle has base 16 cm and height 5 cm. Find its area.", "answer": "40.0", "topic": "geometry", "difficulty": 2}
{"question": "56 ÷ 4 = ?", "answer": "14", "topic": "division", "difficulty": 2}
{"question": "Find the next number: 4, 7, 10, 13, ?", "answer": "16", "topic": "pattern", "difficulty": 2}
{"question": "A triangle has base 19 cm and height 15 cm. Find its area.", "answer": "142.5", "topic": "geometry", "difficulty": 2}
{"question": "6 + 16 = ?", "answer": "22", "topic": "addition", "difficulty": 2}
{"question": "7 × 19 = ?", "answer": "133", "topic": "multiplication", "difficulty": 2}
{"question": "Taylor has 4 bananas and buys 8 more. How many bananas now?", "answer": "12", "topic": "word", "difficulty": 2}
{"question": "1 × 11 = ?", "answer": "11", "topic": "multiplication", "difficulty": 2}
{"question": "14 × 20 = ?", "answer": "280", "topic": "multiplication", "difficulty": 2}
{"question": "6 + 10 = ?", "answer": "16", "topic": "addition", "difficulty": 2}
{"question": "16 ÷ 12 = ?", "answer": "1", "topic": "division", "difficulty": 2}
{"question": "A rectangle is 19 cm long and 19 cm wide. What is its area?", "answer": "361", "topic": "geometry", "difficulty": 2}
{"question": "14 × 1 = ?", "answer": "14", "topic": "multiplication", "difficulty": 2}
{"question": "5 × 8 = ?", "answer": "40", "topic": "multiplication", "difficulty": 2}
{"question": "Jordan had 8 grapes but ate 2. How many left?", "answer": "6", "topic": "word", "difficulty": 2}
{"question": "7 + 20 = ?", "answer": "27", "topic": "addition", "difficulty": 2}
{"question": "A rectangle is 10 cm long and 8 cm wide. What is its area?", "answer": "80", "topic": "geometry", "difficulty": 2}
{"question": "17 - 12 = ?", "answer": "5", "topic": "subtraction", "difficulty": 2}
{"question": "A square has sides of 2 cm. What is its perimeter?", "answer": "8", "topic": "geometry", "difficulty": 2}
{"question": "11 + 19 = ?", "answer": "30", "topic": "addition", "difficulty": 2}
{"question": "10 × 8 = ?", "answer": "80", "topic": "multiplication", "difficulty": 2}
{"question": "Find the next number: 5, 7, 9, 11, ?", "answer": "13", "topic": "pattern", "difficulty": 2}
{"question": "12 × 20 = ?", "answer": "240", "topic": "multiplication", "difficulty": 2}
{"question": "Taylor had 13 pears but ate 5. How many left?", "answer": "8", "topic": "word", "difficulty": 2}
{"question": "Jordan had 8 bananas but ate 4. How many left?", "answer": "4", "topic": "word", "difficulty": 2}
{"question": "A rectangle is 7 cm long and 5 cm wide. What is its area?", "answer": "35", "topic": "geometry", "difficulty": 2}
{"question": "Taylor had 18 pears but ate 5. How many left?", "answer": "13", "topic": "word", "difficulty": 2}
{"question": "20 + 17 = ?", "answer": "37", "topic": "addition", "difficulty": 2}
{"question": "17 ÷ 10 = ?", "answer": "1", "topic": "division", "difficulty": 2}
{"question": "Find the next number: 4, 5, 6, 7, ?", "answer": "8", "topic": "pattern", "difficulty": 2}
{"question": "11 - 7 = ?", "answer": "4", "topic": "subtraction", "difficulty": 2}
{"question": "5 - 2 = ?", "answer": "3", "topic": "subtraction", "difficulty": 2}
{"question": "A triangle has base 10 cm and height 17 cm. Find its area.", "answer": "85.0", "topic": "geometry", "difficulty": 2}
{"question": "Jordan had 10 bananas but ate 5. How many left?", "answer": "5", "topic": "word", "difficulty": 2}
{"question": "Casey has 9 oranges and buys 9 more. How many oranges now?", "answer": "18", "topic": "word", "difficulty": 2}
{"question": "17 × 6 = ?", "answer": "102", "topic": "multiplication", "difficulty": 2}
{"question": "3 - 1 = ?", "answer": "2", "topic": "subtraction", "difficulty": 2}
{"question": "14 - 8 = ?", "answer": "6", "topic": "subtraction", "difficulty": 2}
{"question": "A rectangle is 30 cm long and 28 cm wide. What is its area?", "answer": "840", "topic": "geometry", "difficulty": 3}
{"question": "29 - 26 = ?", "answer": "3", "topic": "subtraction", "difficulty": 3}
{"question": "26 + 23 = ?", "answer": "49", "topic": "addition", "difficulty": 3}
{"question": "17 ÷ 22 = ?", "answer": "0", "topic": "division", "difficulty": 3}
{"question": "Jamie had 30 apples but ate 3. How many left?", "answer": "27", "topic": "word", "difficulty": 3}
{"question": "A triangle has base 24 cm and height 29 cm. Find its area.", "answer": "348.0", "topic": "geometry", "difficulty": 3}
{"question": "506 ÷ 23 = ?", "answer": "22", "topic": "division", "difficulty": 3}
{"question": "24 - 17 = ?", "answer": "7", "topic": "subtraction", "difficulty": 3}
{"question": "270 ÷ 9 = ?", "answer": "30", "topic": "division", "difficulty": 3}
{"question": "10 + 19 = ?", "answer": "29", "topic": "addition", "difficulty": 3}
{"question": "Find the next number: 4, 13, 22, 31, ?", "answer": "40", "topic": "pattern", "difficulty": 3}
{"question": "Jordan has 14 grapes and buys 8 more. How many grapes now?", "answer": "22", "topic": "word", "difficulty": 3}
{"question": "260 ÷ 20 = ?", "answer": "13", "topic": "division", "difficulty": 3}
{"question": "19 × 22 = ?", "answer": "418", "topic": "multiplication", "difficulty": 3}
{"question": "Jamie has 4 apples and buys 11 more. How many apples now?", "answer": "15", "topic": "word", "difficulty": 3}
{"question": "3 × 18 = ?", "answer": "54", "topic": "multiplication", "difficulty": 3}
{"question": "3 - 3 = ?", "answer": "0", "topic": "subtraction", "difficulty": 3}
{"question": "20 + 18 = ?", "answer": "38", "topic": "addition", "difficulty": 3}
{"question": "7 + 17 = ?", "answer": "24", "topic": "addition", "difficulty": 3}
{"question": "8 × 12 = ?", "answer": "96", "topic": "multiplication", "difficulty": 3}
{"question": "28 - 14 = ?", "answer": "14", "topic": "subtraction", "difficulty": 3}
{"question": "A square has sides of 9 cm. What is its perimeter?", "answer": "36", "topic": "geometry", "difficulty": 3}
{"question": "28 - 18 = ?", "answer": "10", "topic": "subtraction", "difficulty": 3}
{"question": "11 - 4 = ?", "answer": "7", "topic": "subtraction", "difficulty": 3}
{"question": "Find the next number: 2, 4, 6, 8, ?", "answer": "10", "topic": "pattern", "difficulty": 3}
{"question": "27 × 19 = ?", "answer": "513", "topic": "multiplication", "difficulty": 3}
{"question": "12 + 30 = ?", "answer": "42", "topic": "addition", "difficulty": 3}
{"question": "20 - 6 = ?", "answer": "14", "topic": "subtraction", "difficulty": 3}
{"question": "A rectangle is 30 cm long and 18 cm wide. What is its area?", "answer": "540", "topic": "geometry", "difficulty": 3}
{"question": "20 × 12 = ?", "answer": "240", "topic": "multiplication", "difficulty": 3}
{"question": "26 + 9 = ?", "answer": "35", "topic": "addition", "difficulty": 3}
{"question": "A triangle has base 27 cm and height 29 cm. Find its area.", "answer": "391.5", "topic": "geometry", "difficulty": 3}
{"question": "44 ÷ 4 = ?", "answer": "11", "topic": "division", "difficulty": 3}
{"question": "Casey had 8 apples but ate 6. How many left?", "answer": "2", "topic": "word", "difficulty": 3}
{"question": "Jamie has 16 grapes and buys 15 more. How many grapes now?", "answer": "31", "topic": "word", "difficulty": 3}
{"question": "Find the next number: 3, 7, 11, 15, ?", "answer": "19", "topic": "pattern", "difficulty": 3}
{"question": "A rectangle is 21 cm long and 19 cm wide. What is its area?", "answer": "399", "topic": "geometry", "difficulty": 3}
{"question": "17 - 15 = ?", "answer": "2", "topic": "subtraction", "difficulty": 3}
{"question": "22 × 18 = ?", "answer": "396", "topic": "multiplication", "difficulty": 3}
{"question": "Jordan has 23 pears and buys 9 more. How many pears now?", "answer": "32", "topic": "word", "difficulty": 3}
{"question": "Jamie has 11 apples and buys 14 more. How many apples now?", "answer": "25", "topic": "word", "difficulty": 3}
{"question": "29 × 13 = ?", "answer": "377", "topic": "multiplication", "difficulty": 3}
{"question": "11 ÷ 28 = ?", "answer": "0", "topic": "division", "difficulty": 3}
{"question": "A square has sides of 19 cm. What is its perimeter?", "answer": "76", "topic": "geometry", "difficulty": 3}
{"question": "12 + 13 = ?", "answer": "25", "topic": "addition", "difficulty": 3}
{"question": "17 × 7 = ?", "answer": "119", "topic": "multiplication", "difficulty": 3}
{"question": "Find the next number: 2, 3, 4, 5, ?", "answer": "6", "topic": "pattern", "difficulty": 3}
{"question": "29 + 6 = ?", "answer": "35", "topic": "addition", "difficulty": 3}
{"question": "Casey has 2 oranges and buys 9 more. How many oranges now?", "answer": "11", "topic": "word", "difficulty": 3}
{"question": "11 + 3 = ?", "answer": "14", "topic": "addition", "difficulty": 3}
{"question": "11 ÷ 27 = ?", "answer": "0", "topic": "division", "difficulty": 3}
{"question": "A square has sides of 11 cm. What is its perimeter?", "answer": "44", "topic": "geometry", "difficulty": 3}
{"question": "18 + 10 = ?", "answer": "28", "topic": "addition", "difficulty": 3}
{"question": "A triangle has base 22 cm and height 9 cm. Find its area.", "answer": "99.0", "topic": "geometry", "difficulty": 3}
{"question": "A square has sides of 15 cm. What is its perimeter?", "answer": "60", "topic": "geometry", "difficulty": 3}
{"question": "12 + 6 = ?", "answer": "18", "topic": "addition", "difficulty": 3}
{"question": "Find the next number: 5, 13, 21, 29, ?", "answer": "37", "topic": "pattern", "difficulty": 3}
{"question": "A rectangle is 26 cm long and 3 cm wide. What is its area?", "answer": "78", "topic": "geometry", "difficulty": 3}
{"question": "16 ÷ 23 = ?", "answer": "0", "topic": "division", "difficulty": 3}
{"question": "442 ÷ 17 = ?", "answer": "26", "topic": "division", "difficulty": 3}
{"question": "Casey had 25 oranges but ate 2. How many left?", "answer": "23", "topic": "word", "difficulty": 3}
{"question": "136 ÷ 8 = ?", "answer": "17", "topic": "division", "difficulty": 3}
{"question": "2 × 26 = ?", "answer": "52", "topic": "multiplication", "difficulty": 3}
{"question": "28 + 24 = ?", "answer": "52", "topic": "addition", "difficulty": 3}
{"question": "253 ÷ 23 = ?", "answer": "11", "topic": "division", "difficulty": 3}
{"question": "A rectangle is 6 cm long and 7 cm wide. What is its area?", "answer": "42", "topic": "geometry", "difficulty": 3}
{"question": "12 - 2 = ?", "answer": "10", "topic": "subtraction", "difficulty": 3}
{"question": "29 - 4 = ?", "answer": "25", "topic": "subtraction", "difficulty": 3}
{"question": "13 × 23 = ?", "answer": "299", "topic": "multiplication", "difficulty": 3}
{"question": "27 ÷ 21 = ?", "answer": "1", "topic": "division", "difficulty": 3}
{"question": "Casey had 19 oranges but ate 11. How many left?", "answer": "8", "topic": "word", "difficulty": 3}
{"question": "21 - 8 = ?", "answer": "13", "topic": "subtraction", "difficulty": 3}
{"question": "Find the next number: 2, 9, 16, 23, ?", "answer": "30", "topic": "pattern", "difficulty": 3}
{"question": "15 ÷ 16 = ?", "answer": "0", "topic": "division", "difficulty": 3}
{"question": "288 ÷ 24 = ?", "answer": "12", "topic": "division", "difficulty": 3}
{"question": "3 × 24 = ?", "answer": "72", "topic": "multiplication", "difficulty": 3}
{"question": "3 × 21 = ?", "answer": "63", "topic": "multiplication", "difficulty": 3}
{"question": "13 - 8 = ?", "answer": "5", "topic": "subtraction", "difficulty": 3}
{"question": "28 + 6 = ?", "answer": "34", "topic": "addition", "difficulty": 3}
{"question": "A square has sides of 25 cm. What is its perimeter?", "answer": "100", "topic": "geometry", "difficulty": 3}
{"question": "Jamie had 8 bananas but ate 2. How many left?", "answer": "6", "topic": "word", "difficulty": 3}
{"question": "A rectangle is 8 cm long and 26 cm wide. What is its area?", "answer": "208", "topic": "geometry", "difficulty": 3}
{"question": "A square has sides of 3 cm. What is its perimeter?", "answer": "12", "topic": "geometry", "difficulty": 3}
{"question": "A rectangle is 20 cm long and 25 cm wide. What is its area?", "answer": "500", "topic": "geometry", "difficulty": 3}
{"question": "7 ÷ 25 = ?", "answer": "0", "topic": "division", "difficulty": 3}
{"question": "28 ÷ 24 = ?", "answer": "1", "topic": "division", "difficulty": 3}
{"question": "17 - 11 = ?", "answer": "6", "topic": "subtraction", "difficulty": 3}
{"question": "26 ÷ 16 = ?", "answer": "1", "topic": "division", "difficulty": 3}
{"question": "Find the next number: 1, 2, 3, 4, ?", "answer": "5", "topic": "pattern", "difficulty": 3}
{"question": "Find the next number: 4, 13, 22, 31, ?", "answer": "40", "topic": "pattern", "difficulty": 3}
{"question": "12 + 17 = ?", "answer": "29", "topic": "addition", "difficulty": 3}
{"question": "4 + 5 = ?", "answer": "9", "topic": "addition", "difficulty": 3}
{"question": "27 + 28 = ?", "answer": "55", "topic": "addition", "difficulty": 3}
{"question": "29 + 13 = ?", "answer": "42", "topic": "addition", "difficulty": 3}
{"question": "26 + 28 = ?", "answer": "54", "topic": "addition", "difficulty": 3}
{"question": "6 ÷ 2 = ?", "answer": "3", "topic": "division", "difficulty": 3}
{"question": "A triangle has base 9 cm and height 15 cm. Find its area.", "answer": "67.5", "topic": "geometry", "difficulty": 3}
{"question": "Find the next number: 5, 10, 15, 20, ?", "answer": "25", "topic": "pattern", "difficulty": 3}
{"question": "6 - 2 = ?", "answer": "4", "topic": "subtraction", "difficulty": 3}
{"question": "19 - 13 = ?", "answer": "6", "topic": "subtraction", "difficulty": 3}
{"question": "16 - 1 = ?", "answer": "15", "topic": "subtraction", "difficulty": 3}
{"question": "18 - 10 = ?", "answer": "8", "topic": "subtraction", "difficulty": 3}
{"question": "A rectangle is 18 cm long and 20 cm wide. What is its area?", "answer": "360", "topic": "geometry", "difficulty": 3}
{"question": "Alex had 17 grapes but ate 14. How many left?", "answer": "3", "topic": "word", "difficulty": 3}
{"question": "304 ÷ 19 = ?", "answer": "16", "topic": "division", "difficulty": 3}
{"question": "Find the next number: 2, 6, 10, 14, ?", "answer": "18", "topic": "pattern", "difficulty": 3}
{"question": "8 + 18 = ?", "answer": "26", "topic": "addition", "difficulty": 3}
{"question": "A rectangle is 3 cm long and 12 cm wide. What is its area?", "answer": "36", "topic": "geometry", "difficulty": 3}
{"question": "21 × 16 = ?", "answer": "336", "topic": "multiplication", "difficulty": 3}
{"question": "Find the next number: 5, 9, 13, 17, ?", "answer": "21", "topic": "pattern", "difficulty": 3}
{"question": "Find the next number: 3, 5, 7, 9, ?", "answer": "11", "topic": "pattern", "difficulty": 3}
{"question": "26 ÷ 1 = ?", "answer": "26", "topic": "division", "difficulty": 3}
{"question": "Taylor has 28 pears and buys 7 more. How many pears now?", "answer": "35", "topic": "word", "difficulty": 3}
{"question": "Casey has 25 bananas and buys 2 more. How many bananas now?", "answer": "27", "topic": "word", "difficulty": 3}
{"question": "26 - 3 = ?", "answer": "23", "topic": "subtraction", "difficulty": 3}
{"question": "220 ÷ 22 = ?", "answer": "10", "topic": "division", "difficulty": 3}
{"question": "30 + 28 = ?", "answer": "58", "topic": "addition", "difficulty": 3}
{"question": "A triangle has base 28 cm and height 8 cm. Find its area.", "answer": "112.0", "topic": "geometry", "difficulty": 3}
{"question": "26 - 25 = ?", "answer": "1", "topic": "subtraction", "difficulty": 3}
{"question": "Casey has 30 apples and buys 15 more. How many apples now?", "answer": "45", "topic": "word", "difficulty": 3}
{"question": "Casey had 24 apples but ate 11. How many left?", "answer": "13", "topic": "word", "difficulty": 3}
{"question": "Casey had 21 pears but ate 11. How many left?", "answer": "10", "topic": "word", "difficulty": 3}
{"question": "A triangle has base 15 cm and height 30 cm. Find its area.", "answer": "225.0", "topic": "geometry", "difficulty": 3}
{"question": "Casey had 27 apples but ate 10. How many left?", "answer": "17", "topic": "word", "difficulty": 3}
{"question": "Jordan has 30 oranges and buys 7 more. How many oranges now?", "answer": "37", "topic": "word", "difficulty": 3}
{"question": "Find the next number: 5, 9, 13, 17, ?", "answer": "21", "topic": "pattern", "difficulty": 3}
{"question": "Find the next number: 1, 4, 7, 10, ?", "answer": "13", "topic": "pattern", "difficulty": 3}
{"question": "Find the next number: 5, 10, 15, 20, ?", "answer": "25", "topic": "pattern", "difficulty": 3}
{"question": "A square has sides of 11 cm. What is its perimeter?", "answer": "44", "topic": "geometry", "difficulty": 3}
{"question": "21 ÷ 17 = ?", "answer": "1", "topic": "division", "difficulty": 3}
{"question": "5 ÷ 30 = ?", "answer": "0", "topic": "division", "difficulty": 3}
{"question": "5 + 22 = ?", "answer": "27", "topic": "addition", "difficulty": 3}
{"question": "Find the next number: 3, 10, 17, 24, ?", "answer": "31", "topic": "pattern", "difficulty": 3}
{"question": "6 + 1 = ?", "answer": "7", "topic": "addition", "difficulty": 3}
{"question": "594 ÷ 27 = ?", "answer": "22", "topic": "division", "difficulty": 3}
{"question": "25 × 23 = ?", "answer": "575", "topic": "multiplication", "difficulty": 3}
{"question": "Alex had 7 grapes but ate 3. How many left?", "answer": "4", "topic": "word", "difficulty": 3}
{"question": "Find the next number: 5, 12, 19, 26, ?", "answer": "33", "topic": "pattern", "difficulty": 3}
{"question": "14 + 19 = ?", "answer": "33", "topic": "addition", "difficulty": 3}
{"question": "21 × 8 = ?", "answer": "168", "topic": "multiplication", "difficulty": 3}
{"question": "30 × 24 = ?", "answer": "720", "topic": "multiplication", "difficulty": 3}
{"question": "30 ÷ 28 = ?", "answer": "1", "topic": "division", "difficulty": 3}
{"question": "Find the next number: 2, 11, 20, 29, ?", "answer": "38", "topic": "pattern", "difficulty": 3}
{"question": "Find the next number: 3, 4, 5, 6, ?", "answer": "7", "topic": "pattern", "difficulty": 3}
{"question": "21 + 2 = ?", "answer": "23", "topic": "addition", "difficulty": 3}
{"question": "Jamie had 14 apples but ate 10. How many left?", "answer": "4", "topic": "word", "difficulty": 3}
{"question": "A triangle has base 25 cm and height 21 cm. Find its area.", "answer": "262.5", "topic": "geometry", "difficulty": 3}
{"question": "Alex had 10 oranges but ate 9. How many left?", "answer": "1", "topic": "word", "difficulty": 3}
{"question": "Alex had 24 apples but ate 9. How many left?", "answer": "15", "topic": "word", "difficulty": 3}
{"question": "Find the next number: 4, 6, 8, 10, ?", "answer": "12", "topic": "pattern", "difficulty": 3}
{"question": "Casey has 7 bananas and buys 3 more. How many bananas now?", "answer": "10", "topic": "word", "difficulty": 3}
{"question": "23 + 3 = ?", "answer": "26", "topic": "addition", "difficulty": 3}
{"question": "Find the next number: 5, 8, 11, 14, ?", "answer": "17", "topic": "pattern", "difficulty": 3}
{"question": "18 - 2 = ?", "answer": "16", "topic": "subtraction", "difficulty": 3}
{"question": "28 + 5 = ?", "answer": "33", "topic": "addition", "difficulty": 3}
{"question": "9 × 19 = ?", "answer": "171", "topic": "multiplication", "difficulty": 3}
{"question": "Alex had 27 oranges but ate 15. How many left?", "answer": "12", "topic": "word", "difficulty": 3}
{"question": "Find the next number: 4, 11, 18, 25, ?", "answer": "32", "topic": "pattern", "difficulty": 3}
{"question": "6 + 22 = ?", "answer": "28", "topic": "addition", "difficulty": 3}
{"question": "Find the next number: 3, 5, 7, 9, ?", "answer": "11", "topic": "pattern", "difficulty": 3}
{"question": "A rectangle is 17 cm long and 24 cm wide. What is its area?", "answer": "408", "topic": "geometry", "difficulty": 3}
{"question": "9 + 17 = ?", "answer": "26", "topic": "addition", "difficulty": 3}
{"question": "22 - 13 = ?", "answer": "9", "topic": "subtraction", "difficulty": 3}
{"question": "16 + 26 = ?", "answer": "42", "topic": "addition", "difficulty": 3}
{"question": "24 ÷ 24 = ?", "answer": "1", "topic": "division", "difficulty": 3}
{"question": "6 - 2 = ?", "answer": "4", "topic": "subtraction", "difficulty": 3}
{"question": "14 × 22 = ?", "answer": "308", "topic": "multiplication", "difficulty": 3}
{"question": "26 × 9 = ?", "answer": "234", "topic": "multiplication", "difficulty": 3}
{"question": "21 - 3 = ?", "answer": "18", "topic": "subtraction", "difficulty": 3}
{"question": "Alex had 12 oranges but ate 6. How many left?", "answer": "6", "topic": "word", "difficulty": 3}
{"question": "13 × 23 = ?", "answer": "299", "topic": "multiplication", "difficulty": 3}
{"question": "A triangle has base 9 cm and height 4 cm. Find its area.", "answer": "18.0", "topic": "geometry", "difficulty": 3}
{"question": "546 ÷ 26 = ?", "answer": "21", "topic": "division", "difficulty": 3}
{"question": "A square has sides of 26 cm. What is its perimeter?", "answer": "104", "topic": "geometry", "difficulty": 3}
{"question": "17 - 8 = ?", "answer": "9", "topic": "subtraction", "difficulty": 3}
{"question": "21 × 14 = ?", "answer": "294", "topic": "multiplication", "difficulty": 3}
{"question": "Find the next number: 1, 4, 7, 10, ?", "answer": "13", "topic": "pattern", "difficulty": 3}
{"question": "7 ÷ 14 = ?", "answer": "0", "topic": "division", "difficulty": 3}
{"question": "1 ÷ 4 = ?", "answer": "0", "topic": "division", "difficulty": 3}
{"question": "Taylor had 26 oranges but ate 13. How many left?", "answer": "13", "topic": "word", "difficulty": 3}
{"question": "14 - 13 = ?", "answer": "1", "topic": "subtraction", "difficulty": 3}
{"question": "17 × 9 = ?", "answer": "153", "topic": "multiplication", "difficulty": 3}
{"question": "12 - 5 = ?", "answer": "7", "topic": "subtraction", "difficulty": 3}
{"question": "A triangle has base 29 cm and height 4 cm. Find its area.", "answer": "58.0", "topic": "geometry", "difficulty": 3}
{"question": "A triangle has base 4 cm and height 27 cm. Find its area.", "answer": "54.0", "topic": "geometry", "difficulty": 3}
{"question": "11 ÷ 2 = ?", "answer": "5", "topic": "division", "difficulty": 3}
{"question": "A triangle has base 7 cm and height 18 cm. Find its area.", "answer": "63.0", "topic": "geometry", "difficulty": 3}
{"question": "450 ÷ 30 = ?", "answer": "15", "topic": "division", "difficulty": 3}
{"question": "15 × 27 = ?", "answer": "405", "topic": "multiplication", "difficulty": 3}
{"question": "19 × 25 = ?", "answer": "475", "topic": "multiplication", "difficulty": 3}
{"question": "6 + 26 = ?", "answer": "32", "topic": "addition", "difficulty": 3}
{"question": "A square has sides of 23 cm. What is its perimeter?", "answer": "92", "topic": "geometry", "difficulty": 3}
{"question": "Find the next number: 2, 6, 10, 14, ?", "answer": "18", "topic": "pattern", "difficulty": 3}
{"question": "6 ÷ 8 = ?", "answer": "0", "topic": "division", "difficulty": 3}
{"question": "1 × 22 = ?", "answer": "22", "topic": "multiplication", "difficulty": 3}
{"question": "14 × 14 = ?", "answer": "196", "topic": "multiplication", "difficulty": 3}
{"question": "20 + 23 = ?", "answer": "43", "topic": "addition", "difficulty": 3}
{"question": "23 - 20 = ?", "answer": "3", "topic": "subtraction", "difficulty": 3}
{"question": "84 ÷ 21 = ?", "answer": "4", "topic": "division", "difficulty": 3}
{"question": "28 × 10 = ?", "answer": "280", "topic": "multiplication", "difficulty": 3}
{"question": "7 × 3 = ?", "answer": "21", "topic": "multiplication", "difficulty": 4}
{"question": "40 × 18 = ?", "answer": "720", "topic": "multiplication", "difficulty": 4}
{"question": "Taylor has 29 oranges and buys 11 more. How many oranges now?", "answer": "40", "topic": "word", "difficulty": 4}
{"question": "17 + 30 = ?", "answer": "47", "topic": "addition", "difficulty": 4}
{"question": "390 ÷ 39 = ?", "answer": "10", "topic": "division", "difficulty": 4}
{"question": "39 × 4 = ?", "answer": "156", "topic": "multiplication", "difficulty": 4}
{"question": "26 × 22 = ?", "answer": "572", "topic": "multiplication", "difficulty": 4}
{"question": "1 ÷ 27 = ?", "answer": "0", "topic": "division", "difficulty": 4}
{"question": "5 + 39 = ?", "answer": "44", "topic": "addition", "difficulty": 4}
{"question": "40 ÷ 25 = ?", "answer": "1", "topic": "division", "difficulty": 4}
{"question": "27 + 36 = ?", "answer": "63", "topic": "addition", "difficulty": 4}
{"question": "Jamie has 33 bananas and buys 20 more. How many bananas now?", "answer": "53", "topic": "word", "difficulty": 4}
{"question": "A square has sides of 9 cm. What is its perimeter?", "answer": "36", "topic": "geometry", "difficulty": 4}
{"question": "15 × 38 = ?", "answer": "570", "topic": "multiplication", "difficulty": 4}
{"question": "19 - 3 = ?", "answer": "16", "topic": "subtraction", "difficulty": 4}
{"question": "16 ÷ 29 = ?", "answer": "0", "topic": "division", "difficulty": 4}
{"question": "24 + 30 = ?", "answer": "54", "topic": "addition", "difficulty": 4}
{"question": "Taylor had 15 oranges but ate 3. How many left?", "answer": "12", "topic": "word", "difficulty": 4}
{"question": "31 - 25 = ?", "answer": "6", "topic": "subtraction", "difficulty": 4}
{"question": "39 × 31 = ?", "answer": "1209", "topic": "multiplication", "difficulty": 4}
{"question": "Taylor has 12 oranges and buys 15 more. How many oranges now?", "answer": "27", "topic": "word", "difficulty": 4}
{"question": "A rectangle is 23 cm long and 11 cm wide. What is its area?", "answer": "253", "topic": "geometry", "difficulty": 4}
{"question": "Jamie had 40 oranges but ate 16. How many left?", "answer": "24", "topic": "word", "difficulty": 4}
{"question": "25 × 23 = ?", "answer": "575", "topic": "multiplication", "difficulty": 4}
{"question": "24 - 3 = ?", "answer": "21", "topic": "subtraction", "difficulty": 4}
{"question": "180 ÷ 9 = ?", "answer": "20", "topic": "division", "difficulty": 4}
{"question": "1 + 6 = ?", "answer": "7", "topic": "addition", "difficulty": 4}
{"question": "A square has sides of 5 cm. What is its perimeter?", "answer": "20", "topic": "geometry", "difficulty": 4}
{"question": "Jamie has 4 pears and buys 17 more. How many pears now?", "answer": "21", "topic": "word", "difficulty": 4}
{"question": "27 - 21 = ?", "answer": "6", "topic": "subtraction", "difficulty": 4}
{"question": "32 - 31 = ?", "answer": "1", "topic": "subtraction", "difficulty": 4}
{"question": "A rectangle is 30 cm long and 15 cm wide. What is its area?", "answer": "450", "topic": "geometry", "difficulty": 4}
{"question": "14 × 8 = ?", "answer": "112", "topic": "multiplication", "difficulty": 4}
{"question": "34 - 19 = ?", "answer": "15", "topic": "subtraction", "difficulty": 4}
{"question": "Jordan has 3 apples and buys 6 more. How many apples now?", "answer": "9", "topic": "word", "difficulty": 4}
{"question": "100 ÷ 20 = ?", "answer": "5", "topic": "division", "difficulty": 4}
{"question": "22 ÷ 1 = ?", "answer": "22", "topic": "division", "difficulty": 4}
{"question": "28 + 29 = ?", "answer": "57", "topic": "addition", "difficulty": 4}
{"question": "17 + 32 = ?", "answer": "49", "topic": "addition", "difficulty": 4}
{"question": "6 + 40 = ?", "answer": "46", "topic": "addition", "difficulty": 4}
{"question": "29 - 15 = ?", "answer": "14", "topic": "subtraction", "difficulty": 4}
{"question": "28 ÷ 35 = ?", "answer": "0", "topic": "division", "difficulty": 4}
{"question": "4 + 2 = ?", "answer": "6", "topic": "addition", "difficulty": 4}
{"question": "17 + 35 = ?", "answer": "52", "topic": "addition", "difficulty": 4}
{"question": "A square has sides of 13 cm. What is its perimeter?", "answer": "52", "topic": "geometry", "difficulty": 4}
{"question": "8 + 4 = ?", "answer": "12", "topic": "addition", "difficulty": 4}
{"question": "1332 ÷ 37 = ?", "answer": "36", "topic": "division", "difficulty": 4}
{"question": "A rectangle is 15 cm long and 9 cm wide. What is its area?", "answer": "135", "topic": "geometry", "difficulty": 4}
{"question": "189 ÷ 27 = ?", "answer": "7", "topic": "division", "difficulty": 4}
{"question": "Taylor has 6 pears and buys 6 more. How many pears now?", "answer": "12", "topic": "word", "difficulty": 4}
{"question": "1480 ÷ 40 = ?", "answer": "37", "topic": "division", "difficulty": 4}
{"question": "33 × 40 = ?", "answer": "1320", "topic": "multiplication", "difficulty": 4}
{"question": "2 + 28 = ?", "answer": "30", "topic": "addition", "difficulty": 4}
{"question": "31 + 30 = ?", "answer": "61", "topic": "addition", "difficulty": 4}
{"question": "22 + 27 = ?", "answer": "49", "topic": "addition", "difficulty": 4}
{"question": "32 ÷ 23 = ?", "answer": "1", "topic": "division", "difficulty": 4}
{"question": "27 - 5 = ?", "answer": "22", "topic": "subtraction", "difficulty": 4}
{"question": "32 - 10 = ?", "answer": "22", "topic": "subtraction", "difficulty": 4}
{"question": "12 ÷ 6 = ?", "answer": "2", "topic": "division", "difficulty": 4}
{"question": "30 - 15 = ?", "answer": "15", "topic": "subtraction", "difficulty": 4}
{"question": "36 ÷ 20 = ?", "answer": "1", "topic": "division", "difficulty": 4}
{"question": "A triangle has base 17 cm and height 29 cm. Find its area.", "answer": "246.5", "topic": "geometry", "difficulty": 4}
{"question": "21 × 22 = ?", "answer": "462", "topic": "multiplication", "difficulty": 4}
{"question": "Jamie has 5 bananas and buys 10 more. How many bananas now?", "answer": "15", "topic": "word", "difficulty": 4}
{"question": "7 + 37 = ?", "answer": "44", "topic": "addition", "difficulty": 4}
{"question": "Find the next number: 5, 15, 25, 35, ?", "answer": "45", "topic": "pattern", "difficulty": 4}
{"question": "3 × 34 = ?", "answer": "102", "topic": "multiplication", "difficulty": 4}
{"question": "57 ÷ 3 = ?", "answer": "19", "topic": "division", "difficulty": 4}
{"question": "25 × 19 = ?", "answer": "475", "topic": "multiplication", "difficulty": 4}
{"question": "A rectangle is 30 cm long and 9 cm wide. What is its area?", "answer": "270", "topic": "geometry", "difficulty": 4}
{"question": "Jamie had 29 pears but ate 14. How many left?", "answer": "15", "topic": "word", "difficulty": 4}
{"question": "1 ÷ 28 = ?", "answer": "0", "topic": "division", "difficulty": 4}
{"question": "A rectangle is 29 cm long and 9 cm wide. What is its area?", "answer": "261", "topic": "geometry", "difficulty": 4}
{"question": "34 × 12 = ?", "answer": "408", "topic": "multiplication", "difficulty": 4}
{"question": "34 + 29 = ?", "answer": "63", "topic": "addition", "difficulty": 4}
{"question": "34 - 17 = ?", "answer": "17", "topic": "subtraction", "difficulty": 4}
{"question": "30 + 22 = ?", "answer": "52", "topic": "addition", "difficulty": 4}
{"question": "19 ÷ 35 = ?", "answer": "0", "topic": "division", "difficulty": 4}
{"question": "Casey had 21 pears but ate 8. How many left?", "answer": "13", "topic": "word", "difficulty": 4}
{"question": "32 + 19 = ?", "answer": "51", "topic": "addition", "difficulty": 4}
{"question": "Taylor has 13 oranges and buys 19 more. How many oranges now?", "answer": "32", "topic": "word", "difficulty": 4}
{"question": "1190 ÷ 34 = ?", "answer": "35", "topic": "division", "difficulty": 4}
{"question": "648 ÷ 27 = ?", "answer": "24", "topic": "division", "difficulty": 4}
{"question": "20 × 19 = ?", "answer": "380", "topic": "multiplication", "difficulty": 4}
{"question": "Casey has 24 pears and buys 15 more. How many pears now?", "answer": "39", "topic": "word", "difficulty": 4}
{"question": "A rectangle is 4 cm long and 34 cm wide. What is its area?", "answer": "136", "topic": "geometry", "difficulty": 4}
{"question": "40 - 19 = ?", "answer": "21", "topic": "subtraction", "difficulty": 4}
{"question": "9 ÷ 11 = ?", "answer": "0", "topic": "division", "difficulty": 4}
{"question": "Taylor has 5 bananas and buys 16 more. How many bananas now?", "answer": "21", "topic": "word", "difficulty": 4}
{"question": "9 + 8 = ?", "answer": "17", "topic": "addition", "difficulty": 4}
{"question": "A rectangle is 20 cm long and 24 cm wide. What is its area?", "answer": "480", "topic": "geometry", "difficulty": 4}
{"question": "Find the next number: 1, 7, 13, 19, ?", "answer": "25", "topic": "pattern", "difficulty": 4}
{"question": "A rectangle is 11 cm long and 4 cm wide. What is its area?", "answer": "44", "topic": "geometry", "difficulty": 4}
{"question": "Casey had 17 grapes but ate 4. How many left?", "answer": "13", "topic": "word", "difficulty": 4}
{"question": "Alex has 11 grapes and buys 16 more. How many grapes now?", "answer": "27", "topic": "word", "difficulty": 4}
{"question": "Find the next number: 2, 4, 6, 8, ?", "answer": "10", "topic": "pattern", "difficulty": 4}
{"question": "1 ÷ 10 = ?", "answer": "0", "topic": "division", "difficulty": 4}
{"question": "Alex had 5 bananas but ate 4. How many left?", "answer": "1", "topic": "word", "difficulty": 4}
{"question": "Find the next number: 5, 12, 19, 26, ?", "answer": "33", "topic": "pattern", "difficulty": 4}
{"question": "A rectangle is 11 cm long and 14 cm wide. What is its area?", "answer": "154", "topic": "geometry", "difficulty": 4}
{"question": "33 - 10 = ?", "answer": "23", "topic": "subtraction", "difficulty": 4}
{"question": "29 + 27 = ?", "answer": "56", "topic": "addition", "difficulty": 4}
{"question": "Find the next number: 5, 17, 29, 41, ?", "answer": "53", "topic": "pattern", "difficulty": 4}
{"question": "33 - 29 = ?", "answer": "4", "topic": "subtraction", "difficulty": 4}
{"question": "Jordan had 31 bananas but ate 15. How many left?", "answer": "16", "topic": "word", "difficulty": 4}
{"question": "25 + 18 = ?", "answer": "43", "topic": "addition", "difficulty": 4}
{"question": "Find the next number: 4, 5, 6, 7, ?", "answer": "8", "topic": "pattern", "difficulty": 4}
{"question": "A rectangle is 16 cm long and 40 cm wide. What is its area?", "answer": "640", "topic": "geometry", "difficulty": 4}
{"question": "31 - 14 = ?", "answer": "17", "topic": "subtraction", "difficulty": 4}
{"question": "555 ÷ 37 = ?", "answer": "15", "topic": "division", "difficulty": 4}
{"question": "A triangle has base 30 cm and height 17 cm. Find its area.", "answer": "255.0", "topic": "geometry", "difficulty": 4}
{"question": "A triangle has base 28 cm and height 40 cm. Find its area.", "answer": "560.0", "topic": "geometry", "difficulty": 4}
{"question": "594 ÷ 33 = ?", "answer": "18", "topic": "division", "difficulty": 4}
{"question": "Find the next number: 4, 11, 18, 25, ?", "answer": "32", "topic": "pattern", "difficulty": 4}
{"question": "Alex had 13 pears but ate 4. How many left?", "answer": "9", "topic": "word", "difficulty": 4}
{"question": "A square has sides of 18 cm. What is its perimeter?", "answer": "72", "topic": "geometry", "difficulty": 4}
{"question": "Jamie has 25 bananas and buys 19 more. How many bananas now?", "answer": "44", "topic": "word", "difficulty": 4}
{"question": "A square has sides of 7 cm. What is its perimeter?", "answer": "28", "topic": "geometry", "difficulty": 4}
{"question": "9 + 17 = ?", "answer": "26", "topic": "addition", "difficulty": 4}
{"question": "28 ÷ 23 = ?", "answer": "1", "topic": "division", "difficulty": 4}
{"question": "17 - 17 = ?", "answer": "0", "topic": "subtraction", "difficulty": 4}
{"question": "513 ÷ 19 = ?", "answer": "27", "topic": "division", "difficulty": 4}
{"question": "Casey had 13 pears but ate 2. How many left?", "answer": "11", "topic": "word", "difficulty": 4}
{"question": "6 + 40 = ?", "answer": "46", "topic": "addition", "difficulty": 4}
{"question": "Jamie has 22 grapes and buys 11 more. How many grapes now?", "answer": "33", "topic": "word", "difficulty": 4}
{"question": "5 ÷ 10 = ?", "answer": "0", "topic": "division", "difficulty": 4}
{"question": "24 - 23 = ?", "answer": "1", "topic": "subtraction", "difficulty": 4}
{"question": "68 ÷ 34 = ?", "answer": "2", "topic": "division", "difficulty": 4}
{"question": "Find the next number: 2, 9, 16, 23, ?", "answer": "30", "topic": "pattern", "difficulty": 4}
{"question": "A rectangle is 10 cm long and 30 cm wide. What is its area?", "answer": "300", "topic": "geometry", "difficulty": 4}
{"question": "1 × 13 = ?", "answer": "13", "topic": "multiplication", "difficulty": 4}
{"question": "A rectangle is 26 cm long and 21 cm wide. What is its area?", "answer": "546", "topic": "geometry", "difficulty": 4}
{"question": "Jamie has 10 oranges and buys 10 more. How many oranges now?", "answer": "20", "topic": "word", "difficulty": 4}
{"question": "30 ÷ 17 = ?", "answer": "1", "topic": "division", "difficulty": 4}
{"question": "Jamie had 35 grapes but ate 18. How many left?", "answer": "17", "topic": "word", "difficulty": 4}
{"question": "Jordan had 30 bananas but ate 5. How many left?", "answer": "25", "topic": "word", "difficulty": 4}
{"question": "A rectangle is 22 cm long and 3 cm wide. What is its area?", "answer": "66", "topic": "geometry", "difficulty": 4}
{"question": "7 × 40 = ?", "answer": "280", "topic": "multiplication", "difficulty": 4}
{"question": "440 ÷ 20 = ?", "answer": "22", "topic": "division", "difficulty": 4}
{"question": "20 × 9 = ?", "answer": "180", "topic": "multiplication", "difficulty": 4}
{"question": "2 ÷ 37 = ?", "answer": "0", "topic": "division", "difficulty": 4}
{"question": "40 + 13 = ?", "answer": "53", "topic": "addition", "difficulty": 4}
{"question": "A square has sides of 15 cm. What is its perimeter?", "answer": "60", "topic": "geometry", "difficulty": 4}
{"question": "30 - 20 = ?", "answer": "10", "topic": "subtraction", "difficulty": 4}
{"question": "9 × 29 = ?", "answer": "261", "topic": "multiplication", "difficulty": 4}
{"question": "33 × 25 = ?", "answer": "825", "topic": "multiplication", "difficulty": 4}
{"question": "23 - 3 = ?", "answer": "20", "topic": "subtraction", "difficulty": 4}
{"question": "A square has sides of 26 cm. What is its perimeter?", "answer": "104", "topic": "geometry", "difficulty": 4}
{"question": "13 × 4 = ?", "answer": "52", "topic": "multiplication", "difficulty": 4}
{"question": "5 + 33 = ?", "answer": "38", "topic": "addition", "difficulty": 4}
{"question": "40 - 24 = ?", "answer": "16", "topic": "subtraction", "difficulty": 4}
{"question": "A triangle has base 38 cm and height 37 cm. Find its area.", "answer": "703.0", "topic": "geometry", "difficulty": 4}
{"question": "23 × 24 = ?", "answer": "552", "topic": "multiplication", "difficulty": 4}
{"question": "A triangle has base 25 cm and height 5 cm. Find its area.", "answer": "62.5", "topic": "geometry", "difficulty": 4}
{"question": "24 - 17 = ?", "answer": "7", "topic": "subtraction", "difficulty": 4}
{"question": "612 ÷ 17 = ?", "answer": "36", "topic": "division", "difficulty": 4}
{"question": "29 ÷ 26 = ?", "answer": "1", "topic": "division", "difficulty": 4}
{"question": "Casey had 7 apples but ate 4. How many left?", "answer": "3", "topic": "word", "difficulty": 4}
{"question": "3 + 11 = ?", "answer": "14", "topic": "addition", "difficulty": 4}
{"question": "37 × 24 = ?", "answer": "888", "topic": "multiplication", "difficulty": 4}
{"question": "Alex has 3 pears and buys 10 more. How many pears now?", "answer": "13", "topic": "word", "difficulty": 4}
{"question": "39 - 5 = ?", "answer": "34", "topic": "subtraction", "difficulty": 4}
{"question": "15 × 21 = ?", "answer": "315", "topic": "multiplication", "difficulty": 4}
{"question": "38 - 30 = ?", "answer": "8", "topic": "subtraction", "difficulty": 4}
{"question": "A triangle has base 20 cm and height 8 cm. Find its area.", "answer": "80.0", "topic": "geometry", "difficulty": 4}
{"question": "Find the next number: 3, 13, 23, 33, ?", "answer": "43", "topic": "pattern", "difficulty": 4}
{"question": "28 - 12 = ?", "answer": "16", "topic": "subtraction", "difficulty": 4}
{"question": "A square has sides of 18 cm. What is its perimeter?", "answer": "72", "topic": "geometry", "difficulty": 4}
{"question": "30 × 36 = ?", "answer": "1080", "topic": "multiplication", "difficulty": 4}
{"question": "Casey has 37 apples and buys 12 more. How many apples now?", "answer": "49", "topic": "word", "difficulty": 4}
{"question": "29 ÷ 9 = ?", "answer": "3", "topic": "division", "difficulty": 4}
{"question": "35 × 15 = ?", "answer": "525", "topic": "multiplication", "difficulty": 4}
{"question": "A triangle has base 27 cm and height 6 cm. Find its area.", "answer": "81.0", "topic": "geometry", "difficulty": 4}
{"question": "38 - 8 = ?", "answer": "30", "topic": "subtraction", "difficulty": 4}
{"question": "1 + 16 = ?", "answer": "17", "topic": "addition", "difficulty": 4}
{"question": "A square has sides of 8 cm. What is its perimeter?", "answer": "32", "topic": "geometry", "difficulty": 4}
{"question": "Jordan has 24 oranges and buys 17 more. How many oranges now?", "answer": "41", "topic": "word", "difficulty": 4}
{"question": "39 + 18 = ?", "answer": "57", "topic": "addition", "difficulty": 4}
{"question": "Taylor had 32 oranges but ate 19. How many left?", "answer": "13", "topic": "word", "difficulty": 4}
{"question": "18 + 13 = ?", "answer": "31", "topic": "addition", "difficulty": 4}
{"question": "9 + 7 = ?", "answer": "16", "topic": "addition", "difficulty": 4}
{"question": "7 × 8 = ?", "answer": "56", "topic": "multiplication", "difficulty": 4}
{"question": "A square has sides of 32 cm. What is its perimeter?", "answer": "128", "topic": "geometry", "difficulty": 4}
{"question": "22 - 4 = ?", "answer": "18", "topic": "subtraction", "difficulty": 4}
{"question": "Find the next number: 1, 4, 7, 10, ?", "answer": "13", "topic": "pattern", "difficulty": 4}
{"question": "Jordan has 4 pears and buys 20 more. How many pears now?", "answer": "24", "topic": "word", "difficulty": 4}
{"question": "A rectangle is 24 cm long and 38 cm wide. What is its area?", "answer": "912", "topic": "geometry", "difficulty": 4}
{"question": "37 ÷ 3 = ?", "answer": "12", "topic": "division", "difficulty": 4}
{"question": "A rectangle is 7 cm long and 8 cm wide. What is its area?", "answer": "56", "topic": "geometry", "difficulty": 4}
{"question": "25 + 39 = ?", "answer": "64", "topic": "addition", "difficulty": 4}
{"question": "Find the next number: 2, 9, 16, 23, ?", "answer": "30", "topic": "pattern", "difficulty": 4}
{"question": "A square has sides of 40 cm. What is its perimeter?", "answer": "160", "topic": "geometry", "difficulty": 4}
{"question": "110 ÷ 5 = ?", "answer": "22", "topic": "division", "difficulty": 4}
{"question": "38 - 19 = ?", "answer": "19", "topic": "subtraction", "difficulty": 4}
{"question": "Find the next number: 3, 6, 9, 12, ?", "answer": "15", "topic": "pattern", "difficulty": 4}
{"question": "9 × 5 = ?", "answer": "45", "topic": "multiplication", "difficulty": 4}
{"question": "15 + 8 = ?", "answer": "23", "topic": "addition", "difficulty": 4}
{"question": "39 - 11 = ?", "answer": "28", "topic": "subtraction", "difficulty": 4}
{"question": "87 ÷ 29 = ?", "answer": "3", "topic": "division", "difficulty": 4}
{"question": "31 ÷ 18 = ?", "answer": "1", "topic": "division", "difficulty": 4}
{"question": "Find the next number: 4, 12, 20, 28, ?", "answer": "36", "topic": "pattern", "difficulty": 5}
{"question": "A triangle has base 47 cm and height 40 cm. Find its area.", "answer": "940.0", "topic": "geometry", "difficulty": 5}
{"question": "Taylor had 16 oranges but ate 7. How many left?", "answer": "9", "topic": "word", "difficulty": 5}
{"question": "Casey has 7 pears and buys 13 more. How many pears now?", "answer": "20", "topic": "word", "difficulty": 5}
{"question": "A square has sides of 17 cm. What is its perimeter?", "answer": "68", "topic": "geometry", "difficulty": 5}
{"question": "34 ÷ 29 = ?", "answer": "1", "topic": "division", "difficulty": 5}
{"question": "Find the next number: 2, 17, 32, 47, ?", "answer": "62", "topic": "pattern", "difficulty": 5}
{"question": "A square has sides of 47 cm. What is its perimeter?", "answer": "188", "topic": "geometry", "difficulty": 5}
{"question": "5 × 21 = ?", "answer": "105", "topic": "multiplication", "difficulty": 5}
{"question": "34 + 43 = ?", "answer": "77", "topic": "addition", "difficulty": 5}
{"question": "34 - 30 = ?", "answer": "4", "topic": "subtraction", "difficulty": 5}
{"question": "Taylor had 34 oranges but ate 4. How many left?", "answer": "30", "topic": "word", "difficulty": 5}
{"question": "5 ÷ 50 = ?", "answer": "0", "topic": "division", "difficulty": 5}
{"question": "12 × 14 = ?", "answer": "168", "topic": "multiplication", "difficulty": 5}
{"question": "A triangle has base 37 cm and height 43 cm. Find its area.", "answer": "795.5", "topic": "geometry", "difficulty": 5}
{"question": "Jordan had 33 apples but ate 21. How many left?", "answer": "12", "topic": "word", "difficulty": 5}
{"question": "990 ÷ 30 = ?", "answer": "33", "topic": "division", "difficulty": 5}
{"question": "348 ÷ 29 = ?", "answer": "12", "topic": "division", "difficulty": 5}
{"question": "A triangle has base 8 cm and height 29 cm. Find its area.", "answer": "116.0", "topic": "geometry", "difficulty": 5}
{"question": "14 - 2 = ?", "answer": "12", "topic": "subtraction", "difficulty": 5}
{"question": "Find the next number: 3, 4, 5, 6, ?", "answer": "7", "topic": "pattern", "difficulty": 5}
{"question": "544 ÷ 34 = ?", "answer": "16", "topic": "division", "difficulty": 5}
{"question": "Alex has 25 pears and buys 12 more. How many pears now?", "answer": "37", "topic": "word", "difficulty": 5}
{"question": "27 × 24 = ?", "answer": "648", "topic": "multiplication", "difficulty": 5}
{"question": "Find the next number: 4, 6, 8, 10, ?", "answer": "12", "topic": "pattern", "difficulty": 5}
{"question": "50 - 14 = ?", "answer": "36", "topic": "subtraction", "difficulty": 5}
{"question": "4 × 24 = ?", "answer": "96", "topic": "multiplication", "difficulty": 5}
{"question": "A rectangle is 10 cm long and 21 cm wide. What is its area?", "answer": "210", "topic": "geometry", "difficulty": 5}
{"question": "45 × 17 = ?", "answer": "765", "topic": "multiplication", "difficulty": 5}
{"question": "Find the next number: 5, 6, 7, 8, ?", "answer": "9", "topic": "pattern", "difficulty": 5}
{"question": "44 × 8 = ?", "answer": "352", "topic": "multiplication", "difficulty": 5}
{"question": "A rectangle is 28 cm long and 3 cm wide. What is its area?", "answer": "84", "topic": "geometry", "difficulty": 5}
{"question": "Find the next number: 2, 17, 32, 47, ?", "answer": "62", "topic": "pattern", "difficulty": 5}
{"question": "Casey had 16 apples but ate 3. How many left?", "answer": "13", "topic": "word", "difficulty": 5}
{"question": "40 × 22 = ?", "answer": "880", "topic": "multiplication", "difficulty": 5}
{"question": "33 - 18 = ?", "answer": "15", "topic": "subtraction", "difficulty": 5}
{"question": "24 + 48 = ?", "answer": "72", "topic": "addition", "difficulty": 5}
{"question": "Jordan had 41 pears but ate 2. How many left?", "answer": "39", "topic": "word", "difficulty": 5}
{"question": "Jamie had 22 bananas but ate 14. How many left?", "answer": "8", "topic": "word", "difficulty": 5}
{"question": "36 × 14 = ?", "answer": "504", "topic": "multiplication", "difficulty": 5}
{"question": "Alex had 23 grapes but ate 22. How many left?", "answer": "1", "topic": "word", "difficulty": 5}
{"question": "6 + 40 = ?", "answer": "46", "topic": "addition", "difficulty": 5}
{"question": "1029 ÷ 49 = ?", "answer": "21", "topic": "division", "difficulty": 5}
{"question": "46 - 16 = ?", "answer": "30", "topic": "subtraction", "difficulty": 5}
{"question": "30 + 7 = ?", "answer": "37", "topic": "addition", "difficulty": 5}
{"question": "Find the next number: 4, 6, 8, 10, ?", "answer": "12", "topic": "pattern", "difficulty": 5}
{"question": "29 + 43 = ?", "answer": "72", "topic": "addition", "difficulty": 5}
{"question": "60 ÷ 12 = ?", "answer": "5", "topic": "division", "difficulty": 5}
{"question": "Jamie had 18 pears but ate 7. How many left?", "answer": "11", "topic": "word", "difficulty": 5}
{"question": "40 × 3 = ?", "answer": "120", "topic": "multiplication", "difficulty": 5}
{"question": "35 + 21 = ?", "answer": "56", "topic": "addition", "difficulty": 5}
{"question": "16 + 9 = ?", "answer": "25", "topic": "addition", "difficulty": 5}
{"question": "45 × 45 = ?", "answer": "2025", "topic": "multiplication", "difficulty": 5}
{"question": "10 + 12 = ?", "answer": "22", "topic": "addition", "difficulty": 5}
{"question": "A triangle has base 30 cm and height 36 cm. Find its area.", "answer": "540.0", "topic": "geometry", "difficulty": 5}
{"question": "26 + 8 = ?", "answer": "34", "topic": "addition", "difficulty": 5}
{"question": "Find the next number: 1, 5, 9, 13, ?", "answer": "17", "topic": "pattern", "difficulty": 5}
{"question": "95 ÷ 19 = ?", "answer": "5", "topic": "division", "difficulty": 5}
{"question": "A triangle has base 42 cm and height 21 cm. Find its area.", "answer": "441.0", "topic": "geometry", "difficulty": 5}
{"question": "Casey has 30 pears and buys 8 more. How many pears now?", "answer": "38", "topic": "word", "difficulty": 5}
{"question": "A triangle has base 8 cm and height 10 cm. Find its area.", "answer": "40.0", "topic": "geometry", "difficulty": 5}
{"question": "18 × 18 = ?", "answer": "324", "topic": "multiplication", "difficulty": 5}
{"question": "44 - 20 = ?", "answer": "24", "topic": "subtraction", "difficulty": 5}
{"question": "Find the next number: 5, 11, 17, 23, ?", "answer": "29", "topic": "pattern", "difficulty": 5}
{"question": "33 × 23 = ?", "answer": "759", "topic": "multiplication", "difficulty": 5}
{"question": "13 + 7 = ?", "answer": "20", "topic": "addition", "difficulty": 5}
{"question": "Jordan has 33 grapes and buys 19 more. How many grapes now?", "answer": "52", "topic": "word", "difficulty": 5}
{"question": "Taylor had 39 bananas but ate 8. How many left?", "answer": "31", "topic": "word", "difficulty": 5}
{"question": "Casey has 50 grapes and buys 24 more. How many grapes now?", "answer": "74", "topic": "word", "difficulty": 5}
{"question": "4 × 38 = ?", "answer": "152", "topic": "multiplication", "difficulty": 5}
{"question": "Alex has 19 pears and buys 5 more. How many pears now?", "answer": "24", "topic": "word", "difficulty": 5}
{"question": "900 ÷ 30 = ?", "answer": "30", "topic": "division", "difficulty": 5}
{"question": "Alex has 16 grapes and buys 25 more. How many grapes now?", "answer": "41", "topic": "word", "difficulty": 5}
{"question": "Find the next number: 4, 8, 12, 16, ?", "answer": "20", "topic": "pattern", "difficulty": 5}
{"question": "4 + 27 = ?", "answer": "31", "topic": "addition", "difficulty": 5}
{"question": "Jamie has 18 apples and buys 5 more. How many apples now?", "answer": "23", "topic": "word", "difficulty": 5}
{"question": "50 × 21 = ?", "answer": "1050", "topic": "multiplication", "difficulty": 5}
{"question": "384 ÷ 32 = ?", "answer": "12", "topic": "division", "difficulty": 5}
{"question": "189 ÷ 21 = ?", "answer": "9", "topic": "division", "difficulty": 5}
{"question": "Find the next number: 4, 8, 12, 16, ?", "answer": "20", "topic": "pattern", "difficulty": 5}
{"question": "Casey has 42 bananas and buys 11 more. How many bananas now?", "answer": "53", "topic": "word", "difficulty": 5}
{"question": "A rectangle is 50 cm long and 19 cm wide. What is its area?", "answer": "950", "topic": "geometry", "difficulty": 5}
{"question": "A rectangle is 12 cm long and 31 cm wide. What is its area?", "answer": "372", "topic": "geometry", "difficulty": 5}
{"question": "41 + 1 = ?", "answer": "42", "topic": "addition", "difficulty": 5}
{"question": "Casey has 4 oranges and buys 20 more. How many oranges now?", "answer": "24", "topic": "word", "difficulty": 5}
{"question": "27 + 1 = ?", "answer": "28", "topic": "addition", "difficulty": 5}
{"question": "1050 ÷ 35 = ?", "answer": "30", "topic": "division", "difficulty": 5}
{"question": "A rectangle is 17 cm long and 11 cm wide. What is its area?", "answer": "187", "topic": "geometry", "difficulty": 5}
{"question": "45 - 12 = ?", "answer": "33", "topic": "subtraction", "difficulty": 5}
{"question": "750 ÷ 50 = ?", "answer": "15", "topic": "division", "difficulty": 5}
{"question": "Jamie has 2 oranges and buys 20 more. How many oranges now?", "answer": "22", "topic": "word", "difficulty": 5}
{"question": "43 × 23 = ?", "answer": "989", "topic": "multiplication", "difficulty": 5}
{"question": "37 + 23 = ?", "answer": "60", "topic": "addition", "difficulty": 5}
{"question": "Casey had 22 apples but ate 6. How many left?", "answer": "16", "topic": "word", "difficulty": 5}
{"question": "A square has sides of 49 cm. What is its perimeter?", "answer": "196", "topic": "geometry", "difficulty": 5}
{"question": "Jordan had 34 apples but ate 3. How many left?", "answer": "31", "topic": "word", "difficulty": 5}
{"question": "2009 ÷ 41 = ?", "answer": "49", "topic": "division", "difficulty": 5}
{"question": "A rectangle is 8 cm long and 48 cm wide. What is its area?", "answer": "384", "topic": "geometry", "difficulty": 5}
{"question": "Find the next number: 5, 17, 29, 41, ?", "answer": "53", "topic": "pattern", "difficulty": 5}
{"question": "Alex had 45 apples but ate 14. How many left?", "answer": "31", "topic": "word", "difficulty": 5}
{"question": "A square has sides of 28 cm. What is its perimeter?", "answer": "112", "topic": "geometry", "difficulty": 5}
{"question": "37 - 10 = ?", "answer": "27", "topic": "subtraction", "difficulty": 5}
{"question": "8 + 42 = ?", "answer": "50", "topic": "addition", "difficulty": 5}
{"question": "35 + 22 = ?", "answer": "57", "topic": "addition", "difficulty": 5}
{"question": "A square has sides of 47 cm. What is its perimeter?", "answer": "188", "topic": "geometry", "difficulty": 5}
{"question": "Taylor has 45 oranges and buys 16 more. How many oranges now?", "answer": "61", "topic": "word", "difficulty": 5}
{"question": "33 × 42 = ?", "answer": "1386", "topic": "multiplication", "difficulty": 5}
{"question": "35 - 19 = ?", "answer": "16", "topic": "subtraction", "difficulty": 5}
{"question": "2 + 31 = ?", "answer": "33", "topic": "addition", "difficulty": 5}
{"question": "Jamie has 13 grapes and buys 7 more. How many grapes now?", "answer": "20", "topic": "word", "difficulty": 5}
{"question": "Find the next number: 5, 18, 31, 44, ?", "answer": "57", "topic": "pattern", "difficulty": 5}
{"question": "7 + 16 = ?", "answer": "23", "topic": "addition", "difficulty": 5}
{"question": "16 ÷ 23 = ?", "answer": "0", "topic": "division", "difficulty": 5}
{"question": "3 ÷ 13 = ?", "answer": "0", "topic": "division", "difficulty": 5}
{"question": "902 ÷ 22 = ?", "answer": "41", "topic": "division", "difficulty": 5}
{"question": "9 × 18 = ?", "answer": "162", "topic": "multiplication", "difficulty": 5}
{"question": "Find the next number: 4, 11, 18, 25, ?", "answer": "32", "topic": "pattern", "difficulty": 5}
{"question": "48 + 5 = ?", "answer": "53", "topic": "addition", "difficulty": 5}
{"question": "Find the next number: 3, 10, 17, 24, ?", "answer": "31", "topic": "pattern", "difficulty": 5}
{"question": "A triangle has base 17 cm and height 12 cm. Find its area.", "answer": "102.0", "topic": "geometry", "difficulty": 5}
{"question": "43 - 14 = ?", "answer": "29", "topic": "subtraction", "difficulty": 5}
{"question": "Find the next number: 5, 7, 9, 11, ?", "answer": "13", "topic": "pattern", "difficulty": 5}
{"question": "Find the next number: 3, 15, 27, 39, ?", "answer": "51", "topic": "pattern", "difficulty": 5}
{"question": "Jordan had 29 grapes but ate 15. How many left?", "answer": "14", "topic": "word", "difficulty": 5}
{"question": "39 + 7 = ?", "answer": "46", "topic": "addition", "difficulty": 5}
{"question": "Alex had 48 oranges but ate 20. How many left?", "answer": "28", "topic": "word", "difficulty": 5}
{"question": "43 + 9 = ?", "answer": "52", "topic": "addition", "difficulty": 5}
{"question": "A square has sides of 10 cm. What is its perimeter?", "answer": "40", "topic": "geometry", "difficulty": 5}
{"question": "14 × 29 = ?", "answer": "406", "topic": "multiplication", "difficulty": 5}
{"question": "43 + 39 = ?", "answer": "82", "topic": "addition", "difficulty": 5}
{"question": "30 × 23 = ?", "answer": "690", "topic": "multiplication", "difficulty": 5}
{"question": "24 - 19 = ?", "answer": "5", "topic": "subtraction", "difficulty": 5}
{"question": "3 × 2 = ?", "answer": "6", "topic": "multiplication", "difficulty": 5}
{"question": "30 - 27 = ?", "answer": "3", "topic": "subtraction", "difficulty": 5}
{"question": "A square has sides of 42 cm. What is its perimeter?", "answer": "168", "topic": "geometry", "difficulty": 5}
{"question": "31 - 28 = ?", "answer": "3", "topic": "subtraction", "difficulty": 5}
{"question": "48 ÷ 41 = ?", "answer": "1", "topic": "division", "difficulty": 5}
{"question": "42 × 17 = ?", "answer": "714", "topic": "multiplication", "difficulty": 5}
{"question": "48 × 31 = ?", "answer": "1488", "topic": "multiplication", "difficulty": 5}
{"question": "21 - 1 = ?", "answer": "20", "topic": "subtraction", "difficulty": 5}
{"question": "42 - 3 = ?", "answer": "39", "topic": "subtraction", "difficulty": 5}
{"question": "35 - 35 = ?", "answer": "0", "topic": "subtraction", "difficulty": 5}
{"question": "A square has sides of 4 cm. What is its perimeter?", "answer": "16", "topic": "geometry", "difficulty": 5}
{"question": "Casey has 3 bananas and buys 15 more. How many bananas now?", "answer": "18", "topic": "word", "difficulty": 5}
{"question": "19 ÷ 30 = ?", "answer": "0", "topic": "division", "difficulty": 5}
{"question": "Alex has 28 pears and buys 8 more. How many pears now?", "answer": "36", "topic": "word", "difficulty": 5}
{"question": "30 + 49 = ?", "answer": "79", "topic": "addition", "difficulty": 5}
{"question": "14 + 14 = ?", "answer": "28", "topic": "addition", "difficulty": 5}
{"question": "Find the next number: 3, 4, 5, 6, ?", "answer": "7", "topic": "pattern", "difficulty": 5}
{"question": "1 + 3 = ?", "answer": "4", "topic": "addition", "difficulty": 5}
{"question": "A triangle has base 24 cm and height 45 cm. Find its area.", "answer": "540.0", "topic": "geometry", "difficulty": 5}
{"question": "480 ÷ 12 = ?", "answer": "40", "topic": "division", "difficulty": 5}
{"question": "14 + 17 = ?", "answer": "31", "topic": "addition", "difficulty": 5}
{"question": "4 × 9 = ?", "answer": "36", "topic": "multiplication", "difficulty": 5}
{"question": "Find the next number: 4, 5, 6, 7, ?", "answer": "8", "topic": "pattern", "difficulty": 5}
{"question": "47 ÷ 32 = ?", "answer": "1", "topic": "division", "difficulty": 5}
{"question": "11 × 47 = ?", "answer": "517", "topic": "multiplication", "difficulty": 5}
{"question": "Taylor had 25 pears but ate 5. How many left?", "answer": "20", "topic": "word", "difficulty": 5}
{"question": "23 × 37 = ?", "answer": "851", "topic": "multiplication", "difficulty": 5}
{"question": "Find the next number: 3, 14, 25, 36, ?", "answer": "47", "topic": "pattern", "difficulty": 5}
{"question": "Alex had 36 apples but ate 14. How many left?", "answer": "22", "topic": "word", "difficulty": 5}
{"question": "29 × 13 = ?", "answer": "377", "topic": "multiplication", "difficulty": 5}
{"question": "10 + 27 = ?", "answer": "37", "topic": "addition", "difficulty": 5}
{"question": "A square has sides of 31 cm. What is its perimeter?", "answer": "124", "topic": "geometry", "difficulty": 5}
{"question": "43 + 5 = ?", "answer": "48", "topic": "addition", "difficulty": 5}
{"question": "12 × 35 = ?", "answer": "420", "topic": "multiplication", "difficulty": 5}
{"question": "4 + 3 = ?", "answer": "7", "topic": "addition", "difficulty": 5}
{"question": "325 ÷ 25 = ?", "answer": "13", "topic": "division", "difficulty": 5}
{"question": "Find the next number: 4, 10, 16, 22, ?", "answer": "28", "topic": "pattern", "difficulty": 5}
{"question": "Jamie had 48 bananas but ate 20. How many left?", "answer": "28", "topic": "word", "difficulty": 5}
{"question": "11 + 25 = ?", "answer": "36", "topic": "addition", "difficulty": 5}
{"question": "43 × 33 = ?", "answer": "1419", "topic": "multiplication", "difficulty": 5}
{"question": "Taylor has 38 bananas and buys 5 more. How many bananas now?", "answer": "43", "topic": "word", "difficulty": 5}
{"question": "32 × 23 = ?", "answer": "736", "topic": "multiplication", "difficulty": 5}
{"question": "34 - 29 = ?", "answer": "5", "topic": "subtraction", "difficulty": 5}
{"question": "1334 ÷ 46 = ?", "answer": "29", "topic": "division", "difficulty": 5}
{"question": "Find the next number: 5, 16, 27, 38, ?", "answer": "49", "topic": "pattern", "difficulty": 5}
{"question": "40 × 44 = ?", "answer": "1760", "topic": "multiplication", "difficulty": 5}
{"question": "6 × 10 = ?", "answer": "60", "topic": "multiplication", "difficulty": 5}
{"question": "37 + 7 = ?", "answer": "44", "topic": "addition", "difficulty": 5}
{"question": "22 - 12 = ?", "answer": "10", "topic": "subtraction", "difficulty": 5}
{"question": "A triangle has base 21 cm and height 26 cm. Find its area.", "answer": "273.0", "topic": "geometry", "difficulty": 5}
{"question": "Find the next number: 3, 8, 13, 18, ?", "answer": "23", "topic": "pattern", "difficulty": 5}
{"question": "30 - 17 = ?", "answer": "13", "topic": "subtraction", "difficulty": 5}
{"question": "Find the next number: 4, 19, 34, 49, ?", "answer": "64", "topic": "pattern", "difficulty": 5}
{"question": "Find the next number: 3, 7, 11, 15, ?", "answer": "19", "topic": "pattern", "difficulty": 5}
{"question": "A triangle has base 15 cm and height 15 cm. Find its area.", "answer": "112.5", "topic": "geometry", "difficulty": 5}
{"question": "16 + 25 = ?", "answer": "41", "topic": "addition", "difficulty": 5}
{"question": "A square has sides of 37 cm. What is its perimeter?", "answer": "148", "topic": "geometry", "difficulty": 5}
{"question": "22 + 20 = ?", "answer": "42", "topic": "addition", "difficulty": 5}
{"question": "Find the next number: 4, 19, 34, 49, ?", "answer": "64", "topic": "pattern", "difficulty": 5}
{"question": "15 + 11 = ?", "answer": "26", "topic": "addition", "difficulty": 5}
{"question": "1 + 27 = ?", "answer": "28", "topic": "addition", "difficulty": 5}
{"question": "Find the next number: 4, 16, 28, 40, ?", "answer": "52", "topic": "pattern", "difficulty": 5}
{"question": "57 ÷ 19 = ?", "answer": "3", "topic": "division", "difficulty": 5}
{"question": "20 - 19 = ?", "answer": "1", "topic": "subtraction", "difficulty": 5}
{"question": "Jordan has 26 pears and buys 18 more. How many pears now?", "answer": "44", "topic": "word", "difficulty": 5}
{"question": "A square has sides of 42 cm. What is its perimeter?", "answer": "168", "topic": "geometry", "difficulty": 5}
{"question": "15 ÷ 29 = ?", "answer": "0", "topic": "division", "difficulty": 5}
{"question": "7 ÷ 5 = ?", "answer": "1", "topic": "division", "difficulty": 5}
|