-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTechnician2018.json
More file actions
4943 lines (4943 loc) · 213 KB
/
Technician2018.json
File metadata and controls
4943 lines (4943 loc) · 213 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
{
"Element": 2,
"OperationPrivileges": "Technician Class",
"NumberOfExamQuestions": 35,
"MinimumPassingScore": 26,
"StartDate": "2018-07-01",
"EndDate": "2022-06-30",
"SubElements": [
{
"label": "T1",
"description": "FCC Rules, descriptions, and definitions for the Amateur Radio Service, operator and station license responsibilities",
"examQuestions": 6,
"subTopics": [
{
"label": "T1A",
"description": "Amateur Radio Service: purpose and permissible use of the Amateur Radio Service, operator/primary station license grant; Meanings of basic terms used in FCC rules; Interference; RACES rules; Phonetics; Frequency Coordinator",
"questions": [
{
"label": "T1A01",
"text": "Which of the following is a purpose of the Amateur Radio Service as stated in the FCC rules and regulations?",
"rulesReference": "97.1",
"distractors": [
"Providing personal radio communications for as many citizens as possible",
"Providing communications for international non-profit organizations",
"All of these choices are correct"
],
"answer": "Advancing skills in the technical and communication phases of the radio art"
},
{
"label": "T1A02",
"text": "Which agency regulates and enforces the rules for the Amateur Radio Service in the United States?",
"rulesReference": "97.1",
"distractors": [
"FEMA",
"Homeland Security",
"All of these choices are correct"
],
"answer": "The FCC"
},
{
"label": "T1A03",
"text": "What are the FCC rules regarding the use of a phonetic alphabet for station identification in the Amateur Radio Service?",
"rulesReference": "97.119(b)(2)",
"distractors": [
"It is required when transmitting emergency messages",
"It is prohibited",
"It is required when in contact with foreign stations"
],
"answer": "It is encouraged"
},
{
"label": "T1A04",
"text": "How many operator/primary station license grants may be held by any one person?",
"rulesReference": "97.5(b)(1)",
"distractors": [
"No more than two",
"One for each band on which the person plans to operate",
"One for each permanent station location from which the person plans to operate"
],
"answer": "One"
},
{
"label": "T1A05",
"text": "What is proof of possession of an FCC-issued operator/primary license grant?",
"rulesReference": "97.7",
"distractors": [
"A printed operator/primary station license issued by the FCC must be displayed at the transmitter site",
"The control operator must have an operator/primary station license in his or her possession when in control of a transmitter",
"All of these choices are correct"
],
"answer": "The control operator's operator/primary station license must appear in the FCC ULS consolidated licensee database"
},
{
"label": "T1A06",
"text": "What is the FCC Part 97 definition of a beacon?",
"rulesReference": "97.3(a)(9)",
"distractors": [
"A government transmitter marking the amateur radio band edges",
"A bulletin sent by the FCC to announce a national emergency",
"A continuous transmission of weather information authorized in the amateur bands by the National Weather Service"
],
"answer": "An amateur station transmitting communications for the purposes of observing propagation or related experimental activities"
},
{
"label": "T1A07",
"text": "What is the FCC Part 97 definition of a space station?",
"rulesReference": "97.3(a)(41)",
"distractors": [
"Any satellite orbiting the earth",
"A manned satellite orbiting the earth",
"An amateur station using amateur radio satellites for relay of signals"
],
"answer": "An amateur station located more than 50 km above the Earth's surface"
},
{
"label": "T1A08",
"text": "Which of the following entities recommends transmit/receive channels and other parameters for auxiliary and repeater stations?",
"rulesReference": "97.3(a)(22)",
"distractors": [
"Frequency Spectrum Manager appointed by the FCC",
"FCC Regional Field Office",
"International Telecommunications Union"
],
"answer": "Volunteer Frequency Coordinator recognized by local amateurs"
},
{
"label": "T1A09",
"text": "Who selects a Frequency Coordinator?",
"rulesReference": "97.3(a)(22)",
"distractors": [
"The FCC Office of Spectrum Management and Coordination Policy",
"The local chapter of the Office of National Council of Independent Frequency Coordinators",
"FCC Regional Field Office"
],
"answer": "Amateur operators in a local or regional area whose stations are eligible to be repeater or auxiliary stations"
},
{
"label": "T1A10",
"text": "Which of the following describes the Radio Amateur Civil Emergency Service (RACES)?",
"rulesReference": "97.3(a)(38), 97.407",
"distractors": [
"A radio service using amateur frequencies for emergency management or civil defense communications",
"A radio service using amateur stations for emergency management or civil defense communications",
"An emergency service using amateur operators certified by a civil defense organization as being enrolled in that organization"
],
"answer": "All of these choices are correct"
},
{
"label": "T1A11",
"text": "When is willful interference to other amateur radio stations permitted?",
"rulesReference": "97.101 (d)",
"distractors": [
"To stop another amateur station which is breaking the FCC rules",
"When making short test transmissions",
"At any time, stations in the Amateur Radio Service are not protected from willful interference"
],
"answer": "At no time"
}
]
},
{
"label": "T1B",
"description": "Authorized frequencies: frequency allocations; ITU; emission modes; restricted sub-bands; spectrum sharing; transmissions near band edges; contacting the International Space Station; power output",
"questions": [
{
"label": "T1B01",
"text": "What is the International Telecommunications Union (ITU)?",
"rulesReference": "",
"distractors": [
"An agency of the United States Department of Telecommunications Management",
"An independent frequency coordination agency",
"A department of the FCC"
],
"answer": "A United Nations agency for information and communication technology issues"
},
{
"label": "T1B02",
"text": "Which amateur radio stations may make contact with an amateur radio station on the International Space Station (ISS) using 2 meter and 70 cm band frequencies?",
"rulesReference": "97.301, 97.207(c)",
"distractors": [
"Only members of amateur radio clubs at NASA facilities",
"Only the astronaut's family members who are hams",
"Contacts with the ISS are not permitted on amateur radio frequencies"
],
"answer": "Any amateur holding a Technician or higher-class license"
},
{
"label": "T1B03",
"text": "Which frequency is within the 6 meter amateur band?",
"rulesReference": "97.301(a)",
"distractors": [
"49.00 MHz",
"28.50 MHz",
"222.15 MHz"
],
"answer": "52.525 MHz"
},
{
"label": "T1B04",
"text": "Which amateur band are you using when your station is transmitting on 146.52 MHz?",
"rulesReference": "97.301(a)",
"distractors": [
"20 meter band",
"14 meter band",
"6 meter band"
],
"answer": "2 meter band"
},
{
"label": "T1B05",
"text": "What is the limitation for emissions on the frequencies between 219 and 220 MHz?",
"rulesReference": "97.305(c)",
"distractors": [
"Spread spectrum only",
"Emergency traffic only",
"Fast-scan television only"
],
"answer": "Fixed digital message forwarding systems only"
},
{
"label": "T1B06",
"text": "On which HF bands does a Technician class operator have phone privileges?",
"rulesReference": "97.301(e), 97.305",
"distractors": [
"None",
"80 meter, 40 meter, 15 meter and 10 meter bands",
"30 meter band only"
],
"answer": "10 meter band only"
},
{
"label": "T1B07",
"text": "Which of the following VHF/UHF frequency ranges are limited to CW only?",
"rulesReference": "97.305(a), (c)",
"distractors": [
"219 MHz to 220 MHz and 420.0 MHz to 420.1 MHz",
"902.0 MHz to 902.1 MHZ",
"All of these choices are correct"
],
"answer": "50.0 MHz to 50.1 MHz and 144.0 MHz to 144.1 MHz"
},
{
"label": "T1B08",
"text": "Which of the following is a result of the fact that the Amateur Radio Service is secondary in all or portions of some amateur bands (such as portions of the 70 cm band)?",
"rulesReference": "97.303",
"distractors": [
"U.S. amateurs must give foreign amateur stations priority in those portions",
"International communications are not permitted in those portions",
"Digital transmissions are not permitted in those portions"
],
"answer": "U.S. amateurs may find non-amateur stations in those portions, and must avoid interfering with them"
},
{
"label": "T1B09",
"text": "Why should you not set your transmit frequency to be exactly at the edge of an amateur band or sub-band?",
"rulesReference": "97.101(a), 97.301(a-e)",
"distractors": [
"To allow for calibration error in the transmitter frequency display",
"So that modulation sidebands do not extend beyond the band edge",
"To allow for transmitter frequency drift"
],
"answer": "All of these choices are correct"
},
{
"label": "T1B10",
"text": "Which of the following HF bands have frequencies available to the Technician class operator for RTTY and data transmissions?",
"rulesReference": "97.301(e), 97.305(c)",
"distractors": [
"10 meter, 12 meter, 17 meter, and 40 meter bands",
"10 meter, 15 meter, 40 meter, and 80 meter bands",
"30 meter band only"
],
"answer": "10 meter band only"
},
{
"label": "T1B11",
"text": "What is the maximum peak envelope power output for Technician class operators using their assigned portions of the HF bands?",
"rulesReference": "97.313",
"distractors": [
"100 watts",
"50 watts",
"10 watts"
],
"answer": "200 watts"
},
{
"label": "T1B12",
"text": "Except for some specific restrictions, what is the maximum peak envelope power output for Technician class operators using frequencies above 30 MHz?",
"rulesReference": "97.313(b)",
"distractors": [
"50 watts",
"100 watts",
"500 watts"
],
"answer": "1500 watts"
}
]
},
{
"label": "T1C",
"description": "Operator licensing: operator classes; sequential and vanity call sign systems; international communications; reciprocal operation; places where the Amateur Radio Service is regulated by the FCC; name and address on FCC license database; license term; renewal; grace period",
"questions": [
{
"label": "T1C01",
"text": "For which license classes are new licenses currently available from the FCC?",
"rulesReference": "97.9(a), 97.17(a)",
"distractors": [
"Novice, Technician, General, Advanced",
"Technician, Technician Plus, General, Advanced",
"Novice, Technician Plus, General, Advanced"
],
"answer": "Technician, General, Amateur Extra"
},
{
"label": "T1C02",
"text": "Who may select a desired call sign under the vanity call sign rules?",
"rulesReference": "97.19",
"distractors": [
"Only a licensed amateur with a General or Amateur Extra class license",
"Only a licensed amateur with an Amateur Extra class license",
"Only a licensed amateur who has been licensed continuously for more than 10 years"
],
"answer": "Any licensed amateur"
},
{
"label": "T1C03",
"text": "What types of international communications is an FCC-licensed amateur radio station permitted to make?",
"rulesReference": "97.117",
"distractors": [
"Communications incidental to conducting business or remarks of a personal nature",
"Only communications incidental to contest exchanges, all other communications are prohibited",
"Any communications that would be permitted by an international broadcast station"
],
"answer": "Communications incidental to the purposes of the Amateur Radio Service and remarks of a personal character"
},
{
"label": "T1C04",
"text": "When are you allowed to operate your amateur station in a foreign country?",
"rulesReference": "97.107",
"distractors": [
"When there is a mutual agreement allowing third party communications",
"When authorization permits amateur communications in a foreign language",
"When you are communicating with non-licensed individuals in another country"
],
"answer": "When the foreign country authorizes it"
},
{
"label": "T1C05",
"text": "Which of the following is a valid call sign for a Technician class amateur radio station?",
"rulesReference": "",
"distractors": [
"KA1X",
"W1XX",
"All of these choices are correct"
],
"answer": "K1XXX"
},
{
"label": "T1C06",
"text": "From which of the following locations may an FCC-licensed amateur station transmit?",
"rulesReference": "97.5(a)(2)",
"distractors": [
"From within any country that belongs to the International Telecommunications Union",
"From within any country that is a member of the United Nations",
"From anywhere within International Telecommunications Union (ITU) Regions 2 and 3"
],
"answer": "From any vessel or craft located in international waters and documented or registered in the United States"
},
{
"label": "T1C07",
"text": "What may result when correspondence from the FCC is returned as undeliverable because the grantee failed to provide and maintain a correct mailing address with the FCC?",
"rulesReference": "97.23",
"distractors": [
"Fine or imprisonment",
"Require the licensee to be re-examined",
"A reduction of one rank in operator class"
],
"answer": "Revocation of the station license or suspension of the operator license"
},
{
"label": "T1C08",
"text": "What is the normal term for an FCC-issued primary station/operator amateur radio license grant?",
"rulesReference": "97.25",
"distractors": [
"Five years",
"Life",
"Twenty years"
],
"answer": "Ten years"
},
{
"label": "T1C09",
"text": "What is the grace period following the expiration of an amateur license within which the license may be renewed?",
"rulesReference": "97.21(a)(b)",
"distractors": [
"Three years",
"Five years",
"Ten years"
],
"answer": "Two years"
},
{
"label": "T1C10",
"text": "How soon after passing the examination for your first amateur radio license may you operate a transmitter on an Amateur Radio Service frequency?",
"rulesReference": "97.5a",
"distractors": [
"Immediately",
"30 days after the test date",
"You must wait until you receive your license in the mail from the FCC"
],
"answer": "As soon as your operator/station license grant appears in the FCC’s license database"
},
{
"label": "T1C11",
"text": "If your license has expired and is still within the allowable grace period, may you continue to operate a transmitter on Amateur Radio Service frequencies?",
"rulesReference": "97.21(b)",
"distractors": [
"Yes, but only if you identify using the suffix GP",
"Yes, but only during authorized nets",
"Yes, for up to two years"
],
"answer": "No, transmitting is not allowed until the FCC license database shows that the license has been renewed"
}
]
},
{
"label": "T1D",
"description": "Authorized and prohibited transmission: communications with other countries; music; exchange of information with other services; indecent language; compensation for use of station; retransmission of other amateur signals; codes and ciphers; sale of equipment; unidentified transmissions; one-way transmission",
"questions": [
{
"label": "T1D01",
"text": "With which countries are FCC-licensed amateur radio stations prohibited from exchanging communications?",
"rulesReference": "97.111(a)(1)",
"distractors": [
"Any country whose administration has notified the American Radio Relay League (ARRL) that it objects to such communications",
"Any country engaged in hostilities with another country",
"Any country in violation of the War Powers Act of 1934"
],
"answer": "Any country whose administration has notified the International Telecommunications Union (ITU) that it objects to such communications"
},
{
"label": "T1D02",
"text": "Under which of the following circumstances may an amateur radio station make one-way transmissions?",
"rulesReference": "97.113(b),97.111(b)",
"distractors": [
"Under no circumstances",
"At any time, as long as no music is transmitted",
"At any time, as long as the material being transmitted did not originate from a commercial broadcast station"
],
"answer": "When transmitting code practice, information bulletins, or transmissions necessary to provide emergency communications"
},
{
"label": "T1D03",
"text": "When is it permissible to transmit messages encoded to hide their meaning?",
"rulesReference": "97.211(b), 97.215(b), 97.114(a)(4)",
"distractors": [
"Only during contests",
"Only when operating mobile",
"Only when frequencies above 1280 MHz are used"
],
"answer": "Only when transmitting control commands to space stations or radio control craft"
},
{
"label": "T1D04",
"text": "Under what conditions is an amateur station authorized to transmit music using a phone emission?",
"rulesReference": "97.113(a)(4), 97.113(c)",
"distractors": [
"When the music produces no spurious emissions",
"When the purpose is to interfere with an illegal transmission",
"When the music is transmitted above 1280 MHz"
],
"answer": "When incidental to an authorized retransmission of manned spacecraft communications"
},
{
"label": "T1D05",
"text": "When may amateur radio operators use their stations to notify other amateurs of the availability of equipment for sale or trade?",
"rulesReference": "97.113(a)(3)(ii)",
"distractors": [
"When the asking price is $100.00 or less",
"When the asking price is less than its appraised value",
"When the equipment is not the personal property of either the station licensee or the control operator or their close relatives"
],
"answer": "When the equipment is normally used in an amateur station and such activity is not conducted on a regular basis"
},
{
"label": "T1D06",
"text": "What, if any, are the restrictions concerning transmission of language that may be considered indecent or obscene?",
"rulesReference": "97.113(a)(4)",
"distractors": [
"The FCC maintains a list of words that are not permitted to be used on amateur frequencies",
"The ITU maintains a list of words that are not permitted to be used on amateur frequencies",
"There is no such prohibition"
],
"answer": "Any such language is prohibited"
},
{
"label": "T1D07",
"text": "What types of amateur stations can automatically retransmit the signals of other amateur stations?",
"rulesReference": "97.113(d)",
"distractors": [
"Auxiliary, beacon, or Earth stations",
"Beacon, repeater, or space stations",
"Earth, repeater, or space stations"
],
"answer": "Repeater, auxiliary, or space stations"
},
{
"label": "T1D08",
"text": "In which of the following circumstances may the control operator of an amateur station receive compensation for operating that station?",
"rulesReference": "97.113(a)(3)(iii)",
"distractors": [
"When the communication is related to the sale of amateur equipment by the control operator's employer",
"When the communication is made to obtain emergency information for a local broadcast station",
"All of these choices are correct"
],
"answer": "When the communication is incidental to classroom instruction at an educational institution"
},
{
"label": "T1D09",
"text": "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?",
"rulesReference": "97.113(5)(b)",
"distractors": [
"Only when broadcasting communications to or from the space shuttle",
"Only where noncommercial programming is gathered and supplied exclusively to the National Public Radio network",
"Only when using amateur repeaters linked to the internet"
],
"answer": "Only where such communications directly relate to the immediate safety of human life or protection of property"
},
{
"label": "T1D10",
"text": "What is the meaning of the term broadcasting in the FCC rules for the Amateur Radio Service?",
"rulesReference": "97.3(a)(10)",
"distractors": [
"Two-way transmissions by amateur stations",
"Transmission of music",
"Transmission of messages directed only to amateur operators"
],
"answer": "Transmissions intended for reception by the general public"
},
{
"label": "T1D11",
"text": "When may an amateur station transmit without on-the-air identification?",
"rulesReference": "97.119(a)",
"distractors": [
"When the transmissions are of a brief nature to make station adjustments",
"When the transmissions are unmodulated",
"When the transmitted power level is below 1 watt"
],
"answer": "When transmitting signals to control model craft"
}
]
},
{
"label": "T1E",
"description": "Control operator and control types: control operator required; eligibility; designation of control operator; privileges and duties; control point; local, automatic and remote control; location of control operator",
"questions": [
{
"label": "T1E01",
"text": "When is an amateur station permitted to transmit without a control operator?",
"rulesReference": "97.7(a)",
"distractors": [
"When using automatic control, such as in the case of a repeater",
"When the station licensee is away and another licensed amateur is using the station",
"When the transmitting station is an auxiliary station"
],
"answer": "Never"
},
{
"label": "T1E02",
"text": "Who may be the control operator of a station communicating through an amateur satellite or space station?",
"rulesReference": "97.301, 97.207(c)",
"distractors": [
"Only an Amateur Extra Class operator",
"A General class or higher licensee who has a satellite operator certification",
"Only an Amateur Extra Class operator who is also an AMSAT member"
],
"answer": "Any amateur whose license privileges allow them to transmit on the satellite uplink frequency"
},
{
"label": "T1E03",
"text": "Who must designate the station control operator?",
"rulesReference": "97.103(b)",
"distractors": [
"The FCC",
"The frequency coordinator",
"The ITU"
],
"answer": "The station licensee"
},
{
"label": "T1E04",
"text": "What determines the transmitting privileges of an amateur station?",
"rulesReference": "97.103(b)",
"distractors": [
"The frequency authorized by the frequency coordinator",
"The frequencies printed on the license grant",
"The highest class of operator license held by anyone on the premises"
],
"answer": "The class of operator license held by the control operator"
},
{
"label": "T1E05",
"text": "What is an amateur station control point?",
"rulesReference": "97.3(a)(14)",
"distractors": [
"The location of the station’s transmitting antenna",
"The location of the station transmitting apparatus",
"The mailing address of the station licensee"
],
"answer": "The location at which the control operator function is performed"
},
{
"label": "T1E06",
"text": "When, under normal circumstances, may a Technician class licensee be the control operator of a station operating in an exclusive Amateur Extra class operator segment of the amateur bands?",
"rulesReference": "97.301",
"distractors": [
"When operating a special event station",
"As part of a multi-operator contest team",
"When using a club station whose trustee is an Amateur Extra class operator licensee"
],
"answer": "At no time"
},
{
"label": "T1E07",
"text": "When the control operator is not the station licensee, who is responsible for the proper operation of the station?",
"rulesReference": "97.103(a)",
"distractors": [
"All licensed amateurs who are present at the operation",
"Only the station licensee",
"Only the control operator"
],
"answer": "The control operator and the station licensee are equally responsible"
},
{
"label": "T1E08",
"text": "Which of the following is an example of automatic control?",
"rulesReference": "97.3(a)(6), 97.205(d)",
"distractors": [
"Controlling the station over the internet",
"Using a computer or other device to send CW automatically",
"Using a computer or other device to identify automatically"
],
"answer": "Repeater operation"
},
{
"label": "T1E09",
"text": "Which of the following is true of remote control operation?",
"rulesReference": "97.109(c)",
"distractors": [
"The control operator must be at the control point",
"A control operator is required at all times",
"The control operator indirectly manipulates the controls"
],
"answer": "All of these choices are correct"
},
{
"label": "T1E10",
"text": "Which of the following is an example of remote control as defined in Part 97?",
"rulesReference": "97.3(a)(39)",
"distractors": [
"Repeater operation",
"Controlling a model aircraft, boat, or car by amateur radio",
"All of these choices are correct"
],
"answer": "Operating the station over the internet"
},
{
"label": "T1E11",
"text": "Who does the FCC presume to be the control operator of an amateur station, unless documentation to the contrary is in the station records?",
"rulesReference": "97.103(a)",
"distractors": [
"The station custodian",
"The third-party participant",
"The person operating the station equipment"
],
"answer": "The station licensee"
}
]
},
{
"label": "T1F",
"description": "Station identification; repeaters; third-party communications; club stations; FCC inspection",
"questions": [
{
"label": "T1F01",
"text": "When must the station licensee make the station and its records available for FCC inspection?",
"rulesReference": "97.103(c)",
"distractors": [
"At any time ten days after notification by the FCC of such an inspection",
"Only after failing to comply with an FCC notice of violation",
"Only when presented with a valid warrant by an FCC official or government agent"
],
"answer": "At any time upon request by an FCC representative"
},
{
"label": "T1F02",
"text": "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?",
"rulesReference": "97.119 (a)",
"distractors": [
"Never, the tactical call is sufficient",
"Once during every hour",
"At the end of every transmission"
],
"answer": "At the end of each communication and every ten minutes during a communication"
},
{
"label": "T1F03",
"text": "When is an amateur station required to transmit its assigned call sign?",
"rulesReference": "97.119(a)",
"distractors": [
"At the beginning of each contact, and every 10 minutes thereafter",
"At least once during each transmission",
"At least every 15 minutes during and at the end of a communication"
],
"answer": "At least every 10 minutes during and at the end of a communication"
},
{
"label": "T1F04",
"text": "Which of the following is an acceptable language to use for station identification when operating in a phone sub-band?",
"rulesReference": "97.119(b)(2)",
"distractors": [
"Any language recognized by the United Nations",
"Any language recognized by the ITU",
"English, French, or Spanish"
],
"answer": "The English language"
},
{
"label": "T1F05",
"text": "What method of call sign identification is required for a station transmitting phone signals?",
"rulesReference": "97.119(b)(2)",
"distractors": [
"Send the call sign followed by the indicator RPT",
"Send the call sign followed by the indicator R",
"Send the call sign using only a phone emission"
],
"answer": "Send the call sign using a CW or phone emission"
},
{
"label": "T1F06",
"text": "Which of the following formats of a self-assigned indicator is acceptable when identifying using a phone transmission?",
"rulesReference": "97.119(c)",
"distractors": [
"KL7CC stroke W3",
"KL7CC slant W3",
"KL7CC slash W3"
],
"answer": "All of these choices are correct"
},
{
"label": "T1F07",
"text": "Which of the following restrictions apply when a non-licensed person is allowed to speak to a foreign station using a station under the control of a Technician class control operator?",
"rulesReference": "97.115(a)(2)",
"distractors": [
"The person must be a U.S. citizen",
"The licensed control operator must do the station identification",
"All of these choices are correct"
],
"answer": "The foreign station must be one with which the U.S. has a third-party agreement"
},
{
"label": "T1F08",
"text": "What is meant by the term Third Party Communications?",
"rulesReference": "97.3(a)(47)",
"distractors": [
"Amateur radio communications where three stations are in communications with one another",
"Operation when the transmitting equipment is licensed to a person other than the control operator",
"Temporary authorization for an unlicensed person to transmit on the amateur bands for technical experiments"
],
"answer": "A message from a control operator to another amateur station control operator on behalf of another person"
},
{
"label": "T1F09",
"text": "What type of amateur station simultaneously retransmits the signal of another amateur station on a different channel or channels?",
"rulesReference": "97.3(a)(40)",
"distractors": [
"Beacon station",
"Earth station",
"Message forwarding station"
],
"answer": "Repeater station"
},
{
"label": "T1F10",
"text": "Who is accountable should a repeater inadvertently retransmit communications that violate the FCC rules?",
"rulesReference": "97.205(g)",
"distractors": [
"The control operator of the repeater",
"The owner of the repeater",
"Both the originating station and the repeater owner"
],
"answer": "The control operator of the originating station"
},
{
"label": "T1F11",
"text": "Which of the following is a requirement for the issuance of a club station license grant?",
"rulesReference": "97.5(b)(2)",
"distractors": [
"The trustee must have an Amateur Extra class operator license grant",
"The club must be registered with the American Radio Relay League",
"All of these choices are correct"
],
"answer": "The club must have at least four members"
}
]
}
]
},
{
"label": "T2",
"description": "Operating Procedures",
"examQuestions": 3,
"subTopics": [
{
"label": "T2A",
"description": "Station operation: choosing an operating frequency; calling another station; test transmissions; procedural signs; use of minimum power; choosing an operating frequency; band plans; calling frequencies; repeater offsets",
"questions": [
{
"label": "T2A01",
"text": "Which of the following is a common repeater frequency offset in the 2 meter band?",
"rulesReference": "",
"distractors": [
"Plus or minus 5 MHz",
"Plus or minus 500 kHz",
"Plus or minus 1 MHz"
],
"answer": "Plus or minus 600 kHz"
},
{
"label": "T2A02",
"text": "What is the national calling frequency for FM simplex operations in the 2 meter band?",
"rulesReference": "",
"distractors": [
"145.000 MHz",
"432.100 MHz",
"446.000 MHz"
],
"answer": "146.520 MHz"
},
{
"label": "T2A03",
"text": "What is a common repeater frequency offset in the 70 cm band?",
"rulesReference": "",
"distractors": [
"Plus or minus 600 kHz",
"Plus or minus 500 kHz",
"Plus or minus 1 MHz"
],
"answer": "Plus or minus 5 MHz"
},
{
"label": "T2A04",
"text": "What is an appropriate way to call another station on a repeater if you know the other station's call sign?",
"rulesReference": "",
"distractors": [
"Say \"break, break,\" then say the station's call sign",
"Say \"CQ\" three times, then the other station's call sign",
"Wait for the station to call CQ, then answer it"
],
"answer": "Say the station's call sign, then identify with your call sign"
},
{
"label": "T2A05",
"text": "How should you respond to a station calling CQ?",
"rulesReference": "",
"distractors": [
"Transmit \"CQ\" followed by the other station’s call sign",
"Transmit your call sign followed by the other station’s call sign",
"Transmit a signal report followed by your call sign"
],
"answer": "Transmit the other station’s call sign followed by your call sign"
},
{
"label": "T2A06",
"text": "Which of the following is required when making on-the-air test transmissions?",
"rulesReference": "",
"distractors": [
"Conduct tests only between 10 p.m. and 6 a.m. local time",
"Notify the FCC of the transmissions",
"All of these choices are correct"
],
"answer": "Identify the transmitting station"
},
{
"label": "T2A07",
"text": "What is meant by \"repeater offset?\"",
"rulesReference": "",
"distractors": [
"The repeater has a time delay to prevent interference",
"The repeater station identification is done on a separate frequency",
"The number of simultaneous transmit frequencies used by a repeater"
],
"answer": "The difference between a repeater’s transmit frequency and its receive frequency"
},
{
"label": "T2A08",
"text": "What is the meaning of the procedural signal “CQ”?",
"rulesReference": "",
"distractors": [
"Call on the quarter hour",
"A new antenna is being tested (no station should answer)",
"Only the called station should transmit"
],
"answer": "Calling any station"
},
{
"label": "T2A09",
"text": "What brief statement indicates that you are listening on a repeater and looking for a contact?",
"rulesReference": "",
"distractors": [
"The words “Hello test” followed by your call sign",
"The repeater call sign followed by your call sign",
"The letters “QSY” followed by your call sign"
],
"answer": "Your call sign"
},
{
"label": "T2A10",
"text": "What is a band plan, beyond the privileges established by the FCC?",
"rulesReference": "",
"distractors": [
"A mandated list of operating schedules",
"A list of scheduled net frequencies",
"A plan devised by a club to indicate frequency band usage"
],
"answer": "A voluntary guideline for using different modes or activities within an amateur band"
},
{
"label": "T2A11",
"text": "What term describes an amateur station that is transmitting and receiving on the same frequency?",
"rulesReference": "",
"distractors": [
"Full duplex",
"Diplex",
"Multiplex"
],
"answer": "Simplex"
},
{
"label": "T2A12",
"text": "Which of the following is a guideline when choosing an operating frequency for calling CQ?",
"rulesReference": "",
"distractors": [
"Listen first to be sure that no one else is using the frequency",
"Ask if the frequency is in use",
"Make sure you are in your assigned band"
],
"answer": "All of these choices are correct"
}
]
},
{
"label": "T2B",
"description": "VHF/UHF operating practices: SSB phone; FM repeater; simplex; splits and shifts; CTCSS; DTMF; tone squelch; carrier squelch; phonetics; operational problem resolution; Q signals",
"questions": [
{
"label": "T2B01",
"text": "What is the most common use of the “reverse split” function of a VHF/UHF transceiver?",
"rulesReference": "",
"distractors": [
"Reduce power output",
"Increase power output",
"Listen on a repeater’s output frequency"
],
"answer": "Listen on a repeater’s input frequency"
},
{
"label": "T2B02",
"text": "What term describes the use of a sub-audible tone transmitted along with normal voice audio to open the squelch of a receiver?",
"rulesReference": "",
"distractors": [
"Carrier squelch",
"Tone burst",
"DTMF"
],
"answer": "CTCSS"
},
{
"label": "T2B03",
"text": "If a station is not strong enough to keep a repeater’s receiver squelch open, which of the following might allow you to receive the station’s signal?",
"rulesReference": "",
"distractors": [
"Open the squelch on your radio",
"Listen on the repeater output frequency",
"Increase your transmit power"
],
"answer": "Listen on the repeater input frequency"
},
{
"label": "T2B04",
"text": "Which of the following could be the reason you are unable to access a repeater whose output you can hear?",
"rulesReference": "",
"distractors": [
"Improper transceiver offset",
"The repeater may require a proper CTCSS tone from your transceiver",
"The repeater may require a proper DCS tone from your transceiver"
],
"answer": "All of these choices are correct"
},
{
"label": "T2B05",
"text": "What might be the problem if a repeater user says your transmissions are breaking up on voice peaks?",
"rulesReference": "",
"distractors": [
"You have the incorrect offset",
"You need to talk louder",
"Your transmit power is too high"
],
"answer": "You are talking too loudly"
},
{
"label": "T2B06",
"text": "What type of tones are used to control repeaters linked by the Internet Relay Linking Project (IRLP) protocol?",
"rulesReference": "",
"distractors": [
"CTCSS",
"EchoLink",
"Sub-audible"
],
"answer": "DTMF"