-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathlibFccT.js
3852 lines (3852 loc) · 146 KB
/
libFccT.js
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
export default quizPool = {
"idx": [
"T1A01",
"T1A02",
"T1A03",
"T1A04",
"T1A05",
"T1A06",
"T1A07",
"T1A08",
"T1A09",
"T1A10",
"T1A11",
"T1A12",
"T1A13",
"T1A14",
"T1B01",
"T1B02",
"T1B03",
"T1B04",
"T1B05",
"T1B06",
"T1B07",
"T1B08",
"T1B09",
"T1B10",
"T1B11",
"T1B12",
"T1B13",
"T1C01",
"T1C02",
"T1C03",
"T1C04",
"T1C05",
"T1C06",
"T1C07",
"T1C08",
"T1C09",
"T1C10",
"T1C11",
"T1C12",
"T1C13",
"T1C14",
"T1D01",
"T1D02",
"T1D03",
"T1D04",
"T1D05",
"T1D06",
"T1D07",
"T1D08",
"T1D09",
"T1D10",
"T1D11",
"T1D12",
"T1E01",
"T1E02",
"T1E03",
"T1E04",
"T1E05",
"T1E06",
"T1E07",
"T1E08",
"T1E09",
"T1E10",
"T1E11",
"T1E12",
"T1F01",
"T1F02",
"T1F03",
"T1F04",
"T1F05",
"T1F06",
"T1F07",
"T1F08",
"T1F09",
"T1F10",
"T1F11",
"T1F12",
"T1F13",
"T2A01",
"T2A02",
"T2A03",
"T2A04",
"T2A05",
"T2A06",
"T2A07",
"T2A08",
"T2A09",
"T2A10",
"T2A11",
"T2A12",
"T2B01",
"T2B02",
"T2B03",
"T2B04",
"T2B05",
"T2B06",
"T2B07",
"T2B08",
"T2B09",
"T2B10",
"T2B11",
"T2B12",
"T2B13",
"T2C01",
"T2C02",
"T2C03",
"T2C04",
"T2C05",
"T2C06",
"T2C07",
"T2C08",
"T2C09",
"T2C10",
"T2C11",
"T2C12",
"T3A01",
"T3A02",
"T3A03",
"T3A04",
"T3A05",
"T3A06",
"T3A07",
"T3A08",
"T3A09",
"T3A10",
"T3A11",
"T3B01",
"T3B02",
"T3B03",
"T3B04",
"T3B05",
"T3B06",
"T3B07",
"T3B08",
"T3B09",
"T3B10",
"T3B11",
"T3C01",
"T3C02",
"T3C03",
"T3C04",
"T3C05",
"T3C06",
"T3C07",
"T3C08",
"T3C09",
"T3C10",
"T3C11",
"T3C12",
"T4A01",
"T4A02",
"T4A03",
"T4A04",
"T4A05",
"T4A06",
"T4A07",
"T4A08",
"T4A09",
"T4A10",
"T4A11",
"T4A12",
"T4B01",
"T4B02",
"T4B03",
"T4B04",
"T4B05",
"T4B06",
"T4B07",
"T4B08",
"T4B09",
"T4B10",
"T4B11",
"T4B12",
"T5A01",
"T5A02",
"T5A03",
"T5A04",
"T5A05",
"T5A06",
"T5A07",
"T5A08",
"T5A09",
"T5A10",
"T5A11",
"T5A12",
"T5B01",
"T5B02",
"T5B03",
"T5B04",
"T5B05",
"T5B06",
"T5B07",
"T5B08",
"T5B09",
"T5B10",
"T5B11",
"T5B12",
"T5B13",
"T5C01",
"T5C02",
"T5C03",
"T5C04",
"T5C05",
"T5C06",
"T5C07",
"T5C08",
"T5C09",
"T5C10",
"T5C11",
"T5C12",
"T5C13",
"T5D01",
"T5D02",
"T5D03",
"T5D04",
"T5D05",
"T5D06",
"T5D07",
"T5D08",
"T5D09",
"T5D10",
"T5D11",
"T5D12",
"T6A01",
"T6A02",
"T6A03",
"T6A04",
"T6A05",
"T6A06",
"T6A07",
"T6A08",
"T6A09",
"T6A10",
"T6A11",
"T6B01",
"T6B02",
"T6B03",
"T6B04",
"T6B05",
"T6B06",
"T6B07",
"T6B08",
"T6B09",
"T6B10",
"T6B11",
"T6B12",
"T6C01",
"T6C02",
"T6C03",
"T6C04",
"T6C05",
"T6C06",
"T6C07",
"T6C08",
"T6C09",
"T6C10",
"T6C11",
"T6C12",
"T6C13",
"T6D01",
"T6D02",
"T6D03",
"T6D04",
"T6D05",
"T6D06",
"T6D07",
"T6D08",
"T6D09",
"T6D10",
"T6D11",
"T6D12",
"T7A01",
"T7A02",
"T7A03",
"T7A04",
"T7A05",
"T7A06",
"T7A07",
"T7A08",
"T7A09",
"T7A10",
"T7A11",
"T7B01",
"T7B02",
"T7B03",
"T7B04",
"T7B05",
"T7B06",
"T7B07",
"T7B08",
"T7B09",
"T7B10",
"T7B11",
"T7B12",
"T7C01",
"T7C02",
"T7C03",
"T7C04",
"T7C05",
"T7C06",
"T7C07",
"T7C08",
"T7C09",
"T7C10",
"T7C11",
"T7C12",
"T7C13",
"T7D01",
"T7D02",
"T7D03",
"T7D04",
"T7D05",
"T7D06",
"T7D07",
"T7D08",
"T7D09",
"T7D10",
"T7D11",
"T7D12",
"T8A01",
"T8A02",
"T8A03",
"T8A04",
"T8A05",
"T8A06",
"T8A07",
"T8A08",
"T8A09",
"T8A10",
"T8A11",
"T8B01",
"T8B02",
"T8B03",
"T8B04",
"T8B05",
"T8B06",
"T8B07",
"T8B08",
"T8B09",
"T8B10",
"T8B11",
"T8C01",
"T8C02",
"T8C03",
"T8C04",
"T8C05",
"T8C06",
"T8C07",
"T8C08",
"T8C09",
"T8C10",
"T8C11",
"T8C12",
"T8C13",
"T8D01",
"T8D02",
"T8D03",
"T8D04",
"T8D05",
"T8D06",
"T8D07",
"T8D08",
"T8D09",
"T8D10",
"T8D11",
"T9A01",
"T9A02",
"T9A03",
"T9A04",
"T9A05",
"T9A06",
"T9A07",
"T9A08",
"T9A09",
"T9A10",
"T9A11",
"T9A12",
"T9A13",
"T9A14",
"T9B01",
"T9B02",
"T9B03",
"T9B04",
"T9B05",
"T9B06",
"T9B07",
"T9B08",
"T9B09",
"T9B10",
"T9B11",
"T0A01",
"T0A02",
"T0A03",
"T0A04",
"T0A05",
"T0A06",
"T0A07",
"T0A08",
"T0A09",
"T0A10",
"T0A11",
"T0B01",
"T0B02",
"T0B03",
"T0B04",
"T0B05",
"T0B06",
"T0B07",
"T0B08",
"T0B09",
"T0B10",
"T0B11",
"T0B12",
"T0C01",
"T0C02",
"T0C03",
"T0C04",
"T0C05",
"T0C06",
"T0C07",
"T0C08",
"T0C09",
"T0C10",
"T0C11",
"T0C12",
"T0C13"
],
"lib": {
"T1A01": {
"id": "T1A01",
"q": "Which of the following is a purpose of the Amateur Radio Service as stated in the FCC rules and regulations?",
"a": "Advancing skills in the technical and communication phases of the radio art",
"b": "Providing communications for international non-profit organizations",
"c": "Providing personal radio communications for as many citizens as possible",
"d": "All of these choices are correct"
},
"T1A02": {
"id": "T1A02",
"q": "Which agency regulates and enforces the rules for the Amateur Radio Service in the United States?",
"a": "The FCC",
"b": "The ITU",
"c": "FEMA",
"d": "Homeland Security"
},
"T1A03": {
"id": "T1A03",
"q": "Which part of the FCC regulations contains the rules governing the Amateur Radio Service?",
"a": "Part 97",
"b": "Part 95",
"c": "Part 90",
"d": "Part 73"
},
"T1A04": {
"id": "T1A04",
"q": "Which of the following meets the FCC definition of harmful interference?",
"a": "That which seriously degrades, obstructs, or repeatedly interrupts a radio communication service operating in accordance with the Radio Regulations",
"b": "Unwanted radio transmissions that cause costly harm to radio station apparatus",
"c": "Radio transmissions that annoy users of a repeater",
"d": "Static from lightning storms"
},
"T1A05": {
"id": "T1A05",
"q": "Which of the following is a purpose of the Amateur Radio Service rules and regulations as defined by the FCC?",
"a": "Enhancing international goodwill",
"b": "Providing inexpensive communication for local emergency organizations",
"c": "Training of operators in military radio operating procedures",
"d": "All of these choices are correct"
},
"T1A06": {
"id": "T1A06",
"q": "Which of the following services are protected from interference by amateur signals under all circumstances?",
"a": "Radionavigation Service",
"b": "Broadcast Service",
"c": "Land Mobile Radio Service",
"d": "Citizens Radio Service"
},
"T1A07": {
"id": "T1A07",
"q": "What is the FCC Part 97 definition of telemetry?",
"a": "A one-way transmission of measurements at a distance from the measuring instrument",
"b": "A one-way transmission to initiate, modify or terminate functions of a device at a distance",
"c": "An information bulletin issued by the FCC",
"d": "An information bulletin from a VEC"
},
"T1A08": {
"id": "T1A08",
"q": "Which of the following entities recommends transmit/receive channels and other parameters for auxiliary and repeater stations?",
"a": "Frequency Coordinator",
"b": "Frequency Spectrum Manager",
"c": "FCC Regional Field Office",
"d": "International Telecommunications Union"
},
"T1A09": {
"id": "T1A09",
"q": "Who selects a Frequency Coordinator?",
"a": "Amateur operators in a local or regional area whose stations are eligible to be auxiliary or repeater stations",
"b": "The local chapter of the Office of National Council of Independent Frequency Coordinators",
"c": "The FCC Office of Spectrum Management and Coordination Policy",
"d": "FCC Regional Field Office"
},
"T1A10": {
"id": "T1A10",
"q": "What is the FCC Part 97 definition of an amateur station?",
"a": "A station in the Amateur Radio Service consisting of the apparatus necessary for carrying on radio communications",
"b": "A building where Amateur Radio receivers, transmitters, and RF power amplifiers are installed",
"c": "Any radio station operated by a non-professional",
"d": "Any radio station for hobby use"
},
"T1A11": {
"id": "T1A11",
"q": "When is willful interference to other amateur radio stations permitted?",
"a": "At no time",
"b": "Only if the station being interfered with is expressing extreme religious or political views",
"c": "Only during a contest",
"d": "At any time, amateurs are not protected from willful interference"
},
"T1A12": {
"id": "T1A12",
"q": "Which of the following is a permissible use of the Amateur Radio Service?",
"a": "Allowing a person to conduct radio experiments and to communicate with other licensed hams around the world",
"b": "Providing a way for amateur radio operators to earn additional income by using their stations to pass messages",
"c": "Providing low-cost communications for start-up businesses",
"d": "Broadcasting music and videos to friends"
},
"T1A13": {
"id": "T1A13",
"q": "What is the FCC Part 97 definition of telecommand?",
"a": "A one-way transmission to initiate, modify or terminate functions of a device at a distance",
"b": "A one-way radio transmission of measurements at a distance from the measuring instrument",
"c": "An instruction bulletin issued by the FCC",
"d": "An instruction from a VEC"
},
"T1A14": {
"id": "T1A14",
"q": "What must you do if you are operating on the 23 cm band and learn that you are interfering with a radiolocation station outside the United States?",
"a": "Stop operating or take steps to eliminate the harmful interference",
"b": "Nothing, because this band is allocated exclusively to the amateur service",
"c": "Establish contact with the radiolocation station and ask them to change frequency",
"d": "Change to CW mode, because this would not likely cause interference"
},
"T1B01": {
"id": "T1B01",
"q": "What is the ITU?",
"a": "A United Nations agency for information and communication technology issues",
"b": "An agency of the United States Department of Telecommunications Management",
"c": "An independent frequency coordination agency",
"d": "A department of the FCC"
},
"T1B02": {
"id": "T1B02",
"q": "Why are the frequency assignments for some U.S. Territories different from those in the 50 U.S. States?",
"a": "Some U. S. Territories are located in ITU regions other than region 2",
"b": "Territorial governments are allowed to select their own frequency allocations",
"c": "Territorial frequency allocations must also include those of adjacent countries",
"d": "Any territory that was in existence before the ratification of the Communications Act of 1934 is exempt from FCC frequency regulations"
},
"T1B03": {
"id": "T1B03",
"q": "Which frequency is within the 6 meter band?",
"a": "52.525 MHz",
"b": "49.00 MHz",
"c": "28.50 MHz",
"d": "222.15 MHz"
},
"T1B04": {
"id": "T1B04",
"q": "Which amateur band are you using when your station is transmitting on 146.52 MHz?",
"a": "2 meter band",
"b": "20 meter band",
"c": "14 meter band",
"d": "6 meter band"
},
"T1B05": {
"id": "T1B05",
"q": "Which 70 cm frequency is authorized to a Technician Class license holder operating in ITU Region 2?",
"a": "443.350 MHz",
"b": "146.520 MHz",
"c": "53.350 MHz",
"d": "222.520 MHz"
},
"T1B06": {
"id": "T1B06",
"q": "Which 23 cm frequency is authorized to a Technician Class licensee?",
"a": "1296 MHz",
"b": "2315 MHz",
"c": "3390 MHz",
"d": "146.52 MHz"
},
"T1B07": {
"id": "T1B07",
"q": "What amateur band are you using if you are transmitting on 223.50 MHz?",
"a": "1.25 meter band",
"b": "10 meter band",
"c": "2 meter band",
"d": "15 meter band"
},
"T1B08": {
"id": "T1B08",
"q": "Which of the following is a result of the fact that the amateur service is secondary in some portions of the 70 cm band?",
"a": "U.S. amateurs may find non-amateur stations in the bands, and must avoid interfering with them",
"b": "U.S. amateurs must give foreign amateur stations priority in those portions",
"c": "International communications are not permitted on 70 cm",
"d": "Digital transmissions are not permitted on 70 cm"
},
"T1B09": {
"id": "T1B09",
"q": "Why should you not set your transmit frequency to be exactly at the edge of an amateur band or sub-band?",
"a": "All of these choices are correct",
"b": "So that modulation sidebands do not extend beyond the band edge",
"c": "To allow for transmitter frequency drift",
"d": "To allow for calibration error in the transmitter frequency display"
},
"T1B10": {
"id": "T1B10",
"q": "Which of the bands above 30 MHz that are available to Technician Class operators have mode-restricted sub-bands?",
"a": "The 6 meter, 2 meter, and 1.25 meter bands",
"b": "The 2 meter and 13 cm bands",
"c": "The 6 meter, 2 meter, and 70 cm bands",
"d": "The 2 meter and 70 cm bands"
},
"T1B11": {
"id": "T1B11",
"q": "What emission modes are permitted in the mode-restricted sub-bands at 50.0 to 50.1 MHz and 144.0 to 144.1 MHz?",
"a": "CW only",
"b": "CW and RTTY",
"c": "SSB only",
"d": "CW and SSB"
},
"T1B12": {
"id": "T1B12",
"q": "Why are frequency assignments for U.S. stations operating maritime mobile not the same everywhere in the world?",
"a": "Amateur frequency assignments can vary among the three ITU regions",
"b": "Amateur maritime mobile stations in international waters must conform to the frequency assignments of the country nearest to their vessel",
"c": "Frequency assignments are determined by the captain of the vessel",
"d": "Amateur frequency assignments are different in each of the 90 ITU zones"
},
"T1B13": {
"id": "T1B13",
"q": "Which emission may be used between 219 and 220 MHz?",
"a": "Data",
"b": "Spread spectrum",
"c": "SSB voice",
"d": "Fast-scan television"
},
"T1C01": {
"id": "T1C01",
"q": "Which type of call sign has a single letter in both its prefix and suffix?",
"a": "Special event",
"b": "Sequential",
"c": "Vanity",
"d": "In-memoriam"
},
"T1C02": {
"id": "T1C02",
"q": "Which of the following is a valid US amateur radio station call sign?",
"a": "W3ABC",
"b": "KMA3505",
"c": "KDKA",
"d": "11Q1176"
},
"T1C03": {
"id": "T1C03",
"q": "What types of international communications are permitted by an FCC-licensed amateur station?",
"a": "Communications incidental to the purposes of the amateur service and remarks of a personal character",
"b": "Communications incidental to conducting business or remarks of a personal nature",
"c": "Only communications incidental to contest exchanges, all other communications are prohibited",
"d": "Any communications that would be permitted by an international broadcast station"
},
"T1C04": {
"id": "T1C04",
"q": "When are you allowed to operate your amateur station in a foreign country?",
"a": "When the foreign country authorizes it",
"b": "When there is a mutual agreement allowing third party communications",
"c": "When authorization permits amateur communications in a foreign language",
"d": "When you are communicating with non-licensed individuals in another country"
},
"T1C05": {
"id": "T1C05",
"q": "Which of the following is a vanity call sign which a technician class amateur operator might select if available?",
"a": "K1XXX",
"b": "KA1X",
"c": "W1XX",
"d": "All of these choices are correct"
},
"T1C06": {
"id": "T1C06",
"q": "From which of the following locations may an FCC-licensed amateur station transmit, in addition to places where the FCC regulates communications?",
"a": "From any vessel or craft located in international waters and documented or registered in the United States",
"b": "From within any country that is a member of the United Nations",
"c": "From anywhere within in ITU Regions 2 and 3",
"d": "From within any country that belongs to the International Telecommunications Union"
},
"T1C07": {
"id": "T1C07",
"q": "What may result when correspondence from the FCC is returned as undeliverable because the grantee failed to provide the correct mailing address?",
"a": "Revocation of the station license or suspension of the operator license",
"b": "Fine or imprisonment",
"c": "Require the licensee to be re-examined",
"d": "A reduction of one rank in operator class"
},
"T1C08": {
"id": "T1C08",
"q": "What is the normal term for an FCC-issued primary station/operator amateur radio license grant?",
"a": "Ten years",
"b": "Life",
"c": "Five years",
"d": "Twenty years"
},
"T1C09": {
"id": "T1C09",
"q": "What is the grace period following the expiration of an amateur license within which the license may be renewed?",
"a": "Two years",
"b": "Three years",
"c": "Five years",
"d": "Ten years"
},
"T1C10": {
"id": "T1C10",
"q": "How soon after passing the examination for your first amateur radio license may you operate a transmitter on an amateur service frequency?",
"a": "As soon as your operator/station license grant appears in the FCC’s license database",
"b": "30 days after the test date",
"c": "Immediately",
"d": "You must wait until you receive your license in the mail from the FCC"
},
"T1C11": {
"id": "T1C11",
"q": "If your license has expired and is still within the allowable grace period, may you continue to operate a transmitter on amateur service frequencies?",
"a": "No, transmitting is not allowed until the FCC license database shows that the license has been renewed",
"b": "Yes, but only if you identify using the suffix GP",
"c": "Yes, but only during authorized nets",
"d": "Yes, for up to two years"
},
"T1C12": {
"id": "T1C12",
"q": "Who may select a desired call sign under the vanity call sign rules?",
"a": "Any licensed amateur",
"b": "Only licensed amateurs with an extra class license",
"c": "Only an amateur licensee who has been licensed continuously for more than 10 years",
"d": "Only licensed amateurs with general or extra class licenses"
},
"T1C13": {
"id": "T1C13",
"q": "For which licenses classes are new licenses currently available from the FCC?",
"a": "Technician, General, Amateur Extra",
"b": "Technician, Technician Plus, General, Advanced",
"c": "Novice, Technician Plus, General, Advanced",
"d": "Novice, Technician, General, Advanced"
},
"T1C14": {
"id": "T1C14",
"q": "Who may select a vanity call sign for a club station?",
"a": "Only the person named as trustee on the club station license grant",
"b": "Any member of the club",
"c": "Any officer of the club",
"d": "Any Extra Class member of the club"
},
"T1D01": {
"id": "T1D01",
"q": "With which countries are FCC-licensed amateur stations prohibited from exchanging communications?",
"a": "Any country whose administration has notified the ITU that it objects to such communications",
"b": "Any country whose administration has notified the ARRL that it objects to such communications",
"c": "Any country engaged in hostilities with another country",
"d": "Any country in violation of the War Powers Act of 1934"
},
"T1D02": {
"id": "T1D02",
"q": "On which of the following occasions may an FCC-licensed amateur station exchange messages with a U.S. military station?",
"a": "During an Armed Forces Day Communications Test",
"b": "During a Memorial Day Celebration",
"c": "During an Independence Day celebration",
"d": "During a propagation test"
},
"T1D03": {
"id": "T1D03",
"q": "When is the transmission of codes or ciphers that hide the meaning of a message allowed by an amateur station?",
"a": "Only when transmitting control commands to space stations or radio control craft",
"b": "Only when operating mobile",
"c": "Only during contests",
"d": "Only when frequencies above 1280 MHz are used"
},
"T1D04": {
"id": "T1D04",
"q": "What is the only time an amateur station is authorized to transmit music?",
"a": "When incidental to an authorized retransmission of manned spacecraft communications",
"b": "When the music produces no spurious emissions",
"c": "When the purpose is to interfere with an illegal transmission",
"d": "When the music is transmitted above 1280 MHz"
},
"T1D05": {
"id": "T1D05",
"q": "When may amateur radio operators use their stations to notify other amateurs of the availability of equipment for sale or trade?",
"a": "When the equipment is normally used in an amateur station and such activity is not conducted on a regular basis",
"b": "When the asking price is $100.00 or less",
"c": "When the asking price is less than its appraised value",
"d": "When the equipment is not the personal property of either the station licensee or the control operator or their close relatives"
},
"T1D06": {
"id": "T1D06",
"q": "What, if any, are the restrictions concerning transmission of language that may be considered indecent or obscene?",
"a": "Any such language is prohibited",
"b": "The FCC maintains a list of words that are not permitted to be used on amateur frequencies",
"c": "The ITU maintains a list of words that are not permitted to be used on amateur frequencies",
"d": "There is no such prohibition"
},
"T1D07": {
"id": "T1D07",
"q": "What types of amateur stations can automatically retransmit the signals of other amateur stations?",
"a": "Auxiliary, repeater, or space stations",
"b": "Auxiliary, beacon, or Earth stations",
"c": "Beacon, repeater, or space stations",
"d": "Earth, repeater, or space stations"
},
"T1D08": {
"id": "T1D08",
"q": "In which of the following circumstances may the control operator of an amateur station receive compensation for operating the station?",
"a": "When the communication is incidental to classroom instruction at an educational institution",
"b": "When engaging in communications on behalf of their employer",
"c": "When re-broadcasting weather alerts during a RACES net",
"d": "When notifying other amateur operators of the availability for sale or trade of apparatus"
},
"T1D09": {
"id": "T1D09",
"q": "Under which of the following circumstances are amateur stations authorized to transmit signals related to broadcasting, program production, or news gathering, assuming no other means is available?",
"a": "Only where such communications directly relate to the immediate safety of human life or protection of property",
"b": "Only when broadcasting communications to or from the space shuttle",
"c": "Only where noncommercial programming is gathered and supplied exclusively to the National Public Radio network",
"d": "Only when using amateur repeaters linked to the Internet"
},
"T1D10": {
"id": "T1D10",
"q": "What is the meaning of the term “broadcasting” in the FCC rules for the amateur services?",
"a": "Transmissions intended for reception by the general public",
"b": "Transmission of music",
"c": "Transmission of messages directed only to amateur operators",
"d": "Two-way transmissions by amateur stations"
},
"T1D11": {
"id": "T1D11",
"q": "When may an amateur station transmit without identifying?",
"a": "When transmitting signals to control a model craft",
"b": "When the transmissions are unmodulated",
"c": "When the transmitted power level is below 1 watt",
"d": "When the transmissions are of a brief nature to make station adjustments"
},
"T1D12": {
"id": "T1D12",
"q": "Under which of the following circumstances may an amateur radio station engage in broadcasting?",
"a": "When transmitting code practice, information bulletins, or transmissions necessary to provide emergency communications",
"b": "Under no circumstances",
"c": "At any time as long as no music is transmitted",
"d": "At any time as long as the material being transmitted did not originate from a commercial broadcast station"
},
"T1E01": {
"id": "T1E01",
"q": "When is an amateur station permitted to transmit without a control operator?",
"a": "Never",
"b": "When the station licensee is away and another licensed amateur is using the station",
"c": "When the transmitting station is an auxiliary station",
"d": "When using automatic control, such as in the case of a repeater"
},
"T1E02": {
"id": "T1E02",
"q": "Who may a station licensee designate to be the control operator of an amateur station?",
"a": "Only a person for whom an amateur operator/primary station license grant appears in the FCC database or who is authorized for alien reciprocal operation",
"b": "Any family member of the station licensee",
"c": "Any person over the age of 18",
"d": "Any U.S. citizen or registered alien"
},
"T1E03": {
"id": "T1E03",
"q": "Who must designate the station control operator?",
"a": "The station licensee",
"b": "The FCC",
"c": "The frequency coordinator",
"d": "The ITU"
},
"T1E04": {
"id": "T1E04",
"q": "What determines the transmitting privileges of an amateur station?",
"a": "The class of operator license held by the control operator",
"b": "The class of operator license held by the station licensee",
"c": "The highest class of operator license held by anyone on the premises",
"d": "The frequency authorized by the frequency coordinator"
},
"T1E05": {
"id": "T1E05",
"q": "What is an amateur station control point?",
"a": "The location at which the control operator function is performed",
"b": "The location of the station transmitting apparatus",
"c": "The location of the station’s transmitting antenna",
"d": "The mailing address of the station licensee"
},
"T1E06": {
"id": "T1E06",
"q": "Under what type of control do APRS network digipeaters operate?",
"a": "Automatic",
"b": "Remote",
"c": "Local",
"d": "Manual"
},
"T1E07": {
"id": "T1E07",
"q": "When the control operator is not the station licensee, who is responsible for the proper operation of the station?",
"a": "The control operator and the station licensee are equally responsible",
"b": "Only the station licensee",
"c": "Only the control operator",
"d": "All licensed amateurs who are present at the operation"
},
"T1E08": {
"id": "T1E08",
"q": "Which of the following is an example of automatic control?",
"a": "Repeater operation",
"b": "Controlling the station over the Internet",
"c": "Using a computer or other device to automatically send CW",
"d": "Using a computer or other device to automatically identify"
},
"T1E09": {
"id": "T1E09",
"q": "What type of control is being used when the control operator is at the control point?",
"a": "Local control",
"b": "Unattended control",
"c": "Automatic control",
"d": "Radio control"
},
"T1E10": {
"id": "T1E10",
"q": "Which of the following is an example of remote control as defined in Part 97?",
"a": "Operating the station over the Internet",
"b": "Repeater operation",
"c": "Controlling a model aircraft, boat or car by amateur radio",
"d": "All of these choices are correct"
},
"T1E11": {
"id": "T1E11",
"q": "Who does the FCC presume to be the control operator of an amateur station, unless documentation to the contrary is in the station records?",
"a": "The station licensee",
"b": "The third party participant",
"c": "The person operating the station equipment",
"d": "The station custodian"
},
"T1E12": {
"id": "T1E12",
"q": "When, under normal circumstances, may a Technician Class licensee be the control operator of a station operating in an exclusive Extra Class operator segment of the amateur bands?",
"a": "At no time",
"b": "When operating a special event station",
"c": "As part of a multi-operator contest team",
"d": "When using a club station whose trustee is an Extra Class operator licensee"
},
"T1F01": {
"id": "T1F01",
"q": "What type of identification is being used when identifying a station on the air as Race Headquarters?",
"a": "Tactical call sign",
"b": "An official call sign reserved for RACES drills",
"c": "SSID",
"d": "Broadcast station"
},
"T1F02": {
"id": "T1F02",
"q": "When using tactical identifiers such as “Race Headquarters” during a community service net operation, how often must your station transmit the station’s FCC-assigned call sign?",
"a": "At the end of each communication and every ten minutes during a communication",
"b": "Once during every hour",
"c": "Never, the tactical call is sufficient",
"d": "At the end of every transmission"
},
"T1F03": {
"id": "T1F03",
"q": "When is an amateur station required to transmit its assigned call sign?",
"a": "At least every 10 minutes during and at the end of a communication",
"b": "At least once during each transmission",
"c": "At least every 15 minutes during and at the end of a communication",
"d": "At the beginning of each contact, and every 10 minutes thereafter"
},
"T1F04": {
"id": "T1F04",
"q": "Which of the following is an acceptable language to use for station identification when operating in a phone sub-band?",
"a": "The English language",
"b": "Any language recognized by the ITU",
"c": "Any language recognized by the United Nations",
"d": "English, French, or Spanish"
},
"T1F05": {
"id": "T1F05",
"q": "What method of call sign identification is required for a station transmitting phone signals?",
"a": "Send the call sign using CW or phone emission",
"b": "Send the call sign followed by the indicator RPT",
"c": "Send the call sign followed by the indicator R",
"d": "Send the call sign using only phone emission"
},
"T1F06": {
"id": "T1F06",
"q": "Which of the following formats of a self-assigned indicator is acceptable when identifying using a phone transmission?",
"a": "All of these choices are correct",
"b": "KL7CC slant W3",
"c": "KL7CC slash W3",
"d": "KL7CC stroke W3"
},
"T1F07": {
"id": "T1F07",