-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathExtra2020.json
More file actions
7222 lines (7222 loc) · 330 KB
/
Copy pathExtra2020.json
File metadata and controls
7222 lines (7222 loc) · 330 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": "2020-07-01",
"EndDate": "2024-06-30",
"SubElements": [
{
"label": "E1",
"description": "COMMISSION RULES",
"examQuestions": 6,
"subTopics": [
{
"label": "E1A",
"description": "Operating Standards: frequency privileges; automatic message forwarding; stations aboard ships or aircraft; power restriction on 630 and 2200 meter bands",
"questions": [
{
"label": "E1A01",
"text": "Which of the following carrier frequencies is illegal for LSB AFSK emissions on the 17 meter band RTTY and data segment of 18.068 to 18.110 MHz?",
"rulesReference": "97.305, 97.307(b)",
"distractors": [
"18.100 MHz",
"18.107 MHz",
"18.110 MHz"
],
"answer": "18.068 MHz"
},
{
"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": "What is the maximum legal carrier frequency on the 20 meter band for transmitting USB AFSK digital signals having a 1 kHz bandwidth?",
"rulesReference": "97.305, 97.307(b)",
"distractors": [
"14.070 MHz",
"14.100 MHz",
"14.349 MHz"
],
"answer": "14.149 MHz"
},
{
"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.303(h)(1)",
"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": "What is the maximum power permitted on the 2200 meter band?",
"rulesReference": "97.313(k)",
"distractors": [
"50 watts PEP",
"100 watts PEP",
"5 watts EIRP (Equivalent isotropic radiated power)"
],
"answer": "1 watt EIRP (Equivalent isotropic radiated power)"
},
{
"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 action or actions should you 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 Engineers office",
"All these choices are correct"
],
"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": "What special operating frequency restrictions are imposed on slow scan TV transmissions?",
"rulesReference": "",
"distractors": [
"None; they are allowed on all amateur frequencies",
"They are restricted to 7.245 MHz, 14.245 MHz, 21.345 MHz, and 28.945 MHz",
"They are not permitted above 54 MHz"
],
"answer": "They are restricted to phone band segments"
},
{
"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 license grant",
"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": "Except in some parts of Alaska, what is the maximum power permitted on the 630 meter band?",
"rulesReference": "97.313(l)",
"distractors": [
"50 watts PEP",
"100 watts PEP",
"1 watt EIRP"
],
"answer": "5 watts EIRP"
}
]
},
{
"label": "E1B",
"description": "Station restrictions and special operations: restrictions on station location; general operating restrictions; spurious emissions; antenna structure restrictions; RACES operations",
"questions": [
{
"label": "E1B01",
"text": "Which of the following constitutes a spurious emission?",
"rulesReference": "97.3",
"distractors": [
"An amateur station transmission made 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 the signal's necessary bandwidth that can be reduced or eliminated without affecting the information transmitted"
},
{
"label": "E1B02",
"text": "Which of the following is an acceptable bandwidth for Digital Radio Mondiale (DRM) based voice or SSTV digital transmissions made on the HF amateur bands?",
"rulesReference": "97.307(f)(2)",
"distractors": [
"10 kHz",
"15 kHz",
"20 kHz"
],
"answer": "3 kHz"
},
{
"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 Historic 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 Environmental Protection Agency",
"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": [
"You must submit engineering drawings to the FAA",
"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 the FCC rules"
},
{
"label": "E1B07",
"text": "To what type of regulations does PRB-1 apply?",
"rulesReference": "97.15",
"distractors": [
"Homeowners associations",
"FAA tower height limits",
"Use of wireless devices in vehicles"
],
"answer": "State and local zoning"
},
{
"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 does PRB-1 require of regulations affecting amateur radio?",
"rulesReference": "97.15",
"distractors": [
"No limitations may be placed on antenna size or placement",
"Amateur radio operations must be permitted in any private residence",
"Use of wireless devices in a vehicle is exempt from regulation"
],
"answer": "Reasonable accommodations of amateur radio must be made"
},
{
"label": "E1B12",
"text": "What must the control operator of a repeater operating in the 70 cm band do if a radiolocation system experiences interference from that repeater?",
"rulesReference": "97.303(b)",
"distractors": [
"File an FAA NOTAM (Notice to Airmen) with the repeater system's ERP, call sign, and six-character grid locator",
"Reduce the repeater antenna HAAT (Height Above Average Terrain)",
"All these choices are correct"
],
"answer": "Cease operation or make changes to the repeater to mitigate the interference"
}
]
},
{
"label": "E1C",
"description": "Rules pertaining to automatic and remote control; band-specific regulations; operating in, and communicating with foreign countries; spurious emission standards; HF modulation index limit; bandwidth definition",
"questions": [
{
"label": "E1C01",
"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": "E1C02",
"text": "Which of the following 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 users of the maritime satellite service",
"All these choices are correct"
],
"answer": "Communications incidental to the purpose of the amateur service and remarks of a personal nature"
},
{
"label": "E1C03",
"text": "How do the control operator responsibilities of a station under automatic control differ from one under local control?",
"rulesReference": "97.109(d)",
"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 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 16-1048"
},
{
"label": "E1C07",
"text": "At what level below a signal's mean power level is its bandwidth determined according to FCC rules?",
"rulesReference": "97.3(a)(8)",
"distractors": [
"3 dB",
"6 dB",
"23 dB"
],
"answer": "26 dB"
},
{
"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": "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": "E1C10",
"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": "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 these choices are correct"
],
"answer": "CEPT agreement"
},
{
"label": "E1C12",
"text": "On what portion of the 630 meter band are phone emissions permitted?",
"rulesReference": "97.305(c)",
"distractors": [
"None",
"Only the top 3 kHz",
"Only the bottom 3 kHz"
],
"answer": "The entire band"
},
{
"label": "E1C13",
"text": "What notifications must be given before transmitting on the 630 meter or 2200 meter bands?",
"rulesReference": "97.303(g)",
"distractors": [
"A special endorsement must be requested from the FCC",
"An environmental impact statement must be filed with the Department of the Interior",
"Operators must inform the FAA of their intent to operate, giving their call sign and distance to the nearest runway"
],
"answer": "Operators must inform the Utilities Telecom Council of their call sign and coordinates of the station"
},
{
"label": "E1C14",
"text": "How long must an operator wait after filing a notification with the Utilities Telecom Commission before operating on the 2200 meter or 630 meter band?",
"rulesReference": "97.303(g)",
"distractors": [
"Operators must not operate until approval is received",
"Operators may not operate until a test signal has been transmitted in coordination with the local power company",
"Operations may commence immediately, and may continue unless interference is reported by the UTC"
],
"answer": "Operators may operate after 30 days, providing they have not been told that their station is within 1 km of PLC systems using those frequencies"
}
]
},
{
"label": "E1D",
"description": "Amateur space and Earth stations; telemetry and telecommand rules; identification of balloon transmissions; one-way communications",
"questions": [
{
"label": "E1D01",
"text": "What is the definition of telemetry?",
"rulesReference": "97.3",
"distractors": [
"Two-way transmissions in excess of 1000 feet",
"Two-way 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": "Which of the following may transmit special codes intended to obscure the meaning of messages?",
"rulesReference": "97.211(b)",
"distractors": [
"Data containing personal information",
"Auxiliary relay links carrying repeater audio",
"Binary control characters"
],
"answer": "Telecommand signals from a space telecommand station"
},
{
"label": "E1D03",
"text": "What is a space telecommand station?",
"rulesReference": "97.3(a)(45)",
"distractors": [
"An amateur station located on the surface of the Earth for communication with other Earth stations by means of Earth satellites",
"An amateur station located in a satellite or a balloon more than 50 kilometers above the surface of the earth",
"An amateur station that receives telemetry from a satellite or balloon more than 50 kilometers above the surface of the earth"
],
"answer": "An amateur station that transmits communications to initiate, modify or terminate functions of a space station"
},
{
"label": "E1D04",
"text": "Which of the following is required in the identification transmissions from a balloon-borne telemetry station?",
"rulesReference": "97.119(a)",
"distractors": [
"The output power of the balloon transmitter",
"The station's six-character Maidenhead grid locator",
"All these choices are correct"
],
"answer": "Call sign"
},
{
"label": "E1D05",
"text": "What must be posted at the station location of a station being operated by telecommand on or within 50 km of the earth's surface?",
"rulesReference": "97.213(d)",
"distractors": [
"A photocopy of the station license",
"A label with the name, address, and telephone number of the station licensee",
"A label with the name, address, and telephone number of the control operator"
],
"answer": "All these choices are correct"
},
{
"label": "E1D06",
"text": "What is the maximum permitted transmitter output power when operating a model craft by telecommand?",
"rulesReference": "97.215(c)",
"distractors": [
"2 watts",
"5 watts",
"100 watts"
],
"answer": "1 watt"
},
{
"label": "E1D07",
"text": "Which HF amateur bands have frequencies authorized for space stations?",
"rulesReference": "97.207",
"distractors": [
"Only the 40, 20, 17, 15, and 10 meter bands",
"Only the 40, 30, 20, 15, 12, and 10 meter bands",
"All HF bands"
],
"answer": "Only the 40, 20, 17, 15, 12, and 10 meter bands"
},
{
"label": "E1D08",
"text": "Which VHF amateur bands have frequencies authorized 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 bands have frequencies authorized for space stations?",
"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 of space stations (subject to the privileges of the class of operator license held by the control operator of the station)?",
"rulesReference": "97.211",
"distractors": [
"Any amateur station designated by NASA",
"Any amateur station so designated by the ITU",
"All these choices are correct"
],
"answer": "Any amateur station so designated by the space station licensee"
},
{
"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": "E1D12",
"text": "Which of the following amateur stations may transmit one-way communications?",
"rulesReference": "97.207(e), 97.203(g)",
"distractors": [
"A local repeater or linked repeater station",
"A message forwarding station or automatically controlled digital station",
"All these choices are correct"
],
"answer": "A space station, beacon station, or telecommand station"
}
]
},
{
"label": "E1E",
"description": "Volunteer examiner program: definitions; qualifications; preparation and administration of exams; accreditation; question pools; documentation requirements",
"questions": [
{
"label": "E1E01",
"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 operator license"
},
{
"label": "E1E02",
"text": "Who does Part 97 task with maintaining the pools of questions for all U.S. amateur license examinations?",
"rulesReference": "97.523",
"distractors": [
"The VEs",
"The FCC",
"The ARRL"
],
"answer": "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, prepare, and administer 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 all 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 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 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(h)",
"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(m)",
"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(j)",
"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": "E1F",
"description": "Miscellaneous rules: external RF power amplifiers; prohibited communications; spread spectrum; auxiliary stations; Canadian amateurs operating in the U.S.; special temporary authority; control operator of an auxiliary station",
"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 Amateur Extra Class license",
"Full privileges, up to and including those of the Amateur 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. Amateur Extra Class license 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 border between the U.S. and Mexico",
"A line roughly parallel to and east of the U.S. Pacific coastline"
],
"answer": "A line roughly parallel to and south of the border between the U.S. and Canada"
},
{
"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(c)",
"distractors": [
"Communications that have political content, except as allowed by the Fairness Doctrine",
"Communications that have 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 emissions?",
"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 these choices are correct"
},
{
"label": "E1F10",
"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": "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": "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",
"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": "Which of the following occurs when a satellite is using an inverted linear transponder?",
"rulesReference": "",
"distractors": [
"Doppler shift is reduced because the uplink and downlink shifts are in opposite directions",
"Signal position in the band is reversed",
"Upper sideband on the uplink becomes lower sideband on the downlink, and vice versa"
],
"answer": "All these choices are correct"
},
{
"label": "E2A03",
"text": "How is the signal inverted by an inverting linear transponder?",
"rulesReference": "",
"distractors": [
"The signal is detected and remodulated on the reverse sideband",
"The signal is passed through a non-linear filter",
"The signal is reduced to I and Q components and the Q component is filtered out"
],
"answer": "The signal is passed through a mixer and the difference rather than the sum is transmitted"
},
{
"label": "E2A04",
"text": "What is meant by the term mode? as applied to an amateur radio satellite?",
"rulesReference": "",
"distractors": [
"Whether the satellite is in a low earth or geostationary orbit",
"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": "What are Keplerian elements?",
"rulesReference": "",
"distractors": [
"Phase reversing elements in a Yagi antenna",
"High-emission heater filaments used in magnetron tubes",
"Encrypting codes used for spread spectrum modulation"
],
"answer": "Parameters that define the orbit of a satellite"
},
{
"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 these choices are correct"
},
{
"label": "E2A08",
"text": "Why should effective radiated power to a satellite that 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 regarding 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": "What type of satellite appears to stay in one position in the sky?",
"rulesReference": "",
"distractors": [
"HEO",
"Geomagnetic",
"LEO"
],
"answer": "Geostationary"
},
{
"label": "E2A11",
"text": "What type of antenna can be used to minimize the effects of spin modulation and Faraday rotation?",
"rulesReference": "",
"distractors": [