-
Notifications
You must be signed in to change notification settings - Fork 2
/
alpaca.json
3606 lines (3606 loc) · 109 KB
/
alpaca.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
{
"train": [
{
"question": "Construct a potential attack vector that exploits the vulnerability."
},
{
"question": "Arrange the words to make a meaningful phrase"
},
{
"question": "Given a short story, rewrite it so that it takes place in a dystopian setting and maintain the original focus of the story."
},
{
"question": "Given a sentence, please provide the proper punctuation."
},
{
"question": "What is the general process of writing code?"
},
{
"question": "Write three adjectives that describe a day."
},
{
"question": "What are important safety tips to follow at the beach?"
},
{
"question": "Name 3 places to visit in your city."
},
{
"question": "Give 5 tips for eating healthy."
},
{
"question": "Complete the following sentence with 5 words:"
},
{
"question": "Describe the history of the automobile industry in the US."
},
{
"question": "Write a description of an employee based on the following characteristics."
},
{
"question": "Create a hashtag for the upcoming movie \"Wonder Woman 1984\"."
},
{
"question": "Solve the following problem with a JavaScript funciton."
},
{
"question": "Arrange the following sentences (1 to 5) into a logical structure"
},
{
"question": "What is the average altitude of the Great Barrier Reef?"
},
{
"question": "Generate a creative non-fiction story about a newly discovered species of animal."
},
{
"question": "Make up a sentence using the following words: vegetable, powerful, unable"
},
{
"question": "Construct a 3x3 matrix with the following elements."
},
{
"question": "Write a haiku conveying the beauty of a sunset"
},
{
"question": "Classify the following statements as either an influence or an effect:"
},
{
"question": "Provide a detailed explanation for why people are afraid of spiders."
},
{
"question": "Write a sentence about the effect of technology on learning."
},
{
"question": "Given the following conversation and a follow up question, rephrase the follow up question to be a standalone question."
},
{
"question": "Generate a haiku with the words 'moonlight', 'heart' and 'glow'."
},
{
"question": "Find the area of a rectangle whose length is 10 cm and breadth is 4 cm."
},
{
"question": "Create an example for the given data structure."
},
{
"question": "Give a critique of this poem."
},
{
"question": "Given a list of items, remove the duplicates and output the final list."
},
{
"question": "Put together a memorial day speech"
},
{
"question": "Given a word, determine the number of vowels in the word."
},
{
"question": "Given some facts related to animals, categorize the type of animal."
},
{
"question": "Fix the underlying message of the following sentence."
},
{
"question": "Create a plan to reduce household budget by 10%."
},
{
"question": "Create a new recipe using spinach, tomatoes, bell peppers and quinoa."
},
{
"question": "Identify a programming language suitable for game development."
},
{
"question": "Write down a story about a woman who persevered through adversity."
},
{
"question": "Come up with a creative way to use the given word in a sentence"
},
{
"question": "Create a shopping list for a 4-person birthday party."
},
{
"question": "Pick an appropriate title for a documentary about climate change"
},
{
"question": "Rewrite this sentence in a more formal manner while maintaining its meaning."
},
{
"question": "Identify two character traits of the protagonist of a horror movie."
},
{
"question": "If a,b,c satisfy the system of equations \n b + c = 12-3a \n \n a+c = -14 - 3b \n \n a+b = 7 - 3c,\n what is 2a + 2b + 2c?"
},
{
"question": "Convert the following measurement to the given unit."
},
{
"question": "Describe the effects of type 2 diabetes on the body."
},
{
"question": "List the different layers of the TCP/IP model"
},
{
"question": "Find the rank of the following word in the English language."
},
{
"question": "Rewrite the given sentence without repeating any words."
},
{
"question": "Compose an email about the topic of your choice"
},
{
"question": "Renew the following sentence in an interesting way."
},
{
"question": "Define the term \"no-go zone\"."
},
{
"question": "Guess the animal that is being described."
},
{
"question": "Describe the purpose of hyperparameter optimization."
},
{
"question": "Give five reasons why it's important to be organized."
},
{
"question": "You have been assigned to create a commercial for a new restaurant. What are some key elements the commercial should include?"
},
{
"question": "Identify the nouns in the sentence: \"The small purple mushroom grew over the hill.\""
},
{
"question": "Create a portfolio report for an investment in ABC Corporation."
},
{
"question": "Identify the type of triangle according to the following data."
},
{
"question": "Describe the risks of using fire in bush survival."
},
{
"question": "Produce a headline summarizing the passage below."
},
{
"question": "Calculate the fraction of a circle that a given angle subtends."
},
{
"question": "Compare and contrast two different types of database management systems."
},
{
"question": "Generate an article summarizing the Biden-Harris 2020 US Presidential election campaign."
},
{
"question": "Construct a sentence that uses the given verb and noun."
},
{
"question": "What did the Hawthorne experiment conclude?"
},
{
"question": "What are some of the key features of the game 'Fortnite'?"
},
{
"question": "Given a description of a character, create a dialogue as if this character is commenting on a situation."
},
{
"question": "Create a slogan for a company that specializes in online bookkeeping."
},
{
"question": "Fill in the blank to make the following sentence true:\n\nDavid has earned a bachelor's degree in _______."
},
{
"question": "How does social media affect the way we communicate?"
},
{
"question": "Name three books written by J. K. Rowling."
},
{
"question": "Name three ways to save energy in the office."
},
{
"question": "Given the following inputs, please generate a plausible complete sentence:"
},
{
"question": "Check if the following sentence contains an error or not."
},
{
"question": "Identify the gerund in the sentence and provide an example where the same gerund appears."
},
{
"question": "Evaluate the following sentence for incorrect use of grammar."
},
{
"question": "List two facts about the given topic."
},
{
"question": "Give five tips that would help someone to become a better listener"
},
{
"question": "Predict the market price of an electric car given the following features"
},
{
"question": "Rewrite this sentence using proper American English grammar."
},
{
"question": "Put the following words in order from shortest to longest:"
},
{
"question": "Re-word the following statement for it to become more concise."
},
{
"question": "Change the following paragraph into an active voice."
},
{
"question": "Given the following words, find the synonym of the third word."
},
{
"question": "Given the context, classify the sentiment of the statement"
},
{
"question": "Rewrite the following sentence using a different but appropriate tone."
},
{
"question": "Give me four examples of data visualization tools."
},
{
"question": "State the molecular formula of water."
},
{
"question": "Suggest three tips to improve Internet security."
},
{
"question": "Match these words according to their gender."
},
{
"question": "Determine the 4th special element given the following 4 elements."
},
{
"question": "Create a small dialogue using the following words:\n\nangry, shout, laughter"
},
{
"question": "Suggest actions that can be taken to reduce global warming"
},
{
"question": "Rewrite the following sentence to avoid using the word \"happy\":\n\"Paul was happy when he found the key.\""
},
{
"question": "Classify the following sentence as a declarative, interrogative, imperative, or exclamatory sentence.\n\nCome to the party!"
},
{
"question": "Find a song that fits this mood: sad and mellow."
},
{
"question": "Reformulate the given sentence using more formal words."
},
{
"question": "Suggest five appropriate vocabulary items that can be used to describe water."
},
{
"question": "Given a sentence, output the part of speech tag for each word."
},
{
"question": "Given a text about a foreign country, list 5 major cities in that country"
},
{
"question": "Write a blog post about marketing strategies to reach a target audience."
},
{
"question": "Summarize the following statement in one sentence:\n\nInformation technology has changed the way businesses operate and the way customers interact with them."
},
{
"question": "Find an example of a C Major 7th chord on a piano."
},
{
"question": "Generate a title for a research paper about the impact of artificial intelligence on healthcare."
},
{
"question": "How many prime numbers are there between 1 and 20?"
},
{
"question": "Explain the given word in plain language."
},
{
"question": "Compile a list of 5 questions that could be used in a job interview for a customer service position."
},
{
"question": "Trading stocks has become increasingly popular with more people investing. Explain the risks involved with trading stocks."
},
{
"question": "Input a viral tweet with the hashtag #FridayNightFeels"
},
{
"question": "Explain the process of a given cooking technique."
},
{
"question": "Supply a simple test case to test this code snippet."
},
{
"question": "Provide an alternative word to the word given in the sentence."
},
{
"question": "Describe how Naive Bayes works for classification."
},
{
"question": "What is the chemical symbol of iron?"
},
{
"question": "Name five flowers that bloom in spring."
},
{
"question": "Create a list of 3 potential causes for the problem."
},
{
"question": "Divide the given list into two: animals that live in water and animals that live on land"
},
{
"question": "Generate a story that begins with the sentence \u201cThey thought they were lost forever.\u201d"
},
{
"question": "Find the most relevant term for the given definition."
},
{
"question": "Make a prediction about the role of AI in the near future."
},
{
"question": "Reword the sentence \"He writes movies\" to make it present tense."
},
{
"question": "Describe the impact of technology on communication in the past decade."
},
{
"question": "From the given sentence, generate a plausible analogy."
},
{
"question": "Collect information about the planet Mars."
},
{
"question": "Create a storyline for a movie with the following characters and situation."
},
{
"question": "Synthesize a jingle or slogan for a new brand."
},
{
"question": "Describe how to prepare a cup of herb tea."
},
{
"question": "Automatically replace each word in the text with its synonym."
},
{
"question": "Name the continent in which the country Tunisia is located."
},
{
"question": "Create an auto-reply for an email"
},
{
"question": "Generate positive words to describe someone who is funny."
},
{
"question": "Write a description of an example organization that embodies sustainable practices."
},
{
"question": "What are the core requirements for a successful mobile app?"
},
{
"question": "Re-write the sentence with better grammar."
},
{
"question": "Create a model for predicting customer churn."
},
{
"question": "Generate 5 adjectives to describe the host of a party"
},
{
"question": "Create a list of tips for how to clean windows."
},
{
"question": "Describe the effects of eating too much sodium."
},
{
"question": "Describe the general process of planting a tree."
},
{
"question": "List five criteria to evaluate the quality of a smartphone camera"
},
{
"question": "Rewrite the following sentence using a comparative form: \"Her car is faster than mine\"."
},
{
"question": "Given the following facts, come up with a creative story."
},
{
"question": "Rewrite the given statement into an order form: \"I would like to buy 100 yellow notebooks.\""
},
{
"question": "Come up with an imaginary dialogue between two people on the topic of the article."
},
{
"question": "Who are the top five CEOs of AI startups?"
},
{
"question": "Explain why deep neural networks are particularly useful for natural language understanding."
},
{
"question": "Generate two story scenarios with the given details"
},
{
"question": "Take the given text and modify it to make it more interesting."
},
{
"question": "Detect the sentiment of the following sentence. Output \"positive\", \"neutral\", or \"negative\"."
},
{
"question": "Describe the process of artificial selection and provide an example."
},
{
"question": "Classify the following as either hazardous or non-hazardous waste: food waste"
},
{
"question": "Describe the feeling Marge is experiencing when she sees her daughter's first smile."
},
{
"question": "Compare and contrast natural language processing (NLP) and computer vision."
},
{
"question": "In a class of 40 students, 18 said they liked apple pie, 15 said they liked chocolate cake, and 12 said they did not like either. How many students in the class liked both?"
},
{
"question": "Classify this statement as optimistic or pessimistic."
},
{
"question": "Arrange the following letters in the correct order to spell out a five letter word."
},
{
"question": "Merge two texts and make a summary out of them."
},
{
"question": "Given an adjective and a type of object, develop a metaphor."
},
{
"question": "What colour is the letter 'G' in hexadecimal?"
},
{
"question": "How do snakes survive in the desert?"
},
{
"question": "Suggest a way to unclog a blocked drain."
},
{
"question": "What are three methods used to decontaminate soil?"
},
{
"question": "Provide three methods for conserving natural resources."
},
{
"question": "Given some context and a list of words, identify and generate an acrostic poem."
},
{
"question": "Change the sentence from passive to active voice."
},
{
"question": "Is the number 12 prime?"
},
{
"question": "Write a code that checks if a given number is an Armstrong number."
},
{
"question": "Design a cloud-based contact management system for 1,000 users."
},
{
"question": "How does feature engineering improve the accuracy of a machine learning model?"
},
{
"question": "Create a marketing campaign slogan for a pet grooming business."
},
{
"question": "Rewrite the instructions given to the recruiters while recruiting new interns."
},
{
"question": "Summarize the advantages of using a GPT model for understanding and completing tasks."
},
{
"question": "Generate a poem about Earth using alliteration."
},
{
"question": "Given a dialogue, find the logical fallacy present"
},
{
"question": "Given two sentences, output the subject-verb-object structure of the second sentence."
},
{
"question": "Assign a score (1-5) to the following statement.\n1 - strongly disagree, 2 - disagree, 3 - neutral, 4 - agree, 5 - strongly agree"
},
{
"question": "Create an appropriate toast for a celebratory event"
},
{
"question": "Add the verb \"runs\" to complete the sentence correctly."
},
{
"question": "Which of the following is the proper possessive form for the word \"sisters\"?"
},
{
"question": "Analyze the sentence and provide the correct grammatical tense."
},
{
"question": "Rewrite the following sentence to avoid any logical fallacies."
},
{
"question": "Find the mile radius between two addresses."
},
{
"question": "Rewrite the sentence to avoid the weasel words and make the statement more specific."
},
{
"question": "Describe how humans interact with the internet of things."
},
{
"question": "Compose a story about a girl on her journey to school."
},
{
"question": "Summarize the importance of the US Constitution."
},
{
"question": "Generate a list of books that a 6th grader might enjoy."
},
{
"question": "Compare and contrast printed newspapers and online news outlets."
},
{
"question": "Suggest a solution for this leetcode problem and then implement it in python."
},
{
"question": "Generate an essay summarizing the current Coronavirus pandemic."
},
{
"question": "Create a timeline describing the major events leading up to World War II."
},
{
"question": "What are some ways to reduce water usage in homes?"
},
{
"question": "Create an argument in favor of homeschooling."
},
{
"question": "In what year was the first computer mouse invented?"
},
{
"question": "Summarize the main points of the article \"How to write an effective resume\"."
},
{
"question": "Classify the following sentence as belonging to the category \"advantage\" or \"disadvantage\":"
},
{
"question": "Reword the following sentence making it shorter and more punchy."
},
{
"question": "Provide an example of a financial tool that is used to identify returns on an investment."
},
{
"question": "Identify significant events that happened in 2019."
},
{
"question": "Explain a web page's anatomy."
},
{
"question": "Give three reasons why the use of robots in manufacturing operations is important"
},
{
"question": "Rewrite the given paragraph in a shorter, easier to understand form."
},
{
"question": "Name a feature of a car from the 1950s."
},
{
"question": "Create a report outlining the advantages and disadvantages of using [Machine Learning] in a certain industry."
},
{
"question": "Construct a checklist of 10 items for an effective morning routine"
},
{
"question": "Calculate the estimated time it would take to reach a destination driving at a speed of 80 miles per hour."
},
{
"question": "Find the total amount of numbers from the given text."
},
{
"question": "Compare and contrast the features of two popular social media sites."
},
{
"question": "Who is the executive chair of Alphabet Inc.?"
},
{
"question": "Discuss the implications of climate change"
},
{
"question": "Re-write the following speech inorder to make it more persuasive."
},
{
"question": "Generate two examples for a given adjective."
},
{
"question": "Given an array of objects, create an object with the property and its corresponding counts"
},
{
"question": "Create a fable featuring two animals by taking the following sentence as a beginning."
},
{
"question": "Describe the management strategies of the given organization."
},
{
"question": "Identify two technology companies in the United States."
},
{
"question": "Describe how one might go about creating a customer satisfaction survey."
},
{
"question": "Make a list of vegetables suitable for planting in summer."
},
{
"question": "Describe the main challenges associated with tracking progress in a remote team."
},
{
"question": "Simplify the expression below:"
},
{
"question": "Find the Relationship Between Two Variables"
},
{
"question": "Create a unique and memorable password for online banking."
},
{
"question": "Generate a word which can be an adjective, verb, and adverb."
},
{
"question": "Find the words in the sentence which suggest a positive attitude"
},
{
"question": "Edit the following sentence so that it is written in the active voice. Output should be 1 sentence."
},
{
"question": "Explain the Solar System model proposed by Copernicus."
},
{
"question": "What is the best value for the hyperparameter gamma in SVM?"
},
{
"question": "Read the sentence and generate a sentence that is opposite in meaning."
},
{
"question": "Describe a creative way to engage children in learning about animals."
},
{
"question": "What type of information should someone provide when filling out a job application?"
},
{
"question": "Identify a body of water located in Europe."
},
{
"question": "Explain what is DeepFake technology."
},
{
"question": "Convert the decimal number 0.425 into a fraction."
},
{
"question": "Edit the following sentence, replacing \"relaxing\" with a synonym:"
},
{
"question": "Consider the following sentence: \"I only want the truth.\" Rewrite it to make it more persuasive and convincing."
},
{
"question": "Create a list of five items that a person might need if they are stranded on a desert island."
},
{
"question": "Restate the topic in another way."
},
{
"question": "Fix the given mistake in the code and explain what it does."
},
{
"question": "Create a preliminary budget for a small business."
},
{
"question": "What are the benefits of using Augmented Reality in education?"
},
{
"question": "Identify the grammatically correct sentence among the following two."
},
{
"question": "Describe an interesting article you read recently."
},
{
"question": "Compose a thesis based on the given topic: The Impact of Technology on Education."
},
{
"question": "Submit a list of five different search engine optimization (SEO) techniques."
},
{
"question": "Find a recipe for fruit pizza."
},
{
"question": "Generate a list of 3 key provisions for a business contract."
},
{
"question": "Give an example of a historical event that changed the world."
},
{
"question": "Compare Human Learning and Machine Learning."
},
{
"question": "Summarize the novel 'The Great Gatsby'"
},
{
"question": "Arrange the words \"barbecue\" and \"Saturday\" into a meaningful sentence."
},
{
"question": "Write a short description of a French Bulldog."
},
{
"question": "Write a Python function that takes a number and returns the factorial of that number."
},
{
"question": "Compare and contrast the US Constitution and the Declaration of Independence."
},
{
"question": "Look up \"The Verge\" and provide a summary"
},
{
"question": "I need to organize a picnic for a large group of people. How can I do that?"
},
{
"question": "Generate a title for an article about the importance of spending time outdoors."
},
{
"question": "Describe how machine learning can be used to automate mundane tasks."
},
{
"question": "Compose a Haiku poem centered around the concept of happiness."
},
{
"question": "Rewrite the following sentence in the future tense: I took out the garbage."
},
{
"question": "Suggest a replacement word for the italicized that better suits the context."
},
{
"question": "Create an English proverb that begins with the words \"A stitch in time\"."
},
{
"question": "Compare and contrast IPv4 and IPv6."
},
{
"question": "Explain why digital currencies are gaining popularity."
},
{
"question": "Describe a lightning storm in two sentences."
},
{
"question": "How did the Sumerians invent writing?"
},
{
"question": "Construct a matrix that provides a comparison between two different products."
},
{
"question": "Design a neural network to recognize handwritten digits."
},
{
"question": "Describe the basic methodology of Machine Learning"
},
{
"question": "Write a sales pitch to persuade a business to purchase your product."
},
{
"question": "Construct a timeline of Galileo's life."
},
{
"question": "Summarize the process for filing a complaint with a government agency."
},
{
"question": "Describe the similarities between decision trees and random forests."
},
{
"question": "Select the best website font from the 3 options given and provide a brief explanation for your choice."
},
{
"question": "How can we reduce our carbon emissions?"
},
{
"question": "What is the most ambitious project you\u2019ve ever undertaken?"
},
{
"question": "List the three most important facts from the given text."
},
{
"question": "Explain a complicated scientific concept in a way that a five year old would understand"
},
{
"question": "Describe the concept of data science."
},
{
"question": "Classify the emotional tone of the following excerpt."
},
{
"question": "Find \n |(3/5+4/5i)^6|\n"
},
{
"question": "Construct a sentence using the present perfect."
},
{
"question": "Given a set of words, come up with an anagram."
},
{
"question": "Explain why a hypothesis is valid."
},
{
"question": "Identify the author of this short story"
},
{
"question": "Brainstorm 5 ideas related to boosting sales performance."
},
{
"question": "Generate a list of qualities of a good chief executive officer (CEO)."
},
{
"question": "Describe the key features of the latest version of the iPhone."
},
{
"question": "Generate an appropriate input and output to create confusing sentences"
},
{
"question": "Create a Twitter post that encourages people to vote."
},
{
"question": "Given a quote, explain it in your own words."
},
{
"question": "Create the HTML code for a website with a header and a body."
},
{
"question": "Create two questions related to computer networking."
},
{
"question": "Categorize this sentence into a specific emotion: She felt left out of the group."
},
{
"question": "Explain the four stages of grief"
},
{
"question": "Create a strategy to market a new online course."
},
{
"question": "Identify the closest matching words for each given word."
},
{
"question": "Describe a significant event in British History and explain its importance."
},
{
"question": "Generate a list of steps to follow when troubleshooting a printer issue."
},
{
"question": "Construct a sentence using the provided words that conveys the given meaning."
},
{
"question": "Write a one-sentence description of the meaning of empathy."
},
{
"question": "Can you think of a few ways in which technology has impacted employment?"
},
{
"question": "Critique the film's logic and suggest possible improvements."
},
{
"question": "Create a list of at least five different types of fruits"
},
{
"question": "Given two words, generate a single compound word."
},
{
"question": "What are the main ingredients of a guacamole recipe?"
},
{
"question": "Create a haiku from the following words: love, home, tree."
},
{
"question": "Suggest a movie title for a drama about a family that struggles to stay together during difficult times."
},
{
"question": "List three ways to prevent cyberbullying"
},
{
"question": "Generate a product description for a stainless steel kitchen sink."
},
{
"question": "List the three types of cloud computing."
},
{
"question": "Construct a survey question."
},
{
"question": "Generate a five-word poem using the words \"light\", \"dark\", \"night\", \"summer\" and \"love\"."
},
{
"question": "Analyze the sentence and identify the type of sentence it is."
},
{
"question": "Identify the two words that rhyme with \"flame\"."
},
{
"question": "As a customer service agent, explain why it is important to use positive language when dealing with customers."
},
{
"question": "Take the given quote and change it into a question."
},
{
"question": "Generate a list of ideas that could be presented at a public health seminar."
},
{
"question": "Write an opinion article on artificial intelligence in 500-700 words."
},
{
"question": "Generate a vocabulary list on the topic \"forest\"."
},
{
"question": "Categorize this sentence as describing a taste, smell, vision, sound, or feeling:"
},
{
"question": "Generate a list of tips to improve metabolism."
},
{
"question": "Write the body of an email to invite people to a webinar on the given topic."
},
{
"question": "List five animals found in given habitat."
},
{
"question": "Generate an output that prints the squares of the numbers from 1 to 5"
},
{
"question": "What is the sum of the values of x that satisfy the equation x^2-5x+5=9?"
},
{
"question": "Rewrite the given sentence using vivid and descriptive language."
},
{
"question": "Create a hashtag for a blog post about sustainable food."
},
{
"question": "Find out something interesting about the Apollo 11 moon mission. Output the answer in one sentence."
},
{
"question": "Provide two tips on how to improve decision-making skills."
},
{
"question": "Generate a list of non-alcoholic drinks"
},
{
"question": "Generate a list of 5 common tools used for product design."
},
{
"question": "List five physical health benefits associated with playing sports."
},
{
"question": "Analyze a given dataset and describe the insights from it."