-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathvocabulary-globish.js
7190 lines (7189 loc) · 318 KB
/
vocabulary-globish.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
if (!window.vocabulary) {
vocabulary = {};
}
vocabulary.globish = [{
"word": "A, AN",
"definitions": { "english": "indefinite article", "turkish": "" },
"examples": ["<u>A</u> cat. <u>An</u> apple."]
}, {
"word": "ABLE adj.",
"definitions": { "english": "having sufficient power to accomplish something", "turkish": "" },
"examples": ["He will be <u>able</u> to finish by noon."]
}, {
"word": "ABOUT adv.",
"definitions": { "english": "near, close to, approximately", "turkish": "" },
"examples": ["He was here <u>about</u> one month ago. The movie was <u>about</u> a boy and his dog."]
}, {
"word": "ABOVE prep.",
"definitions": { "english": "at a higher level", "turkish": "" },
"examples": ["The cloud was <u>above</u> the mountain."]
}, {
"word": "ABSURD adj.",
"definitions": { "english": "very unreasonable, illogical, or inappropriate", "turkish": "" },
"examples": ["The argument was <u>absurd</u>."]
}, {
"word": "ACCEPT v., ACCEPTANCE n., ACCEPTABLE adj.",
"definitions": { "english": "approval or agreement", "turkish": "" },
"examples": ["John <u>accepted</u> the contract. The contract was <u>acceptable</u>."]
}, {
"word": "ACCESS n., v., ACCESSIBLE adj.",
"definitions": { "english": "ability to enter or make use of", "turkish": "" },
"examples": ["Mary had <u>access</u> to money. She <u>accessed</u> the computer"]
}, {
"word": "ACCIDENT n., ACCIDENTAL adj., ACCIDENTALLY adv.",
"definitions": { "english": "unforeseen or unplanned event", "turkish": "" },
"examples": ["They met by <u>accident</u> in the shop."]
}, {
"word": "ACCOUNT n., v., ACCOUNTABLE adj., ACCOUNTING n., \nACCOUNTANT n.",
"definitions": { "english": "Explanation or reason, sometimes dealing with money or time", "turkish": "" },
"examples": ["John's bank <u>account</u> had $100. The <u>accountant</u> balanced the books."]
}, {
"word": "ACCUSE v., ACCUSATION n.",
"definitions": { "english": "to charge with an offense or crime", "turkish": "" },
"examples": ["The man was <u>accused</u> of stealing."]
}, {
"word": "ACROSS adv.",
"definitions": { "english": "on the opposite side", "turkish": "" },
"examples": ["The house was <u>across</u> the river."]
}, {
"word": "ACT n., v., ACTION n., ACTOR n., ACTIVE adj.",
"definitions": { "english": "to do something; performance or accomplishment", "turkish": "" },
"examples": ["She <u>acted</u> decisively. He likes <u>active</u> sports."]
}, {
"word": "ADD v., ADDITION n., ADDITIONAL adj. ADDITIONALLY adv.",
"definitions": { "english": "to increase", "turkish": "" },
"examples": ["He <u>added</u> one room to the house. John knows how to <u>add</u> two plus two."]
}, {
"word": "ADDRESS n., v.",
"definitions": { "english": "to communicate directly, a location for contact", "turkish": "" },
"examples": ["Mr. Smith <u>addressed</u> the audience. We found the <u>address</u> of the hotel."]
}, {
"word": "ADMINISTER v., ADMINISTRATOR n., ADMINISTRATION n.",
"definitions": { "english": "to manage or supervise", "turkish": "" },
"examples": ["The teacher <u>administered</u> the test. John is the <u>administrator</u> of the school."]
}, {
"word": "ADMIT v., ADMISSION n.",
"definitions": { "english": "to accept or acknowledge", "turkish": "" },
"examples": ["She <u>admitted</u> that she was wrong. The price of <u>admission</u> is $5 dollars."]
}, {
"word": "ADULT adj., n.",
"definitions": { "english": "fully developed and mature", "turkish": "" },
"examples": ["Entrance was restricted to <u>adults</u> only."]
}, {
"word": "ADVANCE n., v., ADVANCEMENT n.",
"definitions": { "english": "to move forward, promote or improve", "turkish": "" },
"examples": ["He <u>advanced</u> the clock one hour."]
}, {
"word": "ADVERTISE v. ADVERTISEMENT n.",
"definitions": { "english": "to announce publicly", "turkish": "" },
"examples": ["The car was <u>advertised</u> in the newspaper."]
}, {
"word": "ADVISE v., ADVICE n.",
"definitions": { "english": "to give information or recommendation", "turkish": "" },
"examples": ["The police <u>advised</u> him to talk to a lawyer. That was good <u>advice</u>."]
}, {
"word": "AFFECT v.",
"definitions": { "english": "to influence", "turkish": "" },
"examples": ["The computer was <u>affected</u> by the dusty air."]
}, {
"word": "AFRAID adj.",
"definitions": { "english": "to fear", "turkish": "" },
"examples": ["We are all <u>afraid</u> of the dark."]
}, {
"word": "AFTER adj., adv.",
"definitions": { "english": "later in time or place", "turkish": "" },
"examples": ["John went <u>after</u> 4 O'Clock. He left <u>after</u> Mary."]
}, {
"word": "AGAIN adv.",
"definitions": { "english": "another time", "turkish": "" },
"examples": ["The car is out of order <u>again</u>."]
}, {
"word": "AGAINST prep.",
"definitions": { "english": "in opposition or opposite direction", "turkish": "" },
"examples": ["The fish was swimming <u>against</u> the current. Mary voted <u>against</u> the candidate."]
}, {
"word": "AGE n., v.",
"definitions": { "english": "to become old; the time of life", "turkish": "" },
"examples": ["The car seemed to <u>age</u> very fast. John's father died at an advanced <u>age</u>."]
}, {
"word": "AGENCY n., AGENT n.",
"definitions": { "english": "company or person that helps to achieve some goals", "turkish": "" },
"examples": ["The employment <u>agency</u> found a job for Mary. My insurance <u>agent</u> offered me a good deal."]
}, {
"word": "AGGRESSION n., AGGRESSIVE adj.",
"definitions": { "english": "to attack or fight", "turkish": "" },
"examples": ["The tiger was very <u>aggressive</u>."]
}, {
"word": "AGO adj., adv.",
"definitions": { "english": "earlier than the present time", "turkish": "" },
"examples": ["John's father died long <u>ago</u>. Two years <u><u>ago</u></u> Mary got married."]
}, {
"word": "AGREE v., AGREEMENT n.",
"definitions": { "english": "to reach common consent", "turkish": "" },
"examples": ["John <u>agreed</u> to buy the car. He reached an <u>agreement</u> with the car dealer."]
}, {
"word": "AGRICULTURE n.",
"definitions": { "english": "cultivation of the land and raising of crops.", "turkish": "" },
"examples": ["The history of <u>agriculture</u> goes back thousands of years."]
}, {
"word": "AID n., v.",
"definitions": { "english": "to help or provide support", "turkish": "" },
"examples": ["Mary received financial <u>aid</u> for her studies. John <u>aided</u> the man in the wheelchair."]
}, {
"word": "AIM n., v.",
"definitions": { "english": "to locate a goal or point a weapon", "turkish": "" },
"examples": ["He <u>aimed</u> the pistol at the bird."]
}, {
"word": "AIR n., v.",
"definitions": { "english": "the atmosphere, to expose to the atmosphere", "turkish": "" },
"examples": ["All mammals breathe <u>air</u>. She <u>aired</u> the carpet after cleaning it."]
}, {
"word": "AIRCRAFT, AIRPLANE n.",
"definitions": { "english": "vehicle that travels through the air.", "turkish": "" },
"examples": ["The <u>airplane</u> was two hours late."]
}, {
"word": "AIRPORT n.",
"definitions": { "english": "a place where airplanes can operate.", "turkish": "" },
"examples": ["New York has two major <u>airports</u>."]
}, {
"word": "ALARM n., v.",
"definitions": { "english": "a signal that warns of danger", "turkish": "" },
"examples": ["The fire <u>alarm</u> sounded in the middle of the night. The chickens were <u>alarmed</u> by the barking dog."]
}, {
"word": "ALBUM n.",
"definitions": { "english": "a book for storing a collection", "turkish": "" },
"examples": ["His <u>album</u> had many rare photographs."]
}, {
"word": "ALIVE adj.",
"definitions": { "english": "to live", "turkish": "" },
"examples": ["We found the dog <u>alive</u> and well."]
}, {
"word": "ALL",
"definitions": { "english": "everything or everyone; the whole amount", "turkish": "" },
"examples": ["<u>All</u> the king's horses and <u>all</u> the king's men couldn't put Humpty Dumpty together again."]
}, {
"word": "ALLY n., v., ALLIANCE n.",
"definitions": { "english": "a connection or relationship", "turkish": "" },
"examples": ["England and the United States were <u>allies</u> during World War II."]
}, {
"word": "ALMOND adj., n.",
"definitions": { "english": "a cream-colored, elliptical nut; the color of an almond", "turkish": "" },
"examples": ["We ate ice cream with roasted <u>almonds</u>."]
}, {
"word": "ALMOST adj.",
"definitions": { "english": "very nearly but not exactly or entirely", "turkish": "" },
"examples": ["He had <u>almost</u> reached the door when he fell."]
}, {
"word": "ALONE adj.",
"definitions": { "english": "separated from others; without company; single", "turkish": "" },
"examples": ["She sat <u>alone</u> in the kitchen."]
}, {
"word": "ALONG prep.",
"definitions": { "english": "in parallel; together with", "turkish": "" },
"examples": ["We walked <u>along</u> the bank of the river. Mary went <u>along</u> with our plans."]
}, {
"word": "ALREADY adv.",
"definitions": { "english": "prior to a specified time", "turkish": "" },
"examples": ["We had <u>already</u> had breakfast when John came."]
}, {
"word": "ALSO adv.",
"definitions": { "english": "in addition", "turkish": "" },
"examples": ["We had eggs for breakfast and <u>also</u> bacon."]
}, {
"word": "ALTHOUGH conj.",
"definitions": { "english": "even though", "turkish": "" },
"examples": ["She still rides a bicycle <u>although</u> she is 78 years old."]
}, {
"word": "ALWAYS adv.",
"definitions": { "english": "all the time", "turkish": "" },
"examples": ["She is <u>always</u> happy to see me."]
}, {
"word": "AM v.",
"definitions": { "english": "first person singular of verb BE", "turkish": "" },
"examples": ["I <u>am</u> very happy."]
}, {
"word": "AMMUNITION n.",
"definitions": { "english": "projectiles or explosives for war", "turkish": "" },
"examples": ["The soldiers did not have enough <u>ammunition</u> for their guns."]
}, {
"word": "AMONG prep.",
"definitions": { "english": "in the middle; in between", "turkish": "" },
"examples": ["Mary was <u>among</u> the visitors to the school."]
}, {
"word": "AMOUNT n., v.",
"definitions": { "english": "a quantity", "turkish": "" },
"examples": ["The <u>amount</u> of food was not enough. The bill <u>amounts</u> to $10."]
}, {
"word": "ANARCHY n.",
"definitions": { "english": "no government or administration", "turkish": "" },
"examples": ["The <u>anarchy</u> of the country made it hard to establish a business."]
}, {
"word": "ANCESTOR n.",
"definitions": { "english": "a forefather or progenitor", "turkish": "" },
"examples": ["Our <u>ancestors</u> established traditions the we still follow today."]
}, {
"word": "ANCIENT adj.",
"definitions": { "english": "very old", "turkish": "" },
"examples": ["The <u>ancient</u> stone walls were crumbling."]
}, {
"word": "AND conj.",
"definitions": { "english": "in addition", "turkish": "" },
"examples": ["John <u>and</u> Mary will go to the party."]
}, {
"word": "ANGER n., v., ANGRY adj.",
"definitions": { "english": "emotional displeasure; irritability", "turkish": "" },
"examples": ["Bad service <u>angers</u> her. She gets <u>angry</u> when the mail is late."]
}, {
"word": "ANGLE n., v., ANGULARITY n.",
"definitions": { "english": "two lines diverging from a common point", "turkish": "" },
"examples": ["The car was parked at an <u>angle</u> instead of parallel."]
}, {
"word": "ANIMAL n.",
"definitions": { "english": "a living organism that is not a plant", "turkish": "" },
"examples": ["Dogs and pigs are intelligent <u>animals</u>."]
}, {
"word": "ANNIVERSARY n.",
"definitions": { "english": "yearly commemoration", "turkish": "" },
"examples": ["My aunt and uncle celebrated their 20th wedding <u>anniversary</u>."]
}, {
"word": "ANNOUNCE v., ANNUNCIATION n.",
"definitions": { "english": "to publicly declare", "turkish": "" },
"examples": ["The winners of the contest were <u>announced</u> on Friday."]
}, {
"word": "ANOTHER adj.",
"definitions": { "english": "different from a previous one", "turkish": "" },
"examples": ["John ordered <u>another</u> drink."]
}, {
"word": "ANSWER n., v.",
"definitions": { "english": "a response to a request", "turkish": "" },
"examples": ["John did not receive an <u>answer</u> to his letter."]
}, {
"word": "ANY adj., ANYBODY n., ANYTHING n.",
"definitions": { "english": "a selection without restriction", "turkish": "" },
"examples": ["You can choose <u>any</u> flavor of ice cream that you want."]
}, {
"word": "APOLOGIZE v., APOLOGY n.",
"definitions": { "english": "to ask forgiveness", "turkish": "" },
"examples": ["John <u>apologized</u> for what he said, but his <u>apology</u> was not well received."]
}, {
"word": "APPEAL n., v.",
"definitions": { "english": "a request for help or sympathy", "turkish": "" },
"examples": ["He <u>appealed</u> to their sense of justice."]
}, {
"word": "APPEAR v., APPEARANCE n., APPARENTLY adv.",
"definitions": { "english": "to become visible; look like; seem", "turkish": "" },
"examples": ["The car <u>appeared</u> suddenly. He maintained the <u>appearance</u> of neutrality."]
}, {
"word": "APPLE n.",
"definitions": { "english": "a round fruit with small seeds.", "turkish": "" },
"examples": ["Newton was inspired when an <u>apple</u> fell from a tree."]
}, {
"word": "APPOINT v., APPOINTMENT n.",
"definitions": { "english": "an official designation; arrangement for a meeting", "turkish": "" },
"examples": ["The president <u>appointed</u> an assistant. Mary had an <u>appointment</u> with a doctor."]
}, {
"word": "APPROPRIATE adj., v., APPROPRIATION n.",
"definitions": { "english": "adequate; to take exclusive possession", "turkish": "" },
"examples": ["She wore a dress <u>appropriate</u> for the occasion. The city <u>appropriated</u> his property."]
}, {
"word": "APPROVE v., APPROVAL n.",
"definitions": { "english": "to accept as satisfactory", "turkish": "" },
"examples": ["The engineer <u>approved</u> the plan. The engineer gave his <u>approval</u>."]
}, {
"word": "APRIL n.",
"definitions": { "english": "The fourth month of the year.", "turkish": "" },
"examples": ["<u>April</u> showers bring May flowers. It is very rainy in <u>April</u>."]
}, {
"word": "ARE v.",
"definitions": { "english": "second person singular and plural of verb BE", "turkish": "" },
"examples": ["You <u>are</u> very happy. They <u>are</u> happy too."]
}, {
"word": "AREA n.",
"definitions": { "english": "a region", "turkish": "" },
"examples": ["The <u>area</u> next to the building was used for parking."]
}, {
"word": "ARGUE v., ARGUMENT n.",
"definitions": { "english": "to provide a reason", "turkish": "" },
"examples": ["The customers <u>argued</u> over who should pay the bill."]
}, {
"word": "ARM n., v.",
"definitions": { "english": "a part of the body connected to the hand; a weapon", "turkish": "" },
"examples": ["You cannot hug a child with nuclear <u>arms</u>."]
}, {
"word": "ARMY n.",
"definitions": { "english": "a group of people trained for war.", "turkish": "" },
"examples": ["The <u>army</u> prepared to defend the border."]
}, {
"word": "AROUND adv., prep.",
"definitions": { "english": "to go in a circle", "turkish": "" },
"examples": ["He went <u>around</u> the corner."]
}, {
"word": "ARREST n., v.",
"definitions": { "english": "to stop; to keep in custody", "turkish": "" },
"examples": ["The police <u>arrested</u> the thief."]
}, {
"word": "ARRIVE v.",
"definitions": { "english": "to reach a destination", "turkish": "" },
"examples": ["The airplane <u>arrived</u> on time."]
}, {
"word": "ART n., ARTIST n., ARTISTIC adj.",
"definitions": { "english": "an occupation requiring skill", "turkish": "" },
"examples": ["The <u>artist</u> specialized in abstract <u>art</u>."]
}, {
"word": "ARTILLERY n.",
"definitions": { "english": "heavy guns", "turkish": "" },
"examples": ["The artillery pounded the walls of the castle."]
}, {
"word": "AS adv., conj.",
"definitions": { "english": "in the way or manner", "turkish": "" },
"examples": ["The computer was <u>as</u> hot <u>as</u> a stove. I lived in the same building <u>as</u> my brother."]
}, {
"word": "ASH n.",
"definitions": { "english": "the remains of burning something", "turkish": "" },
"examples": ["The house burned down and only the <u>ashes</u> were left."]
}, {
"word": "ASK v.",
"definitions": { "english": "to request", "turkish": "" },
"examples": ["She <u>asked</u> him if he spoke English."]
}, {
"word": "ASLEEP adj., adv.",
"definitions": { "english": "to sleep.", "turkish": "" },
"examples": ["John was <u>asleep</u> in bed."]
}, {
"word": "ASSIST v., ASSISTANCE n.",
"definitions": { "english": "to help", "turkish": "" },
"examples": ["John <u>assisted</u> the old lady to cross the street."]
}, {
"word": "ASTRONOMY n., ASTRONOMICAL adj., ASTRONOMICALLY adv.",
"definitions": { "english": "study of stars; a large quantity", "turkish": "" },
"examples": ["The price was <u>astronomically</u> high. You need a telescope to study <u>astronomy</u>."]
}, {
"word": "AT prep.",
"definitions": { "english": "indicates a location or time", "turkish": "" },
"examples": ["She came <u>at</u> 5 O'Clock. We waited <u>at</u> the bus station."]
}, {
"word": "ATMOSPHERE n., ATMOSPHERIC adj.",
"definitions": { "english": "air; environment", "turkish": "" },
"examples": ["The arguments created a tense <u>atmosphere</u>. The <u>atmospheric</u> pressure decreased as the airplane gained altitude."]
}, {
"word": "ATOM n., ATOMIC adj.",
"definitions": { "english": "the smallest particle of an element; a small quantity", "turkish": "" },
"examples": ["An <u>atom</u> of hydrogen has one proton and one electron. An <u>atomic</u> bomb uses uranium or plutonium."]
}, {
"word": "ATTACH v., ATTACHMENT n.",
"definitions": { "english": "to connect or put together", "turkish": "" },
"examples": ["There was a check <u>attached</u> to the letter."]
}, {
"word": "ATTACK n., v., ATTACKER n.",
"definitions": { "english": "to work against using physical or verbal force", "turkish": "" },
"examples": ["The terrorists <u>attacked</u> the embassy."]
}, {
"word": "ATTEMPT n., v.",
"definitions": { "english": "to make an effort; try", "turkish": "" },
"examples": ["John <u>attempted</u> to set a new record."]
}, {
"word": "ATTEND v., ATTENTION n.",
"definitions": { "english": "to look after; participate", "turkish": "" },
"examples": ["It has come to my <u>attention</u> that you are late in your payments. Mary attended the science class."]
}, {
"word": "ATTRACT v., ATTRACTION n.",
"definitions": { "english": "to pull together", "turkish": "" },
"examples": ["A restaurant with good food <u>attracts</u> many customers."]
}, {
"word": "AUGUST n.",
"definitions": { "english": "the eighth month of the year", "turkish": "" },
"examples": ["It is always very hot in August."]
}, {
"word": "AUNT n.",
"definitions": { "english": "a sister of your mother or father", "turkish": "" },
"examples": ["My <u>aunt</u> had a birthday on Sunday."]
}, {
"word": "AUTHORITY n.",
"definitions": { "english": "power to influence", "turkish": "" },
"examples": ["The police have the <u>authority</u> to arrest criminals."]
}, {
"word": "AUTOMATIC adj., AUTOMATICALLY adv., AUTOMATION n.",
"definitions": { "english": "having a self-regulating mechanism", "turkish": "" },
"examples": ["The lights turned on <u>automatically</u>."]
}, {
"word": "AUTOMOBILE n.",
"definitions": { "english": "a vehicle for personal transportation", "turkish": "" },
"examples": ["The <u>automobile</u> had four doors."]
}, {
"word": "AUTUMN n.",
"definitions": { "english": "fall season, late in life", "turkish": "" },
"examples": ["The leaves of the trees turn red in the <u>autumn</u>."]
}, {
"word": "AVERAGE adj. n.",
"definitions": { "english": "value representative of the members of a group", "turkish": "" },
"examples": ["The man was of <u>average</u> height - not too tall and not too short."]
}, {
"word": "AVOID v., AVOIDANCE n.",
"definitions": { "english": "to stay away", "turkish": "" },
"examples": ["He <u>avoided</u> an accident by pressing the brakes."]
}, {
"word": "AWAKE adj., v.",
"definitions": { "english": "to stop sleeping", "turkish": "" },
"examples": ["John was <u>awake</u> by 5 AM. He <u>woke up</u> at 4 AM."]
}, {
"word": "AWARD n., v.",
"definitions": { "english": "a gift or prize", "turkish": "" },
"examples": ["John was <u>awarded</u> a medal for his heroism. John received an <u>award</u> for heroism."]
}, {
"word": "AWARE adj.",
"definitions": { "english": "to notice or know", "turkish": "" },
"examples": ["Mary was <u>aware</u> that the trip would be difficult."]
}, {
"word": "AWAY adv.",
"definitions": { "english": "in a different direction", "turkish": "" },
"examples": ["She looked <u>away</u> from John and saw the ocean."]
}, {
"word": "BABY n., v.",
"definitions": { "english": "a very young child; an infant; to treat with great care", "turkish": "" },
"examples": ["The <u>baby</u> is 14 months old. John <u>babied</u> his new car."]
}, {
"word": "BACK adj., n., v.",
"definitions": { "english": "the rear part of the body; provide support", "turkish": "" },
"examples": ["His <u>back</u> was burned by the sun. Several people <u>backed</u> the proposal."]
}, {
"word": "BACON n.",
"definitions": { "english": "pork belly that has been cured and smoked.", "turkish": "" },
"examples": ["He had <u>bacon</u> and eggs for breakfast."]
}, {
"word": "BAD, WORSE, WORST adj., BADLY adv.",
"definitions": { "english": "unacceptable; unpleasant", "turkish": "" },
"examples": ["The child behaved <u>badly</u> during the party. He was a <u>bad</u> child.\n Michael is <u>worse</u> than Brian, but Jerry is the <u>worst</u>."]
}, {
"word": "BAG n., v.",
"definitions": { "english": "a flexible container for carrying something; a sack", "turkish": "" },
"examples": ["John <u>bagged</u> the groceries. Mary put her shoes in a <u>bag</u>."]
}, {
"word": "BAGGAGE n.",
"definitions": { "english": "container for carrying clothing while traveling", "turkish": "" },
"examples": ["John lost his <u>baggage</u> when he flew to New York."]
}, {
"word": "BALANCE n., v.",
"definitions": { "english": "equality; equilibrium; symmetry; total", "turkish": "" },
"examples": ["He used a <u>balance</u> to check the weight. The auditor tried to <u>balance</u> the books."]
}, {
"word": "BALL n.",
"definitions": { "english": "a round object", "turkish": "" },
"examples": ["<u>Balls</u> are used many games. Keep your eye on the <u>ball</u>."]
}, {
"word": "BALLOON n., v.",
"definitions": { "english": "an inflatable bag; an increase", "turkish": "" },
"examples": ["There were several <u>balloons</u> filled with helium at the party. Her figure <u>ballooned</u> as she gained weight."]
}, {
"word": "BALLOT n., v.",
"definitions": { "english": "a sheet of paper for voting; to vote", "turkish": "" },
"examples": ["Most of the candidates in the <u>ballot</u> were unknown."]
}, {
"word": "BAN n., v.",
"definitions": { "english": "to forbid or prohibit", "turkish": "" },
"examples": ["Cigarette smoking was <u>banned</u> in the restaurant."]
}, {
"word": "BANANA n.",
"definitions": { "english": "an elongated tropical fruit.", "turkish": "" },
"examples": ["Mary likes ripe <u>bananas</u>."]
}, {
"word": "BANK n., v.",
"definitions": { "english": "a place to keep something of value; to save; the margin of a river", "turkish": "" },
"examples": ["Mary has a lot of money in the <u>bank</u>. The fish came close to the <u>bank</u> of the river."]
}, {
"word": "BAR n., v.",
"definitions": {
"english": "an elongated structure; a place where alcohol is sold; to block passage",
"turkish": ""
},
"examples": ["The entrance to the street was <u>barred</u>. In the evening, we went to the <u>bar</u> for a beer."]
}, {
"word": "BARREL n.",
"definitions": { "english": "a large cylindrical container", "turkish": "" },
"examples": ["They collected rain water in a <u>barrel</u>."]
}, {
"word": "BARRIER n.",
"definitions": { "english": "an obstacle or obstruction", "turkish": "" },
"examples": ["A <u>barrier</u> prevented us from entering the street."]
}, {
"word": "BASE n., v., BASIC adj., BASICALLY adv.",
"definitions": { "english": "the bottom or foundation; fundamental", "turkish": "" },
"examples": ["The <u>base</u> of the tower is unstable. A barrel is <u>basically</u> a container."]
}, {
"word": "BASKET n.",
"definitions": { "english": "a container made of woven material", "turkish": "" },
"examples": ["The guests came with a <u>basket</u> of fruit."]
}, {
"word": "BATTLE n., v.",
"definitions": { "english": "an organized fight", "turkish": "" },
"examples": ["The doctors <u>battled</u> the epidemic."]
}, {
"word": "BE aux., v. (BE, WAS, BEEN)",
"definitions": { "english": "auxiliary verb with irregular conjugation.", "turkish": "" },
"examples": ["I <u>was</u>. I <u>am</u>. I will <u>be</u>. You <u>are</u>. He <u>is</u>. She <u>is</u>. We <u>are</u>. They <u>are</u>."]
}, {
"word": "BEAN n.",
"definitions": { "english": "the seed of a leguminous plant", "turkish": "" },
"examples": ["Don't spill the <u>beans</u>."]
}, {
"word": "BEAR n., v. (BEAR, BORE, BORN), BEARABLE adj.",
"definitions": { "english": "a large animal; to support", "turkish": "" },
"examples": ["He could hardly <u>bear</u> the weight of the baggage."]
}, {
"word": "BEAT n., v. (BEAT, BEAT, BEATEN)",
"definitions": { "english": "to strike; a regular rhythm", "turkish": "" },
"examples": ["The thieves <u>beat</u> him up. They danced to the <u>beat</u> of the music."]
}, {
"word": "BEAUTY n., BEAUTIFUL adj., BEAUTIFULLY adv.",
"definitions": { "english": "pleasing to the eye", "turkish": "" },
"examples": ["Several <u>beautiful</u> girls swam in the ocean."]
}, {
"word": "BECAUSE conj.",
"definitions": { "english": "for the reason that", "turkish": "" },
"examples": ["Mary did not go <u>because</u> she was sick."]
}, {
"word": "BECOME v. (BECOME, BECAME, BECOME)",
"definitions": { "english": "to come into existence", "turkish": "" },
"examples": ["Mary <u>became</u> a doctor last year."]
}, {
"word": "BED n.",
"definitions": { "english": "a piece of furniture on or in which to lie and sleep", "turkish": "" },
"examples": ["John was asleep in <u>bed</u>."]
}, {
"word": "BEEF n., v.",
"definitions": { "english": "the meat of a cow or bull; to add strength", "turkish": "" },
"examples": ["Mary ate <u>beef</u> stew for supper. They <u>beefed up</u> the supports of the bridge."]
}, {
"word": "BEEN v.",
"definitions": { "english": "past participle of the verb BE", "turkish": "" },
"examples": ["He had <u>been</u> at home since 5 PM."]
}, {
"word": "BEER n.",
"definitions": { "english": "an alcoholic drink made from fermented grain", "turkish": "" },
"examples": ["We had a <u>beer</u> with our supper."]
}, {
"word": "BEFORE adj., adv.",
"definitions": { "english": "at an earlier time", "turkish": "" },
"examples": ["You have to walk <u>before</u> you can run."]
}, {
"word": "BEGIN v. (BEGIN, BEGAN, BEGUN), BEGINNING n.",
"definitions": { "english": "to do the first part of an action; start", "turkish": "" },
"examples": ["We will <u>begin</u> in chapter one. Hurry, the class has already <u>begun</u>."]
}, {
"word": "BEHIND adj., adv.",
"definitions": { "english": "toward the back", "turkish": "" },
"examples": ["The pillow fell <u>behind</u> the sofa."]
}, {
"word": "BELIEF n., BELIEVE v.",
"definitions": { "english": "to hold an opinion", "turkish": "" },
"examples": ["Many people <u>believe</u> in the afterlife. That is a popular <u>belief</u>."]
}, {
"word": "BELL n.",
"definitions": {
"english": "a hollow metallic device that gives off a reverberating sound when struck",
"turkish": ""
},
"examples": ["The church <u>bell</u> rang early in the morning."]
}, {
"word": "BELONG v.",
"definitions": { "english": "to be suitable, appropriate", "turkish": "" },
"examples": ["The red shoes belong to Mary."]
}, {
"word": "BELOW adv.",
"definitions": { "english": "at a lower place", "turkish": "" },
"examples": ["The temperature was <u>below</u> freezing."]
}, {
"word": "BEND n., v. (BEND, BENT, BENT)",
"definitions": { "english": "to turn from a straight course", "turkish": "" },
"examples": ["The car went around the <u>bend</u>. John <u>bent</u> a piece of wire."]
}, {
"word": "BEST adj.",
"definitions": { "english": "superlative of GOOD; excelling all others", "turkish": "" },
"examples": ["John knows where to get the <u>best</u> ice cream."]
}, {
"word": "BETRAY v., BETRAYAL n.",
"definitions": { "english": "to deliver to an enemy; deceive", "turkish": "" },
"examples": ["Benedict Arnold <u>betrayed</u> his country."]
}, {
"word": "BETTER adj.",
"definitions": { "english": "comparative of GOOD", "turkish": "" },
"examples": ["John speaks English <u>better</u> than German."]
}, {
"word": "BETWEEN prep.",
"definitions": { "english": "in space separating two things", "turkish": "" },
"examples": ["You have to choose <u>between</u> vanilla and chocolate."]
}, {
"word": "BIG adj., BIGGER, BIGGEST",
"definitions": { "english": "of large size", "turkish": "" },
"examples": ["The elephant was very <u>big</u>. It was <u>bigger</u> than the lion."]
}, {
"word": "BILL n., v.",
"definitions": { "english": "an itemized list of the cost; the jaws of a bird", "turkish": "" },
"examples": ["John received the <u>bill</u> from the doctor."]
}, {
"word": "BILLION n.",
"definitions": { "english": "one thousand million; 1,000,000,000", "turkish": "" },
"examples": ["The government spent more than one <u>billion</u> dollars."]
}, {
"word": "BIOLOGY n., BIOLOGICAL adj., BIOLOGICALLY adv., BIOLOGIST n.",
"definitions": { "english": "The science of plant and animal life.", "turkish": "" },
"examples": ["<u>Biology</u> is a fascinating subject."]
}, {
"word": "BIRD n.",
"definitions": { "english": "a warm-blooded vertebrate", "turkish": "" },
"examples": ["A <u>bird</u> in the hand is word more than two in the bush."]
}, {
"word": "BIRTH n.",
"definitions": { "english": "the act of bringing forth new life. (See BEAR)", "turkish": "" },
"examples": ["A birthday celebrates the anniversary of a <u>birth</u>."]
}, {
"word": "BITE n., v.(BITE, BIT, BITTEN)",
"definitions": { "english": "to seize with the teeth or jaws", "turkish": "" },
"examples": ["He took a big <u>bite</u> of the fruit. He <u>bit</u> the fruit."]
}, {
"word": "BITTER adj.",
"definitions": { "english": "an unsavory or disagreeable taste.", "turkish": "" },
"examples": ["The cheese had a <u>bitter</u> taste."]
}, {
"word": "BLACK adj., BLACKNESS n.",
"definitions": { "english": "very dark in color", "turkish": "" },
"examples": ["I rode a <u>black</u> horse last Sunday."]
}, {
"word": "BLADE n.",
"definitions": { "english": "the cutting part of a knife; the leaf of a grass", "turkish": "" },
"examples": ["The knife <u>blade</u> was very sharp."]
}, {
"word": "BLAME v.",
"definitions": { "english": "to hold responsible", "turkish": "" },
"examples": ["They blamed the woman for the mistake."]
}, {
"word": "BLANKET n., v.",
"definitions": { "english": "heavy cover", "turkish": "" },
"examples": ["I slept under a warm <u>blanket</u>."]
}, {
"word": "BLESS v., BLESSING n.",
"definitions": { "english": "to consecrate by religious rite", "turkish": "" },
"examples": ["Mary received a <u>blessing</u> from the pope."]
}, {
"word": "BLEED v. (BLEED, BLED, BLED)",
"definitions": { "english": "to lose blood", "turkish": "" },
"examples": ["John <u>bled</u> for five minutes after he cut his finger."]
}, {
"word": "BLIND n., v., BLINDLY adv., BLINDNESS n.",
"definitions": { "english": "without eyes or vision", "turkish": "" },
"examples": ["The <u>blind</u> man walked with a cane. Mary was <u>blinded</u> by the bright sunlight."]
}, {
"word": "BLOCK n., v.",
"definitions": { "english": "a piece of material used for building. To obstruct passage.", "turkish": "" },
"examples": ["The small house was made of concrete <u>blocks</u>. A donkey <u>blocked</u> the road."]
}, {
"word": "BLOOD n., BLOODY adj.",
"definitions": {
"english": "the fluid that circulates in the heart, arteries, capillaries, and veins",
"turkish": ""
},
"examples": ["John got a <u>blood</u> transfusion when he was sick."]
}, {
"word": "BLOW v. (BLOW, BLEW, BLOWN)- a current of air; a forcible impact",
"definitions": { "english": "", "turkish": "" },
"examples": ["The children were blowing soap <u>bubbles</u>."]
}, {
"word": "BLUE adj.",
"definitions": { "english": "the color blue; a sad mood", "turkish": "" },
"examples": ["There were no clouds and the sky was blue."]
}, {
"word": "BOARD n., v.",
"definitions": {
"english": "a flat piece of material; to climb into a ship; a table set with a meal",
"turkish": ""
},
"examples": ["The floor was made of pine <u>boards</u>. John paid $30 dollars per day for room and <u>board</u>."]
}, {
"word": "BOAST n., v.",
"definitions": { "english": "to speak with excessive pride", "turkish": "" },
"examples": ["The man <u>boasted</u> that he was the best carpenter."]
}, {
"word": "BOAT n.",
"definitions": { "english": "a ship for travel on water", "turkish": "" },
"examples": ["We traveled from Mexico to Spain by <u>boat</u>."]
}, {
"word": "BODY n.",
"definitions": { "english": "the main part of an object", "turkish": "" },
"examples": ["You can have a good body if you exercise and have a good diet."]
}, {
"word": "BOIL n., v.",
"definitions": { "english": "to generate bubbles of vapor when heated", "turkish": "" },
"examples": ["We <u>boiled</u> some water to make coffee."]
}, {
"word": "BOLD adj.",
"definitions": { "english": "standing out prominently", "turkish": "" },
"examples": ["The sign was printed in <b style=\"font-size:115%;\">bold</b> letters."]
}, {
"word": "BOMB n., v.",
"definitions": { "english": "an explosive device; to attack with explosives", "turkish": "" },
"examples": ["A <u>bomb</u> explosion destroyed the building."]
}, {
"word": "BOND adj., n., v.",
"definitions": { "english": "to bind together; a monetary guarantee", "turkish": "" },
"examples": ["The pieces of wood were <u>bonded</u> with glue."]
}, {
"word": "BONE n.",
"definitions": { "english": "one of the hard parts of the skeleton", "turkish": "" },
"examples": ["Mary fell and broke a <u>bone</u> in her arm."]
}, {
"word": "BOOK n., v.",
"definitions": { "english": "a long printed literary composition; to make an appointment", "turkish": "" },
"examples": ["I read the <u>book</u> from cover to cover. John <u>booked</u> a flight to Europe."]
}, {
"word": "BORDER n., v.",
"definitions": { "english": "an outer part or edge; to create an edge", "turkish": "" },
"examples": ["We need a passport to cross the <u>border</u>."]
}, {
"word": "BORN adj., v.",
"definitions": { "english": "past participle of BEAR", "turkish": "" },
"examples": ["Mary was <u>born</u> in Mexico."]
}, {
"word": "BORROW v.",
"definitions": { "english": "to receive something with the intention of returning it.", "turkish": "" },
"examples": ["John <u>borrowed</u> fifty dollars from Mary."]
}, {
"word": "BOTH pron.",
"definitions": { "english": "the one as well as the other", "turkish": "" },
"examples": ["John and Mary are <u>both</u> single."]
}, {
"word": "BOTTLE n., v.",
"definitions": { "english": "a rigid container with a narrow neck; to preserve in a bottle", "turkish": "" },
"examples": ["We ordered a <u>bottle</u> of wine with supper."]
}, {
"word": "BOTTOM n., v.",
"definitions": { "english": "the underside of something; to go to lowest point.", "turkish": "" },
"examples": ["The formula was at the bottom of the page."]
}, {
"word": "BOW n., v.",
"definitions": { "english": "to bend into a simple curve", "turkish": "" },
"examples": ["American Indians hunted with <u>bows</u> and arrows."]
}, {
"word": "BOWL n.",
"definitions": { "english": "a container with a broad mouth", "turkish": "" },
"examples": ["The soup was served in white <u>bowls</u>."]
}, {
"word": "BOX n., v.",
"definitions": {
"english": "a rigid container with or without a cover; to put something in a box",
"turkish": ""
},
"examples": ["Mary got a <u>box</u> of chocolates."]
}, {
"word": "BOY n.",
"definitions": { "english": "a male child", "turkish": "" },
"examples": ["The <u>boy</u> had a blue shirt."]
}, {
"word": "BOYCOTT n., v.",
"definitions": { "english": "refusal to deal with", "turkish": "" },
"examples": ["People were boycotting the store."]
}, {
"word": "BRAIN n.",
"definitions": { "english": "the major organ of the nervous system", "turkish": "" },
"examples": ["Psychologists study the function of the brain."]
}, {
"word": "BRAKE n., v.",
"definitions": { "english": "to stop;", "turkish": "" },
"examples": ["He applied the <u>brake</u> to stop the car."]
}, {
"word": "BRANCH n., v.",
"definitions": { "english": "a separation from the main portion", "turkish": "" },
"examples": ["John cut the <u>branches</u> of the tree."]
}, {
"word": "BRASS n.",
"definitions": { "english": "a metal made from copper and zinc", "turkish": "" },
"examples": ["There was a <u>brass</u> decoration on the wall."]
}, {
"word": "BRAVE adj.",
"definitions": { "english": "having courage", "turkish": "" },
"examples": ["The <u>brave</u> fireman saved the boy from the fire."]
}, {
"word": "BREAD n., v.",
"definitions": { "english": "a food made from baked fermented grain", "turkish": "" },
"examples": ["We had a bread and butter with our dinner."]
}, {
"word": "BREAK n., v. (BREAK, BROKE, BROKEN)",
"definitions": { "english": "to fragment into small pieces; a discontinuity", "turkish": "" },
"examples": ["The cat <u>broke</u> the cup."]
}, {
"word": "BREAKFAST n.",
"definitions": { "english": "the first meal of the day; literally, to break the fast", "turkish": "" },
"examples": ["John had cereal and milk for <u>breakfast</u>."]
}, {
"word": "BREATH n., BREATHE v.",
"definitions": { "english": "to inhale air into the lungs", "turkish": "" },
"examples": ["He had difficulty <u>breathing</u> because of the smoke. He was out of <u>breath</u>."]
}, {
"word": "BREED v. (BREED, BRED, BRED)",
"definitions": { "english": "to produce offspring", "turkish": "" },
"examples": ["The farmer <u>breeds</u> chickens."]
}, {
"word": "BRICK n.",
"definitions": { "english": "a piece of material used for building smaller than a BLOCK", "turkish": "" },
"examples": ["The <u>brick</u> house was on top of the hill."]
}, {
"word": "BRIDGE n., v.",
"definitions": { "english": "a path over an obstacle", "turkish": "" },
"examples": ["The Brooklyn <u>bridge</u> is in New York."]
}, {
"word": "BRIEF adj., n.",
"definitions": { "english": "of short duration; a short written document", "turkish": "" },
"examples": ["We had a <u>brief</u> meeting in the afternoon."]
}, {
"word": "BRIGHT adj. BRIGHTLY adv.",
"definitions": { "english": "radiating or reflecting light; intelligent", "turkish": "" },
"examples": ["The flowers looked beautiful in the <u>bright</u> sunlight."]
}, {
"word": "BRING v. (BRING, BROUGHT, BROUGHT)",
"definitions": { "english": "to carry from another place", "turkish": "" },
"examples": ["John <u>brought</u> a bottle of wine. Mary will <u>bring</u> a cake."]
}, {
"word": "BROAD adj., BROADLY adv.",
"definitions": { "english": "wide", "turkish": "" },
"examples": ["Mary had a <u>broad</u> smile."]
}, {
"word": "BROADCAST n., v.",
"definitions": { "english": "to send in all directions", "turkish": "" },
"examples": ["The radio <u>broadcast</u> was in English."]
}, {
"word": "BROIL v.",
"definitions": { "english": "to cook by radiant heat", "turkish": "" },
"examples": ["Mrs. Smith <u>broiled</u> the chicken in the oven."]
}, {
"word": "BROTHER n., BROTHERLY adj.",
"definitions": { "english": "a male who has the same parents as another", "turkish": "" },
"examples": ["John's <u>brother</u> is a doctor."]
}, {
"word": "BROWN adj.",
"definitions": { "english": "the color brown", "turkish": "" },
"examples": ["John wore <u>brown</u> shoes to the party."]
}, {
"word": "BRUSH n., v.",
"definitions": { "english": "a device with bristles set into a handle; to touch lightly", "turkish": "" },
"examples": ["You have to <u>brush</u> your teeth every day."]
}, {
"word": "BUBBLE n., v.",
"definitions": { "english": "a small gas globule", "turkish": "" },
"examples": ["The soda started bubbling as soon as it was opened."]
}, {
"word": "BUDGET n., v.",
"definitions": { "english": "an allocation of funds for a specific purpose", "turkish": "" },
"examples": ["The company <u>budget</u> has enough money for a new computer."]
}, {
"word": "BUILD v. (BUILD, BUILT, BUILT), BUILDING n.",
"definitions": { "english": "to construct; develop systematically", "turkish": "" },
"examples": ["Mr. Smith wants to <u>build</u> a new house. His current house was <u>built</u> 30 years ago."]
}, {
"word": "BULL n.",
"definitions": { "english": "a mature male of various usually large animals; (female: COW)", "turkish": "" },
"examples": ["In Spain, bullfighters tease and then kill the <u>bulls</u>."]
}, {
"word": "BULLET n.",
"definitions": { "english": "ammunition for a small gun", "turkish": "" },
"examples": ["The pistol did not have <u>bullets</u>."]
}, {
"word": "BURN n., v. (BURN, BURNED, BURNT)",
"definitions": { "english": "to destroy by heat or fire", "turkish": "" },
"examples": ["The candle <u>burned</u> with a bright flame."]
}, {
"word": "BURST v. (BURST, BURST, BURST)",
"definitions": { "english": "to break open suddenly", "turkish": "" },
"examples": ["The balloon <u>burst</u> with a pop."]
}, {
"word": "BURY v.",
"definitions": { "english": "to hide or conceal by covering with something", "turkish": "" },
"examples": ["The lady died on Thursday and they <u>buried</u> her on Friday."]
}, {
"word": "BUS n., v.",
"definitions": { "english": "a large motor vehicle designed to carry passengers", "turkish": "" },
"examples": ["We rode by <u>bus</u> from Washington to New York."]
}, {
"word": "BUSINESS adj., n.",
"definitions": { "english": "an organization for commercial transactions", "turkish": "" },
"examples": ["John went on a <u>business</u> trip to Spain."]
}, {
"word": "BUSY adj.",
"definitions": { "english": "to be occupied by an activity", "turkish": "" },
"examples": ["Mary was very <u>busy</u> on Friday."]
}, {
"word": "BUT conj.",
"definitions": { "english": "an exclusion or exception", "turkish": "" },
"examples": ["She was busy, but she still had time to read the book."]
}, {
"word": "BUTTER n., v.",
"definitions": { "english": "the fat from milk; to spread with butter", "turkish": "" },
"examples": ["We had bread and <u>butter</u> with our breakfast."]
}, {
"word": "BUTTON n., v.",
"definitions": { "english": "a small disk used as a fastener for clothing; to fasten", "turkish": "" },
"examples": ["John forgot to <u>button</u> his shirt."]
}, {
"word": "BUY v. (BUY, BOUGHT, BOUGHT)",
"definitions": { "english": "to obtain in exchange for something", "turkish": "" },
"examples": ["I <u>bought</u> some bread this morning. I will <u>buy</u> milk tonight."]
}, {
"word": "BY prep.",
"definitions": { "english": "in proximity to; near", "turkish": "" },
"examples": ["The cat sat <u>by</u> my feet."]
}, {
"word": "CABBAGE n.",
"definitions": { "english": "a leafy vegetable", "turkish": "" },
"examples": ["The cabbage soup was delicious."]
}, {
"word": "CABINET n.",
"definitions": { "english": "a place used for storage; a group of administrators", "turkish": "" },
"examples": ["We stored the canned food in the kitchen <u>cabinet</u>."]
}, {
"word": "CAKE n.",
"definitions": { "english": "a sweet baked pastry", "turkish": "" },
"examples": ["John had some cake for dessert."]
}, {
"word": "CALENDAR n.",
"definitions": { "english": "a system for organizing the days of the year", "turkish": "" },
"examples": ["The modern calendar has 12 months."]
}, {
"word": "CALL n., v.",
"definitions": { "english": "to speak in a loud voice", "turkish": "" },
"examples": ["John called me this morning."]
}, {
"word": "CALM adj., n., v.",
"definitions": { "english": "quiet, peaceful", "turkish": "" },
"examples": ["The weather was calm after the storm."]
}, {
"word": "CAMERA n.",
"definitions": { "english": "a device for taking pictures", "turkish": "" },
"examples": ["I bought a new camera three months ago."]
}, {
"word": "CAMP n., v.",
"definitions": { "english": "a place in the country usually for recreation", "turkish": "" },
"examples": ["We went camping during the summer."]
}, {
"word": "CAMPAIGN n., v.",
"definitions": { "english": "a series of operations designed to achieve a result", "turkish": "" },
"examples": ["The election <u>campaign</u> brought many new voters."]
}, {
"word": "CAN v. (CAN, COULD, COULD)",
"definitions": { "english": "auxiliary verb; n., v. (CAN, CANNED, CANNED)", "turkish": "" },
"examples": ["We opened a <u>can</u> of sardines. You <u>can</u> open the <u>can</u>. She <u>could</u> not open it."]
}, {
"word": "CANCEL v., CANCELLATION n.",
"definitions": { "english": "to eliminate or remove", "turkish": "" },
"examples": ["They <u>cancelled</u> the game because of rain."]
}, {
"word": "CANCER n.",
"definitions": { "english": "a disease; sign of the zodiac", "turkish": "" },
"examples": ["His father died of lung <u>cancer</u> because he smoked."]
}, {
"word": "CANDIDATE n.",
"definitions": { "english": "a person suitable for a particular position", "turkish": "" },
"examples": ["Our <u>candidate</u> for president lost the election."]
}, {
"word": "CANDY",
"definitions": { "english": "", "turkish": "" },
"examples": ["They brought a box of <u>candy</u> to the party."]
}, {
"word": "CAPITAL n.",
"definitions": { "english": "the seat of power of a country or state", "turkish": "" },
"examples": ["Washington, D.C. is the <u>capital</u> of the United Sates."]
}, {
"word": "CAPTURE n., v.",
"definitions": { "english": "take hold of, bag; take prisoner", "turkish": "" },
"examples": ["We tried to <u>capture</u> the cat, but it ran away."]
}, {
"word": "CAR n.",
"definitions": { "english": "a vehicle for personal transportation", "turkish": "" },
"examples": ["John drives a black <u>car</u>."]
}, {