-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathExtra2016.json
More file actions
8212 lines (8212 loc) · 375 KB
/
Copy pathExtra2016.json
File metadata and controls
8212 lines (8212 loc) · 375 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": 4,
"OperationPrivileges": "Amateur Extra Class",
"NumberOfExamQuestions": 50,
"MinimumPassingScore": 37,
"StartDate": "2016-07-01",
"EndDate": "2020-06-30",
"SubElements": [
{
"label": "E1",
"description": "COMMISSION’S RULES",
"examQuestions": 6,
"subTopics": [
{
"label": "E1A",
"description": "Operating Standards: frequency privileges; emission standards; automatic message forwarding; frequency sharing; stations aboard ships or aircraft",
"questions": [
{
"label": "E1A01",
"text": "When using a transceiver that displays the carrier frequency of phone signals, which of the following displayed frequencies represents the highest frequency at which a properly adjusted USB emission will be totally within the band?",
"rulesReference": "97.301, 97.305",
"distractors": [
"The exact upper band edge",
"300 Hz below the upper band edge",
"1 kHz below the upper band edge"
],
"answer": "3 kHz below the upper band edge"
},
{
"label": "E1A02",
"text": "When using a transceiver that displays the carrier frequency of phone signals, which of the following displayed frequencies represents the lowest frequency at which a properly adjusted LSB emission will be totally within the band?",
"rulesReference": "97.301, 97.305",
"distractors": [
"The exact lower band edge",
"300 Hz above the lower band edge",
"1 kHz above the lower band edge"
],
"answer": "3 kHz above the lower band edge"
},
{
"label": "E1A03",
"text": "With your transceiver displaying the carrier frequency of phone signals, you hear a station calling CQ on 14.349 MHz USB. Is it legal to return the call using upper sideband on the same frequency?",
"rulesReference": "97.301, 97.305",
"distractors": [
"Yes, because you were not the station calling CQ",
"Yes, because the displayed frequency is within the 20 meter band",
"No, U.S. stations are not permitted to use phone emissions above 14.340 MHz"
],
"answer": "No, the sideband will extend beyond the band edge"
},
{
"label": "E1A04",
"text": "With your transceiver displaying the carrier frequency of phone signals, you hear a DX station calling CQ on 3.601 MHz LSB. Is it legal to return the call using lower sideband on the same frequency?",
"rulesReference": "97.301, 97.305",
"distractors": [
"Yes, because the DX station initiated the contact",
"Yes, because the displayed frequency is within the 75 meter phone band segment",
"No, U.S. stations are not permitted to use phone emissions below 3.610 MHz"
],
"answer": "No, the sideband will extend beyond the edge of the phone band segment"
},
{
"label": "E1A05",
"text": "What is the maximum power output permitted on the 60 meter band?",
"rulesReference": "97.313",
"distractors": [
"50 watts PEP effective radiated power relative to an isotropic radiator",
"50 watts PEP effective radiated power relative to a dipole",
"100 watts PEP effective radiated power relative to an isotropic radiator"
],
"answer": "100 watts PEP effective radiated power relative to the gain of a half-wave dipole"
},
{
"label": "E1A06",
"text": "Where must the carrier frequency of a CW signal be set to comply with FCC rules for 60 meter operation?",
"rulesReference": "97.15",
"distractors": [
"At the lowest frequency of the channel",
"At the highest frequency of the channel",
"On any frequency where the signal’s sidebands are within the channel"
],
"answer": "At the center frequency of the channel"
},
{
"label": "E1A07",
"text": "Which amateur band requires transmission on specific channels rather than on a range of frequencies?",
"rulesReference": "97.303",
"distractors": [
"12 meter band",
"17 meter band",
"30 meter band"
],
"answer": "60 meter band"
},
{
"label": "E1A08",
"text": "If a station in a message forwarding system inadvertently forwards a message that is in violation of FCC rules, who is primarily accountable for the rules violation?",
"rulesReference": "97.219",
"distractors": [
"The control operator of the packet bulletin board station",
"The control operators of all the stations in the system",
"The control operators of all the stations in the system not authenticating the source from which they accept communications"
],
"answer": "The control operator of the originating station"
},
{
"label": "E1A09",
"text": "What is the first action you should take if your digital message forwarding station inadvertently forwards a communication that violates FCC rules?",
"rulesReference": "97.219",
"distractors": [
"Notify the originating station that the communication does not comply with FCC rules",
"Notify the nearest FCC Field Engineer’s office",
"Discontinue forwarding all messages"
],
"answer": "Discontinue forwarding the communication as soon as you become aware of it"
},
{
"label": "E1A10",
"text": "If an amateur station is installed aboard a ship or aircraft, what condition must be met before the station is operated?",
"rulesReference": "97.11",
"distractors": [
"The amateur station operator must agree not to transmit when the main radio of the ship or aircraft is in use",
"The amateur station must have a power supply that is completely independent of the main ship or aircraft power supply",
"The amateur operator must have an FCC Marine or Aircraft endorsement on his or her amateur license"
],
"answer": "Its operation must be approved by the master of the ship or the pilot in command of the aircraft"
},
{
"label": "E1A11",
"text": "Which of the following describes authorization or licensing required when operating an amateur station aboard a U.S.-registered vessel in international waters?",
"rulesReference": "97.5",
"distractors": [
"Any amateur license with an FCC Marine or Aircraft endorsement",
"Only General class or higher amateur licenses",
"An unrestricted Radiotelephone Operator Permit"
],
"answer": "Any FCC-issued amateur license"
},
{
"label": "E1A12",
"text": "With your transceiver displaying the carrier frequency of CW signals, you hear a DX station's CQ on 3.500 MHz. Is it legal to return the call using CW on the same frequency?",
"rulesReference": "97.301, 97.305",
"distractors": [
"Yes, the DX station initiated the contact",
"Yes, the displayed frequency is within the 80 meter CW band segment",
"No, U.S. stations are not permitted to use CW emissions below 3.525 MHz"
],
"answer": "No, one of the sidebands of the CW signal will be out of the band"
},
{
"label": "E1A13",
"text": "Who must be in physical control of the station apparatus of an amateur station aboard any vessel or craft that is documented or registered in the United States?",
"rulesReference": "97.5",
"distractors": [
"Only a person with an FCC Marine Radio",
"Only a person named in an amateur station license grant",
"Any person named in an amateur station license grant or a person holding an unrestricted Radiotelephone Operator Permit"
],
"answer": "Any person holding an FCC issued amateur license or who is authorized for alien reciprocal operation"
},
{
"label": "E1A14",
"text": "What is the maximum bandwidth for a data emission on 60 meters?",
"rulesReference": "97.303",
"distractors": [
"60 Hz",
"170 Hz",
"1.5 kHz"
],
"answer": "2.8 kHz"
}
]
},
{
"label": "E1B",
"description": "Station restrictions and special operations: restrictions on station location; general operating restrictions, spurious emissions, control operator reimbursement; antenna structure restrictions; RACES operations; national quiet zone",
"questions": [
{
"label": "E1B01",
"text": "Which of the following constitutes a spurious emission?",
"rulesReference": "97.3",
"distractors": [
"An amateur station transmission made at random without the proper call sign identification",
"A signal transmitted to prevent its detection by any station other than the intended recipient",
"Any transmitted signal that unintentionally interferes with another licensed radio station"
],
"answer": "An emission outside its necessary bandwidth that can be reduced or eliminated without affecting the information transmitted"
},
{
"label": "E1B02",
"text": "Which of the following factors might cause the physical location of an amateur station apparatus or antenna structure to be restricted?",
"rulesReference": "97.13",
"distractors": [
"The location is near an area of political conflict",
"The location is of geographical or horticultural importance",
"The location is in an ITU Zone designated for coordination with one or more foreign governments"
],
"answer": "The location is of environmental importance or significant in American history, architecture, or culture"
},
{
"label": "E1B03",
"text": "Within what distance must an amateur station protect an FCC monitoring facility from harmful interference?",
"rulesReference": "97.13",
"distractors": [
"3 miles",
"10 miles",
"30 miles"
],
"answer": "1 mile"
},
{
"label": "E1B04",
"text": "What must be done before placing an amateur station within an officially designated wilderness area or wildlife preserve, or an area listed in the National Register of Historical Places?",
"rulesReference": "97.13, 1.1305-1.1319",
"distractors": [
"A proposal must be submitted to the National Park Service",
"A letter of intent must be filed with the National Audubon Society",
"A form FSD-15 must be submitted to the Department of the Interior"
],
"answer": "An Environmental Assessment must be submitted to the FCC"
},
{
"label": "E1B05",
"text": "What is the National Radio Quiet Zone?",
"rulesReference": "97.3",
"distractors": [
"An area in Puerto Rico surrounding the Arecibo Radio Telescope",
"An area in New Mexico surrounding the White Sands Test Area",
"An area in Florida surrounding Cape Canaveral"
],
"answer": "An area surrounding the National Radio Astronomy Observatory"
},
{
"label": "E1B06",
"text": "Which of the following additional rules apply if you are installing an amateur station antenna at a site at or near a public use airport?",
"rulesReference": "97.15",
"distractors": [
"No special rules apply if your antenna structure will be less than 300 feet in height",
"You must file an Environmental Impact Statement with the EPA before construction begins",
"You must obtain a construction permit from the airport zoning authority"
],
"answer": "You may have to notify the Federal Aviation Administration and register it with the FCC as required by Part 17 of FCC rules"
},
{
"label": "E1B07",
"text": "What is the highest modulation index permitted at the highest modulation frequency for angle modulation below 29.0 MHz?",
"rulesReference": "97.307",
"distractors": [
"0.5",
"2.0",
"3.0"
],
"answer": "1.0"
},
{
"label": "E1B08",
"text": "What limitations may the FCC place on an amateur station if its signal causes interference to domestic broadcast reception, assuming that the receivers involved are of good engineering design?",
"rulesReference": "97.121",
"distractors": [
"The amateur station must cease operation",
"The amateur station must cease operation on all frequencies below 30 MHz",
"The amateur station must cease operation on all frequencies above 30 MHz"
],
"answer": "The amateur station must avoid transmitting during certain hours on frequencies that cause the interference"
},
{
"label": "E1B09",
"text": "Which amateur stations may be operated under RACES rules?",
"rulesReference": "97.407",
"distractors": [
"Only those club stations licensed to Amateur Extra class operators",
"Any FCC-licensed amateur station except a Technician class",
"Any FCC-licensed amateur station participating in the Military Auxiliary Radio System (MARS)"
],
"answer": "Any FCC-licensed amateur station certified by the responsible civil defense organization for the area served"
},
{
"label": "E1B10",
"text": "What frequencies are authorized to an amateur station operating under RACES rules?",
"rulesReference": "97.407",
"distractors": [
"Specific segments in the amateur service MF, HF, VHF and UHF bands",
"Specific local government channels",
"Military Auxiliary Radio System (MARS) channels"
],
"answer": "All amateur service frequencies authorized to the control operator"
},
{
"label": "E1B11",
"text": "What is the permitted mean power of any spurious emission relative to the mean power of the fundamental emission from a station transmitter or external RF amplifier installed after January 1, 2003 and transmitting on a frequency below 30 MHZ?",
"rulesReference": "97.307",
"distractors": [
"At least 53 dB below",
"At least 63 dB below",
"At least 73 dB below"
],
"answer": "At least 43 dB below"
}
]
},
{
"label": "E1C",
"description": "Definitions and restrictions pertaining to local, automatic and remote control operation; control operator responsibilities for remote and automatically controlled stations; IARP and CEPT licenses; third party communications over automatically controlled stations",
"questions": [
{
"label": "E1C01",
"text": "What is a remotely controlled station?",
"rulesReference": "97.3",
"distractors": [
"A station operated away from its regular home location",
"A station controlled by someone other than the licensee",
"A station operating under automatic control"
],
"answer": "A station controlled indirectly through a control link"
},
{
"label": "E1C02",
"text": "What is meant by automatic control of a station?",
"rulesReference": "97.3, 97.109",
"distractors": [
"A station operating with its output power controlled automatically",
"Remotely controlling a station’s antenna pattern through a directional control link",
"The use of a control link between a control point and a locally controlled station"
],
"answer": "The use of devices and procedures for control so that the control operator does not have to be present at a control point"
},
{
"label": "E1C03",
"text": "How do the control operator responsibilities of a station under automatic control differ from one under local control?",
"rulesReference": "97.3, 97.109",
"distractors": [
"Under local control there is no control operator",
"Under automatic control there is no control operator",
"Under local control a control operator is not required to be present at a control point"
],
"answer": "Under automatic control the control operator is not required to be present at the control point"
},
{
"label": "E1C04",
"text": "What is meant by IARP?",
"rulesReference": "",
"distractors": [
"The internal amateur radio practices policy of the FCC",
"An indication of increased antenna reflected power",
"A forecast of intermittent aurora radio propagation"
],
"answer": "An international amateur radio permit that allows U.S. amateurs to operate in certain countries of the Americas"
},
{
"label": "E1C05",
"text": "When may an automatically controlled station originate third party communications?",
"rulesReference": "97.221(c)(1),[97.115(c)",
"distractors": [
"Only when transmitting RTTY or data emissions",
"When agreed upon by the sending or receiving station",
"When approved by the National Telecommunication and Information Administration"
],
"answer": "Never"
},
{
"label": "E1C06",
"text": "Which of the following statements concerning remotely controlled amateur stations is true?",
"rulesReference": "97.109",
"distractors": [
"Only Extra Class operators may be the control operator of a remote station",
"A control operator need not be present at the control point",
"Repeater and auxiliary stations may not be remotely controlled"
],
"answer": "A control operator must be present at the control point"
},
{
"label": "E1C07",
"text": "What is meant by local control?",
"rulesReference": "97.3",
"distractors": [
"Controlling a station through a local auxiliary link",
"Automatically manipulating local station controls",
"Controlling a repeater using a portable handheld transceiver"
],
"answer": "Direct manipulation of the transmitter by a control operator"
},
{
"label": "E1C08",
"text": "What is the maximum permissible duration of a remotely controlled station’s transmissions if its control link malfunctions?",
"rulesReference": "97.213",
"distractors": [
"30 seconds",
"5 minutes",
"10 minutes"
],
"answer": "3 minutes"
},
{
"label": "E1C09",
"text": "Which of these ranges of frequencies is available for an automatically controlled repeater operating below 30 MHz?",
"rulesReference": "97.205",
"distractors": [
"18.110 MHz - 18.168 MHz",
"24.940 MHz - 24.990 MHz",
"10.100 MHz - 10.150 MHz"
],
"answer": "29.500 MHz - 29.700 MHz"
},
{
"label": "E1C10",
"text": "What types of amateur stations may automatically retransmit the radio signals of other amateur stations?",
"rulesReference": "97.113",
"distractors": [
"Only beacon, repeater or space stations",
"Only earth stations, repeater stations or model craft",
"Only auxiliary, beacon or space stations"
],
"answer": "Only auxiliary, repeater or space stations"
},
{
"label": "E1C11",
"text": "Which of the following operating arrangements allows an FCC-licensed U.S. citizen to operate in many European countries, and alien amateurs from many European countries to operate in the U.S.?",
"rulesReference": "97.5",
"distractors": [
"IARP agreement",
"ITU reciprocal license",
"All of these choices are correct"
],
"answer": "CEPT agreement"
},
{
"label": "E1C12",
"text": "What types of communications may be transmitted to amateur stations in foreign countries?",
"rulesReference": "97.117",
"distractors": [
"Business-related messages for non-profit organizations",
"Messages intended for connection to users of the maritime satellite service",
"All of these choices are correct"
],
"answer": "Communications incidental to the purpose of the amateur service and remarks of a personal nature"
},
{
"label": "E1C13",
"text": "Which of the following is required in order to operate in accordance with CEPT rules in foreign countries where permitted?",
"rulesReference": "",
"distractors": [
"You must identify in the official language of the country in which you are operating",
"The U.S. embassy must approve of your operation",
"You must append \"/CEPT\" to your call sign"
],
"answer": "You must bring a copy of FCC Public Notice DA 11-221"
}
]
},
{
"label": "E1D",
"description": "Amateur satellites: definitions and purpose; license requirements for space stations; available frequencies and bands; telecommand and telemetry operations; restrictions, and special provisions; notification requirements",
"questions": [
{
"label": "E1D01",
"text": "What is the definition of the term telemetry?",
"rulesReference": "97.3",
"distractors": [
"Two-way radiotelephone transmissions in excess of 1000 feet",
"Two-way single channel transmissions of data",
"One-way transmission that initiates, modifies, or terminates the functions of a device at a distance"
],
"answer": "One-way transmission of measurements at a distance from the measuring instrument"
},
{
"label": "E1D02",
"text": "What is the amateur satellite service?",
"rulesReference": "97.3",
"distractors": [
"A radio navigation service using satellites for the purpose of self training, intercommunication and technical studies carried out by amateurs",
"A spacecraft launching service for amateur-built satellites",
"A radio communications service using stations on Earth satellites for public service broadcast"
],
"answer": "A radio communications service using amateur radio stations on satellites"
},
{
"label": "E1D03",
"text": "What is a telecommand station in the amateur satellite service?",
"rulesReference": "97.3",
"distractors": [
"An amateur station located on the Earth’s surface for communication with other Earth stations by means of Earth satellites",
"An amateur station located more than 50 km above the Earth’s surface",
"An amateur station that transmits telemetry consisting of measurements of upper atmosphere data"
],
"answer": "An amateur station that transmits communications to initiate, modify or terminate functions of a space station"
},
{
"label": "E1D04",
"text": "What is an Earth station in the amateur satellite service?",
"rulesReference": "97.3",
"distractors": [
"An amateur station that is not able to communicate using amateur satellites",
"An amateur station that transmits telemetry consisting of measurement of upper atmosphere data",
"Any amateur station on the surface of the Earth"
],
"answer": "An amateur station within 50 km of the Earth's surface intended for communications with amateur stations by means of objects in space"
},
{
"label": "E1D05",
"text": "What class of licensee is authorized to be the control operator of a space station?",
"rulesReference": "97.207",
"distractors": [
"All except Technician Class",
"Only General, Advanced or Amateur Extra Class",
"Only Amateur Extra Class"
],
"answer": "Any class with appropriate operator privileges"
},
{
"label": "E1D06",
"text": "Which of the following is a requirement of a space station?",
"rulesReference": "97.207",
"distractors": [
"The space station must cease all transmissions after 5 years",
"The space station must be capable of changing its orbit whenever such a change is ordered by NASA",
"All of these choices are correct"
],
"answer": "The space station must be capable of terminating transmissions by telecommand when directed by the FCC"
},
{
"label": "E1D07",
"text": "Which amateur service HF bands have frequencies authorized for space stations?",
"rulesReference": "97.207",
"distractors": [
"Only the 40 m, 20 m, 17 m, 15 m and 10 m bands",
"Only the 40 m, 30 m, 20 m, 15 m, 12 m and 10 m bands",
"All HF bands"
],
"answer": "Only the 40 m, 20 m, 17 m, 15 m, 12 m and 10 m bands"
},
{
"label": "E1D08",
"text": "Which VHF amateur service bands have frequencies available for space stations?",
"rulesReference": "97.207",
"distractors": [
"6 meters and 2 meters",
"6 meters, 2 meters, and 1.25 meters",
"2 meters and 1.25 meters"
],
"answer": "2 meters"
},
{
"label": "E1D09",
"text": "Which UHF amateur service bands have frequencies available for a space station?",
"rulesReference": "97.207",
"distractors": [
"70 cm only",
"70 cm and 33 cm",
"33 cm and 13 cm"
],
"answer": "70 cm and 13 cm"
},
{
"label": "E1D10",
"text": "Which amateur stations are eligible to be telecommand stations?",
"rulesReference": "97.211",
"distractors": [
"Any amateur station designated by NASA",
"Any amateur station so designated by the ITU",
"All of these choices are correct"
],
"answer": "Any amateur station so designated by the space station licensee, subject to the privileges of the class of operator license held by the control operator"
},
{
"label": "E1D11",
"text": "Which amateur stations are eligible to operate as Earth stations?",
"rulesReference": "97.209",
"distractors": [
"Any amateur station whose licensee has filed a pre-space notification with the FCC's International Bureau",
"Only those of General, Advanced or Amateur Extra Class operators",
"Only those of Amateur Extra Class operators"
],
"answer": "Any amateur station, subject to the privileges of the class of operator license held by the control operator"
}
]
},
{
"label": "E1E",
"description": "Volunteer examiner program: definitions; qualifications; preparation and administration of exams; accreditation; question pools; documentation requirements",
"questions": [
{
"label": "E1E01",
"text": "What is the minimum number of qualified VEs required to administer an Element 4 amateur operator license examination?",
"rulesReference": "97.509",
"distractors": [
"5",
"2",
"4"
],
"answer": "3"
},
{
"label": "E1E02",
"text": "Where are the questions for all written U.S. amateur license examinations listed?",
"rulesReference": "97.523",
"distractors": [
"In FCC Part 97",
"In a question pool maintained by the FCC",
"In the appropriate FCC Report and Order"
],
"answer": "In a question pool maintained by all the VECs"
},
{
"label": "E1E03",
"text": "What is a Volunteer Examiner Coordinator?",
"rulesReference": "97.521",
"distractors": [
"A person who has volunteered to administer amateur operator license examinations",
"A person who has volunteered to prepare amateur operator license examinations",
"The person who has entered into an agreement with the FCC to be the VE session manager"
],
"answer": "An organization that has entered into an agreement with the FCC to coordinate amateur operator license examinations"
},
{
"label": "E1E04",
"text": "Which of the following best describes the Volunteer Examiner accreditation process?",
"rulesReference": "97.509, 97.525",
"distractors": [
"Each General, Advanced and Amateur Extra Class operator is automatically accredited as a VE when the license is granted",
"The amateur operator applying must pass a VE examination administered by the FCC Enforcement Bureau",
"The prospective VE obtains accreditation from the FCC"
],
"answer": "The procedure by which a VEC confirms that the VE applicant meets FCC requirements to serve as an examiner"
},
{
"label": "E1E05",
"text": "What is the minimum passing score on amateur operator license examinations?",
"rulesReference": "97.503",
"distractors": [
"Minimum passing score of 70%",
"Minimum passing score of 80%",
"Minimum passing score of 77%"
],
"answer": "Minimum passing score of 74%"
},
{
"label": "E1E06",
"text": "Who is responsible for the proper conduct and necessary supervision during an amateur operator license examination session?",
"rulesReference": "97.509",
"distractors": [
"The VEC coordinating the session",
"The FCC",
"The VE session manager"
],
"answer": "Each administering VE"
},
{
"label": "E1E07",
"text": "What should a VE do if a candidate fails to comply with the examiner’s instructions during an amateur operator license examination?",
"rulesReference": "97.509",
"distractors": [
"Warn the candidate that continued failure to comply will result in termination of the examination",
"Allow the candidate to complete the examination, but invalidate the results",
"Immediately terminate everyone’s examination and close the session"
],
"answer": "Immediately terminate the candidate’s examination"
},
{
"label": "E1E08",
"text": "To which of the following examinees may a VE not administer an examination?",
"rulesReference": "97.509",
"distractors": [
"Employees of the VE",
"Friends of the VE",
"All of these choices are correct"
],
"answer": "Relatives of the VE as listed in the FCC rules"
},
{
"label": "E1E09",
"text": "What may be the penalty for a VE who fraudulently administers or certifies an examination?",
"rulesReference": "97.509",
"distractors": [
"A fine of up to $1000 per occurrence",
"A sentence of up to one year in prison",
"All of these choices are correct"
],
"answer": "Revocation of the VE's amateur station license grant and the suspension of the VE's amateur operator license grant"
},
{
"label": "E1E10",
"text": "What must the administering VEs do after the administration of a successful examination for an amateur operator license?",
"rulesReference": "97.509",
"distractors": [
"They must collect and send the documents to the NCVEC for grading",
"They must collect and submit the documents to the coordinating VEC for grading",
"They must collect and send the documents to the FCC according to instructions"
],
"answer": "They must submit the application document to the coordinating VEC according to the coordinating VEC instructions"
},
{
"label": "E1E11",
"text": "What must the VE team do if an examinee scores a passing grade on all examination elements needed for an upgrade or new license?",
"rulesReference": "97.509",
"distractors": [
"Photocopy all examination documents and forward them to the FCC for processing",
"Issue the examinee the new or upgrade license",
"All these choices are correct"
],
"answer": "Three VEs must certify that the examinee is qualified for the license grant and that they have complied with the administering VE requirements"
},
{
"label": "E1E12",
"text": "What must the VE team do with the application form if the examinee does not pass the exam?",
"rulesReference": "97.509",
"distractors": [
"Maintain the application form with the VEC's records",
"Send the application form to the FCC and inform the FCC of the grade",
"Destroy the application form"
],
"answer": "Return the application document to the examinee"
},
{
"label": "E1E13",
"text": "Which of these choices is an acceptable method for monitoring the applicants if a VEC opts to conduct an exam session remotely?",
"rulesReference": "97.509",
"distractors": [
"Record the exam session on video tape for later review by the VE team",
"The exam proctor observes the applicants and reports any violations",
"Have each applicant sign an affidavit stating that all session rules were followed"
],
"answer": "Use a real-time video link and the Internet to connect the exam session to the observing VEs"
},
{
"label": "E1E14",
"text": "For which types of out-of-pocket expenses do the Part 97 rules state that VEs and VECs may be reimbursed?",
"rulesReference": "97.527",
"distractors": [
"Teaching an amateur operator license examination preparation course",
"No expenses are authorized for reimbursement",
"Providing amateur operator license examination preparation training materials"
],
"answer": "Preparing, processing, administering and coordinating an examination for an amateur radio license"
}
]
},
{
"label": "E1F",
"description": "Miscellaneous rules: external RF power amplifiers; business communications; compensated communications; spread spectrum; auxiliary stations; reciprocal operating privileges; special temporary authority",
"questions": [
{
"label": "E1F01",
"text": "On what frequencies are spread spectrum transmissions permitted?",
"rulesReference": "97.305",
"distractors": [
"Only on amateur frequencies above 50 MHz",
"Only on amateur frequencies above 420 MHz",
"Only on amateur frequencies above 144 MHz"
],
"answer": "Only on amateur frequencies above 222 MHz"
},
{
"label": "E1F02",
"text": "What privileges are authorized in the U.S. to persons holding an amateur service license granted by the government of Canada?",
"rulesReference": "97.107",
"distractors": [
"None, they must obtain a U.S. license",
"All privileges of the Extra Class license",
"Full privileges, up to and including those of the Extra Class License, on the 80, 40, 20, 15, and 10 meter bands"
],
"answer": "The operating terms and conditions of the Canadian amateur service license, not to exceed U.S. Extra Class privileges"
},
{
"label": "E1F03",
"text": "Under what circumstances may a dealer sell an external RF power amplifier capable of operation below 144 MHz if it has not been granted FCC certification?",
"rulesReference": "97.315",
"distractors": [
"The equipment dealer assembled it from a kit",
"It was imported from a manufacturer in a country that does not require certification of RF power amplifiers",
"It was imported from a manufacturer in another country and was certificated by that country’s government"
],
"answer": "It was purchased in used condition from an amateur operator and is sold to another amateur operator for use at that operator's station"
},
{
"label": "E1F04",
"text": "Which of the following geographic descriptions approximately describes \"Line A\"?",
"rulesReference": "97.3",
"distractors": [
"A line roughly parallel to and west of the U.S. Atlantic coastline",
"A line roughly parallel to and north of the U.S.-Mexican border and Gulf coastline",
"A line roughly parallel to and east of the U.S. Pacific coastline"
],
"answer": "A line roughly parallel to and south of the U.S.-Canadian border"
},
{
"label": "E1F05",
"text": "Amateur stations may not transmit in which of the following frequency segments if they are located in the contiguous 48 states and north of Line A?",
"rulesReference": "97.303",
"distractors": [
"440 MHz - 450 MHz",
"53 MHz - 54 MHz",
"222 MHz - 223 MHz"
],
"answer": "420 MHz - 430 MHz"
},
{
"label": "E1F06",
"text": "Under what circumstances might the FCC issue a Special Temporary Authority (STA) to an amateur station?",
"rulesReference": "1.931",
"distractors": [
"To allow regular operation on Land Mobile channels",
"To provide additional spectrum for personal use",
"To provide temporary operation while awaiting normal licensing"
],
"answer": "To provide for experimental amateur communications"
},
{
"label": "E1F07",
"text": "When may an amateur station send a message to a business?",
"rulesReference": "97.113",
"distractors": [
"When the total money involved does not exceed $25",
"When the control operator is employed by the FCC or another government agency",
"When transmitting international third-party communications"
],
"answer": "When neither the amateur nor his or her employer has a pecuniary interest in the communications"
},
{
"label": "E1F08",
"text": "Which of the following types of amateur station communications are prohibited?",
"rulesReference": "97.113",
"distractors": [
"Communications that have a political content, except as allowed by the Fairness Doctrine",
"Communications that have a religious content",
"Communications in a language other than English"
],
"answer": "Communications transmitted for hire or material compensation, except as otherwise provided in the rules"
},
{
"label": "E1F09",
"text": "Which of the following conditions apply when transmitting spread spectrum emission?",
"rulesReference": "97.311",
"distractors": [
"A station transmitting SS emission must not cause harmful interference to other stations employing other authorized emissions",
"The transmitting station must be in an area regulated by the FCC or in a country that permits SS emissions",
"The transmission must not be used to obscure the meaning of any communication"
],
"answer": "All of these choices are correct"
},
{
"label": "E1F10",
"text": "What is the maximum permitted transmitter peak envelope power for an amateur station transmitting spread spectrum communications?",
"rulesReference": "97.313",
"distractors": [
"1 W",
"1.5 W",
"1.5 kW"
],
"answer": "10 W"
},
{
"label": "E1F11",
"text": "Which of the following best describes one of the standards that must be met by an external RF power amplifier if it is to qualify for a grant of FCC certification?",
"rulesReference": "97.317",
"distractors": [
"It must produce full legal output when driven by not more than 5 watts of mean RF input power",
"It must be capable of external RF switching between its input and output networks",
"It must exhibit a gain of 0 dB or less over its full output range"
],
"answer": "It must satisfy the FCC's spurious emission standards when operated at the lesser of 1500 watts or its full output power"
},
{
"label": "E1F12",
"text": "Who may be the control operator of an auxiliary station?",
"rulesReference": "97.201",
"distractors": [
"Any licensed amateur operator",
"Only General, Advanced or Amateur Extra Class operators",
"Only Amateur Extra Class operators"
],
"answer": "Only Technician, General, Advanced or Amateur Extra Class operators"
}
]
}
]
},
{
"label": "E2",
"description": "OPERATING PROCEDURES",
"examQuestions": 5,
"subTopics": [
{
"label": "E2A",
"description": "Amateur radio in space: amateur satellites; orbital mechanics; frequencies and modes; satellite hardware; satellite operations; experimental telemetry applications",
"questions": [
{
"label": "E2A01",
"text": "What is the direction of an ascending pass for an amateur satellite?",
"rulesReference": "",
"distractors": [
"From west to east",
"From east to west",
"From north to south"
],
"answer": "From south to north"
},
{
"label": "E2A02",
"text": "What is the direction of a descending pass for an amateur satellite?",
"rulesReference": "",
"distractors": [
"From west to east",
"From east to west",
"From south to north"
],
"answer": "From north to south"
},
{
"label": "E2A03",
"text": "What is the orbital period of an Earth satellite?",
"rulesReference": "",
"distractors": [
"The point of maximum height of a satellite's orbit",
"The point of minimum height of a satellite's orbit",
"The time it takes for a satellite to travel from perigee to apogee"
],
"answer": "The time it takes for a satellite to complete one revolution around the Earth"
},
{
"label": "E2A04",
"text": "What is meant by the term mode as applied to an amateur radio satellite?",
"rulesReference": "",
"distractors": [
"The type of signals that can be relayed through the satellite",
"The satellite's orientation with respect to the Earth",
"Whether the satellite is in a polar or equatorial orbit"
],
"answer": "The satellite's uplink and downlink frequency bands"
},
{
"label": "E2A05",
"text": "What do the letters in a satellite's mode designator specify?",
"rulesReference": "",
"distractors": [
"Power limits for uplink and downlink transmissions",
"The location of the ground control station",
"The polarization of uplink and downlink signals"
],
"answer": "The uplink and downlink frequency ranges"
},
{
"label": "E2A06",
"text": "On what band would a satellite receive signals if it were operating in mode U/V?",
"rulesReference": "",
"distractors": [
"144 MHz - 146 MHz",
"50.0 MHz - 50.2 MHz",
"29.5 MHz - 29.7 MHz"
],
"answer": "435 MHz - 438 MHz"
},
{
"label": "E2A07",
"text": "Which of the following types of signals can be relayed through a linear transponder?",
"rulesReference": "",
"distractors": [
"FM and CW",
"SSB and SSTV",
"PSK and Packet"
],
"answer": "All of these choices are correct"
},
{
"label": "E2A08",
"text": "Why should effective radiated power to a satellite which uses a linear transponder be limited?",
"rulesReference": "",
"distractors": [
"To prevent creating errors in the satellite telemetry",
"To prevent the satellite from emitting out-of-band signals",
"To avoid interfering with terrestrial QSOs"
],
"answer": "To avoid reducing the downlink power to all other users"
},
{
"label": "E2A09",
"text": "What do the terms L band and S band specify with regard to satellite communications?",
"rulesReference": "",
"distractors": [
"The 2 meter and 70 centimeter bands",
"FM and Digital Store-and-Forward systems",
"Which sideband to use"
],
"answer": "The 23 centimeter and 13 centimeter bands"
},
{
"label": "E2A10",
"text": "Why may the received signal from an amateur satellite exhibit a rapidly repeating fading effect?",
"rulesReference": "",
"distractors": [
"Because of ionospheric absorption",
"Because of the satellite's low orbital altitude",
"Because of the Doppler Effect"
],
"answer": "Because the satellite is spinning"
},
{
"label": "E2A11",
"text": "What type of antenna can be used to minimize the effects of spin modulation and Faraday rotation?",
"rulesReference": "",
"distractors": [