-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathquestions_actual_dev.json
More file actions
10362 lines (10362 loc) · 360 KB
/
Copy pathquestions_actual_dev.json
File metadata and controls
10362 lines (10362 loc) · 360 KB
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
[
{
"PKEY": 0,
"CHAP_KEY": 0,
"COURSE_KEY": 0,
"TOPIC_KEY": 1,
"Status": "Active",
"Language": "English",
"Area": "Business",
"Subject": "Finance",
"Course": "Finance 101",
"Chapter": 1,
"Chapter_Name": "Intro",
"Topic": "Management organization and roles",
"Type": "SA",
"Difficulty": "Easy",
"QTYPE": "MCQ",
"Question": "Which one of the following functions should be the responsibility of the controller rather than the treasurer?",
"Correct": "Processing cost reports",
"Alt_1": "Depositing cash receipts",
"Alt_2": "Analyzing equipment purchases",
"Alt_3": "Approving credit for a customer",
"Alt_4": "Paying a vendor",
"Units": "",
"Objective": "01-01 Define the basic types of financial management decisions and the role of the financial manager.",
"Blooms": "Understand",
"Accreditation": "AACSB",
"Taxonomy": "Reflective Thinking",
"Accessibility": "Keyboard Navigation",
"Table": "No",
"Equation": "No",
"Name": "No",
"Time": 2,
"Origin": "RB",
"Added": "5/29/2021 10:21"
},
{
"PKEY": 1,
"CHAP_KEY": 1,
"COURSE_KEY": 1,
"TOPIC_KEY": 2,
"Status": "Active",
"Language": "English",
"Area": "Business",
"Subject": "Finance",
"Course": "Finance 101",
"Chapter": 1,
"Chapter_Name": "Intro",
"Topic": "Management organization and roles",
"Type": "SA",
"Difficulty": "Easy",
"QTYPE": "MCQ",
"Question": "The treasurer of a corporation generally reports directly to the:",
"Correct": "vice president of finance.",
"Alt_1": "board of directors.",
"Alt_2": "chairman of the board.",
"Alt_3": "chief executive officer.",
"Alt_4": "president.",
"Units": "",
"Objective": "01-01 Define the basic types of financial management decisions and the role of the financial manager.",
"Blooms": "Remember",
"Accreditation": "AACSB",
"Taxonomy": "Reflective Thinking",
"Accessibility": "Keyboard Navigation",
"Table": "No",
"Equation": "No",
"Name": "No",
"Time": 2,
"Origin": "RB",
"Added": "5/29/2021 10:21"
},
{
"PKEY": 2,
"CHAP_KEY": 2,
"COURSE_KEY": 2,
"TOPIC_KEY": 3,
"Status": "Active",
"Language": "English",
"Area": "Business",
"Subject": "Finance",
"Course": "Finance 101",
"Chapter": 1,
"Chapter_Name": "Intro",
"Topic": "Management organization and roles",
"Type": "SA",
"Difficulty": "Easy",
"QTYPE": "MCQ",
"Question": "Which one of the following correctly defines the upward chain of command in a typical corporate organizational structure?",
"Correct": "The controller reports to the chief financial officer.",
"Alt_1": "The vice president of finance reports to the chairman of the board.",
"Alt_2": "The chief executive officer reports to the president.",
"Alt_3": "The treasurer reports to the president.",
"Alt_4": "The chief operations officer reports to the vice president of production.",
"Units": "",
"Objective": "01-01 Define the basic types of financial management decisions and the role of the financial manager.",
"Blooms": "Remember",
"Accreditation": "AACSB",
"Taxonomy": "Reflective Thinking",
"Accessibility": "Keyboard Navigation",
"Table": "No",
"Equation": "No",
"Name": "No",
"Time": 2,
"Origin": "RB",
"Added": "5/29/2021 10:21"
},
{
"PKEY": 3,
"CHAP_KEY": 3,
"COURSE_KEY": 3,
"TOPIC_KEY": 4,
"Status": "Active",
"Language": "English",
"Area": "Business",
"Subject": "Finance",
"Course": "Finance 101",
"Chapter": 1,
"Chapter_Name": "Intro",
"Topic": "Financial management decisions",
"Type": "SA",
"Difficulty": "Easy",
"QTYPE": "MCQ",
"Question": "An example of a capital budgeting decision is deciding:",
"Correct": "whether or not to purchase a new machine for the production line.",
"Alt_1": "how many shares of stock to issue.",
"Alt_2": "how to refinance a debt issue that is maturing.",
"Alt_3": "how much inventory to keep on hand.",
"Alt_4": "how much money should be kept in the checking account.",
"Units": "",
"Objective": "01-01 Define the basic types of financial management decisions and the role of the financial manager.",
"Blooms": "Understand",
"Accreditation": "AACSB",
"Taxonomy": "Reflective Thinking",
"Accessibility": "Keyboard Navigation",
"Table": "No",
"Equation": "No",
"Name": "No",
"Time": 2,
"Origin": "RB",
"Added": "5/29/2021 10:21"
},
{
"PKEY": 4,
"CHAP_KEY": 4,
"COURSE_KEY": 4,
"TOPIC_KEY": 5,
"Status": "Active",
"Language": "English",
"Area": "Business",
"Subject": "Finance",
"Course": "Finance 101",
"Chapter": 1,
"Chapter_Name": "Intro",
"Topic": "Financial management decisions",
"Type": "SA",
"Difficulty": "Easy",
"QTYPE": "MCQ",
"Question": "When evaluating the timing of a project's projected cash flows, a financial manager is analyzing:",
"Correct": "when each cash flow is expected to occur.",
"Alt_1": "the amount of each expected cash flow.",
"Alt_2": "only the start-up costs that are expected to require cash resources.",
"Alt_3": "only the date of the final cash flow related to the project.",
"Alt_4": "the amount by which cash receipts are expected to exceed cash outflows.",
"Units": "",
"Objective": "01-01 Define the basic types of financial management decisions and the role of the financial manager.",
"Blooms": "Understand",
"Accreditation": "AACSB",
"Taxonomy": "Reflective Thinking",
"Accessibility": "Keyboard Navigation",
"Table": "No",
"Equation": "No",
"Name": "No",
"Time": 2,
"Origin": "RB",
"Added": "5/29/2021 10:21"
},
{
"PKEY": 5,
"CHAP_KEY": 5,
"COURSE_KEY": 5,
"TOPIC_KEY": 6,
"Status": "Active",
"Language": "English",
"Area": "Business",
"Subject": "Finance",
"Course": "Finance 101",
"Chapter": 1,
"Chapter_Name": "Intro",
"Topic": "Financial management decisions",
"Type": "SA",
"Difficulty": "Easy",
"QTYPE": "MCQ",
"Question": "Capital structure decisions include determining:",
"Correct": "how much debt should be assumed to fund a project.",
"Alt_1": "which one of two projects to accept.",
"Alt_2": "how to allocate investment funds to multiple projects.",
"Alt_3": "the amount of funds needed to finance customer purchases of a new product.",
"Alt_4": "how much inventory will be needed to support a project.",
"Units": "",
"Objective": "01-01 Define the basic types of financial management decisions and the role of the financial manager.",
"Blooms": "Understand",
"Accreditation": "AACSB",
"Taxonomy": "Reflective Thinking",
"Accessibility": "Keyboard Navigation",
"Table": "No",
"Equation": "No",
"Name": "No",
"Time": 2,
"Origin": "RB",
"Added": "5/29/2021 10:21"
},
{
"PKEY": 6,
"CHAP_KEY": 6,
"COURSE_KEY": 6,
"TOPIC_KEY": 7,
"Status": "Active",
"Language": "English",
"Area": "Business",
"Subject": "Finance",
"Course": "Finance 101",
"Chapter": 1,
"Chapter_Name": "Intro",
"Topic": "Financial management decisions",
"Type": "SA",
"Difficulty": "Easy",
"QTYPE": "MCQ",
"Question": "The decision to issue additional shares of stock is an example of:",
"Correct": "a capital structure decision.",
"Alt_1": "working capital management.",
"Alt_2": "a net working capital decision.",
"Alt_3": "capital budgeting.",
"Alt_4": "a controller's duties.",
"Units": "",
"Objective": "01-01 Define the basic types of financial management decisions and the role of the financial manager.",
"Blooms": "Understand",
"Accreditation": "AACSB",
"Taxonomy": "Reflective Thinking",
"Accessibility": "Keyboard Navigation",
"Table": "No",
"Equation": "No",
"Name": "No",
"Time": 2,
"Origin": "RB",
"Added": "5/29/2021 10:21"
},
{
"PKEY": 7,
"CHAP_KEY": 7,
"COURSE_KEY": 7,
"TOPIC_KEY": 8,
"Status": "Active",
"Language": "English",
"Area": "Business",
"Subject": "Finance",
"Course": "Finance 101",
"Chapter": 1,
"Chapter_Name": "Intro",
"Topic": "Financial management decisions",
"Type": "SA",
"Difficulty": "Easy",
"QTYPE": "MCQ",
"Question": "Which one of the following questions is a working capital management decision?",
"Correct": "How much inventory should be on hand for immediate sale?",
"Alt_1": "Should the company issue new shares of stock or borrow money?",
"Alt_2": "Should the company update or replace its older equipment?",
"Alt_3": "Should the company close one of its current stores?",
"Alt_4": "How much should the company borrow to buy a new building?",
"Units": "",
"Objective": "01-01 Define the basic types of financial management decisions and the role of the financial manager.",
"Blooms": "Understand",
"Accreditation": "AACSB",
"Taxonomy": "Reflective Thinking",
"Accessibility": "Keyboard Navigation",
"Table": "No",
"Equation": "No",
"Name": "No",
"Time": 2,
"Origin": "RB",
"Added": "5/29/2021 10:21"
},
{
"PKEY": 8,
"CHAP_KEY": 8,
"COURSE_KEY": 8,
"TOPIC_KEY": 9,
"Status": "Active",
"Language": "English",
"Area": "Business",
"Subject": "Finance",
"Course": "Finance 101",
"Chapter": 1,
"Chapter_Name": "Intro",
"Topic": "Financial management decisions",
"Type": "SA",
"Difficulty": "Easy",
"QTYPE": "MCQ",
"Question": "Which one of the following is a working capital management decision?",
"Correct": "Should the firm pay cash for a purchase or use the credit offered by the supplier?",
"Alt_1": "What type(s) of equipment is (are) needed to complete a current project?",
"Alt_2": "What amount of long-term debt is required to complete a project?",
"Alt_3": "How many shares of stock should the firm issue to fund an acquisition?",
"Alt_4": "Should a project should be accepted?",
"Units": "",
"Objective": "01-01 Define the basic types of financial management decisions and the role of the financial manager.",
"Blooms": "Understand",
"Accreditation": "AACSB",
"Taxonomy": "Reflective Thinking",
"Accessibility": "Keyboard Navigation",
"Table": "No",
"Equation": "No",
"Name": "No",
"Time": 2,
"Origin": "RB",
"Added": "5/29/2021 10:21"
},
{
"PKEY": 9,
"CHAP_KEY": 9,
"COURSE_KEY": 9,
"TOPIC_KEY": 10,
"Status": "Active",
"Language": "English",
"Area": "Business",
"Subject": "Finance",
"Course": "Finance 101",
"Chapter": 1,
"Chapter_Name": "Intro",
"Topic": "Financial management decisions",
"Type": "SA",
"Difficulty": "Easy",
"QTYPE": "MCQ",
"Question": "Working capital management decisions include determining:",
"Correct": "the minimum level of cash to be kept in a checking account.",
"Alt_1": "the best method of producing a product.",
"Alt_2": "the number of employees needed to work during a particular shift.",
"Alt_3": "when to replace obsolete equipment.",
"Alt_4": "if a competitor should be acquired.",
"Units": "",
"Objective": "01-01 Define the basic types of financial management decisions and the role of the financial manager.",
"Blooms": "Understand",
"Accreditation": "AACSB",
"Taxonomy": "Reflective Thinking",
"Accessibility": "Keyboard Navigation",
"Table": "No",
"Equation": "No",
"Name": "No",
"Time": 2,
"Origin": "RB",
"Added": "5/29/2021 10:21"
},
{
"PKEY": 10,
"CHAP_KEY": 10,
"COURSE_KEY": 10,
"TOPIC_KEY": 11,
"Status": "Active",
"Language": "English",
"Area": "Business",
"Subject": "Finance",
"Course": "Finance 101",
"Chapter": 1,
"Chapter_Name": "Intro",
"Topic": "Financial management decisions",
"Type": "SA",
"Difficulty": "Easy",
"QTYPE": "MCQ",
"Question": "Which one of the following terms is defined as the management of a firm's long-term investments?",
"Correct": "Capital budgeting",
"Alt_1": "Working capital management",
"Alt_2": "Financial allocation",
"Alt_3": "Agency cost analysis",
"Alt_4": "Capital structure",
"Units": "",
"Objective": "01-01 Define the basic types of financial management decisions and the role of the financial manager.",
"Blooms": "Understand",
"Accreditation": "AACSB",
"Taxonomy": "Reflective Thinking",
"Accessibility": "Keyboard Navigation",
"Table": "No",
"Equation": "No",
"Name": "No",
"Time": 2,
"Origin": "RB",
"Added": "5/29/2021 10:21"
},
{
"PKEY": 11,
"CHAP_KEY": 11,
"COURSE_KEY": 11,
"TOPIC_KEY": 12,
"Status": "Active",
"Language": "English",
"Area": "Business",
"Subject": "Finance",
"Course": "Finance 101",
"Chapter": 1,
"Chapter_Name": "Intro",
"Topic": "Financial management decisions",
"Type": "SA",
"Difficulty": "Easy",
"QTYPE": "MCQ",
"Question": "Which one of the following terms is defined as the mixture of a firm's debt and equity financing?",
"Correct": "Capital structure",
"Alt_1": "Working capital management",
"Alt_2": "Cash management",
"Alt_3": "Cost analysis",
"Alt_4": "Capital budgeting",
"Units": "",
"Objective": "01-01 Define the basic types of financial management decisions and the role of the financial manager.",
"Blooms": "Understand",
"Accreditation": "AACSB",
"Taxonomy": "Reflective Thinking",
"Accessibility": "Keyboard Navigation",
"Table": "No",
"Equation": "No",
"Name": "No",
"Time": 2,
"Origin": "RB",
"Added": "5/29/2021 10:21"
},
{
"PKEY": 12,
"CHAP_KEY": 12,
"COURSE_KEY": 12,
"TOPIC_KEY": 13,
"Status": "Active",
"Language": "English",
"Area": "Business",
"Subject": "Finance",
"Course": "Finance 101",
"Chapter": 1,
"Chapter_Name": "Intro",
"Topic": "Financial management decisions",
"Type": "SA",
"Difficulty": "Easy",
"QTYPE": "MCQ",
"Question": "A firm's short-term assets and its short-term liabilities are referred to as the firm's:",
"Correct": "working capital.",
"Alt_1": "debt.",
"Alt_2": "investment capital.",
"Alt_3": "net capital.",
"Alt_4": "capital structure.",
"Units": "",
"Objective": "01-01 Define the basic types of financial management decisions and the role of the financial manager.",
"Blooms": "Remember",
"Accreditation": "AACSB",
"Taxonomy": "Reflective Thinking",
"Accessibility": "Keyboard Navigation",
"Table": "No",
"Equation": "No",
"Name": "No",
"Time": 2,
"Origin": "RB",
"Added": "5/29/2021 10:21"
},
{
"PKEY": 13,
"CHAP_KEY": 13,
"COURSE_KEY": 13,
"TOPIC_KEY": 14,
"Status": "Active",
"Language": "English",
"Area": "Business",
"Subject": "Finance",
"Course": "Finance 101",
"Chapter": 1,
"Chapter_Name": "Intro",
"Topic": "Financial management decisions",
"Type": "SA",
"Difficulty": "Easy",
"QTYPE": "MCQ",
"Question": "Which one of the following questions is least likely to be addressed by financial managers?",
"Correct": "How should a product be marketed?",
"Alt_1": "Should customers be given 30 or 45 days to pay for their credit purchases?",
"Alt_2": "Should the firm borrow more money?",
"Alt_3": "Should the firm acquire new equipment?",
"Alt_4": "How much cash should the firm keep on hand?",
"Units": "",
"Objective": "01-01 Define the basic types of financial management decisions and the role of the financial manager.",
"Blooms": "Understand",
"Accreditation": "AACSB",
"Taxonomy": "Reflective Thinking",
"Accessibility": "Keyboard Navigation",
"Table": "No",
"Equation": "No",
"Name": "No",
"Time": 2,
"Origin": "RB",
"Added": "5/29/2021 10:21"
},
{
"PKEY": 14,
"CHAP_KEY": 14,
"COURSE_KEY": 14,
"TOPIC_KEY": 15,
"Status": "Active",
"Language": "English",
"Area": "Business",
"Subject": "Finance",
"Course": "Finance 101",
"Chapter": 1,
"Chapter_Name": "Intro",
"Topic": "Forms of business organization",
"Type": "SA",
"Difficulty": "Easy",
"QTYPE": "MCQ",
"Question": "A business owned by a solitary individual who has unlimited liability for the firm's debt is called a:",
"Correct": "sole proprietorship.",
"Alt_1": "corporation.",
"Alt_2": "general partnership.",
"Alt_3": "limited partnership.",
"Alt_4": "limited liability company.",
"Units": "",
"Objective": "01-03 Articulate the financial implications of the different forms of business organization.",
"Blooms": "Understand",
"Accreditation": "AACSB",
"Taxonomy": "Reflective Thinking",
"Accessibility": "Keyboard Navigation",
"Table": "No",
"Equation": "No",
"Name": "No",
"Time": 2,
"Origin": "RB",
"Added": "5/29/2021 10:21"
},
{
"PKEY": 15,
"CHAP_KEY": 15,
"COURSE_KEY": 15,
"TOPIC_KEY": 16,
"Status": "Active",
"Language": "English",
"Area": "Business",
"Subject": "Finance",
"Course": "Finance 101",
"Chapter": 1,
"Chapter_Name": "Intro",
"Topic": "Forms of business organization",
"Type": "SA",
"Difficulty": "Easy",
"QTYPE": "MCQ",
"Question": "A business formed by two or more individuals who each have unlimited liability for all of the firm's business debts is called a:",
"Correct": "general partnership.",
"Alt_1": "corporation.",
"Alt_2": "sole proprietorship.",
"Alt_3": "limited partnership.",
"Alt_4": "limited liability company.",
"Units": "",
"Objective": "01-03 Articulate the financial implications of the different forms of business organization.",
"Blooms": "Understand",
"Accreditation": "AACSB",
"Taxonomy": "Reflective Thinking",
"Accessibility": "Keyboard Navigation",
"Table": "No",
"Equation": "No",
"Name": "No",
"Time": 2,
"Origin": "RB",
"Added": "5/29/2021 10:21"
},
{
"PKEY": 16,
"CHAP_KEY": 16,
"COURSE_KEY": 16,
"TOPIC_KEY": 17,
"Status": "Active",
"Language": "English",
"Area": "Business",
"Subject": "Finance",
"Course": "Finance 101",
"Chapter": 1,
"Chapter_Name": "Intro",
"Topic": "Forms of business organization",
"Type": "SA",
"Difficulty": "Easy",
"QTYPE": "MCQ",
"Question": "A business partner whose potential financial loss in the partnership will not exceed his or her investment in that partnership is called a:",
"Correct": "limited partner.",
"Alt_1": "general partner.",
"Alt_2": "sole proprietor.",
"Alt_3": "corporate shareholder.",
"Alt_4": "zero partner.",
"Units": "",
"Objective": "01-03 Articulate the financial implications of the different forms of business organization.",
"Blooms": "Understand",
"Accreditation": "AACSB",
"Taxonomy": "Reflective Thinking",
"Accessibility": "Keyboard Navigation",
"Table": "No",
"Equation": "No",
"Name": "No",
"Time": 2,
"Origin": "RB",
"Added": "5/29/2021 10:21"
},
{
"PKEY": 17,
"CHAP_KEY": 17,
"COURSE_KEY": 17,
"TOPIC_KEY": 18,
"Status": "Active",
"Language": "English",
"Area": "Business",
"Subject": "Finance",
"Course": "Finance 101",
"Chapter": 1,
"Chapter_Name": "Intro",
"Topic": "Forms of business organization",
"Type": "SA",
"Difficulty": "Easy",
"QTYPE": "MCQ",
"Question": "A business created as a distinct legal entity and treated as a legal \"person\" is called a(n):",
"Correct": "corporation.",
"Alt_1": "sole proprietorship.",
"Alt_2": "general partnership.",
"Alt_3": "limited partnership.",
"Alt_4": "unlimited liability company.",
"Units": "",
"Objective": "01-03 Articulate the financial implications of the different forms of business organization.",
"Blooms": "Understand",
"Accreditation": "AACSB",
"Taxonomy": "Reflective Thinking",
"Accessibility": "Keyboard Navigation",
"Table": "No",
"Equation": "No",
"Name": "No",
"Time": 2,
"Origin": "RB",
"Added": "5/29/2021 10:21"
},
{
"PKEY": 18,
"CHAP_KEY": 18,
"COURSE_KEY": 18,
"TOPIC_KEY": 19,
"Status": "Active",
"Language": "English",
"Area": "Business",
"Subject": "Finance",
"Course": "Finance 101",
"Chapter": 1,
"Chapter_Name": "Intro",
"Topic": "Forms of business organization",
"Type": "SA",
"Difficulty": "Easy",
"QTYPE": "MCQ",
"Question": "Which one of the following statements concerning a sole proprietorship is correct?",
"Correct": "The owner of a sole proprietorship is personally responsible for all of the company's debts.",
"Alt_1": "A sole proprietorship is designed to protect the personal assets of the owner.",
"Alt_2": "The profits of a sole proprietorship are subject to double taxation.",
"Alt_3": "There are very few sole proprietorships remaining in the U.S. today.",
"Alt_4": "A sole proprietorship is structured the same as a limited liability company.",
"Units": "",
"Objective": "01-03 Articulate the financial implications of the different forms of business organization.",
"Blooms": "Understand",
"Accreditation": "AACSB",
"Taxonomy": "Reflective Thinking",
"Accessibility": "Keyboard Navigation",
"Table": "No",
"Equation": "No",
"Name": "No",
"Time": 2,
"Origin": "RB",
"Added": "5/29/2021 10:21"
},
{
"PKEY": 19,
"CHAP_KEY": 19,
"COURSE_KEY": 19,
"TOPIC_KEY": 20,
"Status": "Active",
"Language": "English",
"Area": "Business",
"Subject": "Finance",
"Course": "Finance 101",
"Chapter": 1,
"Chapter_Name": "Intro",
"Topic": "Forms of business organization",
"Type": "SA",
"Difficulty": "Easy",
"QTYPE": "MCQ",
"Question": "Which one of the following statements concerning a sole proprietorship is correct?",
"Correct": "The life of a sole proprietorship is limited.",
"Alt_1": "A sole proprietor can generally raise large sums of capital quite easily.",
"Alt_2": "Transferring ownership of a sole proprietorship is easier than transferring ownership of a corporation.",
"Alt_3": "A sole proprietorship is taxed the same as a C corporation.",
"Alt_4": "A sole proprietorship is the most regulated form of organization.",
"Units": "",
"Objective": "01-03 Articulate the financial implications of the different forms of business organization.",
"Blooms": "Understand",
"Accreditation": "AACSB",
"Taxonomy": "Reflective Thinking",
"Accessibility": "Keyboard Navigation",
"Table": "No",
"Equation": "No",
"Name": "No",
"Time": 2,
"Origin": "RB",
"Added": "5/29/2021 10:21"
},
{
"PKEY": 20,
"CHAP_KEY": 20,
"COURSE_KEY": 20,
"TOPIC_KEY": 21,
"Status": "Active",
"Language": "English",
"Area": "Business",
"Subject": "Finance",
"Course": "Finance 101",
"Chapter": 1,
"Chapter_Name": "Intro",
"Topic": "Forms of business organization",
"Type": "SA",
"Difficulty": "Easy",
"QTYPE": "MCQ",
"Question": "Which of the following individuals have unlimited liability for a firm's debts based on their ownership interest?",
"Correct": "Both general partners and sole proprietors",
"Alt_1": "Only general partners",
"Alt_2": "Only sole proprietors",
"Alt_3": "All stockholders",
"Alt_4": "Both limited and general partners",
"Units": "",
"Objective": "01-03 Articulate the financial implications of the different forms of business organization.",
"Blooms": "Understand",
"Accreditation": "AACSB",
"Taxonomy": "Reflective Thinking",
"Accessibility": "Keyboard Navigation",
"Table": "No",
"Equation": "No",
"Name": "No",
"Time": 2,
"Origin": "RB",
"Added": "5/29/2021 10:21"
},
{
"PKEY": 21,
"CHAP_KEY": 21,
"COURSE_KEY": 21,
"TOPIC_KEY": 22,
"Status": "Active",
"Language": "English",
"Area": "Business",
"Subject": "Finance",
"Course": "Finance 101",
"Chapter": 1,
"Chapter_Name": "Intro",
"Topic": "Forms of business organization",
"Type": "SA",
"Difficulty": "Easy",
"QTYPE": "MCQ",
"Question": "The primary advantage of being a limited partner is:",
"Correct": "the partner's maximum loss is limited to their capital investment.",
"Alt_1": "the receipt of tax-free income.",
"Alt_2": "the partner's active participation in the firm's activities.",
"Alt_3": "the lack of any potential financial loss.",
"Alt_4": "the daily control over the business affairs of the partnership.",
"Units": "",
"Objective": "01-03 Articulate the financial implications of the different forms of business organization.",
"Blooms": "Understand",
"Accreditation": "AACSB",
"Taxonomy": "Reflective Thinking",
"Accessibility": "Keyboard Navigation",
"Table": "No",
"Equation": "No",
"Name": "No",
"Time": 2,
"Origin": "RB",
"Added": "5/29/2021 10:21"
},
{
"PKEY": 22,
"CHAP_KEY": 22,
"COURSE_KEY": 22,
"TOPIC_KEY": 23,
"Status": "Active",
"Language": "English",
"Area": "Business",
"Subject": "Finance",
"Course": "Finance 101",
"Chapter": 1,
"Chapter_Name": "Intro",
"Topic": "Forms of business organization",
"Type": "SA",
"Difficulty": "Easy",
"QTYPE": "MCQ",
"Question": "A general partner:",
"Correct": "is personally responsible for all partnership debts.",
"Alt_1": "has no say over a firm's daily operations.",
"Alt_2": "faces double taxation whereas a limited partner does not.",
"Alt_3": "has a maximum loss equal to his or her equity investment.",
"Alt_4": "receives a salary in lieu of a portion of the profits.",
"Units": "",
"Objective": "01-03 Articulate the financial implications of the different forms of business organization.",
"Blooms": "Understand",
"Accreditation": "AACSB",
"Taxonomy": "Reflective Thinking",
"Accessibility": "Keyboard Navigation",
"Table": "No",
"Equation": "No",
"Name": "No",
"Time": 2,
"Origin": "RB",
"Added": "5/29/2021 10:21"
},
{
"PKEY": 23,
"CHAP_KEY": 23,
"COURSE_KEY": 23,
"TOPIC_KEY": 24,
"Status": "Active",
"Language": "English",
"Area": "Business",
"Subject": "Finance",
"Course": "Finance 101",
"Chapter": 1,
"Chapter_Name": "Intro",
"Topic": "Forms of business organization",
"Type": "SA",
"Difficulty": "Easy",
"QTYPE": "MCQ",
"Question": "A limited partnership:",
"Correct": "has at least one partner who has unlimited liability for all of the partnership's debts.",
"Alt_1": "has an unlimited life.",
"Alt_2": "can opt to be taxed as a corporation.",
"Alt_3": "terminates at the death of any one limited partner.",
"Alt_4": "consists solely of limited partners.",
"Units": "",
"Objective": "01-03 Articulate the financial implications of the different forms of business organization.",
"Blooms": "Understand",
"Accreditation": "AACSB",
"Taxonomy": "Reflective Thinking",
"Accessibility": "Keyboard Navigation",
"Table": "No",
"Equation": "No",
"Name": "No",
"Time": 2,
"Origin": "RB",
"Added": "5/29/2021 10:21"
},
{
"PKEY": 24,
"CHAP_KEY": 24,
"COURSE_KEY": 24,
"TOPIC_KEY": 25,
"Status": "Active",
"Language": "English",
"Area": "Business",
"Subject": "Finance",
"Course": "Finance 101",
"Chapter": 1,
"Chapter_Name": "Intro",
"Topic": "Forms of business organization",
"Type": "SA",
"Difficulty": "Easy",
"QTYPE": "MCQ",
"Question": "A partnership with four general partners:",
"Correct": "must distribute 25 percent of the profits to each partner.",
"Alt_1": "distributes profits based on percentage of ownership.",
"Alt_2": "has an unlimited partnership life.",
"Alt_3": "limits the active involvement in the firm to a single partner.",
"Alt_4": "limits each partner's personal liability to 25 percent of the partnership's total debt.",
"Units": "",
"Objective": "01-03 Articulate the financial implications of the different forms of business organization.",
"Blooms": "Understand",
"Accreditation": "AACSB",
"Taxonomy": "Reflective Thinking",
"Accessibility": "Keyboard Navigation",
"Table": "No",
"Equation": "No",
"Name": "No",
"Time": 2,
"Origin": "RB",
"Added": "5/29/2021 10:21"
},
{
"PKEY": 25,
"CHAP_KEY": 25,
"COURSE_KEY": 25,
"TOPIC_KEY": 26,
"Status": "Active",
"Language": "English",
"Area": "Business",
"Subject": "Finance",
"Course": "Finance 101",
"Chapter": 1,
"Chapter_Name": "Intro",
"Topic": "Forms of business organization",
"Type": "SA",
"Difficulty": "Easy",
"QTYPE": "MCQ",
"Question": "One disadvantage of the corporate form of business ownership is the:",
"Correct": "double taxation of distributed profits.",
"Alt_1": "limited liability of its shareholders for the firm's debts.",
"Alt_2": "firm's greater ability to raise capital than other forms of ownership.",
"Alt_3": "firm's potential for an unlimited life.",
"Alt_4": "firm's ability to issue additional shares of stock.",
"Units": "",
"Objective": "01-03 Articulate the financial implications of the different forms of business organization.",
"Blooms": "Understand",
"Accreditation": "AACSB",
"Taxonomy": "Reflective Thinking",
"Accessibility": "Keyboard Navigation",
"Table": "No",
"Equation": "No",
"Name": "No",
"Time": 2,
"Origin": "RB",
"Added": "5/29/2021 10:21"
},
{
"PKEY": 26,
"CHAP_KEY": 26,
"COURSE_KEY": 26,
"TOPIC_KEY": 27,
"Status": "Active",
"Language": "English",
"Area": "Business",
"Subject": "Finance",
"Course": "Finance 101",
"Chapter": 1,
"Chapter_Name": "Intro",
"Topic": "Forms of business organization",
"Type": "SA",
"Difficulty": "Easy",
"QTYPE": "MCQ",
"Question": "Which one of the following statements is correct?",
"Correct": "Corporations can have an unlimited life.",
"Alt_1": "The majority of firms in the U.S. are structured as corporations.",
"Alt_2": "Corporate profits are taxable income to the shareholders when earned.",
"Alt_3": "Shareholders are protected from all potential losses.",
"Alt_4": "Shareholders directly elect the corporate president.",
"Units": "",
"Objective": "01-03 Articulate the financial implications of the different forms of business organization.",
"Blooms": "Understand",
"Accreditation": "AACSB",
"Taxonomy": "Reflective Thinking",
"Accessibility": "Keyboard Navigation",
"Table": "No",
"Equation": "No",
"Name": "No",
"Time": 2,
"Origin": "RB",
"Added": "5/29/2021 10:21"
},
{
"PKEY": 27,
"CHAP_KEY": 27,
"COURSE_KEY": 27,
"TOPIC_KEY": 28,
"Status": "Active",
"Language": "English",
"Area": "Business",
"Subject": "Finance",
"Course": "Finance 101",
"Chapter": 1,
"Chapter_Name": "Intro",
"Topic": "Forms of business organization",
"Type": "SA",
"Difficulty": "Easy",
"QTYPE": "MCQ",
"Question": "Which one of the following statements is correct?",
"Correct": "Income from both sole proprietorships and partnerships that is taxable is treated as individual income.",
"Alt_1": "A general partnership is legally the same as a corporation.",
"Alt_2": "Partnerships are the most complicated type of business to form.",
"Alt_3": "All business organizations have bylaws.",
"Alt_4": "Only firms organized as sole proprietorships have limited lives.",
"Units": "",
"Objective": "01-03 Articulate the financial implications of the different forms of business organization.",
"Blooms": "Understand",
"Accreditation": "AACSB",
"Taxonomy": "Reflective Thinking",
"Accessibility": "Keyboard Navigation",
"Table": "No",
"Equation": "No",
"Name": "No",
"Time": 2,
"Origin": "RB",
"Added": "5/29/2021 10:21"
},
{
"PKEY": 28,
"CHAP_KEY": 28,
"COURSE_KEY": 28,
"TOPIC_KEY": 29,
"Status": "Active",
"Language": "English",
"Area": "Business",
"Subject": "Finance",
"Course": "Finance 101",
"Chapter": 1,
"Chapter_Name": "Intro",
"Topic": "Forms of business organization",
"Type": "SA",
"Difficulty": "Easy",
"QTYPE": "MCQ",
"Question": "The articles of incorporation:",
"Correct": "describe the purpose of the firm and set forth the number of shares of stock that can be issued.",
"Alt_1": "are amended periodically especially prior to corporate elections.",