-
Notifications
You must be signed in to change notification settings - Fork 6
/
prompt_questions.py
1332 lines (1151 loc) · 39.9 KB
/
prompt_questions.py
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
# List of prompt question
prompt_q_list_college_cs = [
'''
Which of the following sorting algorithms has the best average case performance?
A. Bubble Sort
B. Quick Sort
C. Selection Sort
D. Insertion Sort
The correct answer is option: B''',
'''
What does the term "Big O Notation" describe in Computer Science?
A. The speed of a computer
B. The operating system version
C. The size of a database
D. The time complexity of an algorithm
The correct answer is option: D''',
'''
What does HTTP stand for in terms of web technology?
A. Hyper Text Transfer Portal
B. Hyper Transfer Protocol
C. Hyper Text Transfer Protocol
D. High Transfer Text Protocol
The correct answer is option: C''',
'''
In object-oriented programming, what is 'inheritance' used for?
A. To distribute data across multiple databases
B. To share methods and fields between classes
C. To encrypt data before storing it
D. To speed up program execution
The correct answer is option: B''',
'''
Which of the following data structures is non-linear?
A. Array
B. Stack
C. Tree
D. Queue
The correct answer is option: C''',
'''
In database terminology, what does SQL stand for?
A. Simple Question Language
B. Structured Query Language
C. Standard Queue Language
D. System Query Language
The correct answer is option: B''',
'''
Which of the following is NOT a property of a binary search tree?
A. Every node has at most two children
B. The left subtree of a node contains only nodes with keys less than the node’s key
C. The right subtree of a node contains only nodes with keys greater than the node’s key
D. All nodes contain only string values
The correct answer is option: D''',
'''
What is the main difference between a class and an object in object-oriented programming?
A. A class is an instance of an object
B. A class is a blueprint from which objects are created
C. An object is a blueprint from which classes are created
D. There is no difference
The correct answer is option: B''',
'''
What is a recursive function?
A. A function that is only called once
B. A function that calls other functions
C. A function that calls itself
D. A function that can't be called again once it's been executed
The correct answer is option: C''',
'''
Which of the following is a key characteristic of a stack data structure?
A. First In First Out (FIFO)
B. Last In First Out (LIFO)
C. Both FIFO and LIFO
D. Neither FIFO nor LIFO
The correct answer is option: B''']
prompt_q_list_formal_logic = [
'''
What is a 'proposition' in formal logic?
A. A question
B. An assertion that is either true or false
C. An argument
D. A hypothesis
The correct answer is option: B''',
'''
What is a 'contradiction' in formal logic?
A. A statement that is always true
B. A statement that is both true and false at the same time
C. A statement that is always false
D. A statement that is neither true nor false
The correct answer is option: C''',
'''
What does the term 'valid' mean in the context of logical arguments?
A. The argument is persuasive
B. The argument is true
C. The argument's conclusion logically follows from its premises
D. The argument's premises are true
The correct answer is option: C''',
'''
What does the logical operator 'AND' do?
A. It returns true if both operands are true
B. It returns true if either or both operands are true
C. It returns true only if both operands are false
D. It returns false if both operands are true
The correct answer is option: A''',
'''
What does the logical operator 'OR' do?
A. It returns true if both operands are true
B. It returns true if either or both operands are true
C. It returns true only if both operands are false
D. It returns false if both operands are true
The correct answer is option: B''',
'''
What is a 'tautology' in formal logic?
A. A statement that is always true
B. A statement that is both true and false at the same time
C. A statement that is always false
D. A statement that is neither true nor false
The correct answer is option: A''',
'''
What does 'Modus Ponens' refer to in formal logic?
A. The logical rule stating that if "P implies Q" and "P" are both true, then "Q" must also be true
B. The logical rule stating that if "P and Q" is true, then "P" is true
C. The logical rule stating that if "P or Q" is true, then "P" is true
D. The logical rule stating that if "P implies Q" and "Q" are both false, then "P" must also be false
The correct answer is option: A''',
'''
What is a 'fallacy' in formal logic?
A. A valid argument
B. An argument where the conclusion logically follows from its premises
C. An argument that is both valid and sound
D. An error in reasoning that renders an argument invalid
The correct answer is option: D''',
'''
What does the 'NOT' logical operator do?
A. Returns true if the operand is true
B. Returns true if the operand is false
C. Returns false if the operand is true
D. Returns true if both operands are true
The correct answer is option: C''',
'''
What does the 'IFF' (If and only if) logical operator represent?
A. Conjunction
B. Disjunction
C. Conditional
D. Biconditional
The correct answer is option: D''']
prompt_q_list_high_school_cs = [
'''
Which of the following is NOT a characteristic of Object-Oriented Programming?
A. Encapsulation
B. Inheritance
C. Normalization
D. Polymorphism
The correct answer is option: C''',
'''
What is the primary function of an operating system?
A. Manage hardware and software resources
B. Assist in browsing the internet
C. Create graphical interfaces
D. Develop software applications
The correct answer is option: A''',
'''
Which data structure uses a FIFO (First In, First Out) approach?
A. Array
B. Queue
C. Stack
D. Tree
The correct answer is option: B''',
'''
What is the binary representation of the decimal number 15?
A. 1110
B. 1010
C. 1111
D. 1101
The correct answer is option: C''',
'''
Which of the following sorting algorithms has the best worst-case time complexity?
A. Selection Sort
B. Quick Sort
C. Bubble Sort
D. Merge Sort
The correct answer is option: D''',
'''
Which of the following languages is a low-level programming language?
A. Python
B. Java
C. Assembly
D. JavaScript
The correct answer is option: C''',
'''
Which of the following is a function of a compiler?
A. Translate high-level language to machine language
B. Increase the speed of the computer
C. Prevent software piracy
D. All of the above
The correct answer is option: A''',
'''
What does SQL stand for?
A. Simple Query Language
B. Structured Query Language
C. System Query Language
D. Sequential Query Language
The correct answer is option: B''',
'''
Which of the following is a key characteristic of cloud computing?
A. Data is stored locally
B. It is always free
C. Data can be accessed from anywhere
D. It cannot be used for business purposes
The correct answer is option: C''',
'''
In object-oriented programming, what is a class?
A. An instance of an object
B. A blueprint for creating objects
C. A function in a program
D. A specific data type
The correct answer is option: B'''
]
prompt_q_list_high_school_bio = [
'''
Which of the following cell structures is responsible for producing energy in the form of ATP?
A. Nucleus
B. Ribosomes
C. Mitochondria
D. Endoplasmic Reticulum
The correct answer is option: C''',
'''
Which of the following is the primary function of the structure known as the cell membrane?
A. Control the entry and exit of substances
B. Synthesize proteins
C. Store genetic information
D. Produce energy in the form of ATP
The correct answer is option: A''',
'''
What is the main function of the circulatory system in humans?
A. Digestion of food
B. Gas exchange
C. Transportation of nutrients
D. Protection from pathogens
The correct answer is option: C''',
'''
Which stage of the cell cycle is marked by the replication of DNA?
A. Prophase
B. Metaphase
C. Anaphase
D. Interphase
The correct answer is option: D''',
'''
In protein synthesis, which is responsible for carrying amino acids to the ribosome?
A. tRNA
B. mRNA
C. rRNA
D. DNA
The correct answer is option: A''',
'''
This is a question from high school biology.
Which is an example of a prokaryotic organism?
A. Yeast
B. Amoeba
C. Bacterium
D. Human
The correct answer is option: C''',
'''
What is the primary function of the enzyme DNA polymerase during DNA replication?
A. Unwinding the DNA double helix
B. Adding nucleotides to the growing DNA strand
C. Removing RNA primers
D. Joining the Okazaki fragments
The correct answer is option: B''',
'''
What is the main structural component of the cell membrane?
A. Carbohydrates
B. Proteins
C. Phospholipids
D. Cholesterol
The correct answer is option: C''',
'''
What process do plants use to convert sunlight into chemical energy?
A. Photosynthesis
B. Cellular respiration
C. Fermentation
D. Transpiration
The correct answer is option: A''',
'''
Which type of cell division results in the production of haploid gametes?
A. Mitosis
B. Meiosis
C. Binary fission
D. Budding
The correct answer is option: B'''
]
prompt_q_list_professional_medicine = [
'''
Which of the following best describes the function of the enzyme renin in the human body?
A. It stimulates red blood cell production.
B. It catalyzes the conversion of angiotensinogen to angiotensin I.
C. It acts as a clotting factor in blood coagulation.
D. It catalyzes the breakdown of glycogen to glucose.
The correct answer is option: B''',
'''
Which of the following is the primary cell type involved in allergic reactions?
A. Eosinophils
B. Basophils
C. Mast cells
D. Neutrophils
The correct answer is option: C''',
'''
Which term describes the inadequate supply of oxygen to tissues?
A. Hyperoxia
B. Hypoxemia
C. Hypoxia
D. Anoxia
The correct answer is option: C''',
'''
What is the most common cause of community-acquired pneumonia?
A. Haemophilus influenzae
B. Staphylococcus aureus
C. Streptococcus pneumoniae
D. Klebsiella pneumoniae
The correct answer is option: C''',
'''
Which of the following is the common cause of Cushing's syndrome?
A. Overproduction of glucagon
B. Underproduction of insulin
C. Overproduction of cortisol
D. Underproduction of growth hormone
The correct answer is option: C''',
'''
What is the most common type of skin cancer?
A. Melanoma
B. Basal cell carcinoma
C. Squamous cell carcinoma
D. Kaposi sarcoma
The correct answer is option: B''',
'''
What is the most common cause of endocarditis in individuals with prosthetic heart valves?
A. Streptococcus pyogenes
B. Staphylococcus epidermidis
C. Streptococcus viridans
D. Staphylococcus aureus
The correct answer is option: B''',
'''
Which of the following is the most common site for distant metastasis of colorectal cancer?
A. Lungs
B. Brain
C. Liver
D. Bone
The correct answer is option: C''',
'''
Which drug is most commonly associated with causing a 'pill esophagitis'?
A. Doxycycline
B. Ibuprofen
C. Atorvastatin
D. Metformin
The correct answer is option: A''',
'''
Which of the following antibodies is most commonly associated with type 1 diabetes mellitus?
A. Anti-insulin antibodies
B. Anti-GAD65 antibodies
C. Anti-smooth muscle antibodies
D. Anti-centromere antibodies
The correct answer is option: B'''
]
prompt_q_list_college_medicine = [
'''
Which of the following is a common type of white blood cell involved in the immune response?
A. Erythrocytes
B. Neutrophils
C. Platelets
D. Myocytes
The correct answer is option: B''',
'''
What is the primary function of the liver in the human body?
A. Secretion of insulin
B. Absorption of nutrients
C. Metabolism and detoxification
D. Production of red blood cells
The correct answer is option: C''',
'''
Which part of the human brain is responsible for controlling autonomic functions such as heart rate and respiration?
A. Cerebrum
B. Cerebellum
C. Medulla oblongata
D. Thalamus
The correct answer is option: C''',
'''
What is the primary function of the alveoli in the human respiratory system?
A. Produce mucus
B. Filter air particles
C. Gas exchange
D. Warm and humidify inhaled air
The correct answer is option: C''',
'''
Which of the following is a primary function of the kidneys?
A. Production of bile
B. Filtration and excretion of waste products
C. Hormone secretion
D. Digestion of proteins
The correct answer is option: B''',
'''
What is the main purpose of the sinoatrial (SA) node in the human heart?
A. Oxygenate blood
B. Pump blood to the lungs
C. Act as the heart's natural pacemaker
D. Regulate blood pressure
The correct answer is option: C''',
'''
Which hormone is responsible for regulating the body's metabolism?
A. Insulin
B. Glucagon
C. Thyroxine
D. Adrenaline
The correct answer is option: C''',
'''
What type of joint connects the femur and the tibia in the human body?
A. Ball and socket joint
B. Pivot joint
C. Hinge joint
D. Gliding joint
The correct answer is option: C''',
'''
Which of the following is a function of the lymphatic system?
A. Produce hormones
B. Regulate body temperature
C. Transport oxygen to cells
D. Remove excess fluid and fight infection
The correct answer is option: D''',
'''
What is the primary role of the T cells in the human immune system?
A. Produce antibodies
B. Phagocytosis
C. Cell-mediated immunity
D. Release histamine
The correct answer is option: C'''
]
prompt_q_list_anatomy = [
'''
What is the largest organ in the human body?
A. Liver
B. Skin
C. Lungs
D. Kidneys
The correct answer is option: B''',
'''
Which of the following is a part of the axial skeleton?
A. Humerus
B. Tibia
C. Sternum
D. Scapula
The correct answer is option: C''',
'''
What is the smallest bone in the human body?
A. Stapes
B. Incus
C. Malleus
D. Pisiform
The correct answer is option: A''',
'''
What is the function of the trachea?
A. Digestion
B. Circulation
C. Respiration
D. Excretion
The correct answer is option: C''',
'''
Which of these is a type of white blood cell?
A. Erythrocyte
B. Neutrophil
C. Thrombocyte
D. Hemoglobin
The correct answer is option: B''',
'''
Which part of the human brain is responsible for regulating basic physiological functions such as heart rate, breathing, and blood pressure?
A. Cerebrum
B. Cerebellum
C. Medulla oblongata
D. Thalamus
The correct answer is option: C''',
'''
What is the main function of the large intestine?
A. Absorption of water
B. Absorption of nutrients
C. Production of bile
D. Production of hormones
The correct answer is option: A''',
'''
Which of the following is a primary function of the liver?
A. Producing insulin
B. Filtering blood
C. Detoxification
D. Producing digestive enzymes
The correct answer is option: C''',
'''
How many chambers are there in a human heart?
A. Two
B. Three
C. Four
D. Five
The correct answer is option: C''',
'''
Which muscle is primarily responsible for moving the lower jaw during chewing?
A. Masseter
B. Temporalis
C. Sternocleidomastoid
D. Orbicularis oris
The correct answer is option: A'''
]
prompt_q_list_computer_security = [
'''
What is the primary goal of computer security?
A. Ensuring system availability
B. Protecting user privacy
C. Ensuring data integrity
D. All of the above
The correct answer is option: D''',
'''
Which of these is a common type of malware?
A. Worm
B. Spreadsheet
C. Compiler
D. Web browser
The correct answer is option: A''',
'''
What does the term "phishing" refer to?
A. Sending fraudulent emails to obtain sensitive information
B. Removing viruses from a computer
C. Encrypting data to protect it from unauthorized access
D. Scanning a network for vulnerabilities
The correct answer is option: A''',
'''
Which encryption method uses a single key to both encrypt and decrypt data?
A. Symmetric encryption
B. Asymmetric encryption
C. Hash function
D. Steganography
The correct answer is option: A''',
'''
What is a firewall primarily used for?
A. Data encryption
B. Controlling network traffic
C. Removing malware
D. Recovering lost data
The correct answer is option: B''',
'''
Which of these is an authentication factor category?
A. Something you know
B. Something you read
C. Something you hear
D. Something you watch
The correct answer is option: A''',
'''
In the context of computer security, what does "CIA" stand for?
A. Central Intelligence Agency
B. Confidentiality, Integrity, and Availability
C. Computer Incident Assessment
D. Cyber Intrusion Analysis
The correct answer is option: B''',
"""
What is a Distributed Denial of Service (DDoS) attack?
A. An attack that targets a single computer
B. An attack that floods a network with traffic from multiple sources
C. An attack that encrypts a user's data and demands payment
D. An attack that exploits a vulnerability in software
The correct answer is option: B""",
'''
Which of these is a type of intrusion detection system (IDS)?
A. Host-based IDS
B. Database IDS
C. Firewall IDS
D. Encryption IDS
The correct answer is option: A''',
'''
What does the term "zero-day vulnerability" refer to?
A. A software bug that is discovered and fixed on the same day
B. A security flaw that is unknown to the software vendor
C. A vulnerability that requires no user interaction to be exploited
D. A bug that affects all versions of a software
The correct answer is option: B'''
]
prompt_q_list_clinical_knowledge = [
'''
Which of the following is the most common cause of community-acquired pneumonia?
A. Streptococcus pneumoniae
B. Haemophilus influenzae
C. Klebsiella pneumoniae
D. Pseudomonas aeruginosa
The correct answer is option: A''',
'''
Which hormone is primarily responsible for regulating blood calcium levels?
A. Calcitonin
B. Parathyroid hormone
C. Thyroxine
D. Insulin
The correct answer is option: B''',
'''
What is the most common cause of acute pancreatitis?
A. Gallstones
B. Alcohol
C. Hypertriglyceridemia
D. Medications
The correct answer is option: A''',
"""
What is the most common cause of secondary hypertension?
A. Renal artery stenosis
B. Pheochromocytoma
C. Hyperaldosteronism
D. Cushing's syndrome
The correct answer is option: A""",
'''
Which of the following is a common extraintestinal manifestation of ulcerative colitis?
A. Erythema nodosum
B. Gallstones
C. Uveitis
D. All of the above
The correct answer is option: D''',
'''
What is the most common cause of congestive heart failure?
A. Coronary artery disease
B. Hypertension
C. Valvular heart disease
D. Cardiomyopathy
The correct answer is option: A''',
'''
What is the primary treatment for Parkinson's disease?
A. Levodopa
B. Dopamine agonists
C. Monoamine oxidase inhibitors (MAOIs)
D. Selective serotonin reuptake inhibitors (SSRIs)
The correct answer is option: A''',
'''
What is the most common type of stroke?
A. Ischemic stroke
B. Hemorrhagic stroke
C. Transient ischemic attack (TIA)
D. Subarachnoid hemorrhage
The correct answer is option: A''',
'''
What is the most common form of glaucoma?
A. Open-angle glaucoma
B. Angle-closure glaucoma
C. Congenital glaucoma
D. Secondary glaucoma
The correct answer is option: A''',
'''
What is the most common type of skin cancer?
A. Basal cell carcinoma
B. Squamous cell carcinoma
C. Melanoma
D. Merkel cell carcinoma
The correct answer is option: A'''
]
prompt_q_list_machine_learning = [
'''
Which of the following is a supervised learning algorithm?
A. K-means clustering
B. Support vector machines
C. Principal component analysis
D. Latent Dirichlet allocation
The correct answer is option: B''',
'''
Which of the following is an example of unsupervised learning?
A. Regression
B. Classification
C. Clustering
D. Reinforcement learning
The correct answer is option: C''',
'''
What is the primary goal of a classification algorithm?
A. To predict a continuous value
B. To group similar data points together
C. To predict a discrete label
D. To optimize decision-making
The correct answer is option: C''',
'''
In which of the following methods does a model learn from a reward signal?
A. Supervised learning
B. Unsupervised learning
C. Semi-supervised learning
D. Reinforcement learning
The correct answer is option: D''',
'''
What is the purpose of regularization in machine learning?
A. To reduce overfitting
B. To reduce underfitting
C. To improve training speed
D. To improve model interpretability
The correct answer is option: A''',
'''
Which of the following is a commonly used loss function in regression tasks?
A. Mean squared error
B. Cross-entropy loss
C. Hinge loss
D. Kullback-Leibler divergence
The correct answer is option: A''',
'''
Which of the following is a popular technique for dimensionality reduction?
A. Linear regression
B. K-nearest neighbors
C. Principal component analysis
D. Naive Bayes
The correct answer is option: C''',
'''
In deep learning, what is the function of an activation function?
A. To introduce non-linearity into the model
B. To normalize the input data
C. To reduce the number of parameters in the model
D. To speed up training
The correct answer is option: A''',
'''
Which of the following is an example of a recurrent neural network (RNN)?
A. Convolutional neural network (CNN)
B. Long short-term memory (LSTM)
C. Radial basis function network (RBFN)
D. Restricted Boltzmann machine (RBM)
The correct answer is option: B''',
'''
What is the main advantage of using a convolutional neural network (CNN) for image recognition?
A. Reduced risk of overfitting
B. Improved model interpretability
C. Improved computational efficiency
D. Reduced training time
The correct answer is option: C'''
]
prompt_q_list_marketing = [
'''
What does the term "market segmentation" refer to?
A. Dividing a market into distinct groups of buyers with different needs and preferences
B. Identifying the best pricing strategy for a product
C. Identifying the target market for a product
D. Developing a marketing strategy for a niche market
The correct answer is option: A''',
'''
What is the primary goal of content marketing?
A. To sell products directly to consumers
B. To create and distribute relevant and consistent content to attract and engage target audience
C. To promote a product through paid advertising channels
D. To create a viral marketing campaign
The correct answer is option: B''',
'''
What does the acronym "SEO" stand for in digital marketing?
A. Search Engine Optimization
B. Social Engagement Optimization
C. Sales Enablement Organization
D. Synchronized Engagement Operations
The correct answer is option: A''',
'''
Which of the following is a key performance indicator (KPI) for an email marketing campaign?
A. Click-through rate
B. Number of followers on social media
C. Website traffic
D. Product sales
The correct answer is option: A''',
'''
In the context of marketing, what does "AIDA" stand for?
A. Attention, Interest, Desire, Action
B. Analysis, Interpretation, Decision, Action
C. Attraction, Interaction, Direction, Assessment
D. Audience, Impact, Design, Adaptation
The correct answer is option: A''',
'''
Which of the following is a type of online advertising?
A. Pay-per-click (PPC)
B. Content marketing
C. Public relations
D. Event marketing
The correct answer is option: A''',
'''
What is the primary purpose of a SWOT analysis in marketing?
A. To identify and analyze the strengths, weaknesses, opportunities, and threats of a business
B. To determine the best marketing channels for a specific product
C. To evaluate the effectiveness of a marketing campaign
D. To identify the target audience for a product
The correct answer is option: A''',
'''
Which of the following marketing strategies focuses on building long-term relationships with customers?
A. Relationship marketing
B. Guerrilla marketing
C. Viral marketing
D. Direct marketing
The correct answer is option: A''',
'''
What is the primary purpose of a marketing funnel?
A. To track the customer journey from awareness to conversion
B. To identify the most effective marketing channels
C. To analyze the performance of a marketing campaign
D. To develop a marketing budget
The correct answer is option: A''',
'''
Which of the following is a form of earned media?
A. Online reviews
B. Display advertising
C. Sponsored content
D. Direct mail
The correct answer is option: A'''
]
prompt_q_list_business_ethics = [
'''
Conflict of interest in business refers to:
A. A competition between businesses in the same market
B. A situation in which personal interests could potentially harm professional judgement
C. A disagreement between employees within a company
D. A conflict between a company's shareholders and management
The correct answer is option: B''',
'''
Which of the following is NOT typically considered an ethical issue in business?
A. Accounting fraud
B. Misuse of company time
C. Environmental responsibility
D. Office decor
The correct answer is option: D''',
'''
A whistleblower in a company is someone who:
A. Tries to sabotage the company's operations
B. Exposes wrongdoing or illegal activities within the organization
C. Calls for unnecessary meetings
D. Gossips about colleagues
The correct answer is option: B''',
'''
In business ethics, what does the term "transparency" refer to?
A. A company's clarity in its business operations and communications
B. A company's ability to hide its faults
C. The invisibility of a company's digital operations
D. The physical appearance of a business building
The correct answer is option: A''',
'''
What is the primary goal of business ethics?
A. To prevent any kind of competition in the market
B. To ensure maximum profitability regardless of methods used
C. To provide guidelines for conducting business in a honest and respectful manner
D. To manipulate customers into buying more products
The correct answer is option: C''',
'''
The "triple bottom line" approach to corporate accounting includes consideration of:
A. Profit, debt, and equity
B. Economic, environmental, and social performance
C. Domestic, foreign, and international sales
D. Employees, products, and customers
The correct answer is option: B''',
'''
Insider trading is considered unethical because:
A. It gives certain individuals an unfair advantage based on non-public information
B. It involves trading of company shares
C. It is part of the company's business strategy
D. It often leads to the firing of employees
The correct answer is option: A''',
'''
Which of the following would be an example of ethical corporate behavior?
A. A company intentionally polluting a local river
B. A company using child labor in developing countries
C. A company providing truthful information about its products
D. A company selling defective products
The correct answer is option: C''',
'''
Corporate governance refers to:
A. How a corporation is structured
B. The way a corporation interacts with the local community
C. How a corporation is controlled and operated
D. The corporation's branding strategy
The correct answer is option: C''',
'''
Which of the following is a key element of ethical decision making in business?
A. Maximizing shareholder profits at any cost
B. Considering the impacts of decisions on stakeholders
C. Keeping all company information private
D. Ignoring the needs and wants of customers
The correct answer is option: B'''
]