-
Notifications
You must be signed in to change notification settings - Fork 115
/
ultra_eval.json
1542 lines (1542 loc) · 51.9 KB
/
ultra_eval.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
[
{
"class": " Vicuna ",
"data": "Compose an engaging travel blog post about a recent trip to Hawaii, highlighting cultural experiences and must-see attractions."
},
{
"class": " Vicuna ",
"data": "Can you help me write a formal email to a potential business partner proposing a joint venture?"
},
{
"class": " Vicuna ",
"data": "Can you help me write a resignation letter to my current employer, while leaving on good terms and expressing gratitude for the opportunities provided?"
},
{
"class": " Vicuna ",
"data": "Use an appropriate format to structure a formal letter of recommendation for a student applying to a prestigious graduate program in computer science."
},
{
"class": " Vicuna ",
"data": "Write a compelling product launch announcement email to inform our customers of our new software solution."
},
{
"class": " Vicuna ",
"data": "Draft an apology email to a customer who experienced a delay in their order, and provide reassurance that the issue has been resolved."
},
{
"class": " Vicuna ",
"data": "Write a script for a YouTube video exploring the history and cultural significance of jazz."
},
{
"class": " Vicuna ",
"data": "Write a captivating movie review for a recently released science fiction film, discussing its plot, characters, and special effects."
},
{
"class": " Vicuna ",
"data": "Structure a podcast script for an episode discussing the influence of streaming platforms on the music industry."
},
{
"class": " Vicuna ",
"data": "Write a symphony concert review, discussing the orchestra's performance and overall audience experience."
},
{
"class": " Vicuna ",
"data": "How would you introduce yourself as a medieval knight at a royal banquet?"
},
{
"class": " Vicuna ",
"data": "As a pirate captain, what would you say to your crew to motivate them to search for hidden treasure?"
},
{
"class": " Vicuna ",
"data": "If you were a Shakespearean character, how would you declare your love for someone in a soliloquy?"
},
{
"class": " Vicuna ",
"data": "As a superhero, how would you explain your origin story to a curious child?"
},
{
"class": " Vicuna ",
"data": "Imagine you are a time traveler from the year 3000. What technological advancements would you tell people about?"
},
{
"class": " Vicuna ",
"data": "As a sports commentator, describe the winning play in the final seconds of a championship game."
},
{
"class": " Vicuna ",
"data": "Pretend to be a world-famous chef. How would you describe your signature dish to a panel of judges?"
},
{
"class": " Vicuna ",
"data": "You are a mountain climber reaching the summit of Mount Everest. Describe your emotions and the view from the top."
},
{
"class": " Vicuna ",
"data": "As a space colonist on Mars, describe your daily life and the challenges you face living on another planet."
},
{
"class": " Vicuna ",
"data": "Pretend to be a character in a post-apocalyptic world. Describe how you survive and the allies you encounter."
},
{
"class": " Vicuna ",
"data": "How can you determine if a restaurant is popular among locals or mainly attracts tourists, and why might this information be useful?"
},
{
"class": " Vicuna ",
"data": "What are some subtle clues that suggest someone is pretending to understand a topic or conversation when they are actually confused or uninformed?"
},
{
"class": " Vicuna ",
"data": "Why might someone choose to use a paper map or ask for directions instead of relying on a GPS device or smartphone app?"
},
{
"class": " Vicuna ",
"data": "How can you determine if a person is genuinely interested in a conversation or simply being polite?"
},
{
"class": " Vicuna ",
"data": "Why might someone prefer to shop at a small, locally-owned business instead of a large chain store, even if the prices are higher?"
},
{
"class": " Vicuna ",
"data": "How can you assess the credibility of a source of information, such as a news article or blog post, without relying solely on the reputation of the author or publisher?"
},
{
"class": " Vicuna ",
"data": "Why do some people enjoy the sensation of being scared, such as by watching horror movies or going on roller coasters, while others avoid these experiences?"
},
{
"class": " Vicuna ",
"data": "How can observing the behavior of other people in a social situation provide clues about cultural norms and expectations?"
},
{
"class": " Vicuna ",
"data": "Do we have a moral obligation to explore space, or should we focus on solving Earth's problems first?"
},
{
"class": " Vicuna ",
"data": "In a world where automation is becoming increasingly prevalent, is it more important to prioritize job creation or technological progress?"
},
{
"class": " Vicuna ",
"data": "How many times does the average human blink in a lifetime? Try to explain your answer. Your explanation should take the reader through your reasoning step-by-step."
},
{
"class": " Vicuna ",
"data": "How many atoms are in a grain of salt? Try to explain your answer. Your explanation should take the reader through your reasoning step-by-step."
},
{
"class": " Vicuna ",
"data": "How many lightning strikes occur on Earth each day? Try to explain your answer. Your explanation should take the reader through your reasoning step-by-step."
},
{
"class": " Vicuna ",
"data": "How many balloons would it take to lift a house like in the movie \"Up\"? Try to explain your answer. Your explanation should take the reader through your reasoning step-by-step."
},
{
"class": " Vicuna ",
"data": "How many text messages are sent globally in a minute? Try to explain your answer. Your explanation should take the reader through your reasoning step-by-step."
},
{
"class": " Vicuna ",
"data": "How many words are spoken daily on Earth? Try to explain your answer. Your explanation should take the reader through your reasoning step-by-step."
},
{
"class": " Vicuna ",
"data": "How many snowflakes fall during a typical winter? Try to explain your answer. Your explanation should take the reader through your reasoning step-by-step."
},
{
"class": " Vicuna ",
"data": "How many pages are in all the books ever written? Try to explain your answer. Your explanation should take the reader through your reasoning step-by-step."
},
{
"class": " Vicuna ",
"data": "How many times has the Earth orbited the Sun since the beginning of life? Try to explain your answer. Your explanation should take the reader through your reasoning step-by-step."
},
{
"class": " Vicuna ",
"data": "How many songs have been recorded throughout history? Try to explain your answer. Your explanation should take the reader through your reasoning step-by-step."
},
{
"class": " Vicuna ",
"data": "What if the Internet had been invented during the Renaissance period?"
},
{
"class": " Vicuna ",
"data": "What if the Aztecs had successfully repelled the Spanish conquistadors?"
},
{
"class": " Vicuna ",
"data": "What if the Black Death had not occurred in the 14th century?"
},
{
"class": " Vicuna ",
"data": "What if Isaac Newton had focused on biology instead of physics?"
},
{
"class": " Vicuna ",
"data": "What if the Beatles had never formed as a band?"
},
{
"class": " Vicuna ",
"data": "What if Alan Turing had not cracked the Enigma code during World War II?"
},
{
"class": " Vicuna ",
"data": "What if the Suez Canal had never been constructed?"
},
{
"class": " Vicuna ",
"data": "What if the Maya civilization had never mysteriously collapsed?"
},
{
"class": " Vicuna ",
"data": "What if Christopher Columbus had not discovered the Americas?"
},
{
"class": " Vicuna ",
"data": "What if Vincent van Gogh had been a successful artist during his lifetime?"
},
{
"class": " Vicuna ",
"data": "Develop a C++ program that reads a text file line by line and counts the number of occurrences of a specific word in the file."
},
{
"class": " Vicuna ",
"data": "Implement a Python function to find the longest common subsequence of two input strings using dynamic programming."
},
{
"class": " Vicuna ",
"data": "Implement a regular expression in Python to validate an email address."
},
{
"class": " Vicuna ",
"data": "Write a program to find the nth Fibonacci number using dynamic programming."
},
{
"class": " Vicuna ",
"data": "Implement a binary search algorithm to find a specific element in a sorted array."
},
{
"class": " Vicuna ",
"data": "Implement a queue data structure using two stacks in Python."
},
{
"class": " Vicuna ",
"data": "Implement a program to find the common elements in two arrays without using any extra data structures."
},
{
"class": " Vicuna ",
"data": "Given that f(x) = 5x^3 - 2x + 3, find the value of f(2)."
},
{
"class": " Vicuna ",
"data": "Solve for x in the equation 3x + 10 = 5(x - 2)."
},
{
"class": " Vicuna ",
"data": "If the endpoints of a line segment are (2, -2) and (10, 4), what is the length of the segment?"
},
{
"class": " Vicuna ",
"data": "How can I improve my time management skills?"
},
{
"class": " Vicuna ",
"data": "What are the most effective ways to deal with stress?"
},
{
"class": " Vicuna ",
"data": "What are the main differences between Python and JavaScript programming languages?"
},
{
"class": " Vicuna ",
"data": "How can I increase my productivity while working from home?"
},
{
"class": " Vicuna ",
"data": "Can you explain the basics of quantum computing?"
},
{
"class": " Vicuna ",
"data": "What are the differences between plant-based and animal-based protein sources?"
},
{
"class": " Vicuna ",
"data": "How can I develop my critical thinking skills?"
},
{
"class": " Vicuna ",
"data": "What are the major challenges faced by the education sector today?"
},
{
"class": " Vicuna ",
"data": "What are the primary factors that influence consumer behavior?"
},
{
"class": " Vicuna ",
"data": "What are the most effective strategies for conflict resolution in the workplace?"
},
{
"class": " Vicuna ",
"data": "What are some potential implications of using a single-use plastic bottle versus a reusable bottle on both the environment and human health?"
},
{
"class": " Vicuna ",
"data": "What factors would you consider when designing an inclusive and accessible public transportation system?"
},
{
"class": " Vicuna ",
"data": "How can governments utilize fiscal and monetary policies to combat economic recessions?"
},
{
"class": " Vicuna ",
"data": "How do language and cultural barriers affect the way people communicate and form relationships in multicultural societies?"
},
{
"class": " Vicuna ",
"data": "Describe a scenario where artificial intelligence could be used to improve the quality and efficiency of healthcare delivery."
},
{
"class": " Vicuna ",
"data": "Explain the process of gene editing using CRISPR-Cas9 technology, and discuss its potential applications and ethical implications."
},
{
"class": " Vicuna ",
"data": "How do vaccinations work to protect individuals and communities from infectious diseases, and what is herd immunity?"
},
{
"class": " Vicuna ",
"data": "How do social media platforms influence the way people consume and share news, and what are the potential implications for the spread of misinformation?"
},
{
"class": " Vicuna ",
"data": "How do cultural, social, and economic factors influence people's food choices, and how can this knowledge be used to promote healthier diets?"
},
{
"class": " Vicuna ",
"data": "Explain the process of natural selection and how it contributes to the evolution and adaptation of species."
},
{
"class": " Commonsense-Easy ",
"data": "What is the primary source of energy for our planet?"
},
{
"class": " Commonsense-Easy ",
"data": "What do humans breathe in?"
},
{
"class": " Commonsense-Easy ",
"data": "Is the sun a planet or a star?"
},
{
"class": " Commonsense-Easy ",
"data": "What do plants need to grow?"
},
{
"class": " Commonsense-Easy ",
"data": "What is the normal state of water at room temperature?"
},
{
"class": " Commonsense-Easy ",
"data": "What do you normally do when you are hungry?"
},
{
"class": " Commonsense-Easy ",
"data": "How many days are there in a week?"
},
{
"class": " Commonsense-Easy ",
"data": "What is the color of the sky on a clear day?"
},
{
"class": " Commonsense-Easy ",
"data": "Who wrote the novel \"To Kill a Mockingbird\"?"
},
{
"class": " Commonsense-Easy ",
"data": "Who is known as the Father of Computers?"
},
{
"class": " Commonsense-Easy ",
"data": "What does a thermometer measure?"
},
{
"class": " Commonsense-Easy ",
"data": "Which animal is known as man's best friend?"
},
{
"class": " Commonsense-Easy ",
"data": "What color do you get when you mix blue and yellow?"
},
{
"class": " Commonsense-Easy ",
"data": "What is the capital of the United States?"
},
{
"class": " Commonsense-Easy ",
"data": "What type of animals are dolphins?"
},
{
"class": " Commonsense-Easy ",
"data": "Who is the author of the Harry Potter series?"
},
{
"class": " Commonsense-Easy ",
"data": "Who painted the Mona Lisa?"
},
{
"class": " Commonsense-Easy ",
"data": "How many zeros are there in one thousand?"
},
{
"class": " Commonsense-Easy ",
"data": "Which planet is known as the Red Planet?"
},
{
"class": " Commonsense-Easy ",
"data": "What is the most common gas in Earth's atmosphere?"
},
{
"class": " Commonsense-Easy ",
"data": "How many hours are there in a day?"
},
{
"class": " Commonsense-Easy ",
"data": "Who was the first person to walk on the moon?"
},
{
"class": " Commonsense-Easy ",
"data": "What do bees produce?"
},
{
"class": " Commonsense-Easy ",
"data": "Where does a bird typically live?"
},
{
"class": " Commonsense-Easy ",
"data": "What musical instrument has 88 keys?"
},
{
"class": " Commonsense-Easy ",
"data": "What is the largest ocean on Earth?"
},
{
"class": " Commonsense-Easy ",
"data": "Which meal is usually eaten in the morning?"
},
{
"class": " Commonsense-Easy ",
"data": "What is the primary language spoken in Brazil?"
},
{
"class": " Commonsense-Easy ",
"data": "What do fish use to breathe underwater?"
},
{
"class": " Commonsense-Easy ",
"data": "What is the boiling point of water at sea level in Celsius?"
},
{
"class": " Commonsense-Moderate ",
"data": "What is the phenomenon that causes the change in pitch heard when a vehicle sounding a horn approaches and recedes from an observer?"
},
{
"class": " Commonsense-Moderate ",
"data": "Can you explain the difference between a meteor and a meteorite?"
},
{
"class": " Commonsense-Moderate ",
"data": "What is the primary function of a capacitor in an electrical circuit?"
},
{
"class": " Commonsense-Moderate ",
"data": "Why is it risky to look directly at a solar eclipse?"
},
{
"class": " Commonsense-Moderate ",
"data": "How does photosynthesis benefit animals?"
},
{
"class": " Commonsense-Moderate ",
"data": "Why is the preservation of the Amazon rainforest important for the global climate?"
},
{
"class": " Commonsense-Moderate ",
"data": "What is the primary difference between a democracy and a dictatorship?"
},
{
"class": " Commonsense-Moderate ",
"data": "What is the function of red blood cells in the human body?"
},
{
"class": " Commonsense-Moderate ",
"data": "How does a rainbow form?"
},
{
"class": " Commonsense-Moderate ",
"data": "Why does ice float on water?"
},
{
"class": " Commonsense-Moderate ",
"data": "What is the significance of the Turing Test?"
},
{
"class": " Commonsense-Moderate ",
"data": "What is the Pythagorean Theorem, and what is its significance?"
},
{
"class": " Commonsense-Moderate ",
"data": "How does the greenhouse effect contribute to global warming?"
},
{
"class": " Commonsense-Moderate ",
"data": "What is the role of the mitochondria in a cell?"
},
{
"class": " Commonsense-Moderate ",
"data": "What is the primary function of the Internet Protocol (IP)?"
},
{
"class": " Commonsense-Moderate ",
"data": "Explain the difference between renewable and non-renewable resources."
},
{
"class": " Commonsense-Moderate ",
"data": "Why do we perceive the sky as blue during the daytime?"
},
{
"class": " Commonsense-Moderate ",
"data": "What is the difference between classical and quantum physics?"
},
{
"class": " Commonsense-Moderate ",
"data": "How do vaccines protect against diseases?"
},
{
"class": " Commonsense-Moderate ",
"data": "What is the Doppler effect and where is it commonly observed?"
},
{
"class": " Commonsense-Moderate ",
"data": "Why are coral reefs important to marine ecosystems?"
},
{
"class": " Commonsense-Moderate ",
"data": "What is the difference between RAM and ROM in a computer?"
},
{
"class": " Commonsense-Moderate ",
"data": "How does a 4-stroke internal combustion engine work?"
},
{
"class": " Commonsense-Moderate ",
"data": "Why is aerobic exercise important for heart health?"
},
{
"class": " Commonsense-Moderate ",
"data": "How does the tilt of the Earth's axis affect seasons?"
},
{
"class": " Commonsense-Moderate ",
"data": "What is the principle behind the operation of a microwave oven?"
},
{
"class": " Commonsense-Moderate ",
"data": "How does a prism disperse white light into its component colors?"
},
{
"class": " Commonsense-Moderate ",
"data": "What are the primary differences between DNA and RNA?"
},
{
"class": " Commonsense-Moderate ",
"data": "How does the circulatory system and respiratory system work together in the human body?"
},
{
"class": " Commonsense-Moderate ",
"data": "What is the basic principle of operation of a solar panel?"
},
{
"class": " World Knowledge-Easy ",
"data": "What is the capital of Australia?"
},
{
"class": " World Knowledge-Easy ",
"data": "Who is the author of \"Pride and Prejudice\"?"
},
{
"class": " World Knowledge-Easy ",
"data": "In what year did the first man land on the moon?"
},
{
"class": " World Knowledge-Easy ",
"data": "What is the chemical symbol for Gold?"
},
{
"class": " World Knowledge-Easy ",
"data": "Who painted the \"Mona Lisa\"?"
},
{
"class": " World Knowledge-Easy ",
"data": "Who developed the theory of relativity?"
},
{
"class": " World Knowledge-Easy ",
"data": "What's the highest mountain in the world?"
},
{
"class": " World Knowledge-Easy ",
"data": "What is the largest ocean on Earth?"
},
{
"class": " World Knowledge-Easy ",
"data": "What is the process of photosynthesis?"
},
{
"class": " World Knowledge-Easy ",
"data": "In what year was the United Nations founded?"
},
{
"class": " World Knowledge-Easy ",
"data": "What is the square root of 81?"
},
{
"class": " World Knowledge-Easy ",
"data": "Who won the Nobel Prize for Literature in 2020?"
},
{
"class": " World Knowledge-Easy ",
"data": "How many days are there in a leap year?"
},
{
"class": " World Knowledge-Easy ",
"data": "Who invented the telephone?"
},
{
"class": " World Knowledge-Easy ",
"data": "What is the longest river in the world?"
},
{
"class": " World Knowledge-Easy ",
"data": "Who composed the Fifth Symphony?"
},
{
"class": " World Knowledge-Easy ",
"data": "Which planet is known as the \"Red Planet\"?"
},
{
"class": " World Knowledge-Easy ",
"data": "What does DNA stand for?"
},
{
"class": " World Knowledge-Easy ",
"data": "Who was the 16th President of the United States?"
},
{
"class": " World Knowledge-Easy ",
"data": "What is the capital of Canada?"
},
{
"class": " World Knowledge-Easy ",
"data": "What is the primary language spoken in Brazil?"
},
{
"class": " World Knowledge-Easy ",
"data": "Who wrote the play \"Romeo and Juliet\"?"
},
{
"class": " World Knowledge-Easy ",
"data": "What is the currency of Japan?"
},
{
"class": " World Knowledge-Easy ",
"data": "What is the freezing point of water in Fahrenheit?"
},
{
"class": " World Knowledge-Easy ",
"data": "Who discovered penicillin?"
},
{
"class": " World Knowledge-Easy ",
"data": "What are the three primary colors?"
},
{
"class": " World Knowledge-Easy ",
"data": "What is the largest desert in the world?"
},
{
"class": " World Knowledge-Easy ",
"data": "What is the closest star to Earth, other than the Sun?"
},
{
"class": " World Knowledge-Easy ",
"data": "Who is the current Queen of the United Kingdom? (as of 2021)"
},
{
"class": " World Knowledge-Easy ",
"data": "In computing, what does \"HTTP\" stand for?"
},
{
"class": " World Knowledge-Difficult ",
"data": "What's the second law of thermodynamics?"
},
{
"class": " World Knowledge-Difficult ",
"data": "What is the fundamental theorem of calculus?"
},
{
"class": " World Knowledge-Difficult ",
"data": "Who won the Nobel Prize in Physics in 2021?"
},
{
"class": " World Knowledge-Difficult ",
"data": "Who is known as the father of modern linguistics?"
},
{
"class": " World Knowledge-Difficult ",
"data": "What is the G\u00f6del's Incompleteness Theorem?"
},
{
"class": " World Knowledge-Difficult ",
"data": "Who proposed the concept of \"creative destruction\" in economics?"
},
{
"class": " World Knowledge-Difficult ",
"data": "What is the meaning of \"Schadenfreude\" in German?"
},
{
"class": " World Knowledge-Difficult ",
"data": "What are the four fundamental forces of nature?"
},
{
"class": " World Knowledge-Difficult ",
"data": "What is the term for the fear of the number 13?"
},
{
"class": " World Knowledge-Difficult ",
"data": "What is the primary function of the hypothalamus in the human brain?"
},
{
"class": " World Knowledge-Difficult ",
"data": "What is the Heisenberg Uncertainty Principle?"
},
{
"class": " World Knowledge-Difficult ",
"data": "What is the significance of the Magna Carta in British history?"
},
{
"class": " World Knowledge-Difficult ",
"data": "Who is the author of the philosophical work \"Thus Spoke Zarathustra\"?"
},
{
"class": " World Knowledge-Difficult ",
"data": "What is the chemical formula for photosynthesis?"
},
{
"class": " World Knowledge-Difficult ",
"data": "Who was the Prime Minister of the United Kingdom in 1940?"
},
{
"class": " World Knowledge-Difficult ",
"data": "Who is considered the father of modern taxonomy?"
},
{
"class": " World Knowledge-Difficult ",
"data": "What is the theory of \"Punctuated Equilibrium\" in evolutionary biology?"
},
{
"class": " World Knowledge-Difficult ",
"data": "Who is the author of the book \"One Hundred Years of Solitude\"?"
},
{
"class": " World Knowledge-Difficult ",
"data": "What is the Nash Equilibrium in game theory?"
},
{
"class": " World Knowledge-Difficult ",
"data": "What does the term \"quasar\" mean in astronomy?"
},
{
"class": " World Knowledge-Difficult ",
"data": "What is the Fibonacci sequence and who discovered it?"
},
{
"class": " World Knowledge-Difficult ",
"data": "Who wrote the opera \"The Magic Flute\"?"
},
{
"class": " World Knowledge-Difficult ",
"data": "Who is the author of \"The Interpretation of Dreams\"?"
},
{
"class": " World Knowledge-Difficult ",
"data": "What is the principle of \"Pareto Efficiency\" in economics?"
},
{
"class": " World Knowledge-Difficult ",
"data": "What is the setting of the novel \"Crime and Punishment\"?"
},
{
"class": " World Knowledge-Difficult ",
"data": "Who discovered the law of universal gravitation?"
},
{
"class": " World Knowledge-Difficult ",
"data": "What is the Dirac Equation in quantum mechanics?"
},
{
"class": " World Knowledge-Difficult ",
"data": "Who is the author of the poem \"The Raven\"?"
},
{
"class": " World Knowledge-Difficult ",
"data": "What is the Riemann Hypothesis in mathematics?"
},
{
"class": " World Knowledge-Difficult ",
"data": "What is the Turing Test in artificial intelligence?"
},
{
"class": " Professional Knowledge-Physics ",
"data": "What is the speed of light in a vacuum?"
},
{
"class": " Professional Knowledge-Physics ",
"data": "What is Newton's second law of motion?"
},
{
"class": " Professional Knowledge-Physics ",
"data": "Define the principle of superposition in wave theory."
},
{
"class": " Professional Knowledge-Physics ",
"data": "What is the difference between velocity and speed?"
},
{
"class": " Professional Knowledge-Physics ",
"data": "What is the unit of force in the SI system?"
},
{
"class": " Professional Knowledge-Physics ",
"data": "What is the law of conservation of energy?"
},
{
"class": " Professional Knowledge-Physics ",
"data": "What is the function of a resistor in an electrical circuit?"
},
{
"class": " Professional Knowledge-Physics ",
"data": "Explain Ohm's Law."
},
{
"class": " Professional Knowledge-Physics ",
"data": "Define wavelength and frequency in the context of light waves."
},
{
"class": " Professional Knowledge-Physics ",
"data": "What is the difference between a scalar and a vector?"
},
{
"class": " Professional Knowledge-Physics ",
"data": "What is the first law of thermodynamics?"
},
{
"class": " Professional Knowledge-Physics ",
"data": "What is the principle of conservation of momentum?"
},
{
"class": " Professional Knowledge-Physics ",
"data": "What is the difference between nuclear fission and nuclear fusion?"
},
{
"class": " Professional Knowledge-Physics ",
"data": "What are the three types of radioactive decay?"
},
{
"class": " Professional Knowledge-Physics ",
"data": "What is the Heisenberg Uncertainty Principle?"
},
{
"class": " Professional Knowledge-Physics ",
"data": "Explain the concept of wave-particle duality."
},
{
"class": " Professional Knowledge-Physics ",
"data": "What is the Fermi Paradox and what are some proposed solutions to it?"
},
{
"class": " Professional Knowledge-Physics ",
"data": "How does quantum entanglement work and what are its implications for information transfer?"
},
{
"class": " Professional Knowledge-Physics ",
"data": "How does the Casimir effect demonstrate the existence of quantum vacuum fluctuations?"
},
{
"class": " Professional Knowledge-Physics ",
"data": "Explain the concept of time dilation in special relativity."
},
{
"class": " Professional Knowledge-Physics ",
"data": "What are the main interpretations of quantum mechanics and how do they differ?"
},
{
"class": " Professional Knowledge-Physics ",
"data": "How do black holes evaporate according to Hawking radiation theory?"
},
{
"class": " Professional Knowledge-Physics ",
"data": "How does superconductivity work and what are its practical applications?"
},
{
"class": " Professional Knowledge-Physics ",
"data": "How does the Higgs field give particles their mass?"
},
{
"class": " Professional Knowledge-Physics ",
"data": "What are the key principles of string theory?"
},
{
"class": " Professional Knowledge-Physics ",
"data": "What are gravitational waves and how are they detected?"
},
{
"class": " Professional Knowledge-Physics ",
"data": "Explain the double-slit experiment and its significance in quantum mechanics."
},
{
"class": " Professional Knowledge-Physics ",
"data": "What is the difference between a baryonic and non-baryonic dark matter?"
},
{
"class": " Professional Knowledge-Physics ",
"data": "Explain the concept of symmetry breaking in particle physics."
},
{
"class": " Professional Knowledge-Physics ",
"data": "What is the significance of the Planck scale in quantum gravity?"
},
{
"class": " Professional Knowledge-Biology ",
"data": "What is the function of mitochondria in a cell?"
},
{
"class": " Professional Knowledge-Biology ",
"data": "What is the process of photosynthesis?"
},
{
"class": " Professional Knowledge-Biology ",
"data": "What is DNA and what role does it play in living organisms?"
},
{
"class": " Professional Knowledge-Biology ",
"data": "What are the four main types of macromolecules found in living organisms?"
},
{
"class": " Professional Knowledge-Biology ",
"data": "What is the difference between prokaryotes and eukaryotes?"
},
{
"class": " Professional Knowledge-Biology ",
"data": "Explain the process of mitosis."
},
{
"class": " Professional Knowledge-Biology ",
"data": "What is the function of hemoglobin in the blood?"
},
{
"class": " Professional Knowledge-Biology ",
"data": "What is the difference between a gene and an allele?"
},
{
"class": " Professional Knowledge-Biology ",
"data": "What is the structure of a typical neuron?"
},
{
"class": " Professional Knowledge-Biology ",
"data": "What is the biological role of proteins?"
},
{
"class": " Professional Knowledge-Biology ",
"data": "What is the difference between a genotype and a phenotype?"
},
{
"class": " Professional Knowledge-Biology ",
"data": "What is natural selection?"
},
{
"class": " Professional Knowledge-Biology ",
"data": "What is the function of the endoplasmic reticulum in a cell?"
},
{
"class": " Professional Knowledge-Biology ",
"data": "What are the four types of tissues in the human body?"
},
{
"class": " Professional Knowledge-Biology ",
"data": "What is the role of ATP in cellular metabolism?"
},
{
"class": " Ability Math ",
"data": "What is the Pythagorean theorem?"
},
{
"class": " Ability Math ",
"data": "Simplify the expression: 2x + 3x - 5x."
},
{
"class": " Ability Math ",
"data": "Solve for x in the equation: 2x - 3 = 7."
},
{
"class": " Ability Math ",
"data": "What is the formula for the area of a circle?"
},
{
"class": " Ability Math ",
"data": "What is the derivative of the function f(x) = x^2?"