-
Notifications
You must be signed in to change notification settings - Fork 0
/
script.js
12501 lines (11320 loc) · 503 KB
/
script.js
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
// Sample flashcard data
const flashcards = [
{ category: 'test', question: "What are some words that are the opposite of natural?",
answers: ["artificial","synthetic","man-made","unnatural","fabricated", "fake" ],
},
{ category: 'Math', question: "Welcome to Dennis Daniels' English Lesson!", answer: '4' },
{ category: 'Science',
question: 'Water formula',
answer: 'H2O' },
{ category: 'Prepositions',
question: 'The book is [BLANK] the table.',
answers: ["on","under","near"], },
{ category: 'Prepositions',
question: "I got an email [BLANK] your Mom. She's worried.",
answer: 'from' },
{
"category": "Prepositions",
"question": "I got an email [BLANK] our client.",
"answer": "from"
},
{
"category": "Prepositions",
"question": "I prefer to read [BLANK] the library.",
"answer": "in"
},
{
"category": "Prepositions",
"question": "He climbed up the ladder to get [BLANK] the roof.",
"answer": "onto"
},
{
"category": "Prepositions",
"question": "Please sign your name [BLANK] the dotted line after you read the contract.",
"answer": "on"
},
{
"category": "Prepositions",
"question": "She lives [BLANK] the street [BLANK] the supermarket.",
"answer": "on, near"
},
{
"category": "Prepositions",
"question": "The books are [BLANK] the shelf [BLANK] the room.",
"answers": ["on, in"],
},
// { category: 'test', question: "What are some words that are the opposite of natural?",
// answers: ["artificial","synthetic","man-made","unnatural","fabricated", "fake" ],
// },
{
"category": "Prepositions",
"question": "We met [BLANK] the coffee shop [BLANK] noon.",
"answer": "at, at"
},
{
"category": "Prepositions",
"question": "The cat jumped [BLANK] the table.",
"answer": "onto"
},
{
"category": "Prepositions",
"question": "He left his phone [BLANK] the car.",
"answer": "in"
},
{
"category": "Prepositions",
"question": "They are traveling [BLANK] Europe [BLANK] the summer.",
"answer": "around, during"
},
{
"category": "Prepositions",
"question": "I will see you [BLANK] Monday.",
"answer": "on"
},
{
"category": "Prepositions",
"question": "The restaurant is located [BLANK] the bank and the library.",
"answer": "between"
},
{
"category": "Prepositions",
"question": "Please wait for me [BLANK] the main entrance.",
"answer": "at"
},
{
"category": "Prepositions",
"question": "He is flying [BLANK] New York [BLANK] Paris.",
"answer": "from, to"
},
{
"category": "Prepositions",
"question": "The flowers are [BLANK] front [BLANK] the house.",
"answer": "in, of"
},
{
"category": "Prepositions",
"question": "I'll be there [BLANK] five minutes.",
"answer": "in"
},
{
"category": "Prepositions",
"question": "The painting is [BLANK] the museum [BLANK] Fifth Avenue.",
"answer": "in, on"
},
{
"category": "Prepositions",
"question": "He left the keys [BLANK] the desk [BLANK] the hallway.",
"answers": ["in", "on"],
},
{
"category": "Prepositions",
"question": "They were sitting [BLANK] the park [BLANK] a sunny day.",
"answers": ["in", "on"],
},
{
"category": "Prepositions",
"question": "The teacher stood [BLANK] the students [BLANK] the classroom.",
"answer": "in front of, in"
},
{
"category": "Prepositions",
"question": "She put the book [BLANK] the shelf [BLANK] the door.",
"answers": ["on"," next to|near|beside"],
},
{
"category": "Prepositions",
"question": "She was standing [BLANK] her friend [BLANK] the concert.",
"answer": "beside, at"
},
{
"category": "Prepositions",
"question": "They walked [BLANK] the bridge [BLANK] the river.",
"answers": ["over", "across"],
},
{
"category": "Prepositions",
"question": "Go [BLANK] the stairs and [BLANK] the door.",
"answers": ["down", "through"],
},
{
"category": "Prepositions",
"question": "He swam [BLANK] the pool from one side to the other. ",
"answer": "across"
},
{
"category": "Prepositions",
"question": "Take your brother [BLANK] you.",
"answer": "with"
},
{ category: 'Prepositions', question: 'I received a gift [BLANK] my friend.', answer: 'from' },
{ category: 'Prepositions', question: 'The message is coming [BLANK] the headquarters.', answer: 'from' },
{ category: 'Prepositions', question: 'She will travel [BLANK] Paris to Rome.', answer: 'from' },
{ category: 'Prepositions', question: 'This [process|technique|shampoo|dehumidifier] is different [BLANK] the one we used before.', answer: 'from' },
{ category: 'Prepositions', question: 'I borrowed the book [BLANK] the library.', answer: 'from' },
{ category: 'Prepositions', question: 'He is [BLANK] a small town in Spain.', answer: 'in|from' },
{ category: 'Prepositions', question: 'The plane departed [BLANK] New York.', answer: 'from' },
{ category: 'Prepositions', question: 'They escaped [BLANK] the room through the window.', answer: 'from|out of' },
{ category: 'Prepositions', question: 'She learned Spanish [BLANK] her mother.', answer: 'from' },
{ category: 'Prepositions', question: 'The idea originated [BLANK] an old legend.', answer: 'from' },
{ category: 'Prepositions', question: 'I know her [BLANK] her name.', answer: 'by' },
{ category: 'Prepositions', question: 'I am [BLANK] the store.', answers: ["near","close to" ,"next to", "at","in","inside"], },
{ category: 'Prepositions', question: 'I will be there [BLANK] 5 minutes.', answers: ["context arrving:in", "context staying:for",] },
{ category: 'Prepositions', question: 'I am not good [BLANK] math.', answer: 'at' },
{ category: 'Prepositions', question: 'I got a gift [BLANK] my friend.', answers: ["context your friend is nice: from","context you are nice:for",] },
{ category: 'Prepositions', question: "The meeting is [BLANK] 10 o'clock.", answer: 'at' },
{ category: 'Prepositions', question: 'I am [BLANK] the exam.', answer: 'at' },
{ category: 'Prepositions', question: 'I know her [BLANK] her name.', answer: 'by' },
{ category: 'Prepositions', question: "I saw her [BLANK] the bookstore.", answers: ["near","close to" ,"next to", "at","in","inside"], },
{ category: 'Prepositions', question: "I went to the park [BLANK] my dog.", answer: "with" },
{ category: 'Prepositions', question: "I put the book [BLANK] the table.", answers: ["on","under","next to"] },
{ category: 'Prepositions', question: "I got a gift [BLANK] my friend.", answers: ["for","from"], },
{ category: 'Prepositions', question: "I'm afraid [BLANK] heights.", answer: "of" },
{ category: 'Prepositions', question: "I'm good [BLANK] math.", answer: "at" },
{ category: 'Prepositions', question: "I'm thinking [BLANK] going to the store|beach|park.", answer: "about" },
{ category: 'Prepositions',
question: "I'm tired [BLANK] work.", answer: "of" },
{ category: 'Prepositions', question: "I'm waiting [BLANK] my friend.",
answers: ["with","by","next to"] },
{
"category": "Phrasal Verbs: work",
"question": "He's trying to _____ how to solve this complex problem.",
"answers": ["figure out","sort out","work out", "come up with an idea", "I'm trying to figure out how to restore my old phone number."]
},
{ category: 'Prepositions',
question: "I'm worried [BLANK] my exam.",
answer: "about" },
{
"category": "Prepositions of Time",
"question": "I'll see you [BLANK] 10 minutes.",
"answer": "In is the correct answer because it is used to indicate a period of time."
},
{
"category": "Prepositions of Time",
"question": "The train arrives [BLANK] noon.",
"answer": "At is the correct answer because it is used to specify a specific point in time."
},
{
"category": "Prepositions of Time",
"question": "They have a meeting [BLANK] Monday morning.",
"answer": "On is the correct answer because it is used to specify a particular day of the week."
},
{
"category": "Prepositions of Time",
"question": "The store closes [BLANK] 9 PM.",
"answer": "At is the correct answer because it is used to specify a specific time."
},
{
"category": "Prepositions of Time",
"question": "The concert starts [BLANK] 7:30 PM.",
"answer": "At is the correct answer because it is used to specify a specific time."
},
{
"category": "Prepositions of Time",
"question": "She'll be back [BLANK] a few hours.",
"answer": "In is the correct answer because it is used to indicate a period of time."
},
{
"category": "Prepositions of Time",
"question": "They usually have dinner [BLANK] nightfall.",
"answer": "At is the correct answer because it is used to specify a specific time."
},
{
"category": "Prepositions of Time",
"question": "The event is scheduled for [BLANK] November 15th.",
"answer": "On is the correct answer because it is used to specify a particular date."
},
{
"category": "Prepositions of Time",
"question": "She will arrive [BLANK] the weekend.",
"answer": "During is the correct answer because it is used to indicate a period within the weekend."
},
{
"category": "Prepositions of Time",
"question": "He wakes up early [BLANK] the morning.",
"answer": "In is the correct answer because it is used to indicate a period of time."
},
{
"category": "Prepositions of Time",
"question": "I'll call you [BLANK] a moment.",
"answer": "In is the correct answer because it is used to indicate a short period of time."
},
{
"category": "Prepositions of Time",
"question": "The party starts [BLANK] 8:00 PM and ends [BLANK] midnight.",
"answer": "At is the correct answer for both blanks because it is used to specify specific times."
},
{
"category": "Prepositions of Time",
"question": "We're leaving for vacation [BLANK] Friday.",
"answer": "On is the correct answer because it is used to specify a particular day of the week."
},
{
"category": "Prepositions of Time",
"question": "The conference is scheduled [BLANK] October 20th and [BLANK] October 22nd.",
"answer": "On is the correct answer for both blanks because it is used to specify specific dates."
},
{
"category": "Prepositions of Time",
"question": "She's been working here [BLANK] three years.",
"answer": "For is the correct answer because it is used to indicate the duration of time."
},
//
{
"category": "Christmas",
"question": "'The [Christmas tree|scented candle|essential oil] is so [BLANK] that it fills the whole room with a festive smell.'",
"answer": "fragrant"
},
{
"category": "Christmas",
"question": "'The Christmas lights are so [BLANK] that they make the whole house look magical.'",
"answer": "twinkling"
},
{
"category": "Christmas",
"question": "'The Christmas gifts are so [BLANK] that I can't wait to open them.'",
"answer": "beuatifuly wrapped"
},
{
"category": "Christmas",
"question": "'The Christmas carols are so [BLANK] that they put the whole family in a merry mood.'",
"answer": "joyous"
},
{
"category": "Christmas",
"question": "'This Christmas feast is so [BLANK] that it makes me want to eat and eat and eat!'",
"answer": "mouthwatering"
},
//
{ category: 'Adverbs: Conjunctive', question: "She completed the project on time; [BLANK], she received a bonus.", answer: "Consequently" },
{ category: 'Adverbs: Conjunctive', question: "The meeting was long; [BLANK], important decisions were made.", answer: "Nevertheless" },
{ category: 'Adverbs: Conjunctive', question: "The team faced many challenges; [BLANK], they managed to deliver the project.", answer: "However" },
{ category: 'Adverbs: Conjunctive', question: "He was new to the team; [BLANK], his ideas were innovative.", answer: "However" },
{ category: 'Adverbs: Conjunctive', question: "The manager was strict; [BLANK], he was fair.", answer: "However" },
{ category: 'Adverbs: Conjunctive', question: "The deadline was approaching; [BLANK], the team worked overtime.", answer: "Therefore" },
{ category: 'Adverbs: Conjunctive', question: "The presentation was successful; [BLANK], a celebration was in order.", answer: "Therefore|Consequently" },
{ category: 'Adverbs: Conjunctive', question: "The project seemed impossible; [BLANK], it was completed on time.", answer: "Nevertheless" },
{ category: 'Adverbs: Conjunctive', question: "[BLANK], I decided to go for a walk.", answer: "After all" },
{ category: 'Adverbs: Conjunctive', question: "He didn't want to go; [BLANK], he had no choice.", answer: "Nevertheless" },
{ category: 'Adverbs: Conjunctive', question: "I was hungry; [BLANK], I made a sandwich.", answer: "Therefore|So" },
{ category: 'Adverbs: Conjunctive', question: "It was raining; [BLANK], we stayed indoors.", answer: "Consequently" },
{ category: 'Adverbs: Conjunctive', question: "He finished his work; [BLANK], he took a break.", answer: "Then" },
//
{ category: 'Adverbs of Time', question: 'I will go to the store [BLANK].', answer: 'later' },
{ category: 'Adverbs of Time', question: 'I saw a movie [BLANK] night.', answer: 'last' },
{ category: 'Adverbs of Time', question: 'I will be back [BLANK] minutes.', answer: 'in a few' },
{ category: 'Adverbs of Time', question: "I haven't seen him [BLANK] a long time.", answers:["in","for"],},
{ category: 'Adverbs of Time', question: 'I will finish my homework [BLANK].', answer: 'soon' },
{ category: 'Adverbs of Time', question: 'She arrived [BLANK] the meeting started.', answer: 'before|when' },
{ category: 'Adverbs of Time', question: 'I will call you [BLANK] day.', answer: 'sometime' },
{ category: 'Adverbs of Time', question: 'I will be ready [BLANK] five minutes.', answer: 'in' },
{ category: 'Adverbs of Time', question: 'I will finish my work [BLANK] I leave.', answer: 'before' },
{ category: 'Adverbs of Time', question: 'I will see you [BLANK] week.', answer: 'next' },
//
{ category: 'Adverbs of Place', question: "She looked for her keys [BLANK].", answer: "everywhere" },
{ category: 'Adverbs of Place', question: "The book was [BLANK] the table.", answer: "there" },
{ category: 'Adverbs of Place', question: "He couldn't find his wallet [BLANK].", answer: "anywhere" },
{ category: 'Adverbs of Place', question: "The cat is [BLANK] the house.", answer: "inside" },
{ category: 'Adverbs of Place', question: "The kids played [BLANK] in the yard.", answer: "outside" },
{ category: 'Adverbs of Place', question: "Please put the package [BLANK] the door.", answer: "outside" },
{ category: 'Adverbs of Place', question: "I left my glasses [BLANK].", answer: "back" },
{ category: 'Adverbs of Place', question: "The treasure is buried [BLANK].", answer: "here" },
{ category: 'Adverbs of Place', question: "He wandered [BLANK] in the forest.", answer: "nowhere" },
{ category: 'Adverbs of Place', question: "The secret code is written [BLANK].", answer: "inside" },
{ category: 'Adverbs of Place', question: "They explored the city [BLANK].", answer: "everywhere" },
{ category: 'Adverbs of Place', question: "The airport is [BLANK] the city center.", answer: "outside" },
{ category: 'Adverbs of Place', question: "The scenic view is [BLANK] the mountain.", answer: "up" },
{ category: 'Adverbs of Place', question: "The hotel room overlooks the ocean [BLANK].", answer: "here" },
{ category: 'Adverbs of Place', question: "The bus station is [BLANK] the street.", answer: "across" },
{ category: 'Adverbs of Place', question: "The hiking trail goes [BLANK] into the forest.", answer: "deep" },
{ category: 'Adverbs of Place', question: "They are traveling [BLANK] to different countries.", answer: "everywhere" },
{ category: 'Adverbs of Place', question: "The historic site is [BLANK] the city.", answer: "inside" },
{ category: 'Adverbs of Place', question: "The train station is [BLANK] the town square.", answer: "near" },
{ category: 'Adverbs of Place', question: "The cruise ship docks [BLANK] the harbor.", answer: "here" },
//
{ category: 'Adverbs of Manner', question: "He apologized [BLANK] for his mistake.", answer: "sincerely" },
{ category: 'Adverbs of Manner', question: "The cat [BLANK] jumped onto the counter.", answer: "quickly" },
{ category: 'Adverbs of Manner', question: "She spoke [BLANK] about her childhood.", answer: "fondly" },
{ category: 'Adverbs of Manner', question: "The team worked [BLANK] to meet the deadline.", answers: ["diligently","tirelessly"] },
{ category: 'Adverbs of Manner', question: "He [BLANK] refused to change his opinion.", answers: ["completely","stubbornly"] },
{ category: 'Adverbs of Manner', question: "The story was [BLANK] told, capturing everyone's attention.", answer: "vividly" },
{ category: 'Adverbs of Manner', question: "She [BLANK] checked each answer on the test.", answer: "carefully" },
{ category: 'Adverbs of Manner', question: "The child [BLANK] grabbed the toy from his friend.", answer: "greedily" },
{ category: 'Adverbs of Manner', question: "He [BLANK] accepted the award, with a huge smile.", answer: "proudly" },
{ category: 'Adverbs of Manner', question: "The dog [BLANK] followed its owner around the house.", answer: "loyally" },
{ category: 'Adverbs of Manner', question: "The teacher explained the concept [BLANK] to the students.", answer: "clearly" },
{ category: 'Adverbs of Manner', question: "They [BLANK] whispered during the movie.", answer: "quietly" },
{ category: 'Adverbs of Manner', question: "She [BLANK] accepted the criticism, showing no emotion.", answer: "stoically" },
{ category: 'Adverbs of Manner', question: "The comedian [BLANK] delivered the punchline.", answer: "expertly" },
{ category: 'Adverbs of Manner', question: "The athlete [BLANK] jumped over the hurdles.", answer: "effortlessly" },
{ category: 'Adverbs of Manner', question: "The baby [BLANK] crawled towards its mother.", answer: "eagerly" },
{ category: 'Adverbs of Manner', question: "The wind [BLANK] blew the leaves across the yard.", answer: "vigorously" },
{ category: 'Adverbs of Manner', question: "The detective [BLANK] searched the room for clues.", answer: "thoroughly" },
{ category: 'Adverbs of Manner', question: "The musician played the piano [BLANK].", answer: "skillfully" },
{ category: 'Adverbs of Manner', question: "The children [BLANK] played tag in the park.", answer: "happily" },
{ category: 'Adverbs of Manner', question: "She [BLANK] explained her reasons for leaving.", answer: "calmly" },
{ category: 'Adverbs of Manner', question: "The bird [BLANK] sang at dawn.", answer: "melodiously" },
{ category: 'Adverbs of Manner', question: "The lawyer [BLANK] argued the case in court.", answer: "persuasively" },
{ category: 'Adverbs of Manner', question: "The sun [BLANK] shone on the beach.", answer: "brightly" },
{ category: 'Adverbs of Manner', question: "The chef [BLANK] chopped the vegetables.", answer: "precisely" },
{ category: 'Adverbs of Manner', question: "The driver [BLANK] navigated through the traffic.", answer: "skillfully" },
{ category: 'Adverbs of Manner', question: "The artist [BLANK] painted the landscape.", answer: "creatively" },
{ category: 'Adverbs of Manner', question: "The magician [BLANK] performed the trick.", answer: "mysteriously" },
{ category: 'Adverbs of Manner', question: "The students [BLANK] listened to the lecture.", answer: "attentively" },
{ category: 'Adverbs of Manner', question: "The runner [BLANK] crossed the finish line.", answer: "triumphantly" },
{ category: 'Adverbs of Manner', question: "He apologized [BLANK] for his mistake.", answer: "sincerely" },
{ category: 'Adverbs of Manner', question: "The cat [BLANK] jumped onto the counter.", answer: "quickly" },
{ category: 'Adverbs of Manner', question: "She spoke [BLANK] about her childhood.", answer: "fondly" },
{ category: 'Adverbs of Manner', question: "The team worked [BLANK] to meet the deadline.", answer: "tirelessly" },
{ category: 'Adverbs of Manner', question: "He [BLANK] refused to change his opinion.", answer: "stubbornly" },
{ category: 'Adverbs of Manner', question: "The story was [BLANK] told, capturing everyone's attention.", answer: "vividly" },
{ category: 'Adverbs of Manner', question: "She [BLANK] checked each answer on the test.", answer: "carefully" },
{ category: 'Adverbs of Manner', question: "The child [BLANK] grabbed the toy from his friend.", answer: "greedily" },
{ category: 'Adverbs of Manner', question: "He [BLANK] accepted the award, with a huge smile.", answer: "proudly" },
{ category: 'Adverbs of Manner', question: "The dog [BLANK] followed its owner around the house.", answer: "loyally" },
{ category: 'Adverbs of Manner', question: "The teacher explained the concept [BLANK] to the students.", answer: "clearly" },
{ category: 'Adverbs of Manner', question: "They [BLANK] whispered during the movie.", answer: "quietly" },
{ category: 'Adverbs of Manner', question: "She [BLANK] accepted the criticism, showing no emotion.", answer: "stoically" },
{ category: 'Adverbs of Manner', question: "The comedian [BLANK] delivered the punchline.", answer: "expertly" },
{ category: 'Adverbs of Manner', question: "The athlete [BLANK] jumped over the hurdles.", answer: "effortlessly" },
{ category: 'Adverbs of Manner', question: "The baby [BLANK] crawled towards its mother.", answer: "eagerly" },
{ category: 'Adverbs of Manner', question: "The wind [BLANK] blew the leaves across the yard.", answer: "vigorously" },
{ category: 'Adverbs of Manner', question: "The detective [BLANK] searched the room for clues.", answer: "thoroughly" },
{ category: 'Adverbs of Manner', question: "The musician played the piano [BLANK].", answer: "skillfully" },
{ category: 'Adverbs of Manner', question: "The children [BLANK] played tag in the park.", answer: "happily" },
{ category: 'Adverbs of Manner', question: "She [BLANK] explained her reasons for leaving.", answer: "calmly" },
{ category: 'Adverbs of Manner', question: "The bird [BLANK] sang at dawn.", answer: "melodiously" },
{ category: 'Adverbs of Manner', question: "The lawyer [BLANK] argued the case in court.", answer: "persuasively" },
{ category: 'Adverbs of Manner', question: "The sun [BLANK] shone on the beach.", answer: "brightly" },
{ category: 'Adverbs of Manner', question: "The chef [BLANK] chopped the vegetables.", answer: "precisely" },
{ category: 'Adverbs of Manner', question: "The driver [BLANK] navigated through the traffic.", answer: "skillfully" },
{ category: 'Adverbs of Manner', question: "The artist [BLANK] painted the landscape.", answer: "creatively" },
{ category: 'Adverbs of Manner', question: "The magician [BLANK] performed the trick.", answer: "mysteriously" },
{ category: 'Adverbs of Manner', question: "The students [BLANK] listened to the lecture.", answer: "attentively" },
{ category: 'Adverbs of Manner', question: "The runner [BLANK] crossed the finish line.", answer: "triumphantly" },
//
{ category: 'Adverbs of Frequency', question: 'How [BLANK] do you think AI will be used in the future?', answer: 'often' },
{ category: 'Adverbs of Place', question: 'Where, [BLANK], will AI be most developed in the next 10 years?', answer: 'globally' },
{ category: 'Adverbs of Manner', question: 'How [BLANK] will AI be able to solve complex problems?', answer: 'effectively' },
{ category: 'Adverbs of Degree', question: 'Will AI [BLANK] be able to understand human emotions?', answer: 'fully' },
{ category: 'Adverbs of Time', question: 'AI has [BLANK] been making rapid progress.', answer: 'recently' },
{ category: 'Adverbs of Frequency', question: 'How will AI [BLANK] be able to learn and adapt?', answer: 'continuously' },
{ category: 'Adverbs of Manner', question: 'How can we ensure that AI is used [BLANK]?', answer: 'responsibly' },
{ category: 'Adverbs of Degree', question: 'How [BLANK] will AI impact our society?', answer: 'deeply|badly|significantly' },
{ category: 'Adverbs of Frequency', question: "How do you think people will [BLANK] work from home in the future?",
answer: 'increasingly' },
{ category: 'Adverbs of Place', question: "Where can you find [BLANK] the best resources for working from home?", answer: 'online' },
{ category: 'Adverbs of Manner', question: "How [BLANK] can you create a productive home office?", answer: 'effectively' },
{ category: 'Adverbs of Degree', question: "To what extent can working from home [BLANK] improve work-life balance?",
answer: 'significantly' },
{
"category": "Adverbs of Frequency",
"question": "She [BLANK] forgets to submit her weekly report.",
"answer": "often|regularly|seldom"
},
{
"category": "Adverbs of Frequency",
"question": "He [BLANK] goes to the gym in the mornings.",
"answer": "usually|always|often"
},
{
"category": "Adverbs of Frequency",
"question": "They [BLANK] eat out on weekends.",
"answer": "frequently|sometimes|rarely"
},
{
"category": "Adverbs of Frequency",
"question": "I [BLANK] watch TV in the evenings.",
"answer": "sometimes|occasionally|rarely"
},
{
"category": "Adverbs of Frequency",
"question": "We [BLANK] take vacations in the summer.",
"answer": "always|usually|often"
},
{
"category": "Adverbs of Frequency",
"question": "She [BLANK] misses her morning coffee.",
"answer": "never|seldom|rarely"
},
{
"category": "Adverbs of Frequency",
"question": "He [BLANK] visits his parents on the weekend.",
"answer": "usually|frequently|often"
},
{
"category": "Adverbs of Frequency",
"question": "They [BLANK] have meetings on Fridays.",
"answer": "usually|often|always"
},
{
"category": "Adverbs of Frequency",
"question": "I [BLANK] go to bed late during the week.",
"answer": "never|seldom|hardly ever"
},
{
"category": "Adverbs of Frequency",
"question": "She [BLANK] checks her email first thing in the morning.",
"answer": "always|constantly|regularly"
},
//
// Adverbs of Frequency
// Create lots of flash cards
// show answer as definition on the other side of the flash card
// create JS valid content
// wrap the strings in double quotes
// focus on work situations
// here's an example
// { category: 'Adverbs of Frequency', question: "He [BLANK] misses his classes.", answer: "rarely" },
{ category: 'Adverbs of Frequency', question: "They [BLANK] update the project status report.", answer: "regularly" },
{ category: 'Adverbs of Frequency', question: "I [BLANK] check my emails during lunch breaks.", answer: "sometimes" },
{ category: 'Adverbs of Frequency', question: "Our team [BLANK] encounters technical issues.", answer: "occasionally" },
{ category: 'Adverbs of Frequency', question: "She [BLANK] participates in team brainstorming sessions.",
answers: ["occasionally","often"] },
{ category: 'Adverbs of Frequency', question: "He [BLANK] communicates with clients directly.", answer: "usually" },
{ category: 'Adverbs of Frequency', question: "We [BLANK] review project progress every week.", answer: "regularly" },
{ category: 'Adverbs of Frequency', question: "They [BLANK] receive training for new software.", answer: "frequently" },
{ category: 'Adverbs of Frequency', question: "I [BLANK] make presentations in team meetings.", answer: "sometimes" },
{ category: 'Adverbs of Frequency', question: "Our manager [BLANK] conducts performance evaluations.", answer: "annually" },
{ category: 'Adverbs of Frequency', question: "She [BLANK] works overtime to meet deadlines.", answer: "sometimes" },
{ category: 'Adverbs of Frequency', question: "They [BLANK] have team-building events.", answer: "sometimes" },
{ category: 'Adverbs of Frequency', question: "I [BLANK] attend industry conferences.", answer: "rarely" },
{ category: 'Adverbs of Frequency', question: "Our department [BLANK] organizes training sessions.", answer: "frequently" },
{ category: 'Adverbs of Frequency', question: "She [BLANK] contributes ideas to improve processes.", answer: "often" },
{ category: 'Adverbs of Frequency', question: "He [BLANK] takes breaks to relax during the day.", answer: "regularly" },
{ category: 'Adverbs of Frequency', question: "We [BLANK] update our project timelines on Fridays.", answer: "usually" },
{ category: 'Adverbs of Frequency', question: "They [BLANK] have team meetings to discuss goals.", answer: "weekly" },
{ category: 'Adverbs of Frequency', question: "I [BLANK] complete my reports before deadlines.", answer: "always" },
{ category: 'Adverbs of Frequency', question: "Our manager [BLANK] communicates changes to the team.", answer: "regularly" },
{ category: 'Adverbs of Frequency', question: "She [BLANK] reviews documents for accuracy.", answer: "always" },
{ category: 'Adverbs of Frequency', question: "She [BLANK] attends all the meetings on time.", answer: "always" },
{ category: 'Adverbs of Frequency', question: "Our team [BLANK] meets deadlines efficiently.", answer: "usually" },
{ category: 'Adverbs of Frequency', question: "He [BLANK] checks his emails first thing in the morning.", answer: "usually|always" },
{ category: 'Adverbs of Frequency', question: "They [BLANK] have a lunch break at noon.", answer: "usually" },
{ category: 'Adverbs of Frequency', question: "I [BLANK] complete my tasks before the end of the day.", answer: "always" },
{ category: 'Adverbs of Frequency', question: "I often complete my tasks before the ---.", answer: "end of the day" },
{ category: 'Adverbs of Frequency', question: "Our manager [BLANK] holds a team briefing on Mondays.", answer: "usually" },
{ category: 'Adverbs of Frequency', question: "She [BLANK] forgets to submit her weekly report.", answer: "often|regularly|seldom" },
{ category: 'Adverbs of Frequency', question: "We [BLANK] start our day with a team huddle.", answer: "often" },
{ category: 'Adverbs of Frequency', question: "He [BLANK] takes personal calls during work hours.", answer: "rarely" },
{ category: 'Adverbs of Frequency', question: "Our department [BLANK] collaborates with other teams.", answer: "often|rarely|seldom|frequently" },
//
{
"category": "Christmas",
"question": "What do you put on the top of the Christmas tree to make it look festive?",
"answer": "A star or an angel"
},
{
"category": "Christmas",
"question": "What do you call the things that people hang on Christmas trees?",
"answer": "ornaments"
},
{
"category": "Christmas",
"question": "What do people leave out for Santa Claus on Christmas Eve?",
"answer": "Milk and cookies"
},
{
"category": "Christmas",
"question": "What is a popular food that people in the USA eat on Christmas Day?",
"answer": "Roast turkey|Roast ham|Roast beef"
},
{
"category": "Christmas",
"question": "What is a common tradition at Christmas?",
"answer": "giving presents | giving thanks"
},
{
"category": "Christmas",
"question": "What is a popular Christmas drink?",
"answer": "Eggnog"
},
{
"category": "Christmas",
"question": "What is a traditional Christmas activity?",
"answer": "Caroling"
},
{
"category": "Christmas",
"question": "What is a popular Christmas decoration on a door or wall?",
"answer": "A wreath"
},
//
{ category: 'Pronouns: Interrogative', question: "______ are you going?", answer: "Where|When|Why" },
{ category: 'Pronouns: Interrogative', question: "______ did you meet her?", answer: "Where|When|Why" },
{ category: 'Pronouns: Interrogative', question: "______ is the nearest grocery store?", answer: "Where" },
{ category: 'Pronouns: Interrogative', question: "______ were you last night?", answer: "Where" },
{ category: 'Pronouns: Interrogative', question: "______ can I find the best pizza in town?", answer: "Where" },
{ category: 'Pronouns: Interrogative', question: "______ did she say about the movie?", answer: "What" },
{ category: 'Pronouns: Interrogative', question: "______ are your plans for the weekend?", answer: "What" },
{ category: 'Pronouns: Interrogative', question: "______ is the capital of France?", answer: "What" },
{ category: 'Pronouns: Interrogative', question: "______ time is it?", answer: "What" },
{ category: 'Pronouns: Interrogative', question: "______ are you thinking about?", answer: "What" },
{ category: 'Pronouns: Interrogative', question: "______ do you want to eat tonight?", answer: "What" },
{ category: 'Pronouns: Interrogative', question: "______ is she coming over?", answer: "When" },
{ category: 'Pronouns: Interrogative', question: "______ will the meeting start?", answer: "When" },
{ category: 'Pronouns: Interrogative', question: "______ is your birthday?", answer: "When" },
{ category: 'Pronouns: Interrogative', question: "______ do we have to submit the project?", answer: "When" },
{ category: 'Pronouns: Interrogative', question: "______ are you going to finish your work?", answer: "When" },
{ category: 'Pronouns: Interrogative', question: "______ are you meeting him?", answer: "Where|When" },
{ category: 'Pronouns: Interrogative', question: "______ is your best friend?", answer: "Who" },
{ category: 'Pronouns: Interrogative', question: "______ won the match yesterday?", answer: "Who" },
{ category: 'Pronouns: Interrogative', question: "______ told you this story?", answer: "Who" },
{ category: 'Pronouns: Interrogative', question: "______ are you going to vote for?", answer: "Who" },
{ category: 'Pronouns: Interrogative', question: "______ is the deadline for this project?", answer: "What" },
{ category: 'Pronouns: Interrogative', question: "______ are we having the team meeting?", answer: "Where|Why|When" },
{ category: 'Pronouns: Interrogative', question: "______ is responsible for the quarterly report?", answer: "Who" },
{ category: 'Pronouns: Interrogative', question: "______ are the meeting minutes from last week?", answer: "Where" },
{ category: 'Pronouns: Interrogative', question: "______ do we expect the client's feedback?", answer: "When" },
{ category: 'Pronouns: Interrogative', question: "______ should I direct this call to?", answer: "Who" },
{ category: 'Pronouns: Interrogative', question: "______ are the main objectives for this quarter?", answer: "What" },
{ category: 'Pronouns: Interrogative', question: "______ do you think about this proposal?", answer: "What" },
{ category: 'Pronouns: Interrogative', question: "______ will the new intern start?", answer: "When" },
{ category: 'Pronouns: Interrogative', question: "______ is leading the new marketing campaign?", answer: "Who" },
{ category: 'Pronouns: Interrogative', question: "______ can we find the latest sales data?", answer: "Where" },
{ category: 'Pronouns: Interrogative', question: "______ was the decision made to change the strategy?", answer: "Why" },
{ category: 'Pronouns: Interrogative', question: "______ are the requirements for the new software?", answer: "What" },
{ category: 'Pronouns: Interrogative', question: "______ needs to approve these documents?", answer: "Who" },
{ category: 'Pronouns: Interrogative', question: "______ is the budget for this project?", answer: "What" },
{ category: 'Pronouns: Interrogative', question: "______ will the audit take place?", answer: "When" },
{ category: 'Pronouns: Interrogative', question: "______ can I discuss my career progression with?", answer: "Who" },
{ category: 'Pronouns: Interrogative', question: "______ are the risks associated with this plan?", answer: "What" },
{ category: 'Pronouns: Interrogative', question: "______ will we review the project milestones?", answer: "When" },
{ category: 'Pronouns: Interrogative', question: "______ is the procedure for remote work applications?",
answers: ["Where","What"] },
//
// Pronouns:demonstrative
// // Create flash cards
// show answer as definition on the other side of the flash card
// create JS valid content
// here's an example
// { category: 'Pronouns:demonstrative', question: "This is the book I was talking about. [BLANK] book is very interesting.", answer: "This" },
{
category: 'Pronouns:demonstrative',
question: "I don't have [BLANK] permissions!",
answer: "those"
},
{
category: 'Pronouns:demonstrative',
question: "Do you remember [BLANK] days when we were kids? [BLANK] days were the best!",
answer: "those"
},
{
category: 'Pronouns:demonstrative',
question: "I can't believe [BLANK] is happening to me. [BLANK] moment is unbelievable!",
answer: "this"
},
{
category: 'Pronouns:demonstrative',
question: "[BLANK] are the keys you were looking for.",
answer: "These"
},
{
category: 'Pronouns:demonstrative',
question: "Look at [BLANK] picture. [BLANK] picture was taken on my birthday.",
answer: "that"
},
{
category: 'Pronouns:demonstrative',
question: "Can you see [BLANK] birds over there? [BLANK] birds migrate every year.",
answer: "those"
},
{
category: 'Pronouns:demonstrative',
question: "I need [BLANK] information for my project. [BLANK] information is crucial.",
answer: "this"
},
{
category: 'Pronouns:demonstrative',
question: "This is the book I was talking about. [BLANK] book is very interesting.",
answer: "This"
},
{
category: 'Pronouns:demonstrative',
question: "I don't like [BLANK] shoes; they are too tight.",
answer: "these"
},
{
category: 'Pronouns:demonstrative',
question: "[BLANK] is the restaurant my family loves. [BLANK] restaurant serves amazing pasta.",
answer: "That"
},
{
category: 'Pronouns:demonstrative',
question: "I haven't read [BLANK] books yet. Are [BLANK] books good?",
answer: "those"
},
{
category: 'Pronouns:demonstrative',
question: "[BLANK] is my friend's car. [BLANK] car is the one we used last time.",
answer: "That"
},
//
// Adverbs of Manner
// Create flash cards
// show answer as definition on the other side of the flash card
// create JS valid content
// here's an example
// { category: 'Adverbs of Manner', question: "He completed the task [BLANK].", answer: "quickly" },
{ category: 'Adverbs of Manner', question: "He completed the task [BLANK].", answer: "quickly" },
{ category: 'Adverbs of Manner', question: "She speaks [BLANK].", answer: "softly" },
{ category: 'Adverbs of Manner', question: "The dog barked [BLANK].", answer: "loudly" },
{ category: 'Adverbs of Manner', question: "They worked [BLANK].", answer: "diligently" },
{ category: 'Adverbs of Manner', question: "He laughed [BLANK].", answer: "heartily" },
{ category: 'Adverbs of Manner', question: "She danced [BLANK].", answer: "gracefully" },
{ category: "Adverbs of Manner", question: "She cleans the house [BLANK].", answer: "thoroughly" },
{ category: "Adverbs of Manner", question: "He cooks dinner [BLANK].", answer: "skillfully" },
{ category: "Adverbs of Manner", question: "They discuss family matters [BLANK].", answer: "calmly" },
{ category: "Adverbs of Manner", question: "She waters the plants [BLANK].",
answers: ["religiously","carefully"] },
{ category: "Adverbs of Manner", question: "He repairs the leak [BLANK].", answer: "efficiently" },
{ category: "Adverbs of Manner", question: "They play games [BLANK].", answer: "enthusiastically" },
{ category: "Adverbs of Manner", question: "She organizes the room [BLANK].", answer: "neatly" },
{ category: "Adverbs of Manner", question: "He teaches his child [BLANK].", answer: "patiently" },
{ category: "Adverbs of Manner", question: "He works [BLANK].", answer: "hard" },
{ category: "Adverbs of Manner", question: "She laughed [BLANK].", answer: "loudly" },
{ category: "Adverbs of Manner", question: "They played [BLANK].", answer: "enthusiastically" },
{ category: "Adverbs of Manner", question: "He spoke [BLANK].", answer: "clearly" },
{ category: "Adverbs of Manner", question: "She dances [BLANK].", answer: "gracefully" },
{ category: "Adverbs of Manner", question: "They listened [BLANK].", answer: "attentively" },
{ category: "Adverbs of Manner", question: "He answered [BLANK].", answer: "quickly" },
{ category: "Adverbs of Manner", question: "She cooked [BLANK].", answer: "skillfully" },
{ category: "Adverbs of Manner", question: "They argued [BLANK].", answer: "fiercely" },
{ category: "Adverbs of Manner", question: "He drove [BLANK].", answer: "carefully" },
{ category: "Adverbs of Manner", question: "She manages the team [BLANK].", answer: "efficiently" },
{ category: "Adverbs of Manner", question: "He presents his ideas [BLANK].", answer: "clearly" },
{ category: "Adverbs of Manner", question: "They collaborate [BLANK].", answer: "cooperatively" },
{ category: "Adverbs of Manner", question: "She handles clients [BLANK].", answer: "professionally" },
{ category: "Adverbs of Manner", question: "He completes tasks [BLANK].", answer: "quickly|promptly" },
{ category: "Adverbs of Manner", question: "They discuss issues [BLANK].", answer: "openly|fiercely" },
{ category: "Adverbs of Manner", question: "She negotiates [BLANK].", answer: "effectively" },
{ category: "Adverbs of Manner", question: "He responds to emails [BLANK].", answer: "quickly" },
{ category: "Adverbs of Manner", question: "They solve problems [BLANK].", answers: ["quickly","easily","creatively"] },
{ category: "Adverbs of Manner", question: "She delegates tasks [BLANK].", answer: "wisely" },
// //
// possessive pronouns
// // Create flash cards
// show answer as definition on the other side of the flash card
// create JS valid content
// wrap the strings with double quotes
// here's an example
// { category: 'Pronouns:Possessive ', question: " Where is [BLANK]book?", answer: "my" },
{ category: 'Pronouns: Possessive', question: 'Where is [BLANK] book?', answer: 'my' },
{ category: 'Pronouns: Possessive', question: 'Is this [BLANK] pen?', answer: 'your' },
{ category: 'Pronouns: Possessive', question: 'I have [BLANK] keys.', answer: 'his' },
{ category: 'Pronouns: Possessive', question: 'She forgot [BLANK] wallet.', answer: 'her' },
{ category: 'Pronouns: Possessive', question: 'They lost [BLANK] tickets.', answer: 'their' },
{ category: 'Pronouns: Possessive', question: "It's [BLANK] turn.", answers: ["her","his","their","our","your"] },
{ category: 'Pronouns: Possessive', question: 'We will find [BLANK] way home.', answer: 'our' },
{ category: 'Pronouns: Possessive', question: 'Can you send me [BLANK] report?', answer: 'your' },
{ category: 'Pronouns: Possessive', question: 'He needs to update [BLANK] resume.', answer: 'his' },
{ category: 'Pronouns: Possessive', question: "The manager praised [BLANK] team's work.", answers: ['her','his'] },
{ category: 'Pronouns: Possessive', question: 'They missed [BLANK] deadline.', answer: 'their' },
{ category: 'Pronouns: Possessive', question: 'We have to meet [BLANK] new client.', answer: 'our' },
{ category: 'Pronouns: Possessive', question: 'Is this [BLANK] office?', answers: ['your',"her","his"] },
{ category: 'Pronouns: Possessive', question: 'She needs to finish [BLANK] presentation.', answer: 'her' },
{ category: 'Pronouns: Possessive', question: "We should respect [BLANK] company's policy.", answer: 'our' },
{ category: 'Pronouns: Possessive', question: 'He forgot [BLANK] laptop at the meeting.', answer: 'his' },
{ category: 'Pronouns: Possessive', question: 'Can you check [BLANK] email?', answer: 'your' },
//
// reflexive pronouns
// // Create flash cards
// show answer as definition on the other side of the flash card
// create JS valid content
// here's an example
// { category: 'Pronouns: Reflexive', question: "I did it all by [BLANK].", answer: "myself" },
{ category: 'Pronouns: Reflexive', question: 'I did it all by [BLANK].', answer: 'myself' },
{ category: 'Pronouns: Reflexive', question: 'You should be proud of [BLANK].', answer: 'yourself' },
{ category: 'Pronouns: Reflexive', question: 'He can do it by [BLANK].', answer: 'himself' },
{ category: 'Pronouns: Reflexive', question: 'She did the work by [BLANK].', answer: 'herself' },
{ category: 'Pronouns: Reflexive', question: 'It can clean [BLANK].', answer: 'itself' },
{ category: 'Pronouns: Reflexive', question: 'We did it on our [BLANK].', answer: 'own' },
{ category: 'Pronouns: Reflexive', question: 'They have to figure it out for [BLANK].', answer: 'themselves' },
{ category: 'Pronouns: Reflexive', question: 'I did it all by [BLANK].', answer: 'myself' },
{ category: 'Pronouns: Reflexive', question: 'You should be proud of [BLANK].', answer: 'yourself' },
{ category: 'Pronouns: Reflexive', question: 'He can do it by [BLANK].', answer: 'himself' },
{ category: 'Pronouns: Reflexive', question: 'She did the work by [BLANK].', answer: 'herself' },
{ category: 'Pronouns: Reflexive', question: 'It can clean [BLANK].', answer: 'itself' },
{ category: 'Pronouns: Reflexive', question: 'We did it on our [BLANK].', answer: 'own' },
{ category: 'Pronouns: Reflexive', question: 'They have to figure it out for [BLANK].', answer: 'themselves' },
//
// Create flash cards
// Use idomatic phrases
// show answer as definition on the other side of the flash card
// create JS valid content
// Do not tag the idiom type
// here's an example
// { category: 'Idioms', question: "Bite the bullet", answer: "To endure a painful or otherwise unpleasant situation that is seen as unavoidable." },
{
"category": "Idioms",
"question": "Bargain hunting: If you spend time in the shops looking for items to buy at the lowest price, you go bargain hunting.",
"answer": "During the sales I go bargain hunting with my friends!"
},
{
"category": "Idioms",
"question": "actions speak louder than words",
"answer": "His actions speak louder than words. He said he was going to the gym but he sits on the couch."
},
{
"category": "Idioms",
"question": "Be your one-stop shop: Your one-stop shop is a location at which you can buy everything you need or want.",
"answer": "The 'Shopping Empire' is my one-stop shop for buying Christmas presents."
},
{
"category": "Idioms",
"question": "Break the bank: The expression break the bank means to spend or lose all your money, or to buy something that costs more than you can afford.",
"answer": "Come on! Buying a new dress is not going to break the bank!"
},
{
"category": "Idioms",
"question": "It's a bargain: Said when an article is well below the usual price.",
"answer": "That handbag goes beautifully with the dress, and at that price it's a bargain!"
},
{
"category": "Idioms",
"question": "Buy a lemon: If buy something, especially a car, that is defective, unsatisfactory, constantly gives trouble or stops running after a short time, you buy a lemon.",
"answer": "The car I bought was a real lemon. It broke down two weeks later."
},
{
"category": "Idioms",
"question": "Hit the shops: If a product hits the shops, it becomes available for purchase for the first time.",
"answer": "Her latest album will hit the shops next Monday."
},
{
"category": "Idioms",
"question": "I can't afford it: If you can't afford something you don't have enough money to buy it.",
"answer": "I'd love that jacket but I can't afford it!"
},
{
"category": "Idioms",
"question": "It costs an arm and a leg: If an article or service costs an arm and a leg, it is very expensive indeed.",
"answer": "The diamond engagement ring cost an arm and a leg!"
},
{
"category": "Idioms",
"question": "It costs a fortune: Something that costs a fortune is very expensive.",
"answer": "Look at the price of that bag - it costs a fortune!"
},
{
"category": "Idioms",
"question": "It's a steal: The expression 'it's a steal' means that something is so cheap that it's almost as if you haven't paid anything for it.",
"answer": "At that price it's a steal. You won't find it cheaper in any other shop."
},
{
"category": "Idioms",
"question": "It's good value for money: Something that is good value for money is worth the money spent on it.",
"answer": "The quality is excellent so it's good value for money."
},
{
"category": "Idioms",
"question": "It's a bit pricey: The expression a bit pricey means that something is a bit expensive.",
"answer": "Their clothes are a bit pricey but they have a wonderful selection"
},
{
"category": "Idioms",
"question": "It's a rip-off: Something that costs much more than it should is called a rip-off.",
"answer": "$10 for an orange juice? That's a rip-off!"
},
{
"category": "Idioms",
"question": "Pay through the nose: If you pay through the nose, you pay an unreasonably high price or an excessive amount of money for something.",
"answer": "Amanda has expensive taste. Sam had to pay through the nose for the bracelet she chose."
},
{
"category": "Idioms",
"question": "A pound shop (primarily heard in the UK): A shop where goods are sold at a low price, usually for a pound or less, is called a pound shop.",
"answer": "Let's go to the pound shop. We'll find something cheaper there."
},
{
"category": "Idioms",
"question": "Shop around: If you shop around, you visit a number of shops selling similar articles in order to compare the prices.",
"answer": "You can usually save money by shopping around."
},
{
"category": "Idioms",
"question": "Shop till you drop: If you shop till you drop, you go shopping for a very long time, until you are exhausted.",
"answer": "If you go to London with Ashley, you'll shop till you drop, so take comfortable shoes!"
},
{
"category": "Idioms",
"question": "Shopper's paradise: A place where a large selection of items are available for sale is called a shopper's paradise by people who love shopping.",
"answer": "The new mall is real shopper's paradise. I could spend the day there!"
},
{
"category": "Idioms",
"question": "Shopping spree: If you go on a shopping spree, you enjoy a lively outing, usually with much spending of money.",
"answer": "Liza is planning to go on a shopping spree as soon as she gets her bonus."
},
{
"category": "Idioms",
"question": "Shopping therapy: The term shopping therapy refers to the idea that buying things can make you feel better.",
"answer": "A little shopping therapy can usually cheer up bored teenagers."
},
{
"category": "Idioms",
"question": "Splash out: If you splash out on something, you buy it even though it costs a lot of money.",
"answer": "When he got a promotion Andy splashed out on a brand new car."
},
{
"category": "Idioms",
"question": "Window shopping: When people go window shopping, they look at things in shop windows, without actually purchasing anything.",
"answer": "I haven't been paid yet, so I can only go window shopping."
},
//nowadays
{
"category": "Idioms",
"question": "Pull one's leg: Meaning: To lie.",
"answer": "That doesn't sound right. Are you pulling my leg?"
},
{
"category": "Idioms",
"question": "Spill the beans: Meaning: To tell a secret.",
"answer": "I already know you did it. Your best friend spilled the beans."
},
{
"category": "Idioms",
"question": "Sit on the fence: Meaning: To be undecided.",
"answer": "I'm still sitting on the fence about whether I'm going to buy that car."
},
{
"category": "Idioms",
"question": "Don't cry over spilled milk/ No use in crying over spilled milk: Meaning: What has already happened cannot be undone so you shouldn't cry but you should think of what to do going forward.",
"answer": "I know it wasn't your fault but there's no use in crying over spilled milk. Think of what you're going to do next."
},
{
"category": "Idioms",
"question": "Fair and square: Meaning: To do things in a fair way with no advantages given to either side.",
"answer": "No do-overs. I won fair and square."
},
{
"category": "Idioms",
"question": "Straight from the horse's mouth: Meaning: To hear information directly from the person involved.",
"answer": "I already know the truth. I heard straight from the horse's mouth."