-
Notifications
You must be signed in to change notification settings - Fork 0
/
questions.json
4006 lines (4006 loc) · 108 KB
/
questions.json
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
[
{
"idx": 1,
"question": "Do you squeeze the toothpaste tube or roll it? What’s the advantage of your method?"
},
{
"idx": 2,
"question": "How many siblings do you have? What’s your birth order?"
},
{
"idx": 3,
"question": "What’s something you’ve won and how did you win it?"
},
{
"idx": 4,
"question": "What’s one of your nicknames? What do you prefer to be called?"
},
{
"idx": 5,
"question": "What’s something your parents used to say to you as a child that you promised yourself you’d never say—but now you catch yourself saying all the time?"
},
{
"idx": 6,
"question": "What’s something you intended to do today, but didn’t? Why not?"
},
{
"idx": 7,
"question": "Using only one word per person, what was your first impression of each person present with you now?"
},
{
"idx": 8,
"question": "What’s something that people do in traffic that really bothers you?"
},
{
"idx": 9,
"question": "Who is the closest friend you’ve ever had? Describe that relationship."
},
{
"idx": 10,
"question": "What books on your shelf are begging to be read?"
},
{
"idx": 11,
"question": "What room in your house best reflects your personality? Explain why."
},
{
"idx": 12,
"question": "How often do you doodle? What do your doodles usually look like?"
},
{
"idx": 13,
"question": "What do you do if you can’t sleep at night? Do you count sheep, toss and turn, or get up and try to do something productive?"
},
{
"idx": 14,
"question": "Which do you do more often: hum or whistle? Hum or whistle your answer."
},
{
"idx": 15,
"question": "What animal are you the most like? Why?"
},
{
"idx": 16,
"question": "How many days could you last in solitary confinement? How would you do it?"
},
{
"idx": 17,
"question": "Do you save old greeting cards and letters, or throw them all away? Why?"
},
{
"idx": 18,
"question": "On a scale of 1 to 10, how well do you sing?"
},
{
"idx": 19,
"question": "When you’re alone at home, do you wear shoes, socks, slippers, or go barefoot?"
},
{
"idx": 20,
"question": "What are the advantages and disadvantages of being your height?"
},
{
"idx": 21,
"question": "When was the last picnic you went on? Describe it."
},
{
"idx": 22,
"question": "How many discount or savings coupons do you clip in an average month? How many expire before you use them?"
},
{
"idx": 23,
"question": "Who’s the biggest “pack rat” you know?"
},
{
"idx": 24,
"question": "Whose autographs have you collected?"
},
{
"idx": 25,
"question": "What’s something you should throw away, but can’t? Explain."
},
{
"idx": 26,
"question": "What food items did you eat so far today?"
},
{
"idx": 27,
"question": "How often do you get a haircut? Describe your worst haircut."
},
{
"idx": 28,
"question": "How particular are you about the mainte-nance of your car?"
},
{
"idx": 29,
"question": "Who’s the most famous person you have ever met? What famous person would you most like to meet?"
},
{
"idx": 30,
"question": "What is your most unusual nighttime or morning ritual?"
},
{
"idx": 31,
"question": "How often do you read your horoscope? Do you believe there’s any truth to it?"
},
{
"idx": 32,
"question": "What kinds of movies do you most enjoy? Why?"
},
{
"idx": 33,
"question": "When was the last time you stubbed your toe so hard it brought tears to your eyes?"
},
{
"idx": 34,
"question": "How do you get rid of pesky phone calls from telemarketers?"
},
{
"idx": 35,
"question": "What are you a “natural” at doing?"
},
{
"idx": 36,
"question": "What’s the story behind a time when you got locked out?"
},
{
"idx": 37,
"question": "When’s the last time you had to give a speech? How did it go?"
},
{
"idx": 38,
"question": "How often do you get sick?"
},
{
"idx": 39,
"question": "What’s something valuable that you accidentally dropped and broke? Describe the situation."
},
{
"idx": 40,
"question": "What’s the first thing that comes to mind when you hear the word “fun”?"
},
{
"idx": 41,
"question": "At amusement parks, are you drawn more to the scariest roller coaster or the tamest merry-go-round? Why?"
},
{
"idx": 42,
"question": "When’s the last time you square-danced or line-danced? Rate your dancing ability on a scale of 1 to 10."
},
{
"idx": 43,
"question": "What are some of the wildest animals you’ve ever touched?"
},
{
"idx": 44,
"question": "How many hours do you spend on your computer each day? How much time do you spend “surfing the Web”?"
},
{
"idx": 45,
"question": "What makes you tick?"
},
{
"idx": 46,
"question": "What has been your best work of art? Describe it."
},
{
"idx": 47,
"question": "What is something mischievous you have done?"
},
{
"idx": 48,
"question": "When you leave a room, do you turn the lights off behind you or keep the lights on throughout your house most of the time? Explain your answer."
},
{
"idx": 49,
"question": "What’s the worst tasting thing you’ve ever eaten?"
},
{
"idx": 50,
"question": "When talking to someone while standing, are your arms usually at your sides, in your pockets, crossed in front of you, or gesturing descriptively? Demonstrate your answer."
},
{
"idx": 51,
"question": "What magazines do you subscribe to, and how many of those do you actually read or look through? Do you throw any of them away unread?"
},
{
"idx": 52,
"question": "Have you ever purchased anything from a telemarketer? If so, what was it? If not, why didn’t you?"
},
{
"idx": 53,
"question": "How frequently do you purchase lottery tickets or mail in sweepstakes registrations? Have you ever won anything from them?"
},
{
"idx": 54,
"question": "What’s the best New Year’s resolution you’ve ever made?"
},
{
"idx": 55,
"question": "When making an entrance into a social gathering, do you make your presence known so everyone notices you, slip in and look for someone you know, or sneak in as quietly as possible and find a safe spot to hide? Why?"
},
{
"idx": 56,
"question": "How many hours a week do you watch TV? Is that too little, too much, or just enough?"
},
{
"idx": 57,
"question": "What’s your favorite kind of candy?"
},
{
"idx": 58,
"question": "What’s your strongest sense?"
},
{
"idx": 59,
"question": "Are you most likely to finish your taxes as soon as you receive your W–2s or as close to April 15 as possible? How many times have you filed for an extension?"
},
{
"idx": 60,
"question": "What can your friends predict you will grumble about most?"
},
{
"idx": 61,
"question": "Do you prefer keeping the television channel remote in hand or giving it up? Why?"
},
{
"idx": 62,
"question": "How many times a day do you look at your-self in the mirror?"
},
{
"idx": 63,
"question": "When you travel, do you pack too much or too little? Explain."
},
{
"idx": 64,
"question": "What’s the wackiest belief you held as a child?"
},
{
"idx": 65,
"question": "What’s your favorite beverage?"
},
{
"idx": 66,
"question": "What are the best steps you’ve ever taken in an effort to improve your health?"
},
{
"idx": 67,
"question": "When relaxing on the floor, do you sit cross-legged, fold your legs to one side, sit with your legs straight out in front of you, or recline?"
},
{
"idx": 68,
"question": "Have you ever been an audience member for any television shows? Which ones? For which ones would you like to be an audience member?"
},
{
"idx": 69,
"question": "What’s one fashion trend you hope never comes back? Which ones have come back that you wish hadn’t?"
},
{
"idx": 70,
"question": "What magic tricks do you know? Perform one now."
},
{
"idx": 71,
"question": "What’s the best (or funniest) commercial you’ve ever seen?"
},
{
"idx": 72,
"question": "When was the last time you sat on a park bench for more than ten minutes? Describe the occasion."
},
{
"idx": 73,
"question": "What’s the most embarrassing thing you’ve seen someone else do?"
},
{
"idx": 74,
"question": "When something is funny, do you usually laugh raucously, hiss, snort, chuckle quietly to yourself, or smile and nudge the person next to you?"
},
{
"idx": 75,
"question": "How important is it to you that people remember, spell, and pronounce your name correctly? Why?"
},
{
"idx": 76,
"question": "What’s your favorite item to cook? Why?"
},
{
"idx": 77,
"question": "Do you usually send serious or humorous greeting cards? Why?"
},
{
"idx": 78,
"question": "Would you ever be interested in observing a surgery or do you turn away when the nurse brings out the needle? Why?"
},
{
"idx": 79,
"question": "Which movies have you watched over and over again?"
},
{
"idx": 80,
"question": "What do you admire most about your best friend?"
},
{
"idx": 81,
"question": "What was one vacation that lasted too long?"
},
{
"idx": 82,
"question": "To feel rested, how many hours of sleep do you need each night?"
},
{
"idx": 83,
"question": "What’s one guilty pleasure you enjoy too much to give up?"
},
{
"idx": 84,
"question": "Who performs more random acts of kindness than anyone else you know? Give the details."
},
{
"idx": 85,
"question": "What jingle comes to your mind? Hum or whistle it right now and see if others can correctly guess it!"
},
{
"idx": 86,
"question": "How many credit cards do you have? How often do you use them?"
},
{
"idx": 87,
"question": "How often do you leisurely eat a meal with friends?"
},
{
"idx": 88,
"question": "Who’s the jolliest person you know? Describe him or her."
},
{
"idx": 89,
"question": "What sound drives you crazy?"
},
{
"idx": 90,
"question": "What sound lulls you to sleep?"
},
{
"idx": 91,
"question": "Who’s the smartest person you know?"
},
{
"idx": 92,
"question": "What food do you eat for comfort?"
},
{
"idx": 93,
"question": "How often do you read the newspaper? Which sections do you turn to first?"
},
{
"idx": 94,
"question": "In one sentence, how would you describe your best friend?"
},
{
"idx": 95,
"question": "How long, on average, does it take you to fall asleep once you turn out the lights?"
},
{
"idx": 96,
"question": "What items do you currently have stored in the trunk of your car?"
},
{
"idx": 97,
"question": "Which animals scare you most? Why?"
},
{
"idx": 98,
"question": "What remedy for curing the common cold works best for you?"
},
{
"idx": 99,
"question": "Where are you ticklish? How much does it bother you to be tickled?"
},
{
"idx": 100,
"question": "Is the paper money in your possession right now organized sequentially according to denomination and with the bills right side up and facing the same way? Why or why not?"
},
{
"idx": 101,
"question": "Are you a hugger or a non-hugger? Why?"
},
{
"idx": 102,
"question": "What drives you crazy?"
},
{
"idx": 103,
"question": "Are you serious-minded or a jokester? Why?"
},
{
"idx": 104,
"question": "Are you more likely to avoid conflict or engage in it head-on? Why?"
},
{
"idx": 105,
"question": "What was the most recent compliment you received and savored?"
},
{
"idx": 106,
"question": "What’s something about yourself that you hope will change, but that probably never will?"
},
{
"idx": 107,
"question": "What’s something about yourself that you hope will never change?"
},
{
"idx": 108,
"question": "Are you a leader or a follower? How do you know?"
},
{
"idx": 109,
"question": "Are you more of a rule breaker or a rule keeper? Why?"
},
{
"idx": 110,
"question": "Would you describe yourself as an extrovert or an introvert? Give an example."
},
{
"idx": 111,
"question": "Would you describe yourself as more of a feeler or a thinker? Why?"
},
{
"idx": 112,
"question": "Are you usually late, early, or on time? Why?"
},
{
"idx": 113,
"question": "What goals have you recently set for yourself, and how are you doing on them so far?"
},
{
"idx": 114,
"question": "To what degree are you patriotic? How do you express your patriotism?"
},
{
"idx": 115,
"question": "Are you a creature of habit? Explain your answer."
},
{
"idx": 116,
"question": "In what situations are you most likely to pro-crastinate?"
},
{
"idx": 117,
"question": "What books have made a big impact on you?"
},
{
"idx": 118,
"question": "At what age do you hope to retire? Explain."
},
{
"idx": 119,
"question": "How much of a bargain hunter are you? Explain."
},
{
"idx": 120,
"question": "How much of a shopper are you? Where’s your favorite place to shop?"
},
{
"idx": 121,
"question": "Are you ever a high-maintenance person? Explain."
},
{
"idx": 122,
"question": "When was the last time you really pushed yourself to your physical limits? Explain."
},
{
"idx": 123,
"question": "What’s one of your hobbies?"
},
{
"idx": 124,
"question": "How much poetry have you written in your life?"
},
{
"idx": 125,
"question": "How do you typically react in a sudden, extreme, pressure-filled crisis?"
},
{
"idx": 126,
"question": "How do you go about illuminating “blind spots” in your life?"
},
{
"idx": 127,
"question": "How mechanically inclined do you consider yourself? Give an example."
},
{
"idx": 128,
"question": "How many different conversations can you adequately carry on at the same time?"
},
{
"idx": 129,
"question": "Are you a person who has a whole lot of acquaintances or just a few very close friends? Why?"
},
{
"idx": 130,
"question": "How comfortable are you with uncertainty? Explain."
},
{
"idx": 131,
"question": "On a scale of 1 to 10, how computer savvy are you? Explain."
},
{
"idx": 132,
"question": "Are you superstitious? Give an example."
},
{
"idx": 133,
"question": "What one word best describes your mother?"
},
{
"idx": 134,
"question": "What one word best describes your father?"
},
{
"idx": 135,
"question": "Do you have a collection? If so, what do you collect and why?"
},
{
"idx": 136,
"question": "When are you shy?"
},
{
"idx": 137,
"question": "Do you tend to save everything or toss everything? Why?"
},
{
"idx": 138,
"question": "What’s something you regret losing, selling, or giving away? Explain why."
},
{
"idx": 139,
"question": "How absentminded do you get? Give an example."
},
{
"idx": 140,
"question": "Which is better: your short-term or your long-term memory?"
},
{
"idx": 141,
"question": "What’s your idea of cute?"
},
{
"idx": 142,
"question": "Are you more inclined to “build your own empire” or “unleash the potential of others”? Explain."
},
{
"idx": 143,
"question": "What do you take for granted the most?"
},
{
"idx": 144,
"question": "How often do you interrupt others while they are talking? Give a reason for your answer."
},
{
"idx": 145,
"question": "When you have nothing pressing, where does your mind drift?"
},
{
"idx": 146,
"question": "What are your career goals?"
},
{
"idx": 147,
"question": "How competitive are you? Explain."
},
{
"idx": 148,
"question": "Are you a penny-pincher or a big spender? Why?"
},
{
"idx": 149,
"question": "Would you describe yourself as more laid back or more intense? Why?"
},
{
"idx": 150,
"question": "Are you a risk taker? Why or why not?"
},
{
"idx": 151,
"question": "Do you care more about pleasing people or speaking the truth? Explain your answer."
},
{
"idx": 152,
"question": "What inspires you to write?"
},
{
"idx": 153,
"question": "What big challenge have you taken on recently?"
},
{
"idx": 154,
"question": "When was the last time you wanted to scream? Explain."
},
{
"idx": 155,
"question": "Do you ever double or triple check things? If so, what?"
},
{
"idx": 156,
"question": "What bores you?"
},
{
"idx": 157,
"question": "What’s someone’s idiosyncrasy that really bothers you?"
},
{
"idx": 158,
"question": "What’s an idiosyncrasy or strange habit that you have?"
},
{
"idx": 159,
"question": "On a scale of 1 to 10, how controlling a person are you? Explain."
},
{
"idx": 160,
"question": "What bad habit do you wish you could break?"
},
{
"idx": 161,
"question": "On a scale of 1 to 10, how much of a perfectionist are you? Explain."
},
{
"idx": 162,
"question": "What’s a strange occurrence you’ve observed but, until now, have never (or rarely) shared with anyone?"
},
{
"idx": 163,
"question": "Where do you think you spend most of your money?"
},
{
"idx": 164,
"question": "What do you think about more than anything else?"
},
{
"idx": 165,
"question": "What books are you reading these days?"
},
{
"idx": 166,
"question": "What allergies do you have?"
},
{
"idx": 167,
"question": "How tolerant a person are you?"
},
{
"idx": 168,
"question": "To what extent do others’ beliefs influence you? Why?"
},
{
"idx": 169,
"question": "To what degree do you consider yourself athletic? At which sports do you excel?"
},
{
"idx": 170,
"question": "What causes you to get flustered?"
},
{
"idx": 171,
"question": "At what time of the day do you feel your best?"
},
{
"idx": 172,
"question": "What time do you usually wake up in the morning? Do you awaken naturally or need an alarm?"
},
{
"idx": 173,
"question": "What fear would you like to overcome?"
},
{
"idx": 174,
"question": "When do you most feel like a slave to time?"
},
{
"idx": 175,
"question": "What do you consider your best quality?"
},
{
"idx": 176,
"question": "Are you more task oriented or people oriented? Why?"
},
{
"idx": 177,
"question": "How do you feel about your age?"
},
{
"idx": 178,
"question": "Is it more important to you to look good or feel good? Explain."
},
{
"idx": 179,
"question": "What’s your idea of a good time?"
},
{
"idx": 180,
"question": "Are you a compulsive shopper or do you bring a list and carefully consider your purchases? Why?"
},
{
"idx": 181,
"question": "Who is the first person you tell when some-thing good happens to you?"
},
{
"idx": 182,
"question": "Whom do you run to when something bad happens in your life?"
},
{
"idx": 183,
"question": "In what circumstances do your motor skills short-circuit your verbal skills, and vice versa?"
},
{
"idx": 184,
"question": "In what situations are you most uncomfortable?"
},
{
"idx": 185,
"question": "When are you the most at ease with yourself?"
},
{
"idx": 186,
"question": "How good are you at multitasking? Give an example."
},
{
"idx": 187,
"question": "What do you do when you want to relax?"
},
{
"idx": 188,
"question": "Are you an early bird or a night owl? Why?"
},
{
"idx": 189,
"question": "What’s something that amazes you?"
},
{
"idx": 190,
"question": "Do you say “goodbye” quickly, slowly, or not at all? Why?"
},
{
"idx": 191,
"question": "What spells adventure for you?"
},
{
"idx": 192,
"question": "What tests the limits of your sense of balance?"
},
{
"idx": 193,
"question": "How much of a “people watcher” are you? In what places do you find yourself “people watching”?"
},
{
"idx": 194,
"question": "What do you like and dislike most about your current job?"
},
{
"idx": 195,
"question": "Whom do you call when you need a hand?"
},
{
"idx": 196,
"question": "What is your greatest physical challenge?"
},
{
"idx": 197,
"question": "Under what circumstances is it impossible for you to sleep?"
},
{
"idx": 198,
"question": "How do you best avoid conflict?"
},
{
"idx": 199,
"question": "How accident-prone are you? Describe a recent incident."
},
{
"idx": 200,
"question": "What’s the most important thing about you? PREFERENCES"
},
{
"idx": 201,
"question": "What’s your favorite ice-cream brand and flavor?"
},
{
"idx": 202,
"question": "What’s your all-time favorite meal, and how often do you enjoy it?"
},
{
"idx": 203,
"question": "What’s your all-time favorite movie, and how many times have you seen it?"
},
{
"idx": 204,
"question": "What’s your dream job?"
},
{
"idx": 205,
"question": "When you need to confront someone, would you rather communicate in person, on the phone, by e-mail, or by letter? Why?"
},
{
"idx": 206,
"question": "Which do you prefer: the hustle and bustle of city life or the quiet and serenity of country life? Why?"
},
{
"idx": 207,
"question": "Do you read or study best in silence or in a place with background noise? Why?"
},
{
"idx": 208,
"question": "Do you prefer exercising your mind or your body? How frequently do you do either?"
},
{
"idx": 209,
"question": "Do you prefer that people shoot straight with you or carefully temper their words? Why?"
},
{
"idx": 210,
"question": "Are you more of a dog person or a cat person? Why?"
},
{
"idx": 211,
"question": "What’s your preference: plane, train, boat, automobile, horse, or camel?"
},
{
"idx": 212,
"question": "How far in advance do you prefer to plan? Why?"
},
{
"idx": 213,
"question": "What’s your favorite board game? Do you usually win?"
},
{
"idx": 214,
"question": "Who’s your favorite talk show host?"
},
{
"idx": 215,
"question": "Are you a traveler or a homebody? Explain."
},
{
"idx": 216,
"question": "Do you enjoy a good debate or prefer keeping the peace?"
},
{
"idx": 217,
"question": "What was your favorite recess activity: Dodgeball, Kickball, Four Square, Hopscotch, Freeze Tag, or jump rope?"
},
{
"idx": 218,
"question": "What’s your favorite room in your home? Why?"
},
{
"idx": 219,
"question": "Where’s your perfect dream vacation spot?"
},
{
"idx": 220,
"question": "Where’s your favorite place to take out-of-town guests?"
},
{
"idx": 221,
"question": "Do you prefer to thoroughly deliberate options or decisively draw conclusions? Why?"
},
{
"idx": 222,
"question": "What is your favorite style of music, and how often do you listen to it?"
},
{
"idx": 223,
"question": "What’s your pick: hang glide, sky dive, bungee jump, hot air balloon, or kite?"
},
{
"idx": 224,
"question": "Which of the five senses do you treasure most? Why?"
},
{
"idx": 225,
"question": "When you find yourself in an argument, do you prefer to leave and resolve it later or stay and settle it right away? Why?"
},
{
"idx": 226,
"question": "What’s one thing you would rather pay someone to do than do yourself? Why?"
},
{
"idx": 227,
"question": "What’s one book you recommend and why?"
},
{
"idx": 228,
"question": "What annoys you most about women?"
},
{
"idx": 229,
"question": "What annoys you most about men?"
},
{
"idx": 230,
"question": "What do you like most about women?"
},
{
"idx": 231,
"question": "What do you like most about men?"
},
{
"idx": 232,
"question": "What’s your favorite genre of literature?"
},
{
"idx": 233,
"question": "What’s your preferred method of getting the news?"
},
{
"idx": 234,
"question": "What’s your favorite color? Why?"
},
{
"idx": 235,
"question": "What’s your favorite question to ask? What’s your favorite question to answer?"
},
{
"idx": 236,
"question": "What’s your favorite expression?"
},
{
"idx": 237,
"question": "What’s your all-time favorite video game?"
},
{
"idx": 238,
"question": "What real person, dead or alive, do you wish you could be more like? Why?"
},
{
"idx": 239,
"question": "What’s your all-time favorite band, and what would you give to meet them?"
},
{
"idx": 240,
"question": "What’s your least favorite thing to do? Why?"
},
{
"idx": 241,
"question": "What’s your favorite subject to discuss? Why?"
},
{
"idx": 242,
"question": "When you fly, do you prefer to arrive at the airport extra early or get there just in the nick of time? Why?"
},
{
"idx": 243,
"question": "Whom do you most admire? Why?"
},
{
"idx": 244,
"question": "What bothers you most about perfectionists?"
},
{
"idx": 245,
"question": "How do you prefer to give constructive criticism? Do you typically wait for someone to ask for it or not? Why?"
},
{
"idx": 246,
"question": "What are your three favorite television shows? How frequently do you watch them?"
},
{
"idx": 247,
"question": "Of all the tools and gadgets you own, which one do you most enjoy using?"
},
{
"idx": 248,
"question": "What is one of your favorite souvenirs brought back from your travels? Where do you keep it?"
},
{
"idx": 249,
"question": "What’s your choice: baseball, football, Frisbee, Hacky Sack, or boomerang?"
},
{
"idx": 250,
"question": "What are the best and worst sounds in the world?"