-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmock.js
More file actions
1969 lines (1969 loc) · 71.4 KB
/
Copy pathmock.js
File metadata and controls
1969 lines (1969 loc) · 71.4 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
var json={
"code": 200,
"msg": "success",
"result": {
"test_info": {
"test_id": 116634,
"test_type_id": 1,
"subject_id": 5618,
"test_text": "2018年度会计初级职称考试《经济法基础》押题试卷(1)",
"timer": "90",
"start_date": "0001-01-01T00:00:00Z",
"end_date": "0001-01-01T00:00:00Z"
},
"parts": [
{
"part_info": {
"name": "单选题",
"part_id": 441931
},
"questions": [
{
"question_id": 379459,
"questiontype_id": 1,
"question_text": "甲、乙因某不动产发生纠纷,甲欲通过诉讼方式解决。其选择诉讼管辖法院的下列表述中,符合法律规定的是( )",
"is_big_question": false,
"big_questions": null,
"answers": [
{
"answer_id": 2406526,
"answer_text": "甲只能向甲住所地法院提起诉讼",
"is_true_answer": false,
"combine_id": 1
},
{
"answer_id": 2406527,
"answer_text": "甲只能向乙住所地法院提起诉讼",
"is_true_answer": false,
"combine_id": 1
},
{
"answer_id": 2406528,
"answer_text": "甲只能向该不动产所在地法院提起诉讼",
"is_true_answer": true,
"combine_id": 1
},
{
"answer_id": 2406529,
"answer_text": "甲可以选择向乙住所地或该不动产所在地法院提起诉讼 ",
"is_true_answer": false,
"combine_id": 1
}
]
},
{
"question_id": 321985,
"questiontype_id": 1,
"question_text": "授意指示强令会计机构隐匿故意销毁应当依法保存的会计资料,对直接责任人员应予( )罚款。",
"is_big_question": false,
"big_questions": null,
"answers": [
{
"answer_id": 2090203,
"answer_text": "2000-20000",
"is_true_answer": false,
"combine_id": 1
},
{
"answer_id": 2090204,
"answer_text": "3000-50000",
"is_true_answer": false,
"combine_id": 1
},
{
"answer_id": 2090205,
"answer_text": "5000-50000",
"is_true_answer": true,
"combine_id": 1
},
{
"answer_id": 2090206,
"answer_text": "2000-50000",
"is_true_answer": false,
"combine_id": 1
}
]
},
{
"question_id": 379584,
"questiontype_id": 1,
"question_text": "甲卷烟厂为增值税一般纳税人,受托加工一批烟丝,委托方提供的烟叶成本49 140元,甲卷烟厂收取含增值税加工费2 457元。已知增值税税率为17%,消费税税率为30%,无同类烟丝销售价格,计算甲卷烟厂该笔业务应代收代缴消费税税额的下列算式中,正确的是( )",
"is_big_question": false,
"big_questions": null,
"answers": [
{
"answer_id": 2407080,
"answer_text": "[49 140+2 457÷(1+17%)]÷(1-30%)×30%=21 960(元)",
"is_true_answer": true,
"combine_id": 1
},
{
"answer_id": 2407081,
"answer_text": "(49 140+2 457)÷(1-30%)×30%=22 113(元)",
"is_true_answer": false,
"combine_id": 1
},
{
"answer_id": 2407082,
"answer_text": "49 140÷(1-30%)×30%=21 060(元)",
"is_true_answer": false,
"combine_id": 1
},
{
"answer_id": 2407083,
"answer_text": "[(49 140+2 457)÷(1+17%)]÷(1-30%)×30%=18 900(元) ",
"is_true_answer": false,
"combine_id": 1
}
]
},
{
"question_id": 379460,
"questiontype_id": 1,
"question_text": "根据民事诉讼法律制度的规定,当事人不服人民法院第一审判决的,有权在判决书送达之日起一定期间内向上一级人民法院提起上诉。该期间是( )",
"is_big_question": false,
"big_questions": null,
"answers": [
{
"answer_id": 2406530,
"answer_text": "5日",
"is_true_answer": false,
"combine_id": 1
},
{
"answer_id": 2406531,
"answer_text": "10日",
"is_true_answer": false,
"combine_id": 1
},
{
"answer_id": 2406532,
"answer_text": "15日",
"is_true_answer": true,
"combine_id": 1
},
{
"answer_id": 2406533,
"answer_text": "30日 ",
"is_true_answer": false,
"combine_id": 1
}
]
},
{
"question_id": 322406,
"questiontype_id": 1,
"question_text": "单位负责人对依法履行职责、抵制违反会计法规定行为的会计人员以降级、撤职、调离工作岗位、解聘或者开除等方式实行打击报复。构成犯罪的,依法追究刑事责任;尚未构成犯罪的,由其所在单位或者有关单位的处理是( )",
"is_big_question": false,
"big_questions": null,
"answers": [
{
"answer_id": 2103069,
"answer_text": "依法追究民事责任",
"is_true_answer": false,
"combine_id": 1
},
{
"answer_id": 2103070,
"answer_text": "依法给予行政处分",
"is_true_answer": true,
"combine_id": 1
},
{
"answer_id": 2103071,
"answer_text": "依法给予行政处罚",
"is_true_answer": false,
"combine_id": 1
},
{
"answer_id": 2103072,
"answer_text": "依法追究刑事责任",
"is_true_answer": false,
"combine_id": 1
}
]
},
{
"question_id": 379516,
"questiontype_id": 1,
"question_text": "关于银行卡账户及交易管理要求的下列表述中,不正确的是( )",
"is_big_question": false,
"big_questions": null,
"answers": [
{
"answer_id": 2406752,
"answer_text": "单位人民币卡账户的资金一律从其基本存款账户转账存入",
"is_true_answer": false,
"combine_id": 1
},
{
"answer_id": 2406753,
"answer_text": "单位外币卡账户的资金应从其单位的外汇账户转账存入",
"is_true_answer": false,
"combine_id": 1
},
{
"answer_id": 2406754,
"answer_text": "单位人民币卡账户不得存取现金",
"is_true_answer": false,
"combine_id": 1
},
{
"answer_id": 2406755,
"answer_text": "单位人民币卡账户可以存入销货收入 ",
"is_true_answer": true,
"combine_id": 1
}
]
},
{
"question_id": 322405,
"questiontype_id": 1,
"question_text": "行政处罚是指行政机关或其他行政主体依法定职权和程序对违反行政法规尚未构成犯罪的行政管理相对人给予行政制裁的行为是( )",
"is_big_question": false,
"big_questions": null,
"answers": [
{
"answer_id": 2402675,
"answer_text": "抽象民事行为",
"is_true_answer": false,
"combine_id": 1
},
{
"answer_id": 2402676,
"answer_text": "抽象行政行为",
"is_true_answer": false,
"combine_id": 1
},
{
"answer_id": 2402677,
"answer_text": "具体民事行为",
"is_true_answer": false,
"combine_id": 1
},
{
"answer_id": 2402678,
"answer_text": "具体行政行为",
"is_true_answer": true,
"combine_id": 1
}
]
},
{
"question_id": 379582,
"questiontype_id": 1,
"question_text": "甲汽车厂将1辆生产成本5万元的自产小汽车用于抵偿债务,同型号小汽车不含增值税平均售价10万元/辆,不含增值税最高售价12万元/辆。已知小汽车消费税税率5%。甲汽车厂该笔业务应缴纳消费税税额的下列计算列式中,正确的是( )",
"is_big_question": false,
"big_questions": null,
"answers": [
{
"answer_id": 2407072,
"answer_text": "1×10×5%=0.5万元",
"is_true_answer": false,
"combine_id": 1
},
{
"answer_id": 2407073,
"answer_text": "1×12×5%=0.6万元",
"is_true_answer": true,
"combine_id": 1
},
{
"answer_id": 2407074,
"answer_text": "1×5×5%=0.25万元",
"is_true_answer": false,
"combine_id": 1
},
{
"answer_id": 2407075,
"answer_text": "1×5×(1+5%)×5%=0.26万元 ",
"is_true_answer": false,
"combine_id": 1
}
]
},
{
"question_id": 379623,
"questiontype_id": 1,
"question_text": "下列应按\"工资、薪金所得\"税目,征收个人所得税的是( )",
"is_big_question": false,
"big_questions": null,
"answers": [
{
"answer_id": 2407218,
"answer_text": "单位全勤奖",
"is_true_answer": true,
"combine_id": 1
},
{
"answer_id": 2407219,
"answer_text": "参加商场活动中奖",
"is_true_answer": false,
"combine_id": 1
},
{
"answer_id": 2407220,
"answer_text": "出租闲置房屋取得的所得",
"is_true_answer": false,
"combine_id": 1
},
{
"answer_id": 2407221,
"answer_text": "国债利息所得 ",
"is_true_answer": false,
"combine_id": 1
}
]
},
{
"question_id": 379518,
"questiontype_id": 1,
"question_text": "根据支付结算法律制度的规定,下列以汇兑方式结算的款项中,汇款人可以申请撤销的是( )",
"is_big_question": false,
"big_questions": null,
"answers": [
{
"answer_id": 2406760,
"answer_text": "汇出银行已经汇出的款项",
"is_true_answer": false,
"combine_id": 1
},
{
"answer_id": 2406761,
"answer_text": "汇入银行已经发出收账通知的款项",
"is_true_answer": false,
"combine_id": 1
},
{
"answer_id": 2406762,
"answer_text": "收款人拒绝接受的款项",
"is_true_answer": false,
"combine_id": 1
},
{
"answer_id": 2406763,
"answer_text": "汇出银行尚未汇出的款项 ",
"is_true_answer": true,
"combine_id": 1
}
]
},
{
"question_id": 379701,
"questiontype_id": 1,
"question_text": "根据资源税法律制度规定,下列各项中,属于资源税征税范围的是( )",
"is_big_question": false,
"big_questions": null,
"answers": [
{
"answer_id": 2411357,
"answer_text": "液体盐",
"is_true_answer": true,
"combine_id": 1
},
{
"answer_id": 2411358,
"answer_text": "煤矿生产的天然气",
"is_true_answer": false,
"combine_id": 1
},
{
"answer_id": 2411359,
"answer_text": "以已税原煤加工的洗煤",
"is_true_answer": false,
"combine_id": 1
},
{
"answer_id": 2411360,
"answer_text": "人造石油 ",
"is_true_answer": false,
"combine_id": 1
}
]
},
{
"question_id": 379624,
"questiontype_id": 1,
"question_text": "某外籍个人甲在中国境内无住所,于2009年2月至11月受聘在华工作。该期间甲每月取得中国境内企业支付的工资人民币28 000元;另以实报实销形式取得住房补贴人民币5 000元,已知外籍个人工资、薪金所得减去费用标准为4 800元/月:全月工资、薪金应纳税所得额超过9 000元至35 000元的部分,适用的个人所得税税率为25%,速算扣除数为1 005,甲在中国期间应缴纳的个人所得税总额的下列计算中,正确的是( )",
"is_big_question": false,
"big_questions": null,
"answers": [
{
"answer_id": 2407222,
"answer_text": "[(28 000-5 000-4 800)×25%-1 005]×10=35 450(元)",
"is_true_answer": false,
"combine_id": 1
},
{
"answer_id": 2407223,
"answer_text": "[(28 000-5 000)×25%-1 005]×10=47 450(元)",
"is_true_answer": false,
"combine_id": 1
},
{
"answer_id": 2407224,
"answer_text": "[(28 000-4 800)×25%-1 005]×10=47 950(元)",
"is_true_answer": true,
"combine_id": 1
},
{
"answer_id": 2407225,
"answer_text": "[(28 000+5 000-4 800)×25%-1 005]×10= 60 450(元) ",
"is_true_answer": false,
"combine_id": 1
}
]
},
{
"question_id": 379621,
"questiontype_id": 1,
"question_text": "根据个人所得税法律制度的规定,下列各项中,以每次收入全额为应纳税所得额计算个人所得税的是( )",
"is_big_question": false,
"big_questions": null,
"answers": [
{
"answer_id": 2411393,
"answer_text": "稿酬所得",
"is_true_answer": false,
"combine_id": 1
},
{
"answer_id": 2411394,
"answer_text": "劳务报酬所得",
"is_true_answer": false,
"combine_id": 1
},
{
"answer_id": 2411395,
"answer_text": "对企事业单位承包经营、承租经营所得",
"is_true_answer": false,
"combine_id": 1
},
{
"answer_id": 2411396,
"answer_text": "偶然所得 ",
"is_true_answer": true,
"combine_id": 1
}
]
},
{
"question_id": 379698,
"questiontype_id": 1,
"question_text": "下列各项中,经海关审查无误,可以免征关税的是( )",
"is_big_question": false,
"big_questions": null,
"answers": [
{
"answer_id": 2407502,
"answer_text": "关税税额为人民币200元的一票货物",
"is_true_answer": false,
"combine_id": 1
},
{
"answer_id": 2407503,
"answer_text": "广告品和货样",
"is_true_answer": false,
"combine_id": 1
},
{
"answer_id": 2407504,
"answer_text": "外国公司无偿赠送的物资",
"is_true_answer": false,
"combine_id": 1
},
{
"answer_id": 2407505,
"answer_text": "进出境运输工具装载的途中必需的燃料、物料和饮食用品 ",
"is_true_answer": true,
"combine_id": 1
}
]
},
{
"question_id": 379699,
"questiontype_id": 1,
"question_text": "2016年10月甲公司向税务机关实际缴纳增值税70000元、消费税50000元;向海关缴纳进口环节增值税40000元、消费税30000元。已知城市维护建设税适用税率为7%,计算甲公司当月应缴纳城市维护建设税税额的下列算式中,正确的是( )",
"is_big_question": false,
"big_questions": null,
"answers": [
{
"answer_id": 2407506,
"answer_text": "(70000+50000+40000+30000)×7%=13300(元)",
"is_true_answer": false,
"combine_id": 1
},
{
"answer_id": 2407507,
"answer_text": "(70000+40000)×7%=7700(元)",
"is_true_answer": false,
"combine_id": 1
},
{
"answer_id": 2407508,
"answer_text": "(50000+30000)×7%=5600(元)",
"is_true_answer": false,
"combine_id": 1
},
{
"answer_id": 2407509,
"answer_text": "(70000+50000)×7%=8400(元) ",
"is_true_answer": true,
"combine_id": 1
}
]
},
{
"question_id": 379722,
"questiontype_id": 1,
"question_text": "根据税收征收管理法律制度的规定,纳税人有骗税行为,由税务机关追缴其骗取的退税款,并处骗取税款一定倍数的罚款,该倍数为( )",
"is_big_question": false,
"big_questions": null,
"answers": [
{
"answer_id": 2407590,
"answer_text": "5倍以上10倍以下",
"is_true_answer": false,
"combine_id": 1
},
{
"answer_id": 2407591,
"answer_text": "1倍以上5倍以下",
"is_true_answer": true,
"combine_id": 1
},
{
"answer_id": 2407592,
"answer_text": "10倍",
"is_true_answer": false,
"combine_id": 1
},
{
"answer_id": 2407593,
"answer_text": "10倍以上15倍以下 ",
"is_true_answer": false,
"combine_id": 1
}
]
},
{
"question_id": 379750,
"questiontype_id": 1,
"question_text": "根据社会保险法律制度的规定,下列关于失业保险待遇的表述中,正确的是( )",
"is_big_question": false,
"big_questions": null,
"answers": [
{
"answer_id": 2407684,
"answer_text": "失业人员领取失业保险金期间不享受基本医疗保险待遇",
"is_true_answer": false,
"combine_id": 1
},
{
"answer_id": 2407685,
"answer_text": "失业人员领取失业保险金期间重新就业的,停止领取失业保险金并同时停止享受其他失业保险待遇",
"is_true_answer": true,
"combine_id": 1
},
{
"answer_id": 2407686,
"answer_text": "失业保险金的标准可以低于城市居民最低生活保障标准",
"is_true_answer": false,
"combine_id": 1
},
{
"answer_id": 2407687,
"answer_text": "失业前用人单位和本人已经累计缴纳失业保险费满6个月的,失业人员可以申请领取失业保险金 ",
"is_true_answer": false,
"combine_id": 1
}
]
},
{
"question_id": 379718,
"questiontype_id": 1,
"question_text": "根据税收征收管理法律制度的规定,税务机关做出的下列具体行政行为中,申请人不服,应当先向复议机关申请行政复议,对行政复议决定不服的,可以再向人民法院提起行政诉讼的是( )",
"is_big_question": false,
"big_questions": null,
"answers": [
{
"answer_id": 2411369,
"answer_text": "征收税款行为",
"is_true_answer": true,
"combine_id": 1
},
{
"answer_id": 2411370,
"answer_text": "税收保全行为",
"is_true_answer": false,
"combine_id": 1
},
{
"answer_id": 2411371,
"answer_text": "发票管理行为",
"is_true_answer": false,
"combine_id": 1
},
{
"answer_id": 2411372,
"answer_text": "行政处罚行为 ",
"is_true_answer": false,
"combine_id": 1
}
]
},
{
"question_id": 379747,
"questiontype_id": 1,
"question_text": "乙劳务派遣公司应甲公司要求,将张某派遣到甲公司工作。下列关于该劳务派遣用工的表述中,正确的是( )",
"is_big_question": false,
"big_questions": null,
"answers": [
{
"answer_id": 2412882,
"answer_text": "乙公司应向张某按月支付劳动报酬 ",
"is_true_answer": true,
"combine_id": 1
},
{
"answer_id": 2412883,
"answer_text": "甲公司可将张某再派遣到其他用人单位",
"is_true_answer": false,
"combine_id": 1
},
{
"answer_id": 2412884,
"answer_text": "乙公司可向张某收取劳务中介费",
"is_true_answer": false,
"combine_id": 1
},
{
"answer_id": 2412885,
"answer_text": "甲公司与张某之间存在劳动合同关系",
"is_true_answer": false,
"combine_id": 1
}
]
},
{
"question_id": 379748,
"questiontype_id": 1,
"question_text": "根据劳动争议调解仲裁法律制度的规定,劳动者与用人单位因确认劳动关系发生劳动争议的,应当自知道或应当知道其权利被侵害之日起一定期限内提出仲裁申请。该期限为( )",
"is_big_question": false,
"big_questions": null,
"answers": [
{
"answer_id": 2407676,
"answer_text": "3年",
"is_true_answer": false,
"combine_id": 1
},
{
"answer_id": 2407677,
"answer_text": "6个月",
"is_true_answer": false,
"combine_id": 1
},
{
"answer_id": 2407678,
"answer_text": "1年",
"is_true_answer": true,
"combine_id": 1
},
{
"answer_id": 2407679,
"answer_text": "2年 ",
"is_true_answer": false,
"combine_id": 1
}
]
},
{
"question_id": 336119,
"questiontype_id": 1,
"question_text": "根据行为的表现形式不同可以将法律行为分为( )",
"is_big_question": false,
"big_questions": null,
"answers": [
{
"answer_id": 2211072,
"answer_text": "合法行为与违法行为",
"is_true_answer": false,
"combine_id": 1
},
{
"answer_id": 2211073,
"answer_text": "积极行为与消极行为",
"is_true_answer": true,
"combine_id": 1
},
{
"answer_id": 2211074,
"answer_text": "单方行为与多方行为",
"is_true_answer": false,
"combine_id": 1
},
{
"answer_id": 2211075,
"answer_text": "要式行为与非要式行为",
"is_true_answer": false,
"combine_id": 1
}
]
},
{
"question_id": 338471,
"questiontype_id": 1,
"question_text": "根据城市维护建设税法律制度的规定,下列关于城市维护建设税表述中,不正确的是( )",
"is_big_question": false,
"big_questions": null,
"answers": [
{
"answer_id": 2224995,
"answer_text": "对出口产品退还增值税的,可同时退还已缴纳的城市维护建设税",
"is_true_answer": true,
"combine_id": 1
},
{
"answer_id": 2224996,
"answer_text": "海关对进口产品代征的增值税,不征收城市维护建设税",
"is_true_answer": false,
"combine_id": 1
},
{
"answer_id": 2224997,
"answer_text": "由受托方代扣代缴、代收代缴增值税、消费税的单位和个人,其代扣代缴、代收代缴的城市维护建设税按受托方所在地适用税率执行",
"is_true_answer": false,
"combine_id": 1
},
{
"answer_id": 2224998,
"answer_text": "纳税人因违反增值税、消费税的有关规定而加收的滞纳金和罚款,不作为城市维护建设税的计税依据",
"is_true_answer": false,
"combine_id": 1
}
]
},
{
"question_id": 336640,
"questiontype_id": 1,
"question_text": "电子商业汇票的付款期限,自出票日至到期日最长不得超过( )",
"is_big_question": false,
"big_questions": null,
"answers": [
{
"answer_id": 2213972,
"answer_text": "3个月",
"is_true_answer": false,
"combine_id": 1
},
{
"answer_id": 2213973,
"answer_text": "6个月",
"is_true_answer": false,
"combine_id": 1
},
{
"answer_id": 2213974,
"answer_text": "9个月",
"is_true_answer": false,
"combine_id": 1
},
{
"answer_id": 2213975,
"answer_text": "1年 ",
"is_true_answer": true,
"combine_id": 1
}
]
},
{
"question_id": 196469,
"questiontype_id": 1,
"question_text": "根据资源税法律制度的规定,下列各项中,属于资源税纳税人的是( )",
"is_big_question": false,
"big_questions": null,
"answers": [
{
"answer_id": 2140432,
"answer_text": "进口金属矿石的冶炼企业",
"is_true_answer": false,
"combine_id": 1
},
{
"answer_id": 2140433,
"answer_text": "销售精盐的商场",
"is_true_answer": false,
"combine_id": 1
},
{
"answer_id": 2140434,
"answer_text": "开采原煤的公司",
"is_true_answer": true,
"combine_id": 1
},
{
"answer_id": 2140435,
"answer_text": "销售石油制品的加油站",
"is_true_answer": false,
"combine_id": 1
}
]
}
]
},
{
"part_info": {
"name": "多选题",
"part_id": 441932
},
"questions": [
{
"question_id": 379561,
"questiontype_id": 2,
"question_text": "下列各项中,应征收消费税的有( )",
"is_big_question": false,
"big_questions": null,
"answers": [
{
"answer_id": 2406988,
"answer_text": "甲电池厂生产销售电池",
"is_true_answer": true,
"combine_id": 1
},
{
"answer_id": 2406989,
"answer_text": "丁百货公司零售钻石胸针",
"is_true_answer": true,
"combine_id": 1
},
{
"answer_id": 2406990,
"answer_text": "丙首饰厂生产销售玉手镯",
"is_true_answer": true,
"combine_id": 1
},
{
"answer_id": 2406991,
"answer_text": "乙超市零售啤酒 ",
"is_true_answer": false,
"combine_id": 1
}
]
},
{
"question_id": 379488,
"questiontype_id": 2,
"question_text": "根据行政复议法律制度的规定,下列各项关于行政复议的说法中正确的有( )",
"is_big_question": false,
"big_questions": null,
"answers": [
{
"answer_id": 2412054,
"answer_text": "行政复议决定书一经做出,即发生法律效力",
"is_true_answer": false,
"combine_id": 1
},
{
"answer_id": 2412055,
"answer_text": "申请人申请行政复议,可以书面申请,也可以口头申请",
"is_true_answer": true,
"combine_id": 1
},
{
"answer_id": 2412056,
"answer_text": "申请人在申请行政复议时可以同时申请赔偿",
"is_true_answer": true,
"combine_id": 1
},
{
"answer_id": 2412057,
"answer_text": "行政复议一般采用书面审查,对重大、复杂的案件,申请人提出要求或者行政复议机构认为必要时可以采取听证的方式审理 ",
"is_true_answer": true,
"combine_id": 1
}
]
},
{
"question_id": 379540,
"questiontype_id": 2,
"question_text": "根据支付结算法律制度的规定,下列资金中,可以转入个人人民币卡账户的有( )",
"is_big_question": false,
"big_questions": null,
"answers": [
{
"answer_id": 2406842,
"answer_text": "个人合法的劳务报酬",
"is_true_answer": true,
"combine_id": 1
},
{
"answer_id": 2406843,
"answer_text": "个人合法的投资回报",
"is_true_answer": true,
"combine_id": 1
},
{
"answer_id": 2406844,
"answer_text": "工资性款项",
"is_true_answer": true,
"combine_id": 1
},
{
"answer_id": 2406845,
"answer_text": "单位的款项 ",
"is_true_answer": false,
"combine_id": 1
}
]
},
{
"question_id": 379642,
"questiontype_id": 2,
"question_text": "下列关于个人所得税征收管理的表述,错误的有( )",
"is_big_question": false,
"big_questions": null,
"answers": [
{
"answer_id": 2407294,
"answer_text": "纳税人取得应纳税所得,应在次月7日内向主管税务机关申报纳税",
"is_true_answer": true,
"combine_id": 1
},
{
"answer_id": 2407295,
"answer_text": "年所得额在12万元以上的纳税人,在年度终了后15日内到主管税务机关办理纳税申报",
"is_true_answer": true,
"combine_id": 1
},
{
"answer_id": 2407296,
"answer_text": "纳税人从两处或两处以上取得工资、薪金的,应向其户籍所在地或经常居住地税务机关申报纳税",
"is_true_answer": true,
"combine_id": 1
},
{
"answer_id": 2407297,
"answer_text": "从境外取得所得的,应向其境内户籍所在地或经常居住地税务机关申报纳税 ",
"is_true_answer": false,
"combine_id": 1
}
]
},
{
"question_id": 379539,
"questiontype_id": 2,
"question_text": "2014年2月18日,甲公司签发一张转账支票交付乙公司,乙公司于2月20日将该支票背书转让给丙公司,丙公司于3月3日向甲公司开户银行P银行提示付款,P银行拒绝付款,关于丙公司行使票据权利的下列表述中,正确的有( )",
"is_big_question": false,
"big_questions": null,
"answers": [
{
"answer_id": 2406838,
"answer_text": "丙公司有权向乙公司行使追索权",
"is_true_answer": false,
"combine_id": 1
},
{
"answer_id": 2406839,
"answer_text": "丙公司有权向P银行行使追索权",
"is_true_answer": false,
"combine_id": 1
},
{
"answer_id": 2406840,
"answer_text": "P银行有权拒绝付款",
"is_true_answer": true,
"combine_id": 1
},
{
"answer_id": 2406841,
"answer_text": "丙公司有权向甲公司行使追索权 ",
"is_true_answer": true,
"combine_id": 1
}
]
},
{
"question_id": 379562,
"questiontype_id": 2,
"question_text": "下列各项中,采取从价计征消费税的有( )",
"is_big_question": false,
"big_questions": null,
"answers": [
{
"answer_id": 2406992,
"answer_text": "高档手表",
"is_true_answer": true,
"combine_id": 1
},
{
"answer_id": 2406993,